mshtml: Added IHTMLStyle::paddingTop implementation.

This commit is contained in:
Jacek Caban 2012-01-26 14:33:47 +01:00 committed by Alexandre Julliard
parent 7d18377ba4
commit f015711822
2 changed files with 24 additions and 4 deletions

View File

@ -1556,15 +1556,19 @@ static HRESULT WINAPI HTMLStyle_get_marginLeft(IHTMLStyle *iface, VARIANT *p)
static HRESULT WINAPI HTMLStyle_put_paddingTop(IHTMLStyle *iface, VARIANT v)
{
HTMLStyle *This = impl_from_IHTMLStyle(iface);
FIXME("(%p)->(v%d)\n", This, V_VT(&v));
return E_NOTIMPL;
TRACE("(%p)->(v%d)\n", This, V_VT(&v));
return set_nsstyle_attr_var(This->nsstyle, STYLEID_PADDING_TOP, &v, ATTR_FIX_PX);
}
static HRESULT WINAPI HTMLStyle_get_paddingTop(IHTMLStyle *iface, VARIANT *p)
{
HTMLStyle *This = impl_from_IHTMLStyle(iface);
FIXME("(%p)->(%p)\n", This, p);
return E_NOTIMPL;
TRACE("(%p)->(%p)\n", This, p);
return get_nsstyle_attr_var(This->nsstyle, STYLEID_PADDING_TOP, p, 0);
}
static HRESULT WINAPI HTMLStyle_put_paddingRight(IHTMLStyle *iface, VARIANT v)

View File

@ -1228,6 +1228,22 @@ static void test_body_style(IHTMLStyle *style)
ok(!str, "padding = %s\n", wine_dbgstr_w(str));
SysFreeString(str);
hres = IHTMLStyle_get_paddingTop(style, &v);
ok(hres == S_OK, "get_paddingTop: %08x\n", hres);
ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
ok(!V_BSTR(&v), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
V_VT(&v) = VT_I4;
V_I4(&v) = 6;
hres = IHTMLStyle_put_paddingTop(style, v);
ok(hres == S_OK, "put_paddingTop failed: %08x\n", hres);
hres = IHTMLStyle_get_paddingTop(style, &v);
ok(hres == S_OK, "get_paddingTop: %08x\n", hres);
ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
ok(!strcmp_wa(V_BSTR(&v), "6px"), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
VariantClear(&v);
str = a2bstr("1");
hres = IHTMLStyle_put_padding(style, str);
ok(hres == S_OK, "put_padding failed: %08x\n", hres);