Alistair Leslie-Hughes : mshtml: Implement IHTMLCurrentStyle_get_visibility .

Alexandre Julliard julliard at winehq.org
Wed Aug 19 11:32:45 CDT 2009


Module: wine
Branch: master
Commit: 7e2dfe4f74cedec2d26882e13f800a751482fed7
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=7e2dfe4f74cedec2d26882e13f800a751482fed7

Author: Alistair Leslie-Hughes <leslie_alistair at hotmail.com>
Date:   Wed Aug 19 20:28:05 2009 +1000

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 5aaaece..3ae03da 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 0638ac9..50222ec 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));




More information about the wine-cvs mailing list