mshtml: Implement IHTMLCurrentStyle_get_verticalAlign.

This commit is contained in:
Alistair Leslie-Hughes 2009-02-22 19:57:02 +11:00 committed by Alexandre Julliard
parent 18c7f48865
commit ef981a412e
2 changed files with 8 additions and 2 deletions

View File

@ -421,8 +421,8 @@ static HRESULT WINAPI HTMLCurrentStyle_get_textIndent(IHTMLCurrentStyle *iface,
static HRESULT WINAPI HTMLCurrentStyle_get_verticalAlign(IHTMLCurrentStyle *iface, VARIANT *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_var(This->nsstyle, STYLEID_VERTICAL_ALIGN, p, 0);
}
static HRESULT WINAPI HTMLCurrentStyle_get_backgroundAttachment(IHTMLCurrentStyle *iface, BSTR *p)

View File

@ -2481,6 +2481,12 @@ static void test_current_style(IHTMLCurrentStyle *current_style)
ok(V_VT(&v) == VT_I4, "V_VT(v) = %d\n", V_VT(&v));
ok( V_I4(&v) == 1, "expect 1 got (%d)\n", V_I4(&v));
VariantClear(&v);
hres = IHTMLCurrentStyle_get_verticalAlign(current_style, &v);
ok(hres == S_OK, "get_verticalAlign failed: %08x\n", hres);
ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
ok(!strcmp_wa(V_BSTR(&v), "middle"), "get_verticalAlign returned %s\n", dbgstr_w(V_BSTR(&v)));
VariantClear(&v);
}
static void test_style2(IHTMLStyle2 *style2)