mshtml: Added IHTMLCurrentStyle4::get_maxHeight implementation.

Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Jacek Caban 2016-01-11 13:52:07 +01:00 committed by Alexandre Julliard
parent 4ee484c2eb
commit 27182667cc
2 changed files with 13 additions and 2 deletions

View file

@ -1281,8 +1281,8 @@ static HRESULT WINAPI HTMLCurrentStyle4_get_maxHeight(IHTMLCurrentStyle4 *iface,
static HRESULT WINAPI HTMLCurrentStyle4_get_minWidth(IHTMLCurrentStyle4 *iface, VARIANT *p)
{
HTMLCurrentStyle *This = impl_from_IHTMLCurrentStyle4(iface);
FIXME("(%p)->(%p)\n", This, p);
return E_NOTIMPL;
TRACE("(%p)->(%p)\n", This, p);
return get_nsstyle_attr_var(This->nsstyle, STYLEID_MIN_WIDTH, p, 0);
}
static HRESULT WINAPI HTMLCurrentStyle4_get_maxWidth(IHTMLCurrentStyle4 *iface, VARIANT *p)

View file

@ -2634,6 +2634,7 @@ static void test_current_style(IHTMLCurrentStyle *current_style)
{
IHTMLCurrentStyle2 *current_style2;
IHTMLCurrentStyle3 *current_style3;
IHTMLCurrentStyle4 *current_style4;
VARIANT_BOOL b;
BSTR str;
HRESULT hres;
@ -2932,6 +2933,16 @@ static void test_current_style(IHTMLCurrentStyle *current_style)
SysFreeString(str);
IHTMLCurrentStyle3_Release(current_style3);
hres = IHTMLCurrentStyle_QueryInterface(current_style, &IID_IHTMLCurrentStyle4, (void**)&current_style4);
ok(hres == S_OK, "Could not get IHTMLCurrentStyle4 iface: %08x\n", hres);
hres = IHTMLCurrentStyle4_get_minWidth(current_style4, &v);
ok(hres == S_OK, "get_minWidth failed: %08x\n", hres);
ok(V_VT(&v) == VT_BSTR, "V_VT(minWidth) = %d\n", V_VT(&v));
VariantClear(&v);
IHTMLCurrentStyle4_Release(current_style4);
}
static const char basic_test_str[] = "<html><body><div id=\"divid\"></div/</body></html>";