Commit 50487274 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

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

parent d3714ba7
...@@ -667,15 +667,20 @@ static HRESULT WINAPI HTMLFrameBase2_get_readyState(IHTMLFrameBase2 *iface, BSTR ...@@ -667,15 +667,20 @@ static HRESULT WINAPI HTMLFrameBase2_get_readyState(IHTMLFrameBase2 *iface, BSTR
static HRESULT WINAPI HTMLFrameBase2_put_allowTransparency(IHTMLFrameBase2 *iface, VARIANT_BOOL v) static HRESULT WINAPI HTMLFrameBase2_put_allowTransparency(IHTMLFrameBase2 *iface, VARIANT_BOOL v)
{ {
HTMLFrameBase *This = impl_from_IHTMLFrameBase2(iface); 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) static HRESULT WINAPI HTMLFrameBase2_get_allowTransparency(IHTMLFrameBase2 *iface, VARIANT_BOOL *p)
{ {
HTMLFrameBase *This = impl_from_IHTMLFrameBase2(iface); 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 = { static const IHTMLFrameBase2Vtbl HTMLFrameBase2Vtbl = {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment