mshtml: Implement IHTMLStyle get_backgroundImage.

This commit is contained in:
Alistair Leslie-Hughes 2008-12-11 22:45:24 +11:00 committed by Alexandre Julliard
parent 6d790d6ed0
commit 177767c418
1 changed files with 4 additions and 2 deletions

View File

@ -715,8 +715,10 @@ static HRESULT WINAPI HTMLStyle_put_backgroundImage(IHTMLStyle *iface, BSTR v)
static HRESULT WINAPI HTMLStyle_get_backgroundImage(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, STYLEID_BACKGROUND_IMAGE, p);
}
static HRESULT WINAPI HTMLStyle_put_backgroundRepeat(IHTMLStyle *iface, BSTR v)