{'m','a','r','g','i','n','-','l','e','f','t',0};
static const WCHAR attrMarginRight[] =
{'m','a','r','g','i','n','-','r','i','g','h','t',0};
+static const WCHAR attrOverflow[] =
+ {'o','v','e','r','f','l','o','w',0};
static const WCHAR attrPaddingLeft[] =
{'p','a','d','d','i','n','g','-','l','e','f','t',0};
static const WCHAR attrPosition[] =
{attrMargin, DISPID_IHTMLSTYLE_MARGIN},
{attrMarginLeft, DISPID_IHTMLSTYLE_MARGINLEFT},
{attrMarginRight, DISPID_IHTMLSTYLE_MARGINRIGHT},
+ {attrOverflow, DISPID_IHTMLSTYLE_OVERFLOW},
{attrPaddingLeft, DISPID_IHTMLSTYLE_PADDINGLEFT},
{attrPosition, DISPID_IHTMLSTYLE2_POSITION},
{attrTextAlign, DISPID_IHTMLSTYLE_TEXTALIGN},
static HRESULT WINAPI HTMLStyle_put_overflow(IHTMLStyle *iface, BSTR v)
{
HTMLStyle *This = HTMLSTYLE_THIS(iface);
- FIXME("(%p)->(%s)\n", This, debugstr_w(v));
- return E_NOTIMPL;
+ static const WCHAR szVisible[] = {'v','i','s','i','b','l','e',0};
+ static const WCHAR szScroll[] = {'s','c','r','o','l','l',0};
+ static const WCHAR szHidden[] = {'h','i','d','d','e','n',0};
+ static const WCHAR szAuto[] = {'a','u','t','o',0};
+
+ TRACE("(%p)->(%s)\n", This, debugstr_w(v));
+
+ /* overflow can only be one of the follow values. */
+ if(!v || strcmpiW(szVisible, v) == 0 || strcmpiW(szScroll, v) == 0 ||
+ strcmpiW(szHidden, v) == 0 || strcmpiW(szAuto, v) == 0)
+ {
+ return set_nsstyle_attr(This->nsstyle, STYLEID_OVERFLOW, v, 0);
+ }
+
+ return E_INVALIDARG;
}
+
static HRESULT WINAPI HTMLStyle_get_overflow(IHTMLStyle *iface, BSTR *p)
{
HTMLStyle *This = HTMLSTYLE_THIS(iface);
- FIXME("(%p)->(%p)\n", This, p);
- return E_NOTIMPL;
+
+ TRACE("(%p)->(%p)\n", This, p);
+
+ if(!p)
+ return E_INVALIDARG;
+
+ return get_style_attr(This, STYLEID_OVERFLOW, p);
}
static HRESULT WINAPI HTMLStyle_put_pageBreakBefore(IHTMLStyle *iface, BSTR v)
BSTR str;
HRESULT hres;
float f;
+ BSTR sOverflowDefault;
test_disp((IUnknown*)style, &DIID_DispHTMLStyle);
test_ifaces((IUnknown*)style, style_iids);
ok(V_I4(&v) == 1, "V_I4(v) = %d\n", V_I4(&v));
VariantClear(&v);
+ /* overflow */
+ hres = IHTMLStyle_get_overflow(style, NULL);
+ ok(hres == E_INVALIDARG, "get_overflow failed: %08x\n", hres);
+
+ hres = IHTMLStyle_get_overflow(style, &sOverflowDefault);
+ ok(hres == S_OK, "get_overflow failed: %08x\n", hres);
+
+ str = a2bstr("test");
+ hres = IHTMLStyle_put_overflow(style, str);
+ ok(hres == E_INVALIDARG, "put_overflow failed: %08x\n", hres);
+ SysFreeString(str);
+
+ str = a2bstr("visible");
+ hres = IHTMLStyle_put_overflow(style, str);
+ ok(hres == S_OK, "put_overflow failed: %08x\n", hres);
+ SysFreeString(str);
+
+ str = a2bstr("scroll");
+ hres = IHTMLStyle_put_overflow(style, str);
+ ok(hres == S_OK, "put_overflow failed: %08x\n", hres);
+ SysFreeString(str);
+
+ str = a2bstr("hidden");
+ hres = IHTMLStyle_put_overflow(style, str);
+ ok(hres == S_OK, "put_overflow failed: %08x\n", hres);
+ SysFreeString(str);
+
+ str = a2bstr("auto");
+ hres = IHTMLStyle_put_overflow(style, str);
+ ok(hres == S_OK, "put_overflow failed: %08x\n", hres);
+ SysFreeString(str);
+
+ hres = IHTMLStyle_get_overflow(style, &str);
+ ok(hres == S_OK, "get_overflow failed: %08x\n", hres);
+ ok(!strcmp_wa(str, "auto"), "str=%s\n", dbgstr_w(str));
+ SysFreeString(str);
+
+ /* restore overflow default */
+ hres = IHTMLStyle_put_overflow(style, sOverflowDefault);
+ ok(hres == S_OK, "put_overflow failed: %08x\n", hres);
+ SysFreeString(sOverflowDefault);
+
hres = IHTMLStyle_QueryInterface(style, &IID_IHTMLStyle2, (void**)&style2);
ok(hres == S_OK, "Could not get IHTMLStyle2 iface: %08x\n", hres);
if(SUCCEEDED(hres)) {