mshtml: Added HTMLFrameBase2::allowTransparency semi-stub implementation.

This commit is contained in:
Jacek Caban 2014-11-20 11:20:21 +01:00 committed by Alexandre Julliard
parent d3714ba72d
commit 504872741c
1 changed files with 9 additions and 4 deletions

View File

@ -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 = {