Module: wine Branch: master Commit: 504872741c9b9ce6be7a7e6d4309b8887f462901 URL: http://source.winehq.org/git/wine.git/?a=commit;h=504872741c9b9ce6be7a7e6d43...
Author: Jacek Caban jacek@codeweavers.com Date: Thu Nov 20 11:20:21 2014 +0100
mshtml: Added HTMLFrameBase2::allowTransparency semi-stub implementation.
---
dlls/mshtml/htmlframebase.c | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-)
diff --git a/dlls/mshtml/htmlframebase.c b/dlls/mshtml/htmlframebase.c index bd5c1de..d6e5ed2 100644 --- a/dlls/mshtml/htmlframebase.c +++ b/dlls/mshtml/htmlframebase.c @@ -667,15 +667,20 @@ static HRESULT WINAPI HTMLFrameBase2_get_readyState(IHTMLFrameBase2 *iface, BSTR static HRESULT WINAPI HTMLFrameBase2_put_allowTransparency(IHTMLFrameBase2 *iface, VARIANT_BOOL v) { HTMLFrameBase *This = impl_from_IHTMLFrameBase2(iface); - FIXME("(%p)->(%x)\n", This, v); - return E_NOTIMPL; + + FIXME("(%p)->(%x) semi-stub\n", This, v); + + return S_OK; }
static HRESULT WINAPI HTMLFrameBase2_get_allowTransparency(IHTMLFrameBase2 *iface, VARIANT_BOOL *p) { HTMLFrameBase *This = impl_from_IHTMLFrameBase2(iface); - FIXME("(%p)->(%p)\n", This, p); - return E_NOTIMPL; + + FIXME("(%p)->(%p) semi-stub\n", This, p); + + *p = VARIANT_TRUE; + return S_OK; }
static const IHTMLFrameBase2Vtbl HTMLFrameBase2Vtbl = {