From 7e2dfe4f74cedec2d26882e13f800a751482fed7 Mon Sep 17 00:00:00 2001 From: Alistair Leslie-Hughes Date: Wed, 19 Aug 2009 20:28:05 +1000 Subject: [PATCH] mshtml: Implement IHTMLCurrentStyle_get_visibility. --- dlls/mshtml/htmlcurstyle.c | 6 ++++-- dlls/mshtml/tests/dom.c | 4 ++++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/dlls/mshtml/htmlcurstyle.c b/dlls/mshtml/htmlcurstyle.c index 5aaaece85c2..3ae03da0edd 100644 --- a/dlls/mshtml/htmlcurstyle.c +++ b/dlls/mshtml/htmlcurstyle.c @@ -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) diff --git a/dlls/mshtml/tests/dom.c b/dlls/mshtml/tests/dom.c index 0638ac9cc53..50222ecfda2 100644 --- a/dlls/mshtml/tests/dom.c +++ b/dlls/mshtml/tests/dom.c @@ -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)); -- 2.11.4.GIT