mshtml: Added IHTMLStyle::[get|put]_height implementation.
This commit is contained in:
parent
91cb239f33
commit
7a8043d399
|
@ -57,6 +57,8 @@ static const WCHAR attrFontStyle[] =
|
||||||
{'f','o','n','t','-','s','t','y','l','e',0};
|
{'f','o','n','t','-','s','t','y','l','e',0};
|
||||||
static const WCHAR attrFontWeight[] =
|
static const WCHAR attrFontWeight[] =
|
||||||
{'f','o','n','t','-','w','e','i','g','h','t',0};
|
{'f','o','n','t','-','w','e','i','g','h','t',0};
|
||||||
|
static const WCHAR attrHeight[] =
|
||||||
|
{'h','e','i','g','h','t',0};
|
||||||
static const WCHAR attrLeft[] =
|
static const WCHAR attrLeft[] =
|
||||||
{'l','e','f','t',0};
|
{'l','e','f','t',0};
|
||||||
static const WCHAR attrMargin[] =
|
static const WCHAR attrMargin[] =
|
||||||
|
@ -91,6 +93,7 @@ static const LPCWSTR style_strings[] = {
|
||||||
attrFontSize,
|
attrFontSize,
|
||||||
attrFontStyle,
|
attrFontStyle,
|
||||||
attrFontWeight,
|
attrFontWeight,
|
||||||
|
attrHeight,
|
||||||
attrLeft,
|
attrLeft,
|
||||||
attrMargin,
|
attrMargin,
|
||||||
attrMarginLeft,
|
attrMarginLeft,
|
||||||
|
@ -1329,15 +1332,35 @@ static HRESULT WINAPI HTMLStyle_get_width(IHTMLStyle *iface, VARIANT *p)
|
||||||
static HRESULT WINAPI HTMLStyle_put_height(IHTMLStyle *iface, VARIANT v)
|
static HRESULT WINAPI HTMLStyle_put_height(IHTMLStyle *iface, VARIANT v)
|
||||||
{
|
{
|
||||||
HTMLStyle *This = HTMLSTYLE_THIS(iface);
|
HTMLStyle *This = HTMLSTYLE_THIS(iface);
|
||||||
FIXME("(%p)->(v%d)\n", This, V_VT(&v));
|
|
||||||
|
TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
|
||||||
|
|
||||||
|
switch(V_VT(&v)) {
|
||||||
|
case VT_BSTR:
|
||||||
|
return set_style_attr(This, STYLEID_HEIGHT, V_BSTR(&v), 0);
|
||||||
|
default:
|
||||||
|
FIXME("unimplemented vt %d\n", V_VT(&v));
|
||||||
return E_NOTIMPL;
|
return E_NOTIMPL;
|
||||||
|
}
|
||||||
|
|
||||||
|
return S_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
static HRESULT WINAPI HTMLStyle_get_height(IHTMLStyle *iface, VARIANT *p)
|
static HRESULT WINAPI HTMLStyle_get_height(IHTMLStyle *iface, VARIANT *p)
|
||||||
{
|
{
|
||||||
HTMLStyle *This = HTMLSTYLE_THIS(iface);
|
HTMLStyle *This = HTMLSTYLE_THIS(iface);
|
||||||
FIXME("(%p)->(%p)\n", This, p);
|
BSTR ret;
|
||||||
return E_NOTIMPL;
|
HRESULT hres;
|
||||||
|
|
||||||
|
TRACE("(%p)->(%p)\n", This, p);
|
||||||
|
|
||||||
|
hres = get_style_attr(This, STYLEID_HEIGHT, &ret);
|
||||||
|
if(FAILED(hres))
|
||||||
|
return hres;
|
||||||
|
|
||||||
|
V_VT(p) = VT_BSTR;
|
||||||
|
V_BSTR(p) = ret;
|
||||||
|
return S_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
static HRESULT WINAPI HTMLStyle_put_styleFloat(IHTMLStyle *iface, BSTR v)
|
static HRESULT WINAPI HTMLStyle_put_styleFloat(IHTMLStyle *iface, BSTR v)
|
||||||
|
|
|
@ -43,6 +43,7 @@ typedef enum {
|
||||||
STYLEID_FONT_SIZE,
|
STYLEID_FONT_SIZE,
|
||||||
STYLEID_FONT_STYLE,
|
STYLEID_FONT_STYLE,
|
||||||
STYLEID_FONT_WEIGHT,
|
STYLEID_FONT_WEIGHT,
|
||||||
|
STYLEID_HEIGHT,
|
||||||
STYLEID_LEFT,
|
STYLEID_LEFT,
|
||||||
STYLEID_MARGIN,
|
STYLEID_MARGIN,
|
||||||
STYLEID_MARGIN_LEFT,
|
STYLEID_MARGIN_LEFT,
|
||||||
|
|
|
@ -2138,6 +2138,26 @@ static void test_default_style(IHTMLStyle *style)
|
||||||
ok(!strcmp_wa(V_BSTR(&v), "3px"), "V_BSTR(v) = %s\n", dbgstr_w(V_BSTR(&v)));
|
ok(!strcmp_wa(V_BSTR(&v), "3px"), "V_BSTR(v) = %s\n", dbgstr_w(V_BSTR(&v)));
|
||||||
VariantClear(&v);
|
VariantClear(&v);
|
||||||
|
|
||||||
|
V_VT(&v) = VT_EMPTY;
|
||||||
|
hres = IHTMLStyle_get_height(style, &v);
|
||||||
|
ok(hres == S_OK, "get_height failed: %08x\n", hres);
|
||||||
|
ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
|
||||||
|
ok(!V_BSTR(&v), "V_BSTR(v) != NULL\n");
|
||||||
|
VariantClear(&v);
|
||||||
|
|
||||||
|
V_VT(&v) = VT_BSTR;
|
||||||
|
V_BSTR(&v) = a2bstr("64px");
|
||||||
|
hres = IHTMLStyle_put_height(style, v);
|
||||||
|
ok(hres == S_OK, "put_height failed: %08x\n", hres);
|
||||||
|
VariantClear(&v);
|
||||||
|
|
||||||
|
V_VT(&v) = VT_EMPTY;
|
||||||
|
hres = IHTMLStyle_get_height(style, &v);
|
||||||
|
ok(hres == S_OK, "get_height failed: %08x\n", hres);
|
||||||
|
ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
|
||||||
|
ok(!strcmp_wa(V_BSTR(&v), "64px"), "V_BSTR(v) = %s\n", dbgstr_w(V_BSTR(&v)));
|
||||||
|
VariantClear(&v);
|
||||||
|
|
||||||
str = (void*)0xdeadbeef;
|
str = (void*)0xdeadbeef;
|
||||||
hres = IHTMLStyle_get_cursor(style, &str);
|
hres = IHTMLStyle_get_cursor(style, &str);
|
||||||
ok(hres == S_OK, "get_cursor failed: %08x\n", hres);
|
ok(hres == S_OK, "get_cursor failed: %08x\n", hres);
|
||||||
|
|
Loading…
Reference in New Issue