mshtml: Implement IHTMLCurrentStyle_get_visibility.

This commit is contained in:
Alistair Leslie-Hughes 2009-08-19 20:28:05 +10:00 committed by Alexandre Julliard
parent 89c92bee63
commit 7e2dfe4f74
2 changed files with 8 additions and 2 deletions

View File

@ -386,8 +386,10 @@ static HRESULT WINAPI HTMLCurrentStyle_get_display(IHTMLCurrentStyle *iface, BST
static HRESULT WINAPI HTMLCurrentStyle_get_visibility(IHTMLCurrentStyle *iface, BSTR *p)
{
HTMLCurrentStyle *This = HTMLCURSTYLE_THIS(iface);
FIXME("(%p)->(%p)\n", This, p);
return E_NOTIMPL;
TRACE("(%p)->(%p)\n", This, p);
return get_nsstyle_attr(This->nsstyle, STYLEID_VISIBILITY, p);
}
static HRESULT WINAPI HTMLCurrentStyle_get_zIndex(IHTMLCurrentStyle *iface, VARIANT *p)

View File

@ -2555,6 +2555,10 @@ static void test_current_style(IHTMLCurrentStyle *current_style)
ok(hres == S_OK, "get_borderStyle failed: %08x\n", hres);
SysFreeString(str);
hres = IHTMLCurrentStyle_get_visibility(current_style, &str);
ok(hres == S_OK, "get_visibility failed: %08x\n", hres);
SysFreeString(str);
hres = IHTMLCurrentStyle_get_fontWeight(current_style, &v);
ok(hres == S_OK, "get_fontWeight failed: %08x\n", hres);
ok(V_VT(&v) == VT_I4, "V_VT(v) = %d\n", V_VT(&v));