Alistair Leslie-Hughes : mshtml: Implement HTMLStyle get_background.

Alexandre Julliard julliard at winehq.org
Mon Aug 18 10:46:49 CDT 2008


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

Author: Alistair Leslie-Hughes <leslie_alistair at hotmail.com>
Date:   Wed Aug 13 09:29:57 2008 +1000

mshtml: Implement HTMLStyle get_background.

---

 dlls/mshtml/htmlstyle.c |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/dlls/mshtml/htmlstyle.c b/dlls/mshtml/htmlstyle.c
index e4bc483..dfc5ff3 100644
--- a/dlls/mshtml/htmlstyle.c
+++ b/dlls/mshtml/htmlstyle.c
@@ -455,8 +455,10 @@ static HRESULT WINAPI HTMLStyle_put_background(IHTMLStyle *iface, BSTR v)
 static HRESULT WINAPI HTMLStyle_get_background(IHTMLStyle *iface, BSTR *p)
 {
     HTMLStyle *This = HTMLSTYLE_THIS(iface);
-    FIXME("(%p)->(%p)\n", This, p);
-    return E_NOTIMPL;
+
+    TRACE("(%p)->(%p)\n", This, p);
+
+    return get_style_attr(This, attrBackground, p);
 }
 
 static HRESULT WINAPI HTMLStyle_put_backgroundColor(IHTMLStyle *iface, VARIANT v)




More information about the wine-cvs mailing list