mshtml: Implement IHTMLCurrentStyle_get_textDecoration.

This commit is contained in:
Alistair Leslie-Hughes 2009-02-20 21:04:19 +11:00 committed by Alexandre Julliard
parent 34fcf04a74
commit 00a5a722a9
2 changed files with 7 additions and 2 deletions

View File

@ -370,8 +370,8 @@ static HRESULT WINAPI HTMLCurrentStyle_get_textAlign(IHTMLCurrentStyle *iface, B
static HRESULT WINAPI HTMLCurrentStyle_get_textDecoration(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_TEXT_DECORATION, p);
}
static HRESULT WINAPI HTMLCurrentStyle_get_display(IHTMLCurrentStyle *iface, BSTR *p)

View File

@ -2428,6 +2428,11 @@ static void test_current_style(IHTMLCurrentStyle *current_style)
ok(hres == S_OK, "get_textAlign failed: %08x\n", hres);
ok(!strcmp_wa(str, "center"), "get_textAlign returned %s\n", dbgstr_w(str));
SysFreeString(str);
hres = IHTMLCurrentStyle_get_textDecoration(current_style, &str);
ok(hres == S_OK, "get_textDecoration failed: %08x\n", hres);
ok(!strcmp_wa(str, "none"), "get_textDecoration returned %s\n", dbgstr_w(str));
SysFreeString(str);
}
static void test_style2(IHTMLStyle2 *style2)