2011-07-20 15:34:43 +02:00
|
|
|
/*
|
|
|
|
* Copyright 2007-2011 Jacek Caban for CodeWeavers
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define COBJMACROS
|
|
|
|
#define CONST_VTABLE
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
|
|
|
#include "ole2.h"
|
|
|
|
#include "mshtml.h"
|
|
|
|
#include "mshtmhst.h"
|
|
|
|
#include "docobj.h"
|
2020-06-09 16:15:44 +02:00
|
|
|
#include "wine/test.h"
|
2011-07-20 15:34:43 +02:00
|
|
|
|
2018-08-28 12:45:49 +02:00
|
|
|
static BOOL is_ie9plus;
|
|
|
|
|
|
|
|
static enum {
|
|
|
|
COMPAT_NONE,
|
|
|
|
COMPAT_IE9
|
|
|
|
} compat_mode = COMPAT_NONE;
|
|
|
|
|
|
|
|
static const char doc_blank[] =
|
|
|
|
"<html></html>";
|
|
|
|
|
|
|
|
static const char doc_blank_ie9[] =
|
|
|
|
"<!DOCTYPE html>\n"
|
|
|
|
"<html>"
|
|
|
|
" <head>"
|
|
|
|
" <meta http-equiv=\"x-ua-compatible\" content=\"IE=9\" />"
|
|
|
|
" </head>"
|
|
|
|
" <body>"
|
|
|
|
" </body>"
|
|
|
|
"</html>";
|
|
|
|
|
2012-04-16 13:48:22 +02:00
|
|
|
#define test_var_bstr(a,b) _test_var_bstr(__LINE__,a,b)
|
2020-01-30 20:37:38 +01:00
|
|
|
static void _test_var_bstr(unsigned line, const VARIANT *v, const WCHAR *expect)
|
2012-04-16 13:48:22 +02:00
|
|
|
{
|
|
|
|
ok_(__FILE__,line)(V_VT(v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(v));
|
|
|
|
if(expect)
|
2020-01-30 20:37:38 +01:00
|
|
|
ok_(__FILE__,line)(!lstrcmpW(V_BSTR(v), expect), "V_BSTR(v) = %s, expected %s\n", wine_dbgstr_w(V_BSTR(v)), wine_dbgstr_w(expect));
|
2012-04-16 13:48:22 +02:00
|
|
|
else
|
|
|
|
ok_(__FILE__,line)(!V_BSTR(v), "V_BSTR(v) = %s, expected NULL\n", wine_dbgstr_w(V_BSTR(v)));
|
|
|
|
}
|
|
|
|
|
2012-03-16 12:18:19 +01:00
|
|
|
#define get_elem2_iface(u) _get_elem2_iface(__LINE__,u)
|
|
|
|
static IHTMLElement2 *_get_elem2_iface(unsigned line, IUnknown *unk)
|
|
|
|
{
|
|
|
|
IHTMLElement2 *elem;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
hres = IUnknown_QueryInterface(unk, &IID_IHTMLElement2, (void**)&elem);
|
|
|
|
ok_(__FILE__,line) (hres == S_OK, "Could not get IHTMLElement2: %08x\n", hres);
|
|
|
|
return elem;
|
|
|
|
}
|
|
|
|
|
2013-08-22 15:58:47 +02:00
|
|
|
#define get_current_style2_iface(u) _get_current_style2_iface(__LINE__,u)
|
|
|
|
static IHTMLCurrentStyle2 *_get_current_style2_iface(unsigned line, IUnknown *unk)
|
|
|
|
{
|
|
|
|
IHTMLCurrentStyle2 *current_style2;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
hres = IUnknown_QueryInterface(unk, &IID_IHTMLCurrentStyle2, (void**)¤t_style2);
|
|
|
|
ok_(__FILE__,line) (hres == S_OK, "Could not get IHTMLElement2: %08x\n", hres);
|
|
|
|
return current_style2;
|
|
|
|
}
|
|
|
|
|
2018-08-28 12:45:49 +02:00
|
|
|
#define elem_set_innerhtml(e,t) _elem_set_innerhtml(__LINE__,e,t)
|
2020-01-30 20:37:28 +01:00
|
|
|
static void _elem_set_innerhtml(unsigned line, IHTMLElement *elem, const WCHAR *inner_html)
|
2018-08-28 12:45:49 +02:00
|
|
|
{
|
|
|
|
BSTR html;
|
|
|
|
HRESULT hres;
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
html = SysAllocString(inner_html);
|
2018-08-28 12:45:49 +02:00
|
|
|
hres = IHTMLElement_put_innerHTML(elem, html);
|
|
|
|
ok_(__FILE__,line)(hres == S_OK, "put_innerHTML failed: %08x\n", hres);
|
|
|
|
SysFreeString(html);
|
|
|
|
}
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
static IHTMLElement *get_element_by_id(IHTMLDocument2 *doc, const WCHAR *id)
|
2011-07-20 15:34:43 +02:00
|
|
|
{
|
|
|
|
HRESULT hres;
|
|
|
|
IHTMLDocument3 *doc3;
|
|
|
|
IHTMLElement *result;
|
2020-01-30 20:37:28 +01:00
|
|
|
BSTR str;
|
2011-07-20 15:34:43 +02:00
|
|
|
|
|
|
|
hres = IHTMLDocument2_QueryInterface(doc, &IID_IHTMLDocument3, (void**)&doc3);
|
|
|
|
ok(hres == S_OK, "QueryInterface(IID_IHTMLDocument3) failed: %08x\n", hres);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(id);
|
|
|
|
hres = IHTMLDocument3_getElementById(doc3, str, &result);
|
2011-07-20 15:34:43 +02:00
|
|
|
ok(hres == S_OK, "getElementById failed: %08x\n", hres);
|
|
|
|
ok(result != NULL, "result == NULL\n");
|
2020-01-30 20:37:28 +01:00
|
|
|
SysFreeString(str);
|
2011-07-20 15:34:43 +02:00
|
|
|
|
|
|
|
IHTMLDocument3_Release(doc3);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define get_current_style(e) _get_current_style(__LINE__,e)
|
|
|
|
static IHTMLCurrentStyle *_get_current_style(unsigned line, IHTMLElement *elem)
|
|
|
|
{
|
|
|
|
IHTMLCurrentStyle *cstyle;
|
|
|
|
IHTMLElement2 *elem2;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
hres = IHTMLElement_QueryInterface(elem, &IID_IHTMLElement2, (void**)&elem2);
|
|
|
|
ok(hres == S_OK, "Could not get IHTMLElement2 iface: %08x\n", hres);
|
|
|
|
|
|
|
|
cstyle = NULL;
|
|
|
|
hres = IHTMLElement2_get_currentStyle(elem2, &cstyle);
|
|
|
|
ok(hres == S_OK, "get_currentStyle failed: %08x\n", hres);
|
|
|
|
ok(cstyle != NULL, "cstyle = %p\n", cstyle);
|
|
|
|
|
|
|
|
IHTMLElement2_Release(elem2);
|
|
|
|
return cstyle;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define test_border_styles(p, n) _test_border_styles(__LINE__, p, n)
|
|
|
|
static void _test_border_styles(unsigned line, IHTMLStyle *pStyle, BSTR Name)
|
|
|
|
{
|
|
|
|
HRESULT hres;
|
|
|
|
DISPID dispid;
|
|
|
|
|
|
|
|
hres = IHTMLStyle_GetIDsOfNames(pStyle, &IID_NULL, &Name, 1,
|
|
|
|
LOCALE_USER_DEFAULT, &dispid);
|
|
|
|
ok_(__FILE__,line) (hres == S_OK, "GetIDsOfNames: %08x\n", hres);
|
|
|
|
if(hres == S_OK)
|
|
|
|
{
|
|
|
|
DISPPARAMS params = {NULL,NULL,0,0};
|
|
|
|
DISPID dispidNamed = DISPID_PROPERTYPUT;
|
|
|
|
VARIANT ret;
|
|
|
|
VARIANT vDefault;
|
|
|
|
VARIANTARG arg;
|
|
|
|
|
|
|
|
hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
|
|
|
|
DISPATCH_PROPERTYGET, ¶ms, &vDefault, NULL, NULL);
|
|
|
|
ok_(__FILE__,line) (hres == S_OK, "get_default. ret: %08x\n", hres);
|
|
|
|
|
|
|
|
params.cArgs = 1;
|
|
|
|
params.cNamedArgs = 1;
|
|
|
|
params.rgdispidNamedArgs = &dispidNamed;
|
|
|
|
V_VT(&arg) = VT_BSTR;
|
2020-01-30 20:37:28 +01:00
|
|
|
V_BSTR(&arg) = SysAllocString(L"none");
|
2011-07-20 15:34:43 +02:00
|
|
|
params.rgvarg = &arg;
|
|
|
|
hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
|
|
|
|
DISPATCH_PROPERTYPUT, ¶ms, &ret, NULL, NULL);
|
|
|
|
ok_(__FILE__,line) (hres == S_OK, "none. ret: %08x\n", hres);
|
|
|
|
VariantClear(&arg);
|
|
|
|
|
|
|
|
V_VT(&arg) = VT_BSTR;
|
2020-01-30 20:37:28 +01:00
|
|
|
V_BSTR(&arg) = SysAllocString(L"dotted");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
|
|
|
|
DISPATCH_PROPERTYPUT, ¶ms, &ret, NULL, NULL);
|
|
|
|
ok_(__FILE__,line) (hres == S_OK, "dotted. ret: %08x\n", hres);
|
|
|
|
VariantClear(&arg);
|
|
|
|
|
|
|
|
V_VT(&arg) = VT_BSTR;
|
2020-01-30 20:37:28 +01:00
|
|
|
V_BSTR(&arg) = SysAllocString(L"dashed");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
|
|
|
|
DISPATCH_PROPERTYPUT, ¶ms, &ret, NULL, NULL);
|
|
|
|
ok_(__FILE__,line) (hres == S_OK, "dashed. ret: %08x\n", hres);
|
|
|
|
VariantClear(&arg);
|
|
|
|
|
|
|
|
V_VT(&arg) = VT_BSTR;
|
2020-01-30 20:37:28 +01:00
|
|
|
V_BSTR(&arg) = SysAllocString(L"solid");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
|
|
|
|
DISPATCH_PROPERTYPUT, ¶ms, &ret, NULL, NULL);
|
|
|
|
ok_(__FILE__,line) (hres == S_OK, "solid. ret: %08x\n", hres);
|
|
|
|
VariantClear(&arg);
|
|
|
|
|
|
|
|
V_VT(&arg) = VT_BSTR;
|
2020-01-30 20:37:28 +01:00
|
|
|
V_BSTR(&arg) = SysAllocString(L"double");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
|
|
|
|
DISPATCH_PROPERTYPUT, ¶ms, &ret, NULL, NULL);
|
|
|
|
ok_(__FILE__,line) (hres == S_OK, "double. ret: %08x\n", hres);
|
|
|
|
VariantClear(&arg);
|
|
|
|
|
|
|
|
V_VT(&arg) = VT_BSTR;
|
2020-01-30 20:37:28 +01:00
|
|
|
V_BSTR(&arg) = SysAllocString(L"groove");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
|
|
|
|
DISPATCH_PROPERTYPUT, ¶ms, &ret, NULL, NULL);
|
|
|
|
ok_(__FILE__,line) (hres == S_OK, "groove. ret: %08x\n", hres);
|
|
|
|
VariantClear(&arg);
|
|
|
|
|
|
|
|
V_VT(&arg) = VT_BSTR;
|
2020-01-30 20:37:28 +01:00
|
|
|
V_BSTR(&arg) = SysAllocString(L"ridge");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
|
|
|
|
DISPATCH_PROPERTYPUT, ¶ms, &ret, NULL, NULL);
|
|
|
|
ok_(__FILE__,line) (hres == S_OK, "ridge. ret: %08x\n", hres);
|
|
|
|
VariantClear(&arg);
|
|
|
|
|
|
|
|
V_VT(&arg) = VT_BSTR;
|
2020-01-30 20:37:28 +01:00
|
|
|
V_BSTR(&arg) = SysAllocString(L"inset");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
|
|
|
|
DISPATCH_PROPERTYPUT, ¶ms, &ret, NULL, NULL);
|
|
|
|
ok_(__FILE__,line) (hres == S_OK, "inset. ret: %08x\n", hres);
|
|
|
|
VariantClear(&arg);
|
|
|
|
|
|
|
|
V_VT(&arg) = VT_BSTR;
|
2020-01-30 20:37:28 +01:00
|
|
|
V_BSTR(&arg) = SysAllocString(L"outset");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
|
|
|
|
DISPATCH_PROPERTYPUT, ¶ms, &ret, NULL, NULL);
|
|
|
|
ok_(__FILE__,line) (hres == S_OK, "outset. ret: %08x\n", hres);
|
|
|
|
VariantClear(&arg);
|
|
|
|
|
|
|
|
V_VT(&arg) = VT_BSTR;
|
2020-01-30 20:37:28 +01:00
|
|
|
V_BSTR(&arg) = SysAllocString(L"invalid");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
|
|
|
|
DISPATCH_PROPERTYPUT, ¶ms, &ret, NULL, NULL);
|
2018-08-28 12:45:49 +02:00
|
|
|
if(compat_mode < COMPAT_IE9)
|
|
|
|
ok_(__FILE__,line) (FAILED(hres), "invalid value passed.\n");
|
|
|
|
else
|
|
|
|
ok_(__FILE__,line) (hres == S_OK, "invalid value returned: %08x\n", hres);
|
2011-07-20 15:34:43 +02:00
|
|
|
VariantClear(&arg);
|
|
|
|
|
|
|
|
params.rgvarg = &vDefault;
|
|
|
|
hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
|
|
|
|
DISPATCH_PROPERTYPUT, ¶ms, &ret, NULL, NULL);
|
|
|
|
ok_(__FILE__,line) (hres == S_OK, "default. ret: %08x\n", hres);
|
|
|
|
VariantClear(&vDefault);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#define test_style_csstext(s,t) _test_style_csstext(__LINE__,s,t)
|
2020-01-30 20:37:38 +01:00
|
|
|
static void _test_style_csstext(unsigned line, IHTMLStyle *style, const WCHAR *extext)
|
2011-07-20 15:34:43 +02:00
|
|
|
{
|
|
|
|
BSTR text = (void*)0xdeadbeef;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_cssText(style, &text);
|
|
|
|
ok_(__FILE__,line)(hres == S_OK, "get_cssText failed: %08x\n", hres);
|
|
|
|
if(extext)
|
2020-01-30 20:37:38 +01:00
|
|
|
ok_(__FILE__,line)(!lstrcmpW(text, extext), "cssText = %s\n", wine_dbgstr_w(text));
|
2011-07-20 15:34:43 +02:00
|
|
|
else
|
|
|
|
ok_(__FILE__,line)(!text, "cssText = %s\n", wine_dbgstr_w(text));
|
|
|
|
|
|
|
|
SysFreeString(text);
|
|
|
|
}
|
|
|
|
|
|
|
|
#define test_style_set_csstext(s,t) _test_style_set_csstext(__LINE__,s,t)
|
2020-01-30 20:37:28 +01:00
|
|
|
static void _test_style_set_csstext(unsigned line, IHTMLStyle *style, const WCHAR *text)
|
2011-07-20 15:34:43 +02:00
|
|
|
{
|
2020-01-30 20:37:28 +01:00
|
|
|
BSTR str;
|
2011-07-20 15:34:43 +02:00
|
|
|
HRESULT hres;
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(text);
|
|
|
|
hres = IHTMLStyle_put_cssText(style, str);
|
2011-07-20 15:34:43 +02:00
|
|
|
ok_(__FILE__,line)(hres == S_OK, "put_cssText failed: %08x\n", hres);
|
2020-01-30 20:37:28 +01:00
|
|
|
SysFreeString(str);
|
2011-07-20 15:34:43 +02:00
|
|
|
}
|
|
|
|
|
2012-04-16 13:49:22 +02:00
|
|
|
#define test_style_remove_attribute(a,b,c) _test_style_remove_attribute(__LINE__,a,b,c)
|
2020-01-30 20:37:28 +01:00
|
|
|
static void _test_style_remove_attribute(unsigned line, IHTMLStyle *style, const WCHAR *attr, VARIANT_BOOL exb)
|
2012-04-16 13:49:22 +02:00
|
|
|
{
|
2020-01-30 20:37:28 +01:00
|
|
|
BSTR str;
|
2012-04-16 13:49:22 +02:00
|
|
|
VARIANT_BOOL b = 100;
|
|
|
|
HRESULT hres;
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(attr);
|
2012-04-16 13:49:22 +02:00
|
|
|
hres = IHTMLStyle_removeAttribute(style, str, 1, &b);
|
|
|
|
SysFreeString(str);
|
|
|
|
ok_(__FILE__,line)(hres == S_OK, "removeAttribute failed: %08x\n", hres);
|
|
|
|
ok_(__FILE__,line)(b == exb, "removeAttribute returned %x, expected %x\n", b, exb);
|
|
|
|
}
|
|
|
|
|
2012-07-25 15:16:29 +02:00
|
|
|
#define set_text_decoration(a,b) _set_text_decoration(__LINE__,a,b)
|
2020-01-30 20:37:28 +01:00
|
|
|
static void _set_text_decoration(unsigned line, IHTMLStyle *style, const WCHAR *v)
|
2012-07-25 15:16:29 +02:00
|
|
|
{
|
|
|
|
BSTR str;
|
|
|
|
HRESULT hres;
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(v);
|
2012-07-25 15:16:29 +02:00
|
|
|
hres = IHTMLStyle_put_textDecoration(style, str);
|
|
|
|
ok_(__FILE__,line)(hres == S_OK, "put_textDecoration failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
}
|
|
|
|
|
|
|
|
#define test_text_decoration(a,b) _test_text_decoration(__LINE__,a,b)
|
2020-01-30 20:37:38 +01:00
|
|
|
static void _test_text_decoration(unsigned line, IHTMLStyle *style, const WCHAR *exdec)
|
2012-07-25 15:16:29 +02:00
|
|
|
{
|
|
|
|
BSTR str;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_textDecoration(style, &str);
|
|
|
|
ok_(__FILE__,line)(hres == S_OK, "get_textDecoration failed: %08x\n", hres);
|
|
|
|
if(exdec)
|
2020-01-30 20:37:38 +01:00
|
|
|
ok_(__FILE__,line)(!lstrcmpW(str, exdec), "textDecoration = %s, expected %s\n", wine_dbgstr_w(str), wine_dbgstr_w(exdec));
|
2012-07-25 15:16:29 +02:00
|
|
|
else
|
|
|
|
ok_(__FILE__,line)(!str, "textDecoration = %s, expected NULL\n", wine_dbgstr_w(str));
|
|
|
|
SysFreeString(str);
|
|
|
|
}
|
|
|
|
|
2011-07-20 15:34:43 +02:00
|
|
|
static void test_set_csstext(IHTMLStyle *style)
|
|
|
|
{
|
2018-09-07 14:44:50 +02:00
|
|
|
IHTMLCSSStyleDeclaration *css_style;
|
2011-07-20 15:34:43 +02:00
|
|
|
VARIANT v;
|
2018-09-07 14:44:50 +02:00
|
|
|
BSTR str;
|
2011-07-20 15:34:43 +02:00
|
|
|
HRESULT hres;
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
test_style_set_csstext(style, L"background-color: black;");
|
2011-07-20 15:34:43 +02:00
|
|
|
|
|
|
|
hres = IHTMLStyle_get_backgroundColor(style, &v);
|
|
|
|
ok(hres == S_OK, "get_backgroundColor: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "type failed: %d\n", V_VT(&v));
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"black"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2011-07-20 15:34:43 +02:00
|
|
|
VariantClear(&v);
|
2018-09-07 14:44:50 +02:00
|
|
|
|
|
|
|
hres = IHTMLStyle_QueryInterface(style, &IID_IHTMLCSSStyleDeclaration, (void**)&css_style);
|
|
|
|
ok(hres == S_OK || broken(!is_ie9plus && hres == E_NOINTERFACE),
|
|
|
|
"Could not get IHTMLCSSStyleDeclaration interface: %08x\n", hres);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return;
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"float: left;");
|
2018-09-07 14:44:50 +02:00
|
|
|
hres = IHTMLCSSStyleDeclaration_put_cssText(css_style, str);
|
|
|
|
ok(hres == S_OK, "put_cssText failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
hres = IHTMLCSSStyleDeclaration_get_cssFloat(css_style, &str);
|
2018-09-07 14:45:03 +02:00
|
|
|
ok(hres == S_OK, "get_cssFloat failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"left"), "cssFloat = %s\n", wine_dbgstr_w(str));
|
2018-09-07 14:44:50 +02:00
|
|
|
SysFreeString(str);
|
|
|
|
|
2018-09-07 14:45:03 +02:00
|
|
|
hres = IHTMLCSSStyleDeclaration_get_cssText(css_style, &str);
|
|
|
|
ok(hres == S_OK, "get_cssText failed: %08x\n", hres);
|
|
|
|
todo_wine_if(compat_mode < COMPAT_IE9)
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, compat_mode >= COMPAT_IE9 ? L"float: left;" : L"FLOAT: left"),
|
2018-09-07 14:45:03 +02:00
|
|
|
"cssFloat = %s\n", wine_dbgstr_w(str));
|
|
|
|
SysFreeString(str);
|
|
|
|
|
2018-09-07 14:44:50 +02:00
|
|
|
hres = IHTMLCSSStyleDeclaration_put_cssText(css_style, NULL);
|
|
|
|
ok(hres == S_OK, "put_cssText failed: %08x\n", hres);
|
|
|
|
|
|
|
|
IHTMLCSSStyleDeclaration_Release(css_style);
|
2011-07-20 15:34:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void test_style2(IHTMLStyle2 *style2)
|
|
|
|
{
|
|
|
|
VARIANT v;
|
|
|
|
BSTR str;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
str = (void*)0xdeadbeef;
|
|
|
|
hres = IHTMLStyle2_get_position(style2, &str);
|
|
|
|
ok(hres == S_OK, "get_position failed: %08x\n", hres);
|
|
|
|
ok(!str, "str != NULL\n");
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"absolute");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle2_put_position(style2, str);
|
|
|
|
ok(hres == S_OK, "put_position failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
str = NULL;
|
|
|
|
hres = IHTMLStyle2_get_position(style2, &str);
|
|
|
|
ok(hres == S_OK, "get_position failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"absolute"), "get_position returned %s\n", wine_dbgstr_w(str));
|
2011-07-20 15:34:43 +02:00
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
/* Test right */
|
|
|
|
V_VT(&v) = VT_EMPTY;
|
|
|
|
hres = IHTMLStyle2_get_right(style2, &v);
|
|
|
|
ok(hres == S_OK, "get_top failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(right)=%d\n", V_VT(&v));
|
|
|
|
ok(!V_BSTR(&v), "V_BSTR(right) != NULL\n");
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_BSTR;
|
2020-01-30 20:37:28 +01:00
|
|
|
V_BSTR(&v) = SysAllocString(L"3px");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle2_put_right(style2, v);
|
|
|
|
ok(hres == S_OK, "put_right failed: %08x\n", hres);
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_EMPTY;
|
|
|
|
hres = IHTMLStyle2_get_right(style2, &v);
|
|
|
|
ok(hres == S_OK, "get_right failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"3px"), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2011-07-20 15:34:43 +02:00
|
|
|
VariantClear(&v);
|
2011-07-22 11:40:17 +02:00
|
|
|
|
|
|
|
/* direction */
|
|
|
|
str = (void*)0xdeadbeef;
|
|
|
|
hres = IHTMLStyle2_get_direction(style2, &str);
|
|
|
|
ok(hres == S_OK, "get_direction failed: %08x\n", hres);
|
|
|
|
ok(!str, "str = %s\n", wine_dbgstr_w(str));
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"ltr");
|
2011-07-22 11:40:17 +02:00
|
|
|
hres = IHTMLStyle2_put_direction(style2, str);
|
|
|
|
ok(hres == S_OK, "put_direction failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
str = NULL;
|
|
|
|
hres = IHTMLStyle2_get_direction(style2, &str);
|
|
|
|
ok(hres == S_OK, "get_direction failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"ltr"), "str = %s\n", wine_dbgstr_w(str));
|
2011-07-22 11:40:17 +02:00
|
|
|
SysFreeString(str);
|
2012-04-16 13:48:22 +02:00
|
|
|
|
|
|
|
/* bottom */
|
|
|
|
V_VT(&v) = VT_EMPTY;
|
|
|
|
hres = IHTMLStyle2_get_bottom(style2, &v);
|
|
|
|
ok(hres == S_OK, "get_bottom failed: %08x\n", hres);
|
|
|
|
test_var_bstr(&v, NULL);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_I4;
|
|
|
|
V_I4(&v) = 4;
|
|
|
|
hres = IHTMLStyle2_put_bottom(style2, v);
|
|
|
|
ok(hres == S_OK, "put_bottom failed: %08x\n", hres);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_EMPTY;
|
|
|
|
hres = IHTMLStyle2_get_bottom(style2, &v);
|
|
|
|
ok(hres == S_OK, "get_bottom failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
test_var_bstr(&v, compat_mode < COMPAT_IE9 ? L"4px" : NULL);
|
2012-04-17 12:41:27 +02:00
|
|
|
|
|
|
|
/* overflowX */
|
|
|
|
str = (void*)0xdeadbeef;
|
|
|
|
hres = IHTMLStyle2_get_overflowX(style2, &str);
|
|
|
|
ok(hres == S_OK, "get_overflowX failed: %08x\n", hres);
|
|
|
|
ok(!str, "overflowX = %s\n", wine_dbgstr_w(str));
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"hidden");
|
2012-04-17 12:41:27 +02:00
|
|
|
hres = IHTMLStyle2_put_overflowX(style2, str);
|
|
|
|
ok(hres == S_OK, "put_overflowX failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
str = NULL;
|
|
|
|
hres = IHTMLStyle2_get_overflowX(style2, &str);
|
|
|
|
ok(hres == S_OK, "get_overflowX failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"hidden"), "overflowX = %s\n", wine_dbgstr_w(str));
|
2012-04-17 12:41:40 +02:00
|
|
|
|
|
|
|
/* overflowY */
|
|
|
|
str = (void*)0xdeadbeef;
|
|
|
|
hres = IHTMLStyle2_get_overflowY(style2, &str);
|
|
|
|
ok(hres == S_OK, "get_overflowY failed: %08x\n", hres);
|
|
|
|
ok(!str, "overflowY = %s\n", wine_dbgstr_w(str));
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"hidden");
|
2012-04-17 12:41:40 +02:00
|
|
|
hres = IHTMLStyle2_put_overflowY(style2, str);
|
|
|
|
ok(hres == S_OK, "put_overflowY failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
str = NULL;
|
|
|
|
hres = IHTMLStyle2_get_overflowY(style2, &str);
|
|
|
|
ok(hres == S_OK, "get_overflowY failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"hidden"), "overflowX = %s\n", wine_dbgstr_w(str));
|
2014-08-18 17:30:46 +02:00
|
|
|
|
|
|
|
/* tableLayout */
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"fixed");
|
2014-08-18 17:30:46 +02:00
|
|
|
hres = IHTMLStyle2_put_tableLayout(style2, str);
|
|
|
|
ok(hres == S_OK, "put_tableLayout failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
str = (void*)0xdeadbeef;
|
|
|
|
hres = IHTMLStyle2_get_tableLayout(style2, &str);
|
|
|
|
ok(hres == S_OK, "get_tableLayout failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"fixed"), "tableLayout = %s\n", wine_dbgstr_w(str));
|
2014-08-18 17:30:46 +02:00
|
|
|
SysFreeString(str);
|
2019-02-07 18:32:22 +01:00
|
|
|
|
|
|
|
/* borderCollapse */
|
|
|
|
str = (void*)0xdeadbeef;
|
|
|
|
hres = IHTMLStyle2_get_borderCollapse(style2, &str);
|
|
|
|
ok(hres == S_OK, "get_borderCollapse failed: %08x\n", hres);
|
|
|
|
ok(!str, "borderCollapse = %s\n", wine_dbgstr_w(str));
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"separate");
|
2019-02-07 18:32:22 +01:00
|
|
|
hres = IHTMLStyle2_put_borderCollapse(style2, str);
|
|
|
|
ok(hres == S_OK, "put_borderCollapse failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
hres = IHTMLStyle2_get_borderCollapse(style2, &str);
|
|
|
|
ok(hres == S_OK, "get_borderCollapse failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"separate"), "borderCollapse = %s\n", wine_dbgstr_w(str));
|
2019-02-07 18:32:22 +01:00
|
|
|
SysFreeString(str);
|
2011-07-20 15:34:43 +02:00
|
|
|
}
|
|
|
|
|
2018-09-06 16:15:19 +02:00
|
|
|
static void test_style3(IHTMLStyle3 *style3, IHTMLCSSStyleDeclaration *css_style)
|
2011-07-20 15:34:43 +02:00
|
|
|
{
|
2014-12-15 19:13:23 +01:00
|
|
|
VARIANT v;
|
2011-07-20 15:34:43 +02:00
|
|
|
BSTR str;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
str = (void*)0xdeadbeef;
|
|
|
|
hres = IHTMLStyle3_get_wordWrap(style3, &str);
|
|
|
|
ok(hres == S_OK, "get_wordWrap failed: %08x\n", hres);
|
|
|
|
ok(!str, "str != NULL\n");
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"break-word");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle3_put_wordWrap(style3, str);
|
|
|
|
ok(hres == S_OK, "put_wordWrap failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
str = NULL;
|
|
|
|
hres = IHTMLStyle3_get_wordWrap(style3, &str);
|
|
|
|
ok(hres == S_OK, "get_wordWrap failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"break-word"), "get_wordWrap returned %s\n", wine_dbgstr_w(str));
|
2011-07-20 15:34:43 +02:00
|
|
|
SysFreeString(str);
|
2014-12-15 19:13:23 +01:00
|
|
|
|
|
|
|
V_VT(&v) = VT_ERROR;
|
|
|
|
hres = IHTMLStyle3_get_zoom(style3, &v);
|
|
|
|
ok(hres == S_OK, "get_zoom failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(zoom) = %d\n", V_VT(&v));
|
|
|
|
ok(!V_BSTR(&v), "V_BSTR(zoom) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_BSTR;
|
2020-01-30 20:37:28 +01:00
|
|
|
V_BSTR(&v) = SysAllocString(L"100%");
|
2014-12-15 19:13:23 +01:00
|
|
|
hres = IHTMLStyle3_put_zoom(style3, v);
|
|
|
|
ok(hres == S_OK, "put_zoom failed: %08x\n", hres);
|
2018-09-06 16:15:19 +02:00
|
|
|
VariantClear(&v);
|
2014-12-15 19:13:23 +01:00
|
|
|
|
|
|
|
V_VT(&v) = VT_ERROR;
|
|
|
|
hres = IHTMLStyle3_get_zoom(style3, &v);
|
|
|
|
ok(hres == S_OK, "get_zoom failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(zoom) = %d\n", V_VT(&v));
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"100%"), "V_BSTR(zoom) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2014-12-15 19:13:23 +01:00
|
|
|
VariantClear(&v);
|
|
|
|
|
2018-09-06 16:15:19 +02:00
|
|
|
if(css_style) {
|
|
|
|
hres = IHTMLCSSStyleDeclaration_get_zoom(css_style, &v);
|
|
|
|
ok(hres == S_OK, "get_zoom failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
test_var_bstr(&v, L"100%");
|
2018-09-06 16:15:19 +02:00
|
|
|
VariantClear(&v);
|
|
|
|
}
|
|
|
|
|
2014-12-15 19:13:23 +01:00
|
|
|
V_VT(&v) = VT_I4;
|
|
|
|
V_I4(&v) = 1;
|
|
|
|
hres = IHTMLStyle3_put_zoom(style3, v);
|
|
|
|
ok(hres == S_OK, "put_zoom failed: %08x\n", hres);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_ERROR;
|
|
|
|
hres = IHTMLStyle3_get_zoom(style3, &v);
|
|
|
|
ok(hres == S_OK, "get_zoom failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(zoom) = %d\n", V_VT(&v));
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"1"), "V_BSTR(zoom) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2014-12-15 19:13:23 +01:00
|
|
|
VariantClear(&v);
|
2018-09-06 16:15:19 +02:00
|
|
|
|
|
|
|
if(css_style) {
|
|
|
|
V_VT(&v) = VT_BSTR;
|
2020-01-30 20:37:28 +01:00
|
|
|
V_BSTR(&v) = SysAllocString(L"100%");
|
2018-09-06 16:15:19 +02:00
|
|
|
hres = IHTMLCSSStyleDeclaration_put_zoom(css_style, v);
|
|
|
|
ok(hres == S_OK, "put_zoom failed: %08x\n", hres);
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLCSSStyleDeclaration_get_zoom(css_style, &v);
|
|
|
|
ok(hres == S_OK, "get_zoom failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
test_var_bstr(&v, L"100%");
|
2018-09-06 16:15:19 +02:00
|
|
|
VariantClear(&v);
|
|
|
|
}
|
2011-07-20 15:34:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void test_style4(IHTMLStyle4 *style4)
|
|
|
|
{
|
|
|
|
HRESULT hres;
|
|
|
|
VARIANT v;
|
|
|
|
VARIANT vdefault;
|
|
|
|
|
|
|
|
hres = IHTMLStyle4_get_minHeight(style4, &vdefault);
|
|
|
|
ok(hres == S_OK, "get_minHeight failed: %08x\n", hres);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_BSTR;
|
2020-01-30 20:37:28 +01:00
|
|
|
V_BSTR(&v) = SysAllocString(L"10px");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle4_put_minHeight(style4, v);
|
|
|
|
ok(hres == S_OK, "put_minHeight failed: %08x\n", hres);
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLStyle4_get_minHeight(style4, &v);
|
|
|
|
ok(hres == S_OK, "get_minHeight failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
|
2020-01-30 20:37:38 +01:00
|
|
|
ok( !lstrcmpW(V_BSTR(&v), L"10px"), "expect 10px got (%s)\n", wine_dbgstr_w(V_BSTR(&v)));
|
2011-07-20 15:34:43 +02:00
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLStyle4_put_minHeight(style4, vdefault);
|
|
|
|
ok(hres == S_OK, "put_minHeight failed: %08x\n", hres);
|
|
|
|
VariantClear(&vdefault);
|
|
|
|
}
|
|
|
|
|
2014-09-02 04:20:01 +02:00
|
|
|
static void test_style5(IHTMLStyle5 *style5)
|
|
|
|
{
|
|
|
|
HRESULT hres;
|
|
|
|
VARIANT v;
|
|
|
|
VARIANT vdefault;
|
|
|
|
|
|
|
|
/* minWidth */
|
|
|
|
hres = IHTMLStyle5_get_minWidth(style5, &vdefault);
|
|
|
|
ok(hres == S_OK, "get_minWidth failed: %08x\n", hres);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_BSTR;
|
2020-01-30 20:37:28 +01:00
|
|
|
V_BSTR(&v) = SysAllocString(L"12px");
|
2014-09-02 04:20:01 +02:00
|
|
|
hres = IHTMLStyle5_put_minWidth(style5, v);
|
|
|
|
ok(hres == S_OK, "put_minWidth failed: %08x\n", hres);
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLStyle5_get_minWidth(style5, &v);
|
|
|
|
ok(hres == S_OK, "get_minWidth failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"12px"), "expect 12px got (%s)\n", wine_dbgstr_w(V_BSTR(&v)));
|
2014-09-02 04:20:01 +02:00
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_BSTR;
|
2020-01-30 20:37:28 +01:00
|
|
|
V_BSTR(&v) = SysAllocString(L"10%");
|
2014-09-02 04:20:01 +02:00
|
|
|
hres = IHTMLStyle5_put_minWidth(style5, v);
|
|
|
|
ok(hres == S_OK, "put_minWidth failed: %08x\n", hres);
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLStyle5_get_minWidth(style5, &v);
|
|
|
|
ok(hres == S_OK, "get_minWidth failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"10%"), "expect 10%% got (%s)\n", wine_dbgstr_w(V_BSTR(&v)));
|
2014-09-02 04:20:01 +02:00
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_BSTR;
|
2020-01-30 20:37:28 +01:00
|
|
|
V_BSTR(&v) = SysAllocString(L"10");
|
2014-09-02 04:20:01 +02:00
|
|
|
hres = IHTMLStyle5_put_minWidth(style5, v);
|
|
|
|
ok(hres == S_OK, "put_minWidth failed: %08x\n", hres);
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLStyle5_get_minWidth(style5, &v);
|
|
|
|
ok(hres == S_OK, "get_minWidth failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
test_var_bstr(&v, compat_mode < COMPAT_IE9 ? L"10px" : L"10%");
|
2014-09-02 04:20:01 +02:00
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLStyle5_put_minWidth(style5, vdefault);
|
|
|
|
ok(hres == S_OK, "put_minWidth failed: %08x\n", hres);
|
|
|
|
VariantClear(&vdefault);
|
2014-11-04 18:32:42 +01:00
|
|
|
|
|
|
|
/* maxWidth */
|
|
|
|
hres = IHTMLStyle5_get_maxWidth(style5, &vdefault);
|
|
|
|
ok(hres == S_OK, "get_maxWidth failed: %08x\n", hres);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_BSTR;
|
2020-01-30 20:37:28 +01:00
|
|
|
V_BSTR(&v) = SysAllocString(L"200px");
|
2014-11-04 18:32:42 +01:00
|
|
|
hres = IHTMLStyle5_put_maxWidth(style5, v);
|
|
|
|
ok(hres == S_OK, "put_maxWidth failed: %08x\n", hres);
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLStyle5_get_maxWidth(style5, &v);
|
|
|
|
ok(hres == S_OK, "get_maxWidth failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n",V_VT(&v));
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"200px"), "expect 200px got (%s)\n", wine_dbgstr_w(V_BSTR(&v)));
|
2014-11-04 18:32:42 +01:00
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_BSTR;
|
2020-01-30 20:37:28 +01:00
|
|
|
V_BSTR(&v) = SysAllocString(L"70%");
|
2014-11-04 18:32:42 +01:00
|
|
|
hres = IHTMLStyle5_put_maxWidth(style5, v);
|
|
|
|
ok(hres == S_OK, "put_maxWidth failed: %08x\n", hres);
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLStyle5_get_maxWidth(style5, &v);
|
|
|
|
ok(hres == S_OK, "get maxWidth failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"70%"), "expect 70%% got (%s)\n", wine_dbgstr_w(V_BSTR(&v)));
|
2014-11-04 18:32:42 +01:00
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLStyle5_put_maxWidth(style5,vdefault);
|
|
|
|
ok(hres == S_OK, "put_maxWidth failed: %08x\n", hres);
|
|
|
|
VariantClear(&vdefault);
|
2014-11-04 18:36:10 +01:00
|
|
|
|
|
|
|
/* maxHeight */
|
|
|
|
hres = IHTMLStyle5_get_maxHeight(style5, &vdefault);
|
|
|
|
ok(hres == S_OK, "get maxHeight failed: %08x\n", hres);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_BSTR;
|
2020-01-30 20:37:28 +01:00
|
|
|
V_BSTR(&v) = SysAllocString(L"200px");
|
2014-11-04 18:36:10 +01:00
|
|
|
hres = IHTMLStyle5_put_maxHeight(style5, v);
|
|
|
|
ok(hres == S_OK, "put maxHeight failed: %08x\n", hres);
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLStyle5_get_maxHeight(style5, &v);
|
|
|
|
ok(hres == S_OK, "get maxHeight failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"200px"), "expect 200px got (%s)\n", wine_dbgstr_w(V_BSTR(&v)));
|
2014-11-04 18:36:10 +01:00
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_BSTR;
|
2020-01-30 20:37:28 +01:00
|
|
|
V_BSTR(&v) = SysAllocString(L"70%");
|
2014-11-04 18:36:10 +01:00
|
|
|
hres = IHTMLStyle5_put_maxHeight(style5, v);
|
|
|
|
ok(hres == S_OK, "put maxHeight failed: %08x\n", hres);
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLStyle5_get_maxHeight(style5, &v);
|
|
|
|
ok(hres == S_OK, "get_maxHeight failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"70%"), "expect 70%% got (%s)\n", wine_dbgstr_w(V_BSTR(&v)));
|
2014-11-04 18:36:10 +01:00
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_BSTR;
|
2020-01-30 20:37:28 +01:00
|
|
|
V_BSTR(&v) = SysAllocString(L"100");
|
2014-11-04 18:36:10 +01:00
|
|
|
hres = IHTMLStyle5_put_maxHeight(style5, v);
|
|
|
|
ok(hres == S_OK, "put maxHeight failed: %08x\n", hres);
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLStyle5_get_maxHeight(style5, &v);
|
|
|
|
ok(hres == S_OK, "get_maxHeight failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
test_var_bstr(&v, compat_mode < COMPAT_IE9 ? L"100px" : L"70%");
|
2014-11-04 18:36:10 +01:00
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLStyle5_put_maxHeight(style5, vdefault);
|
|
|
|
ok(hres == S_OK, "put maxHeight failed:%08x\n", hres);
|
|
|
|
VariantClear(&vdefault);
|
2014-09-02 04:20:01 +02:00
|
|
|
}
|
|
|
|
|
2013-09-30 16:05:34 +02:00
|
|
|
static void test_style6(IHTMLStyle6 *style)
|
|
|
|
{
|
|
|
|
BSTR str;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
str = (void*)0xdeadbeef;
|
|
|
|
hres = IHTMLStyle6_get_outline(style, &str);
|
|
|
|
ok(hres == S_OK, "get_outline failed: %08x\n", hres);
|
2018-08-28 12:45:49 +02:00
|
|
|
if(compat_mode < COMPAT_IE9)
|
|
|
|
ok(str && !*str, "outline = %s\n", wine_dbgstr_w(str));
|
|
|
|
else
|
|
|
|
ok(!str, "outline = %s\n", wine_dbgstr_w(str));
|
2013-09-30 16:05:34 +02:00
|
|
|
SysFreeString(str);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"1px");
|
2013-09-30 16:05:34 +02:00
|
|
|
hres = IHTMLStyle6_put_outline(style, str);
|
|
|
|
ok(hres == S_OK, "put_outline failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
str = (void*)0xdeadbeef;
|
|
|
|
hres = IHTMLStyle6_get_outline(style, &str);
|
|
|
|
ok(hres == S_OK, "get_outline failed: %08x\n", hres);
|
2020-01-30 20:37:32 +01:00
|
|
|
ok(wcsstr(str, L"1px") != NULL, "outline = %s\n", wine_dbgstr_w(str));
|
2013-09-30 16:05:34 +02:00
|
|
|
SysFreeString(str);
|
2013-11-07 17:01:31 +01:00
|
|
|
|
|
|
|
str = (void*)0xdeadbeef;
|
|
|
|
hres = IHTMLStyle6_get_boxSizing(style, &str);
|
|
|
|
ok(hres == S_OK, "get_boxSizing failed: %08x\n", hres);
|
|
|
|
ok(!str, "boxSizing = %s\n", wine_dbgstr_w(str));
|
|
|
|
SysFreeString(str);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"border-box");
|
2013-11-07 17:01:31 +01:00
|
|
|
hres = IHTMLStyle6_put_boxSizing(style, str);
|
|
|
|
ok(hres == S_OK, "put_boxSizing failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
str = NULL;
|
|
|
|
hres = IHTMLStyle6_get_boxSizing(style, &str);
|
|
|
|
ok(hres == S_OK, "get_boxSizing failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"border-box"), "boxSizing = %s\n", wine_dbgstr_w(str));
|
2013-11-07 17:01:31 +01:00
|
|
|
SysFreeString(str);
|
2019-02-08 16:38:28 +01:00
|
|
|
|
|
|
|
hres = IHTMLStyle6_get_borderSpacing(style, &str);
|
|
|
|
ok(hres == S_OK, "get_borderSpacing failed: %08x\n", hres);
|
|
|
|
ok(!str, "borderSpacing = %s\n", wine_dbgstr_w(str));
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"10px");
|
2019-02-08 16:38:28 +01:00
|
|
|
hres = IHTMLStyle6_put_borderSpacing(style, str);
|
|
|
|
ok(hres == S_OK, "put_borderSpacing failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
str = NULL;
|
|
|
|
hres = IHTMLStyle6_get_borderSpacing(style, &str);
|
|
|
|
ok(hres == S_OK, "get_borderSpacing failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"10px"), "borderSpacing = %s\n", wine_dbgstr_w(str));
|
2019-02-08 16:38:28 +01:00
|
|
|
SysFreeString(str);
|
2013-09-30 16:05:34 +02:00
|
|
|
}
|
|
|
|
|
2018-09-06 16:15:04 +02:00
|
|
|
static void test_css_style_declaration(IHTMLCSSStyleDeclaration *css_style)
|
|
|
|
{
|
2018-09-06 16:15:11 +02:00
|
|
|
VARIANT v;
|
2018-09-06 16:15:04 +02:00
|
|
|
BSTR str;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
hres = IHTMLCSSStyleDeclaration_get_backgroundClip(css_style, &str);
|
|
|
|
ok(hres == S_OK, "get_backgroundClip failed: %08x\n", hres);
|
|
|
|
ok(!str, "backgroundClip = %s\n", wine_dbgstr_w(str));
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"border-box");
|
2018-09-06 16:15:04 +02:00
|
|
|
hres = IHTMLCSSStyleDeclaration_put_backgroundClip(css_style, str);
|
|
|
|
ok(hres == S_OK, "put_backgroundClip failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
hres = IHTMLCSSStyleDeclaration_get_backgroundClip(css_style, &str);
|
|
|
|
ok(hres == S_OK, "get_backgroundClip failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"border-box"), "backgroundClip = %s\n", wine_dbgstr_w(str));
|
2018-09-06 16:15:04 +02:00
|
|
|
SysFreeString(str);
|
2018-09-06 16:15:11 +02:00
|
|
|
|
|
|
|
hres = IHTMLCSSStyleDeclaration_get_opacity(css_style, &v);
|
|
|
|
ok(hres == S_OK, "get_opacity failed: %08x\n", hres);
|
|
|
|
test_var_bstr(&v, NULL);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_I4;
|
|
|
|
V_I4(&v) = 0;
|
|
|
|
hres = IHTMLCSSStyleDeclaration_put_opacity(css_style, v);
|
|
|
|
ok(hres == S_OK, "put_opacity failed: %08x\n", hres);
|
|
|
|
|
|
|
|
hres = IHTMLCSSStyleDeclaration_get_opacity(css_style, &v);
|
|
|
|
ok(hres == S_OK, "get_opacity failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
test_var_bstr(&v, L"0");
|
2018-09-06 16:15:11 +02:00
|
|
|
VariantClear(&v);
|
|
|
|
|
2019-04-19 16:37:32 +02:00
|
|
|
V_VT(&v) = VT_R8;
|
|
|
|
V_R8(&v) = 0.5;
|
|
|
|
hres = IHTMLCSSStyleDeclaration_put_opacity(css_style, v);
|
|
|
|
ok(hres == S_OK, "put_opacity failed: %08x\n", hres);
|
|
|
|
|
|
|
|
hres = IHTMLCSSStyleDeclaration_get_opacity(css_style, &v);
|
|
|
|
ok(hres == S_OK, "get_opacity failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
test_var_bstr(&v, L"0.5");
|
2019-04-19 16:37:32 +02:00
|
|
|
VariantClear(&v);
|
|
|
|
|
2018-09-06 16:15:11 +02:00
|
|
|
V_VT(&v) = VT_BSTR;
|
2020-01-30 20:37:28 +01:00
|
|
|
V_BSTR(&v) = SysAllocString(L"1");
|
2018-09-06 16:15:11 +02:00
|
|
|
hres = IHTMLCSSStyleDeclaration_put_opacity(css_style, v);
|
|
|
|
ok(hres == S_OK, "put_opacity failed: %08x\n", hres);
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLCSSStyleDeclaration_get_opacity(css_style, &v);
|
|
|
|
ok(hres == S_OK, "get_opacity failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
test_var_bstr(&v, L"1");
|
2018-09-06 16:15:11 +02:00
|
|
|
VariantClear(&v);
|
2018-09-06 16:15:04 +02:00
|
|
|
}
|
|
|
|
|
2020-06-05 18:28:48 +02:00
|
|
|
static void test_css_style_declaration2(IHTMLCSSStyleDeclaration2 *css_style)
|
|
|
|
{
|
2020-06-09 16:15:44 +02:00
|
|
|
VARIANT v;
|
2020-06-05 18:28:48 +02:00
|
|
|
BSTR str;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
str = SysAllocString(L"translate(30px, 20px)");
|
|
|
|
hres = IHTMLCSSStyleDeclaration2_put_transform(css_style, str);
|
|
|
|
ok(hres == S_OK, "put_transform failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
str = NULL;
|
|
|
|
hres = IHTMLCSSStyleDeclaration2_get_transform(css_style, &str);
|
|
|
|
ok(hres == S_OK, "get_transform failed: %08x\n", hres);
|
|
|
|
ok(!lstrcmpW(str, L"translate(30px, 20px)"), "transform = %s\n", wine_dbgstr_w(str));
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
str = SysAllocString(L"none");
|
|
|
|
hres = IHTMLCSSStyleDeclaration2_put_transform(css_style, str);
|
|
|
|
ok(hres == S_OK, "put_transform failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
str = NULL;
|
|
|
|
hres = IHTMLCSSStyleDeclaration2_get_transform(css_style, &str);
|
|
|
|
ok(hres == S_OK, "get_transform failed: %08x\n", hres);
|
|
|
|
ok(!lstrcmpW(str, L"none"), "transform = %s\n", wine_dbgstr_w(str));
|
|
|
|
SysFreeString(str);
|
2020-06-05 18:29:02 +02:00
|
|
|
|
|
|
|
str = NULL;
|
|
|
|
hres = IHTMLCSSStyleDeclaration2_get_animationName(css_style, &str);
|
|
|
|
ok(hres == S_OK, "get_animationName failed: %08x\n", hres);
|
|
|
|
ok(!str, "animationName = %s\n", wine_dbgstr_w(str));
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
str = SysAllocString(L"none");
|
|
|
|
hres = IHTMLCSSStyleDeclaration2_put_animationName(css_style, str);
|
|
|
|
ok(hres == S_OK, "put_animationName failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
str = NULL;
|
|
|
|
hres = IHTMLCSSStyleDeclaration2_get_animationName(css_style, &str);
|
|
|
|
ok(hres == S_OK, "get_animationName failed: %08x\n", hres);
|
|
|
|
ok(!lstrcmpW(str, L"none"), "animationName = %s\n", wine_dbgstr_w(str));
|
|
|
|
SysFreeString(str);
|
2020-06-05 18:29:11 +02:00
|
|
|
|
|
|
|
str = NULL;
|
|
|
|
hres = IHTMLCSSStyleDeclaration2_get_transition(css_style, &str);
|
|
|
|
ok(hres == S_OK, "get_transition failed: %08x\n", hres);
|
|
|
|
ok(!str, "transition = %s\n", wine_dbgstr_w(str));
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
str = SysAllocString(L"marigin-right 1s ease-out");
|
|
|
|
hres = IHTMLCSSStyleDeclaration2_put_transition(css_style, str);
|
|
|
|
ok(hres == S_OK, "put_transition failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
str = NULL;
|
|
|
|
hres = IHTMLCSSStyleDeclaration2_get_transition(css_style, &str);
|
|
|
|
ok(hres == S_OK, "get_transition failed: %08x\n", hres);
|
|
|
|
ok(!wcsncmp(str, L"marigin-right 1s", wcslen(L"marigin-right 1s")), "transition = %s\n", wine_dbgstr_w(str));
|
|
|
|
SysFreeString(str);
|
2020-06-09 16:15:44 +02:00
|
|
|
|
|
|
|
V_VT(&v) = VT_ERROR;
|
|
|
|
hres = IHTMLCSSStyleDeclaration2_get_columnCount(css_style, &v);
|
|
|
|
ok(hres == S_OK, "get_columnCount failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR && !V_BSTR(&v), "columnCount = %s\n", wine_dbgstr_variant(&v));
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_I4;
|
|
|
|
V_I4(&v) = 2;
|
|
|
|
hres = IHTMLCSSStyleDeclaration2_put_columnCount(css_style, v);
|
|
|
|
ok(hres == S_OK, "put_columnCount failed: %08x\n", hres);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_ERROR;
|
|
|
|
hres = IHTMLCSSStyleDeclaration2_get_columnCount(css_style, &v);
|
|
|
|
ok(hres == S_OK, "get_columnCount failed: %08x\n", hres);
|
|
|
|
todo_wine
|
|
|
|
ok(V_VT(&v) == VT_BSTR && V_BSTR(&v) && !lstrcmpW(V_BSTR(&v), L"2"), "columnCount = %s\n", wine_dbgstr_variant(&v));
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_BSTR;
|
|
|
|
V_BSTR(&v) = SysAllocString(L"auto");
|
|
|
|
hres = IHTMLCSSStyleDeclaration2_put_columnCount(css_style, v);
|
|
|
|
ok(hres == S_OK, "put_columnCount failed: %08x\n", hres);
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_ERROR;
|
|
|
|
hres = IHTMLCSSStyleDeclaration2_get_columnCount(css_style, &v);
|
|
|
|
ok(hres == S_OK, "get_columnCount failed: %08x\n", hres);
|
|
|
|
todo_wine
|
|
|
|
ok(V_VT(&v) == VT_BSTR && V_BSTR(&v) && !lstrcmpW(V_BSTR(&v), L"auto"), "columnCount = %s\n", wine_dbgstr_variant(&v));
|
|
|
|
VariantClear(&v);
|
2020-06-09 16:15:51 +02:00
|
|
|
|
|
|
|
V_VT(&v) = VT_ERROR;
|
|
|
|
hres = IHTMLCSSStyleDeclaration2_get_columnWidth(css_style, &v);
|
|
|
|
ok(hres == S_OK, "get_columnWidth failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR && !V_BSTR(&v), "columnWidth = %s\n", wine_dbgstr_variant(&v));
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_I4;
|
|
|
|
V_I4(&v) = 20;
|
|
|
|
hres = IHTMLCSSStyleDeclaration2_put_columnWidth(css_style, v);
|
|
|
|
ok(hres == S_OK, "put_columnWidth failed: %08x\n", hres);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_ERROR;
|
|
|
|
hres = IHTMLCSSStyleDeclaration2_get_columnWidth(css_style, &v);
|
|
|
|
ok(hres == S_OK, "get_columnWidth failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR && !V_BSTR(&v), "columnWidth = %s\n", wine_dbgstr_variant(&v));
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_BSTR;
|
|
|
|
V_BSTR(&v) = SysAllocString(L"20px");
|
|
|
|
hres = IHTMLCSSStyleDeclaration2_put_columnWidth(css_style, v);
|
|
|
|
ok(hres == S_OK, "put_columnWidth failed: %08x\n", hres);
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_ERROR;
|
|
|
|
hres = IHTMLCSSStyleDeclaration2_get_columnWidth(css_style, &v);
|
|
|
|
ok(hres == S_OK, "get_columnWidth failed: %08x\n", hres);
|
|
|
|
todo_wine
|
|
|
|
ok(V_VT(&v) == VT_BSTR && V_BSTR(&v) && !lstrcmpW(V_BSTR(&v), L"20px"), "columnWidth = %s\n", wine_dbgstr_variant(&v));
|
|
|
|
VariantClear(&v);
|
2020-06-09 16:16:00 +02:00
|
|
|
|
|
|
|
V_VT(&v) = VT_ERROR;
|
|
|
|
hres = IHTMLCSSStyleDeclaration2_get_columnGap(css_style, &v);
|
|
|
|
ok(hres == S_OK, "get_columnGap failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR && !V_BSTR(&v), "columnGap = %s\n", wine_dbgstr_variant(&v));
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_I4;
|
|
|
|
V_I4(&v) = 20;
|
|
|
|
hres = IHTMLCSSStyleDeclaration2_put_columnGap(css_style, v);
|
|
|
|
ok(hres == S_OK, "put_columnGap failed: %08x\n", hres);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_ERROR;
|
|
|
|
hres = IHTMLCSSStyleDeclaration2_get_columnGap(css_style, &v);
|
|
|
|
ok(hres == S_OK, "get_columnGap failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR && !V_BSTR(&v), "columnGap = %s\n", wine_dbgstr_variant(&v));
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_BSTR;
|
|
|
|
V_BSTR(&v) = SysAllocString(L"20px");
|
|
|
|
hres = IHTMLCSSStyleDeclaration2_put_columnGap(css_style, v);
|
|
|
|
ok(hres == S_OK, "put_columnGap failed: %08x\n", hres);
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_ERROR;
|
|
|
|
hres = IHTMLCSSStyleDeclaration2_get_columnGap(css_style, &v);
|
|
|
|
ok(hres == S_OK, "get_columnGap failed: %08x\n", hres);
|
|
|
|
todo_wine
|
|
|
|
ok(V_VT(&v) == VT_BSTR && V_BSTR(&v) && !lstrcmpW(V_BSTR(&v), L"20px"), "columnGap = %s\n", wine_dbgstr_variant(&v));
|
|
|
|
VariantClear(&v);
|
2020-06-09 16:16:07 +02:00
|
|
|
|
|
|
|
str = NULL;
|
|
|
|
hres = IHTMLCSSStyleDeclaration2_get_columnFill(css_style, &str);
|
|
|
|
ok(hres == S_OK, "get_columnFill failed: %08x\n", hres);
|
|
|
|
ok(!str, "columnFill = %s\n", wine_dbgstr_w(str));
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
str = SysAllocString(L"auto");
|
|
|
|
hres = IHTMLCSSStyleDeclaration2_put_columnFill(css_style, str);
|
|
|
|
ok(hres == S_OK, "put_columnFill failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
str = NULL;
|
|
|
|
hres = IHTMLCSSStyleDeclaration2_get_columnFill(css_style, &str);
|
|
|
|
ok(hres == S_OK, "get_columnFill failed: %08x\n", hres);
|
|
|
|
todo_wine
|
|
|
|
ok(str && !lstrcmpW(str, L"auto"), "columnFill = %s\n", wine_dbgstr_w(str));
|
|
|
|
SysFreeString(str);
|
2020-06-09 16:16:13 +02:00
|
|
|
|
|
|
|
str = NULL;
|
|
|
|
hres = IHTMLCSSStyleDeclaration2_get_columnSpan(css_style, &str);
|
|
|
|
ok(hres == S_OK, "get_columnSpan failed: %08x\n", hres);
|
|
|
|
ok(!str, "columnSpan = %s\n", wine_dbgstr_w(str));
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
str = SysAllocString(L"all");
|
|
|
|
hres = IHTMLCSSStyleDeclaration2_put_columnSpan(css_style, str);
|
|
|
|
ok(hres == S_OK, "put_columnSpan failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
str = NULL;
|
|
|
|
hres = IHTMLCSSStyleDeclaration2_get_columnSpan(css_style, &str);
|
|
|
|
ok(hres == S_OK, "get_columnSpan failed: %08x\n", hres);
|
|
|
|
todo_wine
|
|
|
|
ok(str && !lstrcmpW(str, L"all"), "columnSpan = %s\n", wine_dbgstr_w(str));
|
|
|
|
SysFreeString(str);
|
2020-06-09 16:16:19 +02:00
|
|
|
|
|
|
|
V_VT(&v) = VT_ERROR;
|
|
|
|
hres = IHTMLCSSStyleDeclaration2_get_columnRuleColor(css_style, &v);
|
|
|
|
ok(hres == S_OK, "get_columnRuleColor failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR && !V_BSTR(&v), "columnRuleColor = %s\n", wine_dbgstr_variant(&v));
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_BSTR;
|
|
|
|
V_BSTR(&v) = SysAllocString(L"red");
|
|
|
|
hres = IHTMLCSSStyleDeclaration2_put_columnRuleColor(css_style, v);
|
|
|
|
ok(hres == S_OK, "put_columnRuleColor failed: %08x\n", hres);
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_ERROR;
|
|
|
|
hres = IHTMLCSSStyleDeclaration2_get_columnRuleColor(css_style, &v);
|
|
|
|
ok(hres == S_OK, "get_columnRuleColor failed: %08x\n", hres);
|
|
|
|
todo_wine
|
|
|
|
ok(V_VT(&v) == VT_BSTR && V_BSTR(&v) && !lstrcmpW(V_BSTR(&v), L"red"), "columnRuleColor = %s\n", wine_dbgstr_variant(&v));
|
|
|
|
VariantClear(&v);
|
2020-06-09 16:16:28 +02:00
|
|
|
|
|
|
|
str = NULL;
|
|
|
|
hres = IHTMLCSSStyleDeclaration2_get_columnRuleStyle(css_style, &str);
|
|
|
|
ok(hres == S_OK, "get_columnRuleStyle failed: %08x\n", hres);
|
|
|
|
ok(!str, "columnRuleStyle = %s\n", wine_dbgstr_w(str));
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
str = SysAllocString(L"solid");
|
|
|
|
hres = IHTMLCSSStyleDeclaration2_put_columnRuleStyle(css_style, str);
|
|
|
|
ok(hres == S_OK, "put_columnRuleStyle failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
str = NULL;
|
|
|
|
hres = IHTMLCSSStyleDeclaration2_get_columnRuleStyle(css_style, &str);
|
|
|
|
ok(hres == S_OK, "get_columnRuleStyle failed: %08x\n", hres);
|
|
|
|
todo_wine
|
|
|
|
ok(str && !lstrcmpW(str, L"solid"), "columnRuleStyle = %s\n", wine_dbgstr_w(str));
|
|
|
|
SysFreeString(str);
|
2020-06-09 16:16:36 +02:00
|
|
|
|
|
|
|
V_VT(&v) = VT_ERROR;
|
|
|
|
hres = IHTMLCSSStyleDeclaration2_get_columnRuleWidth(css_style, &v);
|
|
|
|
ok(hres == S_OK, "get_columnRuleWidth failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR && !V_BSTR(&v), "columnRuleWidth = %s\n", wine_dbgstr_variant(&v));
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_BSTR;
|
|
|
|
V_BSTR(&v) = SysAllocString(L"10px");
|
|
|
|
hres = IHTMLCSSStyleDeclaration2_put_columnRuleWidth(css_style, v);
|
|
|
|
ok(hres == S_OK, "put_columnRuleWidth failed: %08x\n", hres);
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_ERROR;
|
|
|
|
hres = IHTMLCSSStyleDeclaration2_get_columnRuleWidth(css_style, &v);
|
|
|
|
ok(hres == S_OK, "get_columnRuleWidth failed: %08x\n", hres);
|
|
|
|
todo_wine
|
|
|
|
ok(V_VT(&v) == VT_BSTR && V_BSTR(&v) && !lstrcmpW(V_BSTR(&v), L"10px"), "columnRuleWidth = %s\n", wine_dbgstr_variant(&v));
|
|
|
|
VariantClear(&v);
|
2020-06-09 16:16:43 +02:00
|
|
|
|
|
|
|
str = NULL;
|
|
|
|
hres = IHTMLCSSStyleDeclaration2_get_columnRule(css_style, &str);
|
|
|
|
ok(hres == S_OK, "get_columnRule failed: %08x\n", hres);
|
|
|
|
todo_wine
|
|
|
|
ok(str && !lstrcmpW(str, L"10px solid red"), "columnRule = %s\n", wine_dbgstr_w(str));
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
hres = IHTMLCSSStyleDeclaration2_put_columnRule(css_style, NULL);
|
|
|
|
ok(hres == S_OK, "put_columnRule failed: %08x\n", hres);
|
|
|
|
|
|
|
|
str = (void*)0xdeadbeef;
|
|
|
|
hres = IHTMLCSSStyleDeclaration2_get_columnRule(css_style, &str);
|
|
|
|
ok(hres == S_OK, "get_columnRule failed: %08x\n", hres);
|
|
|
|
ok(!str, "columnRule = %s\n", wine_dbgstr_w(str));
|
2020-06-10 18:21:59 +02:00
|
|
|
|
|
|
|
V_VT(&v) = VT_ERROR;
|
|
|
|
hres = IHTMLCSSStyleDeclaration2_get_perspective(css_style, &v);
|
|
|
|
ok(hres == S_OK, "get_perspective failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR && !V_BSTR(&v), "perspective = %s\n", wine_dbgstr_variant(&v));
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_BSTR;
|
|
|
|
V_BSTR(&v) = SysAllocString(L"100px");
|
|
|
|
hres = IHTMLCSSStyleDeclaration2_put_perspective(css_style, v);
|
|
|
|
ok(hres == S_OK, "put_perspective failed: %08x\n", hres);
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_ERROR;
|
|
|
|
hres = IHTMLCSSStyleDeclaration2_get_perspective(css_style, &v);
|
|
|
|
ok(hres == S_OK, "get_perspective failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR && V_BSTR(&v) && !lstrcmpW(V_BSTR(&v), L"100px"), "perspective = %s\n", wine_dbgstr_variant(&v));
|
|
|
|
VariantClear(&v);
|
2020-06-05 18:28:48 +02:00
|
|
|
}
|
|
|
|
|
2011-07-20 15:34:43 +02:00
|
|
|
static void test_body_style(IHTMLStyle *style)
|
|
|
|
{
|
2018-08-31 16:36:24 +02:00
|
|
|
IHTMLCSSStyleDeclaration *css_style;
|
2018-09-06 16:15:35 +02:00
|
|
|
IHTMLCSSStyleDeclaration2 *css_style2 = NULL;
|
2011-07-20 15:34:43 +02:00
|
|
|
IHTMLStyle2 *style2;
|
|
|
|
IHTMLStyle3 *style3;
|
|
|
|
IHTMLStyle4 *style4;
|
2014-09-02 04:20:01 +02:00
|
|
|
IHTMLStyle5 *style5;
|
2013-09-30 16:05:34 +02:00
|
|
|
IHTMLStyle6 *style6;
|
2011-07-20 15:34:43 +02:00
|
|
|
VARIANT_BOOL b;
|
|
|
|
VARIANT v;
|
|
|
|
BSTR str;
|
|
|
|
HRESULT hres;
|
|
|
|
float f;
|
|
|
|
BSTR sOverflowDefault;
|
|
|
|
BSTR sDefault;
|
2013-01-07 14:32:56 +01:00
|
|
|
LONG l;
|
2011-07-20 15:34:43 +02:00
|
|
|
VARIANT vDefault;
|
|
|
|
|
2018-08-31 16:36:24 +02:00
|
|
|
hres = IHTMLStyle_QueryInterface(style, &IID_IHTMLCSSStyleDeclaration, (void**)&css_style);
|
|
|
|
ok(hres == S_OK || broken(!is_ie9plus && hres == E_NOINTERFACE),
|
|
|
|
"Could not get IHTMLCSSStyleDeclaration interface: %08x\n", hres);
|
|
|
|
|
2018-09-06 16:15:35 +02:00
|
|
|
if(css_style) {
|
|
|
|
hres = IHTMLStyle_QueryInterface(style, &IID_IHTMLCSSStyleDeclaration2, (void**)&css_style2);
|
|
|
|
ok(hres == S_OK || broken(hres == E_NOINTERFACE),
|
|
|
|
"Could not get IHTMLCSSStyleDeclaration2 interface: %08x\n", hres);
|
|
|
|
}
|
|
|
|
|
2011-07-20 15:34:43 +02:00
|
|
|
test_style_csstext(style, NULL);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_position(style, &str);
|
|
|
|
ok(hres == S_OK, "get_position failed: %08x\n", hres);
|
|
|
|
ok(!str, "str=%s\n", wine_dbgstr_w(str));
|
|
|
|
|
|
|
|
V_VT(&v) = VT_NULL;
|
|
|
|
hres = IHTMLStyle_get_marginRight(style, &v);
|
|
|
|
ok(hres == S_OK, "get_marginRight failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(marginRight) = %d\n", V_VT(&v));
|
|
|
|
ok(!V_BSTR(&v), "V_BSTR(marginRight) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
|
|
|
|
2012-01-26 14:33:02 +01:00
|
|
|
V_VT(&v) = VT_I4;
|
|
|
|
V_I4(&v) = 6;
|
|
|
|
hres = IHTMLStyle_put_marginRight(style, v);
|
|
|
|
ok(hres == S_OK, "put_marginRight failed: %08x\n", hres);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_NULL;
|
|
|
|
hres = IHTMLStyle_get_marginRight(style, &v);
|
|
|
|
ok(hres == S_OK, "get_marginRight failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(marginRight) = %d\n", V_VT(&v));
|
2018-08-28 12:45:49 +02:00
|
|
|
if(compat_mode < COMPAT_IE9)
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"6px"), "V_BSTR(marginRight) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2018-08-28 12:45:49 +02:00
|
|
|
else
|
|
|
|
ok(!V_BSTR(&v), "mariginRight = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2019-04-19 16:37:05 +02:00
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_BSTR;
|
2020-01-30 20:37:28 +01:00
|
|
|
V_BSTR(&v) = SysAllocString(L"5");
|
2019-04-19 16:37:05 +02:00
|
|
|
hres = IHTMLStyle_put_marginRight(style, v);
|
|
|
|
ok(hres == S_OK, "put_marginRight failed: %08x\n", hres);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_NULL;
|
|
|
|
hres = IHTMLStyle_get_marginRight(style, &v);
|
|
|
|
ok(hres == S_OK, "get_marginRight failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(marginRight) = %d\n", V_VT(&v));
|
|
|
|
if(compat_mode < COMPAT_IE9)
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"5px"), "V_BSTR(marginRight) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2019-04-19 16:37:05 +02:00
|
|
|
else
|
|
|
|
ok(!V_BSTR(&v), "mariginRight = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
|
|
|
VariantClear(&v);
|
2012-01-26 14:33:02 +01:00
|
|
|
|
2018-08-31 16:36:33 +02:00
|
|
|
if(css_style) {
|
|
|
|
V_VT(&v) = VT_NULL;
|
|
|
|
hres = IHTMLCSSStyleDeclaration_get_marginRight(css_style, &v);
|
|
|
|
ok(hres == S_OK, "get_marginRight failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(marginRight) = %d\n", V_VT(&v));
|
|
|
|
if(compat_mode < COMPAT_IE9)
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"5px"), "V_BSTR(marginRight) = %s\n",
|
2018-08-31 16:36:33 +02:00
|
|
|
wine_dbgstr_w(V_BSTR(&v)));
|
|
|
|
else
|
|
|
|
ok(!V_BSTR(&v), "mariginRight = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
|
|
|
|
|
|
|
V_VT(&v) = VT_I4;
|
|
|
|
V_I4(&v) = 7;
|
|
|
|
hres = IHTMLCSSStyleDeclaration_put_marginRight(css_style, v);
|
|
|
|
ok(hres == S_OK, "put_marginRight failed: %08x\n", hres);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_NULL;
|
|
|
|
hres = IHTMLCSSStyleDeclaration_get_marginRight(css_style, &v);
|
|
|
|
ok(hres == S_OK, "get_marginRight failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(marginRight) = %d\n", V_VT(&v));
|
|
|
|
if(compat_mode < COMPAT_IE9)
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"7px"), "V_BSTR(marginRight) = %s\n",
|
2018-08-31 16:36:33 +02:00
|
|
|
wine_dbgstr_w(V_BSTR(&v)));
|
|
|
|
else
|
|
|
|
ok(!V_BSTR(&v), "mariginRight = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
|
|
|
|
|
|
|
V_VT(&v) = VT_BSTR;
|
2020-01-30 20:37:28 +01:00
|
|
|
V_BSTR(&v) = SysAllocString(L"8");
|
2018-08-31 16:36:33 +02:00
|
|
|
hres = IHTMLCSSStyleDeclaration_put_marginRight(css_style, v);
|
|
|
|
ok(hres == S_OK, "put_marginRight failed: %08x\n", hres);
|
|
|
|
SysFreeString(V_BSTR(&v));
|
|
|
|
|
|
|
|
V_VT(&v) = VT_NULL;
|
|
|
|
hres = IHTMLCSSStyleDeclaration_get_marginRight(css_style, &v);
|
|
|
|
ok(hres == S_OK, "get_marginRight failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(marginRight) = %d\n", V_VT(&v));
|
|
|
|
if(compat_mode < COMPAT_IE9)
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"8px"), "V_BSTR(marginRight) = %s\n",
|
2018-08-31 16:36:33 +02:00
|
|
|
wine_dbgstr_w(V_BSTR(&v)));
|
|
|
|
else
|
|
|
|
ok(!V_BSTR(&v), "mariginRight = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
|
|
|
|
|
|
|
V_VT(&v) = VT_BSTR;
|
2020-01-30 20:37:28 +01:00
|
|
|
V_BSTR(&v) = SysAllocString(L"9px");
|
2018-08-31 16:36:33 +02:00
|
|
|
hres = IHTMLCSSStyleDeclaration_put_marginRight(css_style, v);
|
|
|
|
ok(hres == S_OK, "put_marginRight failed: %08x\n", hres);
|
|
|
|
SysFreeString(V_BSTR(&v));
|
|
|
|
|
|
|
|
V_VT(&v) = VT_NULL;
|
|
|
|
hres = IHTMLCSSStyleDeclaration_get_marginRight(css_style, &v);
|
|
|
|
ok(hres == S_OK, "get_marginRight failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(marginRight) = %d\n", V_VT(&v));
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"9px"), "V_BSTR(marginRight) = %s\n",
|
2018-08-31 16:36:33 +02:00
|
|
|
wine_dbgstr_w(V_BSTR(&v)));
|
|
|
|
SysFreeString(V_BSTR(&v));
|
|
|
|
}
|
|
|
|
|
2012-01-26 14:33:24 +01:00
|
|
|
V_VT(&v) = VT_NULL;
|
|
|
|
hres = IHTMLStyle_get_marginBottom(style, &v);
|
|
|
|
ok(hres == S_OK, "get_marginBottom failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(marginBottom) = %d\n", V_VT(&v));
|
|
|
|
ok(!V_BSTR(&v), "V_BSTR(marginBottom) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
|
|
|
|
|
|
|
V_VT(&v) = VT_I4;
|
|
|
|
V_I4(&v) = 6;
|
|
|
|
hres = IHTMLStyle_put_marginBottom(style, v);
|
|
|
|
ok(hres == S_OK, "put_marginBottom failed: %08x\n", hres);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_NULL;
|
|
|
|
hres = IHTMLStyle_get_marginBottom(style, &v);
|
|
|
|
ok(hres == S_OK, "get_marginBottom failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(marginBottom) = %d\n", V_VT(&v));
|
2018-08-28 12:45:49 +02:00
|
|
|
if(compat_mode < COMPAT_IE9)
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"6px"), "V_BSTR(marginBottom) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2018-08-28 12:45:49 +02:00
|
|
|
else
|
|
|
|
ok(!V_BSTR(&v), "mariginBottom = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2012-01-26 14:33:24 +01:00
|
|
|
|
2011-07-20 15:34:43 +02:00
|
|
|
V_VT(&v) = VT_NULL;
|
|
|
|
hres = IHTMLStyle_get_marginLeft(style, &v);
|
|
|
|
ok(hres == S_OK, "get_marginLeft failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(marginLeft) = %d\n", V_VT(&v));
|
|
|
|
ok(!V_BSTR(&v), "V_BSTR(marginLeft) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
|
|
|
|
2012-01-26 14:33:38 +01:00
|
|
|
V_VT(&v) = VT_I4;
|
|
|
|
V_I4(&v) = 6;
|
|
|
|
hres = IHTMLStyle_put_marginLeft(style, v);
|
|
|
|
ok(hres == S_OK, "put_marginLeft failed: %08x\n", hres);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_NULL;
|
|
|
|
hres = IHTMLStyle_get_marginLeft(style, &v);
|
|
|
|
ok(hres == S_OK, "get_marginLeft failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(marginLeft) = %d\n", V_VT(&v));
|
2018-08-28 12:45:49 +02:00
|
|
|
if(compat_mode < COMPAT_IE9)
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"6px"), "V_BSTR(marginLeft) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2018-08-28 12:45:49 +02:00
|
|
|
else
|
|
|
|
ok(!V_BSTR(&v), "mariginLeft = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2012-01-26 14:33:38 +01:00
|
|
|
|
2011-07-20 15:34:43 +02:00
|
|
|
str = (void*)0xdeadbeef;
|
|
|
|
hres = IHTMLStyle_get_fontFamily(style, &str);
|
|
|
|
ok(hres == S_OK, "get_fontFamily failed: %08x\n", hres);
|
|
|
|
ok(!str, "fontFamily = %s\n", wine_dbgstr_w(str));
|
|
|
|
|
|
|
|
str = (void*)0xdeadbeef;
|
|
|
|
hres = IHTMLStyle_get_fontWeight(style, &str);
|
|
|
|
ok(hres == S_OK, "get_fontWeight failed: %08x\n", hres);
|
|
|
|
ok(!str, "fontWeight = %s\n", wine_dbgstr_w(str));
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_fontWeight(style, &sDefault);
|
|
|
|
ok(hres == S_OK, "get_fontWeight failed: %08x\n", hres);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"test");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_fontWeight(style, str);
|
2018-08-28 12:45:49 +02:00
|
|
|
ok(hres == (compat_mode < COMPAT_IE9 ? E_INVALIDARG : S_OK),
|
|
|
|
"put_fontWeight failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_fontWeight(style, &str);
|
|
|
|
ok(hres == S_OK, "get_fontWeight failed: %08x\n", hres);
|
|
|
|
ok(!str, "fontWeight = %s\n", wine_dbgstr_w(str));
|
2011-07-20 15:34:43 +02:00
|
|
|
SysFreeString(str);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"bold");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_fontWeight(style, str);
|
|
|
|
ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"bolder");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_fontWeight(style, str);
|
|
|
|
ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"lighter");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_fontWeight(style, str);
|
|
|
|
ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"100");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_fontWeight(style, str);
|
|
|
|
ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"200");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_fontWeight(style, str);
|
|
|
|
ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"300");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_fontWeight(style, str);
|
|
|
|
ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"400");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_fontWeight(style, str);
|
|
|
|
ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"500");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_fontWeight(style, str);
|
|
|
|
ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"600");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_fontWeight(style, str);
|
|
|
|
ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"700");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_fontWeight(style, str);
|
|
|
|
ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"800");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_fontWeight(style, str);
|
|
|
|
ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"900");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_fontWeight(style, str);
|
|
|
|
ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_fontWeight(style, &str);
|
|
|
|
ok(hres == S_OK, "get_fontWeight failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"900"), "str != style900\n");
|
2011-07-20 15:34:43 +02:00
|
|
|
SysFreeString(str);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"");
|
2014-12-08 13:39:47 +01:00
|
|
|
hres = IHTMLStyle_put_fontWeight(style, str);
|
|
|
|
ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_fontWeight(style, &str);
|
|
|
|
ok(hres == S_OK, "get_fontWeight failed: %08x\n", hres);
|
|
|
|
ok(!str, "str != NULL\n");
|
|
|
|
SysFreeString(str);
|
|
|
|
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_fontWeight(style, sDefault);
|
|
|
|
ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
|
|
|
|
SysFreeString(sDefault);
|
|
|
|
|
|
|
|
/* font Variant */
|
|
|
|
hres = IHTMLStyle_get_fontVariant(style, NULL);
|
|
|
|
ok(hres == E_INVALIDARG, "get_fontVariant failed: %08x\n", hres);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_fontVariant(style, &sDefault);
|
|
|
|
ok(hres == S_OK, "get_fontVariant failed: %08x\n", hres);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"test");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_fontVariant(style, str);
|
2018-08-28 12:45:49 +02:00
|
|
|
ok(hres == (compat_mode < COMPAT_IE9 ? E_INVALIDARG : S_OK),
|
|
|
|
"fontVariant failed: %08x\n", hres);
|
2011-07-20 15:34:43 +02:00
|
|
|
SysFreeString(str);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"small-caps");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_fontVariant(style, str);
|
|
|
|
ok(hres == S_OK, "fontVariant failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"normal");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_fontVariant(style, str);
|
|
|
|
ok(hres == S_OK, "fontVariant failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_put_fontVariant(style, sDefault);
|
|
|
|
ok(hres == S_OK, "fontVariant failed: %08x\n", hres);
|
|
|
|
SysFreeString(sDefault);
|
|
|
|
|
|
|
|
str = (void*)0xdeadbeef;
|
|
|
|
hres = IHTMLStyle_get_display(style, &str);
|
|
|
|
ok(hres == S_OK, "get_display failed: %08x\n", hres);
|
|
|
|
ok(!str, "display = %s\n", wine_dbgstr_w(str));
|
|
|
|
|
|
|
|
str = (void*)0xdeadbeef;
|
|
|
|
hres = IHTMLStyle_get_visibility(style, &str);
|
|
|
|
ok(hres == S_OK, "get_visibility failed: %08x\n", hres);
|
|
|
|
ok(!str, "visibility = %s\n", wine_dbgstr_w(str));
|
|
|
|
|
|
|
|
V_VT(&v) = VT_NULL;
|
|
|
|
hres = IHTMLStyle_get_fontSize(style, &v);
|
|
|
|
ok(hres == S_OK, "get_fontSize failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(fontSize) = %d\n", V_VT(&v));
|
|
|
|
ok(!V_BSTR(&v), "V_BSTR(fontSize) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
|
|
|
|
2012-03-30 14:13:49 +02:00
|
|
|
V_VT(&v) = VT_I4;
|
|
|
|
V_I4(&v) = 12;
|
|
|
|
hres = IHTMLStyle_put_fontSize(style, v);
|
|
|
|
ok(hres == S_OK, "put_fontSize failed: %08x\n", hres);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_NULL;
|
|
|
|
hres = IHTMLStyle_get_fontSize(style, &v);
|
|
|
|
ok(hres == S_OK, "get_fontSize failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(fontSize) = %d\n", V_VT(&v));
|
2018-08-28 12:45:49 +02:00
|
|
|
if(compat_mode < COMPAT_IE9)
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"12px"), "fontSize = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2018-08-28 12:45:49 +02:00
|
|
|
else
|
|
|
|
ok(!V_BSTR(&v), "fontSize = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2012-03-30 14:13:49 +02:00
|
|
|
|
2011-07-20 15:34:43 +02:00
|
|
|
V_VT(&v) = VT_NULL;
|
|
|
|
hres = IHTMLStyle_get_color(style, &v);
|
|
|
|
ok(hres == S_OK, "get_color failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(color) = %d\n", V_VT(&v));
|
|
|
|
ok(!V_BSTR(&v), "V_BSTR(color) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
|
|
|
|
2012-03-30 14:14:03 +02:00
|
|
|
V_VT(&v) = VT_I4;
|
|
|
|
V_I4(&v) = 0xfdfd;
|
|
|
|
hres = IHTMLStyle_put_color(style, v);
|
|
|
|
ok(hres == S_OK, "put_color failed: %08x\n", hres);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_NULL;
|
|
|
|
hres = IHTMLStyle_get_color(style, &v);
|
|
|
|
ok(hres == S_OK, "get_color failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(color) = %d\n", V_VT(&v));
|
|
|
|
todo_wine
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"#00fdfd"), "V_BSTR(color) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2012-03-30 14:14:03 +02:00
|
|
|
|
2014-08-11 05:08:04 +02:00
|
|
|
V_VT(&v) = VT_I4;
|
|
|
|
V_I4(&v) = 3;
|
|
|
|
hres = IHTMLStyle_put_lineHeight(style, v);
|
|
|
|
ok(hres == S_OK, "put_lineHeight failed: %08x\n", hres);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_lineHeight(style, &v);
|
|
|
|
ok(hres == S_OK, "get_lineHeight failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(lineHeight) = %d, expect VT_BSTR\n", V_VT(&v));
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"3"), "V_BSTR(lineHeight) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2014-08-11 05:08:04 +02:00
|
|
|
|
|
|
|
V_VT(&v) = VT_BSTR;
|
2020-01-30 20:37:28 +01:00
|
|
|
V_BSTR(&v) = SysAllocString(L"300%");
|
2014-08-11 05:08:04 +02:00
|
|
|
hres = IHTMLStyle_put_lineHeight(style, v);
|
|
|
|
ok(hres == S_OK, "put_lineHeight failed: %08x\n", hres);
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_lineHeight(style, &v);
|
|
|
|
ok(hres == S_OK, "get_lineHeight failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(lineHeight) = %d, expect VT_BSTR\n", V_VT(&v));
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"300%"), "V_BSTR(lineHeight) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2014-08-11 05:08:04 +02:00
|
|
|
VariantClear(&v);
|
|
|
|
|
2011-07-20 15:34:43 +02:00
|
|
|
b = 0xfefe;
|
|
|
|
hres = IHTMLStyle_get_textDecorationUnderline(style, &b);
|
|
|
|
ok(hres == S_OK, "get_textDecorationUnderline failed: %08x\n", hres);
|
|
|
|
ok(b == VARIANT_FALSE, "textDecorationUnderline = %x\n", b);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_put_textDecorationUnderline(style, VARIANT_TRUE);
|
|
|
|
ok(hres == S_OK, "put_textDecorationUnderline failed: %08x\n", hres);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_textDecorationUnderline(style, &b);
|
|
|
|
ok(hres == S_OK, "get_textDecorationUnderline failed: %08x\n", hres);
|
|
|
|
ok(b == VARIANT_TRUE, "textDecorationUnderline = %x\n", b);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_put_textDecorationUnderline(style, VARIANT_FALSE);
|
|
|
|
ok(hres == S_OK, "put_textDecorationUnderline failed: %08x\n", hres);
|
|
|
|
|
|
|
|
b = 0xfefe;
|
|
|
|
hres = IHTMLStyle_get_textDecorationLineThrough(style, &b);
|
|
|
|
ok(hres == S_OK, "get_textDecorationLineThrough failed: %08x\n", hres);
|
|
|
|
ok(b == VARIANT_FALSE, "textDecorationLineThrough = %x\n", b);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_put_textDecorationLineThrough(style, VARIANT_TRUE);
|
|
|
|
ok(hres == S_OK, "put_textDecorationLineThrough failed: %08x\n", hres);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_textDecorationLineThrough(style, &b);
|
|
|
|
ok(hres == S_OK, "get_textDecorationLineThrough failed: %08x\n", hres);
|
|
|
|
ok(b == VARIANT_TRUE, "textDecorationLineThrough = %x\n", b);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_put_textDecorationLineThrough(style, VARIANT_FALSE);
|
|
|
|
ok(hres == S_OK, "put_textDecorationLineThrough failed: %08x\n", hres);
|
|
|
|
|
|
|
|
b = 0xfefe;
|
|
|
|
hres = IHTMLStyle_get_textDecorationNone(style, &b);
|
|
|
|
ok(hres == S_OK, "get_textDecorationNone failed: %08x\n", hres);
|
|
|
|
ok(b == VARIANT_FALSE, "textDecorationNone = %x\n", b);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_put_textDecorationNone(style, VARIANT_TRUE);
|
|
|
|
ok(hres == S_OK, "put_textDecorationNone failed: %08x\n", hres);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_textDecorationNone(style, &b);
|
|
|
|
ok(hres == S_OK, "get_textDecorationNone failed: %08x\n", hres);
|
|
|
|
ok(b == VARIANT_TRUE, "textDecorationNone = %x\n", b);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_put_textDecorationNone(style, VARIANT_FALSE);
|
|
|
|
ok(hres == S_OK, "put_textDecorationNone failed: %08x\n", hres);
|
|
|
|
|
|
|
|
b = 0xfefe;
|
|
|
|
hres = IHTMLStyle_get_textDecorationOverline(style, &b);
|
|
|
|
ok(hres == S_OK, "get_textDecorationOverline failed: %08x\n", hres);
|
|
|
|
ok(b == VARIANT_FALSE, "textDecorationOverline = %x\n", b);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_put_textDecorationOverline(style, VARIANT_TRUE);
|
|
|
|
ok(hres == S_OK, "put_textDecorationOverline failed: %08x\n", hres);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_textDecorationOverline(style, &b);
|
|
|
|
ok(hres == S_OK, "get_textDecorationOverline failed: %08x\n", hres);
|
|
|
|
ok(b == VARIANT_TRUE, "textDecorationOverline = %x\n", b);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_put_textDecorationOverline(style, VARIANT_FALSE);
|
|
|
|
ok(hres == S_OK, "put_textDecorationOverline failed: %08x\n", hres);
|
|
|
|
|
|
|
|
b = 0xfefe;
|
|
|
|
hres = IHTMLStyle_get_textDecorationBlink(style, &b);
|
|
|
|
ok(hres == S_OK, "get_textDecorationBlink failed: %08x\n", hres);
|
|
|
|
ok(b == VARIANT_FALSE, "textDecorationBlink = %x\n", b);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_put_textDecorationBlink(style, VARIANT_TRUE);
|
|
|
|
ok(hres == S_OK, "put_textDecorationBlink failed: %08x\n", hres);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_textDecorationBlink(style, &b);
|
|
|
|
ok(hres == S_OK, "get_textDecorationBlink failed: %08x\n", hres);
|
|
|
|
ok(b == VARIANT_TRUE, "textDecorationBlink = %x\n", b);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_put_textDecorationBlink(style, VARIANT_FALSE);
|
|
|
|
ok(hres == S_OK, "textDecorationBlink failed: %08x\n", hres);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_textDecoration(style, &sDefault);
|
|
|
|
ok(hres == S_OK, "get_textDecoration failed: %08x\n", hres);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"invalid");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_textDecoration(style, str);
|
2018-08-28 12:45:49 +02:00
|
|
|
ok(hres == (compat_mode < COMPAT_IE9 ? E_INVALIDARG : S_OK),
|
|
|
|
"put_textDecoration failed: %08x\n", hres);
|
2011-07-20 15:34:43 +02:00
|
|
|
SysFreeString(str);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
set_text_decoration(style, L"none");
|
2020-01-30 20:37:38 +01:00
|
|
|
test_text_decoration(style, L"none");
|
2020-01-30 20:37:28 +01:00
|
|
|
set_text_decoration(style, L"underline");
|
|
|
|
set_text_decoration(style, L"overline");
|
|
|
|
set_text_decoration(style, L"line-through");
|
|
|
|
set_text_decoration(style, L"blink");
|
|
|
|
set_text_decoration(style, L"overline");
|
|
|
|
set_text_decoration(style, L"blink");
|
2020-01-30 20:37:38 +01:00
|
|
|
test_text_decoration(style, L"blink");
|
2011-07-20 15:34:43 +02:00
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"invalid");
|
2018-08-28 12:45:49 +02:00
|
|
|
hres = IHTMLStyle_put_textDecoration(style, str);
|
|
|
|
ok(hres == (compat_mode < COMPAT_IE9 ? E_INVALIDARG : S_OK),
|
|
|
|
"put_textDecoration failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
2020-01-30 20:37:38 +01:00
|
|
|
test_text_decoration(style, compat_mode < COMPAT_IE9 ? NULL : L"blink");
|
2018-08-28 12:45:49 +02:00
|
|
|
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_textDecoration(style, sDefault);
|
|
|
|
ok(hres == S_OK, "put_textDecoration failed: %08x\n", hres);
|
|
|
|
SysFreeString(sDefault);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_posWidth(style, NULL);
|
|
|
|
ok(hres == E_POINTER, "get_posWidth failed: %08x\n", hres);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_posWidth(style, &f);
|
|
|
|
ok(hres == S_OK, "get_posWidth failed: %08x\n", hres);
|
|
|
|
ok(f == 0.0f, "f = %f\n", f);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_EMPTY;
|
|
|
|
hres = IHTMLStyle_get_width(style, &v);
|
|
|
|
ok(hres == S_OK, "get_width 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)=%p\n", V_BSTR(&v));
|
|
|
|
|
|
|
|
hres = IHTMLStyle_put_posWidth(style, 2.2);
|
|
|
|
ok(hres == S_OK, "put_posWidth failed: %08x\n", hres);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_posWidth(style, &f);
|
|
|
|
ok(hres == S_OK, "get_posWidth failed: %08x\n", hres);
|
|
|
|
ok(f == 2.0f ||
|
|
|
|
f == 2.2f, /* IE8 */
|
|
|
|
"f = %f\n", f);
|
|
|
|
|
2014-09-09 12:50:36 +02:00
|
|
|
l = 0xdeadbeef;
|
|
|
|
hres = IHTMLStyle_get_pixelWidth(style, &l);
|
|
|
|
ok(hres == S_OK, "get_pixelWidth failed: %08x\n", hres);
|
|
|
|
ok(l == 2, "pixelWidth = %d\n", l);
|
|
|
|
|
2011-07-20 15:34:43 +02:00
|
|
|
V_VT(&v) = VT_BSTR;
|
2020-01-30 20:37:28 +01:00
|
|
|
V_BSTR(&v) = SysAllocString(L"auto");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_width(style, v);
|
|
|
|
ok(hres == S_OK, "put_width failed: %08x\n", hres);
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_EMPTY;
|
|
|
|
hres = IHTMLStyle_get_width(style, &v);
|
|
|
|
ok(hres == S_OK, "get_width failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"auto"), "V_BSTR(v)=%s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2011-07-20 15:34:43 +02:00
|
|
|
VariantClear(&v);
|
|
|
|
|
2016-10-07 18:13:59 +02:00
|
|
|
l = 0xdeadbeef;
|
|
|
|
hres = IHTMLStyle_get_pixelWidth(style, &l);
|
|
|
|
ok(hres == S_OK, "get_pixelWidth failed: %08x\n", hres);
|
|
|
|
ok(!l, "pixelWidth = %d\n", l);
|
|
|
|
|
2011-07-20 15:34:43 +02:00
|
|
|
V_VT(&v) = VT_I4;
|
|
|
|
V_I4(&v) = 100;
|
|
|
|
hres = IHTMLStyle_put_width(style, v);
|
|
|
|
ok(hres == S_OK, "put_width failed: %08x\n", hres);
|
|
|
|
|
2018-08-28 12:45:49 +02:00
|
|
|
hres = IHTMLStyle_get_width(style, &v);
|
|
|
|
ok(hres == S_OK, "get_width failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
test_var_bstr(&v, compat_mode < COMPAT_IE9 ? L"100px" : L"auto");
|
2018-08-28 12:45:49 +02:00
|
|
|
VariantClear(&v);
|
|
|
|
|
2014-09-09 12:50:36 +02:00
|
|
|
l = 0xdeadbeef;
|
|
|
|
hres = IHTMLStyle_get_pixelWidth(style, &l);
|
|
|
|
ok(hres == S_OK, "get_pixelWidth failed: %08x\n", hres);
|
2018-08-28 12:45:49 +02:00
|
|
|
ok(l == (compat_mode < COMPAT_IE9 ? 100 : 0), "pixelWidth = %d\n", l);
|
2014-09-09 12:50:36 +02:00
|
|
|
|
2011-07-20 15:34:43 +02:00
|
|
|
V_VT(&v) = VT_EMPTY;
|
|
|
|
hres = IHTMLStyle_get_width(style, &v);
|
|
|
|
ok(hres == S_OK, "get_width failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), compat_mode < COMPAT_IE9 ? L"100px" : L"auto"), "V_BSTR(v)=%s\n",
|
2018-08-28 12:45:49 +02:00
|
|
|
wine_dbgstr_w(V_BSTR(&v)));
|
2011-07-20 15:34:43 +02:00
|
|
|
VariantClear(&v);
|
|
|
|
|
2012-09-04 13:59:09 +02:00
|
|
|
hres = IHTMLStyle_put_pixelWidth(style, 50);
|
|
|
|
ok(hres == S_OK, "put_pixelWidth failed: %08x\n", hres);
|
|
|
|
|
2014-09-09 12:50:36 +02:00
|
|
|
l = 0xdeadbeef;
|
|
|
|
hres = IHTMLStyle_get_pixelWidth(style, &l);
|
|
|
|
ok(hres == S_OK, "get_pixelWidth failed: %08x\n", hres);
|
|
|
|
ok(l == 50, "pixelWidth = %d\n", l);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_pixelWidth(style, NULL);
|
|
|
|
ok(hres == E_POINTER, "get_pixelWidth failed: %08x\n", hres);
|
|
|
|
|
2012-09-04 13:59:09 +02:00
|
|
|
V_VT(&v) = VT_EMPTY;
|
|
|
|
hres = IHTMLStyle_get_width(style, &v);
|
|
|
|
ok(hres == S_OK, "get_width failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"50px"), "V_BSTR(v)=%s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2012-09-04 13:59:09 +02:00
|
|
|
VariantClear(&v);
|
|
|
|
|
2011-07-20 15:34:43 +02:00
|
|
|
/* margin tests */
|
|
|
|
str = (void*)0xdeadbeef;
|
|
|
|
hres = IHTMLStyle_get_margin(style, &str);
|
|
|
|
ok(hres == S_OK, "get_margin failed: %08x\n", hres);
|
|
|
|
ok(!str, "margin = %s\n", wine_dbgstr_w(str));
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"1");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_margin(style, str);
|
|
|
|
ok(hres == S_OK, "put_margin failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_margin(style, &str);
|
|
|
|
ok(hres == S_OK, "get_margin failed: %08x\n", hres);
|
2018-08-28 12:45:49 +02:00
|
|
|
if(compat_mode < COMPAT_IE9)
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"1px"), "margin = %s\n", wine_dbgstr_w(str));
|
2018-08-28 12:45:49 +02:00
|
|
|
else
|
|
|
|
ok(!str, "margin = %s\n", wine_dbgstr_w(str));
|
|
|
|
SysFreeString(str);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"2px");
|
2018-08-28 12:45:49 +02:00
|
|
|
hres = IHTMLStyle_put_margin(style, str);
|
|
|
|
ok(hres == S_OK, "put_margin failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_margin(style, &str);
|
|
|
|
ok(hres == S_OK, "get_margin failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"2px"), "margin = %s\n", wine_dbgstr_w(str));
|
2011-07-20 15:34:43 +02:00
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_put_margin(style, NULL);
|
|
|
|
ok(hres == S_OK, "put_margin failed: %08x\n", hres);
|
|
|
|
|
|
|
|
str = (void*)0xdeadbeef;
|
|
|
|
hres = IHTMLStyle_get_marginTop(style, &v);
|
|
|
|
ok(hres == S_OK, "get_marginTop failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(marginTop) = %d\n", V_VT(&v));
|
|
|
|
ok(!V_BSTR(&v), "V_BSTR(marginTop) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
|
|
|
|
|
|
|
V_VT(&v) = VT_BSTR;
|
2020-01-30 20:37:28 +01:00
|
|
|
V_BSTR(&v) = SysAllocString(L"6px");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_marginTop(style, v);
|
|
|
|
SysFreeString(V_BSTR(&v));
|
|
|
|
ok(hres == S_OK, "put_marginTop failed: %08x\n", hres);
|
|
|
|
|
|
|
|
str = (void*)0xdeadbeef;
|
|
|
|
hres = IHTMLStyle_get_marginTop(style, &v);
|
|
|
|
ok(hres == S_OK, "get_marginTop failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(marginTop) = %d\n", V_VT(&v));
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"6px"), "V_BSTR(marginTop) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2011-07-20 15:34:43 +02:00
|
|
|
VariantClear(&v);
|
|
|
|
|
2012-01-26 14:33:15 +01:00
|
|
|
V_VT(&v) = VT_I4;
|
|
|
|
V_I4(&v) = 5;
|
|
|
|
hres = IHTMLStyle_put_marginTop(style, v);
|
|
|
|
ok(hres == S_OK, "put_marginTop failed: %08x\n", hres);
|
|
|
|
|
|
|
|
str = (void*)0xdeadbeef;
|
|
|
|
hres = IHTMLStyle_get_marginTop(style, &v);
|
|
|
|
ok(hres == S_OK, "get_marginTop failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(marginTop) = %d\n", V_VT(&v));
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), compat_mode < COMPAT_IE9 ? L"5px" : L"6px"),
|
2018-08-28 12:45:49 +02:00
|
|
|
"V_BSTR(marginTop) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2012-01-26 14:33:15 +01:00
|
|
|
VariantClear(&v);
|
|
|
|
|
2011-07-20 15:34:43 +02:00
|
|
|
str = NULL;
|
|
|
|
hres = IHTMLStyle_get_border(style, &str);
|
|
|
|
ok(hres == S_OK, "get_border failed: %08x\n", hres);
|
|
|
|
ok(!str || !*str, "str is not empty\n");
|
|
|
|
SysFreeString(str);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"1px");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_border(style, str);
|
|
|
|
ok(hres == S_OK, "put_border failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_EMPTY;
|
|
|
|
hres = IHTMLStyle_get_left(style, &v);
|
|
|
|
ok(hres == S_OK, "get_left 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);
|
|
|
|
|
2013-01-07 14:32:56 +01:00
|
|
|
l = 0xdeadbeef;
|
|
|
|
hres = IHTMLStyle_get_pixelLeft(style, &l);
|
|
|
|
ok(hres == S_OK, "get_pixelLeft failed: %08x\n", hres);
|
|
|
|
ok(!l, "pixelLeft = %d\n", l);
|
|
|
|
|
2011-07-20 15:34:43 +02:00
|
|
|
/* Test posLeft */
|
|
|
|
hres = IHTMLStyle_get_posLeft(style, NULL);
|
|
|
|
ok(hres == E_POINTER, "get_posLeft failed: %08x\n", hres);
|
|
|
|
|
|
|
|
f = 1.0f;
|
|
|
|
hres = IHTMLStyle_get_posLeft(style, &f);
|
|
|
|
ok(hres == S_OK, "get_posLeft failed: %08x\n", hres);
|
|
|
|
ok(f == 0.0, "expected 0.0 got %f\n", f);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_put_posLeft(style, 4.9f);
|
|
|
|
ok(hres == S_OK, "put_posLeft failed: %08x\n", hres);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_posLeft(style, &f);
|
|
|
|
ok(hres == S_OK, "get_posLeft failed: %08x\n", hres);
|
|
|
|
ok(f == 4.0 ||
|
|
|
|
f == 4.9f, /* IE8 */
|
|
|
|
"expected 4.0 or 4.9 (IE8) got %f\n", f);
|
|
|
|
|
|
|
|
/* Ensure left is updated correctly. */
|
|
|
|
V_VT(&v) = VT_EMPTY;
|
|
|
|
hres = IHTMLStyle_get_left(style, &v);
|
|
|
|
ok(hres == S_OK, "get_left failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"4px") ||
|
|
|
|
!lstrcmpW(V_BSTR(&v), L"4.9px"), /* IE8 */
|
2011-07-20 15:34:43 +02:00
|
|
|
"V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
/* Test left */
|
|
|
|
V_VT(&v) = VT_BSTR;
|
2020-01-30 20:37:28 +01:00
|
|
|
V_BSTR(&v) = SysAllocString(L"3px");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_left(style, v);
|
|
|
|
ok(hres == S_OK, "put_left failed: %08x\n", hres);
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_posLeft(style, &f);
|
|
|
|
ok(hres == S_OK, "get_posLeft failed: %08x\n", hres);
|
|
|
|
ok(f == 3.0, "expected 3.0 got %f\n", f);
|
|
|
|
|
2013-01-07 14:32:56 +01:00
|
|
|
l = 0xdeadbeef;
|
|
|
|
hres = IHTMLStyle_get_pixelLeft(style, &l);
|
|
|
|
ok(hres == S_OK, "get_pixelLeft failed: %08x\n", hres);
|
|
|
|
ok(l == 3, "pixelLeft = %d\n", l);
|
|
|
|
|
2011-07-20 15:34:43 +02:00
|
|
|
V_VT(&v) = VT_EMPTY;
|
|
|
|
hres = IHTMLStyle_get_left(style, &v);
|
|
|
|
ok(hres == S_OK, "get_left failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"3px"), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2011-07-20 15:34:43 +02:00
|
|
|
VariantClear(&v);
|
|
|
|
|
2013-01-10 14:20:16 +01:00
|
|
|
V_VT(&v) = VT_BSTR;
|
2020-01-30 20:37:28 +01:00
|
|
|
V_BSTR(&v) = SysAllocString(L"4.99");
|
2013-01-10 14:20:16 +01:00
|
|
|
hres = IHTMLStyle_put_left(style, v);
|
|
|
|
ok(hres == S_OK, "put_left failed: %08x\n", hres);
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
l = 0xdeadbeef;
|
|
|
|
hres = IHTMLStyle_get_pixelLeft(style, &l);
|
|
|
|
ok(hres == S_OK, "get_pixelLeft failed: %08x\n", hres);
|
2018-08-28 12:45:49 +02:00
|
|
|
ok(l == (compat_mode < COMPAT_IE9 ? 4 : 3), "pixelLeft = %d\n", l);
|
2013-01-10 14:20:16 +01:00
|
|
|
|
2011-07-20 15:34:43 +02:00
|
|
|
V_VT(&v) = VT_NULL;
|
|
|
|
hres = IHTMLStyle_put_left(style, v);
|
|
|
|
ok(hres == S_OK, "put_left failed: %08x\n", hres);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_EMPTY;
|
|
|
|
hres = IHTMLStyle_get_left(style, &v);
|
|
|
|
ok(hres == S_OK, "get_left 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_EMPTY;
|
|
|
|
hres = IHTMLStyle_get_top(style, &v);
|
|
|
|
ok(hres == S_OK, "get_top 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);
|
|
|
|
|
2013-01-07 14:32:56 +01:00
|
|
|
l = 0xdeadbeef;
|
|
|
|
hres = IHTMLStyle_get_pixelLeft(style, &l);
|
|
|
|
ok(hres == S_OK, "get_pixelLeft failed: %08x\n", hres);
|
|
|
|
ok(!l, "pixelLeft = %d\n", l);
|
|
|
|
|
2013-01-07 14:33:12 +01:00
|
|
|
hres = IHTMLStyle_put_pixelLeft(style, 6);
|
|
|
|
ok(hres == S_OK, "put_pixelLeft failed: %08x\n", hres);
|
|
|
|
|
|
|
|
l = 0xdeadbeef;
|
|
|
|
hres = IHTMLStyle_get_pixelLeft(style, &l);
|
|
|
|
ok(hres == S_OK, "get_pixelLeft failed: %08x\n", hres);
|
|
|
|
ok(l == 6, "pixelLeft = %d\n", l);
|
|
|
|
|
2014-09-09 12:50:25 +02:00
|
|
|
hres = IHTMLStyle_get_pixelLeft(style, NULL);
|
|
|
|
ok(hres == E_POINTER, "get_pixelLeft failed: %08x\n", hres);
|
|
|
|
|
2013-01-07 14:33:12 +01:00
|
|
|
V_VT(&v) = VT_EMPTY;
|
|
|
|
hres = IHTMLStyle_get_left(style, &v);
|
|
|
|
ok(hres == S_OK, "get_left failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"6px"), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2013-01-07 14:33:12 +01:00
|
|
|
VariantClear(&v);
|
|
|
|
|
2011-07-20 15:34:43 +02:00
|
|
|
/* Test posTop */
|
|
|
|
hres = IHTMLStyle_get_posTop(style, NULL);
|
|
|
|
ok(hres == E_POINTER, "get_posTop failed: %08x\n", hres);
|
|
|
|
|
|
|
|
f = 1.0f;
|
|
|
|
hres = IHTMLStyle_get_posTop(style, &f);
|
|
|
|
ok(hres == S_OK, "get_posTop failed: %08x\n", hres);
|
|
|
|
ok(f == 0.0, "expected 0.0 got %f\n", f);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_put_posTop(style, 4.9f);
|
|
|
|
ok(hres == S_OK, "put_posTop failed: %08x\n", hres);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_posTop(style, &f);
|
|
|
|
ok(hres == S_OK, "get_posTop failed: %08x\n", hres);
|
|
|
|
ok(f == 4.0 ||
|
|
|
|
f == 4.9f, /* IE8 */
|
|
|
|
"expected 4.0 or 4.9 (IE8) got %f\n", f);
|
|
|
|
|
2014-09-09 12:50:54 +02:00
|
|
|
hres = IHTMLStyle_put_pixelTop(style, 6);
|
|
|
|
ok(hres == S_OK, "put_pixelTop failed: %08x\n", hres);
|
|
|
|
|
|
|
|
l = 0xdeadbeef;
|
|
|
|
hres = IHTMLStyle_get_pixelTop(style, &l);
|
|
|
|
ok(hres == S_OK, "get_pixelTop failed: %08x\n", hres);
|
|
|
|
ok(l == 6, "pixelTop = %d\n", l);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_pixelTop(style, NULL);
|
|
|
|
ok(hres == E_POINTER, "get_pixelTop failed: %08x\n", hres);
|
|
|
|
|
2011-07-20 15:34:43 +02:00
|
|
|
V_VT(&v) = VT_BSTR;
|
2020-01-30 20:37:28 +01:00
|
|
|
V_BSTR(&v) = SysAllocString(L"3px");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_top(style, v);
|
|
|
|
ok(hres == S_OK, "put_top failed: %08x\n", hres);
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_EMPTY;
|
|
|
|
hres = IHTMLStyle_get_top(style, &v);
|
|
|
|
ok(hres == S_OK, "get_top failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"3px"), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2011-07-20 15:34:43 +02:00
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_posTop(style, &f);
|
|
|
|
ok(hres == S_OK, "get_posTop failed: %08x\n", hres);
|
|
|
|
ok(f == 3.0, "expected 3.0 got %f\n", f);
|
|
|
|
|
2014-09-09 12:50:54 +02:00
|
|
|
l = 0xdeadbeef;
|
|
|
|
hres = IHTMLStyle_get_pixelTop(style, &l);
|
|
|
|
ok(hres == S_OK, "get_pixelTop failed: %08x\n", hres);
|
|
|
|
ok(l == 3, "pixelTop = %d\n", l);
|
|
|
|
|
2016-10-07 18:13:59 +02:00
|
|
|
V_VT(&v) = VT_BSTR;
|
2020-01-30 20:37:28 +01:00
|
|
|
V_BSTR(&v) = SysAllocString(L"100%");
|
2016-10-07 18:13:59 +02:00
|
|
|
hres = IHTMLStyle_put_top(style, v);
|
|
|
|
ok(hres == S_OK, "put_top failed: %08x\n", hres);
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
l = 0xdeadbeef;
|
|
|
|
hres = IHTMLStyle_get_pixelTop(style, &l);
|
|
|
|
ok(hres == S_OK, "get_pixelTop failed: %08x\n", hres);
|
|
|
|
ok(!l, "pixelTop = %d\n", l);
|
|
|
|
|
2011-07-20 15:34:43 +02:00
|
|
|
V_VT(&v) = VT_NULL;
|
|
|
|
hres = IHTMLStyle_put_top(style, v);
|
|
|
|
ok(hres == S_OK, "put_top failed: %08x\n", hres);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_EMPTY;
|
|
|
|
hres = IHTMLStyle_get_top(style, &v);
|
|
|
|
ok(hres == S_OK, "get_top 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);
|
|
|
|
|
2014-09-09 12:50:54 +02:00
|
|
|
l = 0xdeadbeef;
|
|
|
|
hres = IHTMLStyle_get_pixelTop(style, &l);
|
|
|
|
ok(hres == S_OK, "get_pixelTop failed: %08x\n", hres);
|
|
|
|
ok(!l, "pixelTop = %d\n", l);
|
|
|
|
|
2011-07-20 15:34:43 +02:00
|
|
|
/* Test posHeight */
|
|
|
|
hres = IHTMLStyle_get_posHeight(style, NULL);
|
|
|
|
ok(hres == E_POINTER, "get_posHeight failed: %08x\n", hres);
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
f = 1.0f;
|
|
|
|
hres = IHTMLStyle_get_posHeight(style, &f);
|
|
|
|
ok(hres == S_OK, "get_posHeight failed: %08x\n", hres);
|
|
|
|
ok(f == 0.0, "expected 0.0 got %f\n", f);
|
|
|
|
|
2014-09-09 12:50:46 +02:00
|
|
|
l = 0xdeadbeef;
|
|
|
|
hres = IHTMLStyle_get_pixelHeight(style, &l);
|
|
|
|
ok(hres == S_OK, "get_pixelHeight failed: %08x\n", hres);
|
|
|
|
ok(!l, "pixelHeight = %d\n", l);
|
|
|
|
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_posHeight(style, 4.9f);
|
|
|
|
ok(hres == S_OK, "put_posHeight failed: %08x\n", hres);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_posHeight(style, &f);
|
|
|
|
ok(hres == S_OK, "get_posHeight failed: %08x\n", hres);
|
|
|
|
ok(f == 4.0 ||
|
|
|
|
f == 4.9f, /* IE8 */
|
|
|
|
"expected 4.0 or 4.9 (IE8) got %f\n", f);
|
|
|
|
|
2014-09-09 12:50:46 +02:00
|
|
|
l = 0xdeadbeef;
|
|
|
|
hres = IHTMLStyle_get_pixelHeight(style, &l);
|
|
|
|
ok(hres == S_OK, "get_pixelHeight failed: %08x\n", hres);
|
|
|
|
ok(l == 4 ||
|
|
|
|
l == 5, /* IE8 */
|
|
|
|
"pixelHeight = %d\n", l);
|
|
|
|
|
2011-07-20 15:34:43 +02:00
|
|
|
V_VT(&v) = VT_BSTR;
|
2020-01-30 20:37:28 +01:00
|
|
|
V_BSTR(&v) = SysAllocString(L"70px");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_height(style, v);
|
|
|
|
ok(hres == S_OK, "put_height failed: %08x\n", hres);
|
|
|
|
VariantClear(&v);
|
|
|
|
|
2011-11-12 14:32:31 +01:00
|
|
|
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));
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"70px"), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2011-11-12 14:32:31 +01:00
|
|
|
VariantClear(&v);
|
|
|
|
|
2014-09-09 12:50:46 +02:00
|
|
|
l = 0xdeadbeef;
|
|
|
|
hres = IHTMLStyle_get_pixelHeight(style, &l);
|
|
|
|
ok(hres == S_OK, "get_pixelHeight failed: %08x\n", hres);
|
|
|
|
ok(l == 70, "pixelHeight = %d\n", l);
|
|
|
|
|
2016-10-07 18:13:59 +02:00
|
|
|
V_VT(&v) = VT_BSTR;
|
2020-01-30 20:37:28 +01:00
|
|
|
V_BSTR(&v) = SysAllocString(L"50%");
|
2016-10-07 18:13:59 +02:00
|
|
|
hres = IHTMLStyle_put_height(style, v);
|
|
|
|
ok(hres == S_OK, "put_height failed: %08x\n", hres);
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
l = 0xdeadbeef;
|
|
|
|
hres = IHTMLStyle_get_pixelHeight(style, &l);
|
|
|
|
ok(hres == S_OK, "get_pixelHeight failed: %08x\n", hres);
|
|
|
|
ok(!l, "pixelHeight = %d\n", l);
|
|
|
|
|
2012-12-06 14:24:14 +01:00
|
|
|
V_VT(&v) = VT_BSTR;
|
|
|
|
V_BSTR(&v) = NULL;
|
|
|
|
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(!V_BSTR(&v), "V_BSTR(v) = %s, expected NULL\n", wine_dbgstr_w(V_BSTR(&v)));
|
|
|
|
VariantClear(&v);
|
|
|
|
|
2014-09-09 12:50:46 +02:00
|
|
|
l = 0xdeadbeef;
|
|
|
|
hres = IHTMLStyle_get_pixelHeight(style, &l);
|
|
|
|
ok(hres == S_OK, "get_pixelHeight failed: %08x\n", hres);
|
|
|
|
ok(!l, "pixelHeight = %d\n", l);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_put_pixelHeight(style, 50);
|
|
|
|
ok(hres == S_OK, "put_pixelHeight failed: %08x\n", hres);
|
|
|
|
|
|
|
|
l = 0xdeadbeef;
|
|
|
|
hres = IHTMLStyle_get_pixelHeight(style, &l);
|
|
|
|
ok(hres == S_OK, "get_pixelHeight failed: %08x\n", hres);
|
|
|
|
ok(l == 50, "pixelHeight = %d\n", l);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_pixelHeight(style, NULL);
|
|
|
|
ok(hres == E_POINTER, "get_pixelHeight failed: %08x\n", hres);
|
|
|
|
|
2011-11-12 14:32:31 +01:00
|
|
|
V_VT(&v) = VT_I4;
|
|
|
|
V_I4(&v) = 64;
|
|
|
|
hres = IHTMLStyle_put_height(style, v);
|
|
|
|
ok(hres == S_OK, "put_height failed: %08x\n", hres);
|
|
|
|
|
2011-07-20 15:34:43 +02:00
|
|
|
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));
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), compat_mode < COMPAT_IE9 ? L"64px" : L"50px"),
|
2018-08-28 12:45:49 +02:00
|
|
|
"V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2011-07-20 15:34:43 +02:00
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_posHeight(style, &f);
|
|
|
|
ok(hres == S_OK, "get_posHeight failed: %08x\n", hres);
|
2018-08-28 12:45:49 +02:00
|
|
|
ok(f == (compat_mode < COMPAT_IE9 ? 64.0 : 50), "expected 64.0 got %f\n", f);
|
2011-07-20 15:34:43 +02:00
|
|
|
|
2014-09-09 12:50:46 +02:00
|
|
|
l = 0xdeadbeef;
|
|
|
|
hres = IHTMLStyle_get_pixelHeight(style, &l);
|
|
|
|
ok(hres == S_OK, "get_pixelHeight failed: %08x\n", hres);
|
2018-08-28 12:45:49 +02:00
|
|
|
ok(l == (compat_mode < COMPAT_IE9 ? 64 : 50), "pixelHeight = %d\n", l);
|
2014-09-09 12:50:46 +02:00
|
|
|
|
2011-07-20 15:34:43 +02:00
|
|
|
str = (void*)0xdeadbeef;
|
|
|
|
hres = IHTMLStyle_get_cursor(style, &str);
|
|
|
|
ok(hres == S_OK, "get_cursor failed: %08x\n", hres);
|
|
|
|
ok(!str, "get_cursor != NULL\n");
|
|
|
|
SysFreeString(str);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"default");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_cursor(style, str);
|
|
|
|
ok(hres == S_OK, "put_cursor failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
str = NULL;
|
|
|
|
hres = IHTMLStyle_get_cursor(style, &str);
|
|
|
|
ok(hres == S_OK, "get_cursor failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"default"), "get_cursor returned %s\n", wine_dbgstr_w(str));
|
2011-07-20 15:34:43 +02:00
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_EMPTY;
|
|
|
|
hres = IHTMLStyle_get_verticalAlign(style, &v);
|
|
|
|
ok(hres == S_OK, "get_vertivalAlign 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;
|
2020-01-30 20:37:28 +01:00
|
|
|
V_BSTR(&v) = SysAllocString(L"middle");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_verticalAlign(style, v);
|
|
|
|
ok(hres == S_OK, "put_vertivalAlign failed: %08x\n", hres);
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_EMPTY;
|
|
|
|
hres = IHTMLStyle_get_verticalAlign(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));
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"middle"), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2011-07-20 15:34:43 +02:00
|
|
|
VariantClear(&v);
|
|
|
|
|
2012-04-04 10:30:47 +02:00
|
|
|
V_VT(&v) = VT_I4;
|
|
|
|
V_I4(&v) = 100;
|
|
|
|
hres = IHTMLStyle_put_verticalAlign(style, v);
|
|
|
|
ok(hres == S_OK, "put_vertivalAlign failed: %08x\n", hres);
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_EMPTY;
|
|
|
|
hres = IHTMLStyle_get_verticalAlign(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));
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), compat_mode < COMPAT_IE9 ? L"100px" : L"middle"),
|
2018-08-28 12:45:49 +02:00
|
|
|
"V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2012-04-04 10:30:47 +02:00
|
|
|
VariantClear(&v);
|
|
|
|
|
2011-07-20 15:34:43 +02:00
|
|
|
str = (void*)0xdeadbeef;
|
|
|
|
hres = IHTMLStyle_get_textAlign(style, &str);
|
|
|
|
ok(hres == S_OK, "get_textAlign failed: %08x\n", hres);
|
|
|
|
ok(!str, "textAlign != NULL\n");
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"center");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_textAlign(style, str);
|
|
|
|
ok(hres == S_OK, "put_textAlign failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
str = NULL;
|
|
|
|
hres = IHTMLStyle_get_textAlign(style, &str);
|
|
|
|
ok(hres == S_OK, "get_textAlign failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"center"), "textAlign = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2011-07-20 15:34:43 +02:00
|
|
|
SysFreeString(str);
|
|
|
|
|
2014-08-09 02:31:31 +02:00
|
|
|
V_VT(&v) = VT_NULL;
|
|
|
|
hres = IHTMLStyle_get_textIndent(style, &v);
|
|
|
|
ok(hres == S_OK, "get_textIndent failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(textIndent) = %d\n", V_VT(&v));
|
|
|
|
ok(!V_BSTR(&v), "V_BSTR(textIndent) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
|
|
|
|
|
|
|
V_VT(&v) = VT_I4;
|
|
|
|
V_I4(&v) = 6;
|
|
|
|
hres = IHTMLStyle_put_textIndent(style, v);
|
|
|
|
ok(hres == S_OK, "put_textIndent failed: %08x\n", hres);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_NULL;
|
|
|
|
hres = IHTMLStyle_get_textIndent(style, &v);
|
|
|
|
ok(hres == S_OK, "get_textIndent failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(textIndent) = %d\n", V_VT(&v));
|
2018-08-28 12:45:49 +02:00
|
|
|
if(compat_mode < COMPAT_IE9)
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"6px"), "textIndent = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2018-08-28 12:45:49 +02:00
|
|
|
else
|
|
|
|
ok(!V_BSTR(&v), "textIndent = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2014-08-09 02:31:31 +02:00
|
|
|
|
2014-07-31 06:22:25 +02:00
|
|
|
str = (void*)0xdeadbeef;
|
|
|
|
hres = IHTMLStyle_get_textTransform(style, &str);
|
|
|
|
ok(hres == S_OK, "get_textTransform failed: %08x\n", hres);
|
|
|
|
ok(!str, "textTransform != NULL\n");
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"lowercase");
|
2014-07-31 06:22:25 +02:00
|
|
|
hres = IHTMLStyle_put_textTransform(style, str);
|
|
|
|
ok(hres == S_OK, "put_textTransform failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
str = NULL;
|
|
|
|
hres = IHTMLStyle_get_textTransform(style, &str);
|
|
|
|
ok(hres == S_OK, "get_textTransform failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"lowercase"), "textTransform = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2014-07-31 06:22:25 +02:00
|
|
|
SysFreeString(str);
|
|
|
|
|
2011-07-20 15:34:43 +02:00
|
|
|
str = (void*)0xdeadbeef;
|
|
|
|
hres = IHTMLStyle_get_filter(style, &str);
|
|
|
|
ok(hres == S_OK, "get_filter failed: %08x\n", hres);
|
|
|
|
ok(!str, "filter != NULL\n");
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"alpha(opacity=100)");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_filter(style, str);
|
|
|
|
ok(hres == S_OK, "put_filter failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
2018-09-06 16:15:11 +02:00
|
|
|
hres = IHTMLStyle_put_filter(style, NULL);
|
|
|
|
ok(hres == S_OK, "put_filter failed: %08x\n", hres);
|
|
|
|
|
|
|
|
str = (void*)0xdeadbeef;
|
|
|
|
hres = IHTMLStyle_get_filter(style, &str);
|
|
|
|
ok(hres == S_OK, "get_filter failed: %08x\n", hres);
|
|
|
|
ok(!str, "filter != NULL\n");
|
|
|
|
|
2011-07-20 15:34:43 +02:00
|
|
|
V_VT(&v) = VT_EMPTY;
|
|
|
|
hres = IHTMLStyle_get_zIndex(style, &v);
|
|
|
|
ok(hres == S_OK, "get_zIndex failed: %08x\n", hres);
|
2018-08-28 12:45:49 +02:00
|
|
|
if(compat_mode < COMPAT_IE9) {
|
|
|
|
ok(V_VT(&v) == VT_I4, "V_VT(v)=%d\n", V_VT(&v));
|
|
|
|
ok(!V_I4(&v), "V_I4(v) != 0\n");
|
|
|
|
}else {
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
|
|
|
|
ok(!V_BSTR(&v), "zIndex = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
|
|
|
}
|
2011-07-20 15:34:43 +02:00
|
|
|
VariantClear(&v);
|
|
|
|
|
2018-08-31 16:36:33 +02:00
|
|
|
if(css_style) {
|
|
|
|
hres = IHTMLCSSStyleDeclaration_get_zIndex(css_style, &v);
|
|
|
|
ok(hres == S_OK, "get_zIndex failed: %08x\n", hres);
|
|
|
|
if(compat_mode < COMPAT_IE9) {
|
|
|
|
ok(V_VT(&v) == VT_I4, "V_VT(v)=%d\n", V_VT(&v));
|
|
|
|
ok(!V_I4(&v), "V_I4(v) != 0\n");
|
|
|
|
}else {
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
|
|
|
|
ok(!V_BSTR(&v), "zIndex = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-07-20 15:34:43 +02:00
|
|
|
V_VT(&v) = VT_BSTR;
|
2020-01-30 20:37:28 +01:00
|
|
|
V_BSTR(&v) = SysAllocString(L"1");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_zIndex(style, v);
|
|
|
|
ok(hres == S_OK, "put_zIndex failed: %08x\n", hres);
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_EMPTY;
|
|
|
|
hres = IHTMLStyle_get_zIndex(style, &v);
|
|
|
|
ok(hres == S_OK, "get_zIndex failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_I4, "V_VT(v)=%d\n", V_VT(&v));
|
|
|
|
ok(V_I4(&v) == 1, "V_I4(v) = %d\n", V_I4(&v));
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
/* fontStyle */
|
|
|
|
hres = IHTMLStyle_get_fontStyle(style, &sDefault);
|
|
|
|
ok(hres == S_OK, "get_fontStyle failed: %08x\n", hres);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"test");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_fontStyle(style, str);
|
2018-08-28 12:45:49 +02:00
|
|
|
ok(hres == (compat_mode < COMPAT_IE9 ? E_INVALIDARG : S_OK),
|
|
|
|
"put_fontStyle failed: %08x\n", hres);
|
2011-07-20 15:34:43 +02:00
|
|
|
SysFreeString(str);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"italic");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_fontStyle(style, str);
|
|
|
|
ok(hres == S_OK, "put_fontStyle failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"oblique");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_fontStyle(style, str);
|
|
|
|
ok(hres == S_OK, "put_fontStyle failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"normal");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_fontStyle(style, str);
|
|
|
|
ok(hres == S_OK, "put_fontStyle failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_put_fontStyle(style, sDefault);
|
|
|
|
ok(hres == S_OK, "put_fontStyle failed: %08x\n", hres);
|
|
|
|
SysFreeString(sDefault);
|
|
|
|
|
|
|
|
/* 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);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"test");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_overflow(style, str);
|
2018-08-28 12:45:49 +02:00
|
|
|
ok(hres == (compat_mode < COMPAT_IE9 ? E_INVALIDARG : S_OK),
|
|
|
|
"put_overflow failed: %08x\n", hres);
|
2011-07-20 15:34:43 +02:00
|
|
|
SysFreeString(str);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"visible");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_overflow(style, str);
|
|
|
|
ok(hres == S_OK, "put_overflow failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"scroll");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_overflow(style, str);
|
|
|
|
ok(hres == S_OK, "put_overflow failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"hidden");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_overflow(style, str);
|
|
|
|
ok(hres == S_OK, "put_overflow failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"auto");
|
2011-07-20 15:34:43 +02:00
|
|
|
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);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"auto"), "str=%s\n", wine_dbgstr_w(str));
|
2011-07-20 15:34:43 +02:00
|
|
|
SysFreeString(str);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"");
|
2011-07-20 15:34:43 +02:00
|
|
|
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(!str, "str=%s\n", wine_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);
|
|
|
|
|
|
|
|
/* Attribute Tests*/
|
|
|
|
hres = IHTMLStyle_getAttribute(style, NULL, 1, &v);
|
|
|
|
ok(hres == E_INVALIDARG, "getAttribute failed: %08x\n", hres);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"position");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_getAttribute(style, str, 1, NULL);
|
|
|
|
ok(hres == E_INVALIDARG, "getAttribute failed: %08x\n", hres);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_getAttribute(style, str, 1, &v);
|
|
|
|
ok(hres == S_OK, "getAttribute failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "type failed: %d\n", V_VT(&v));
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_setAttribute(style, NULL, v, 1);
|
|
|
|
ok(hres == E_INVALIDARG, "setAttribute failed: %08x\n", hres);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_BSTR;
|
2020-01-30 20:37:28 +01:00
|
|
|
V_BSTR(&v) = SysAllocString(L"absolute");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_setAttribute(style, str, v, 1);
|
|
|
|
ok(hres == S_OK, "setAttribute failed: %08x\n", hres);
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_getAttribute(style, str, 1, &v);
|
|
|
|
ok(hres == S_OK, "getAttribute failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "type failed: %d\n", V_VT(&v));
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"absolute"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2011-07-20 15:34:43 +02:00
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_BSTR;
|
|
|
|
V_BSTR(&v) = NULL;
|
|
|
|
hres = IHTMLStyle_setAttribute(style, str, v, 1);
|
|
|
|
ok(hres == S_OK, "setAttribute failed: %08x\n", hres);
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
SysFreeString(str);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"borderLeftStyle");
|
2011-07-20 15:34:43 +02:00
|
|
|
test_border_styles(style, str);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"borderbottomstyle");
|
2011-07-20 15:34:43 +02:00
|
|
|
test_border_styles(style, str);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"borderrightstyle");
|
2011-07-20 15:34:43 +02:00
|
|
|
test_border_styles(style, str);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"bordertopstyle");
|
2011-07-20 15:34:43 +02:00
|
|
|
test_border_styles(style, str);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_borderStyle(style, &sDefault);
|
|
|
|
ok(hres == S_OK, "get_borderStyle failed: %08x\n", hres);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"none dotted dashed solid");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_borderStyle(style, str);
|
|
|
|
ok(hres == S_OK, "put_borderStyle failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"none dotted dashed solid");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_get_borderStyle(style, &str);
|
|
|
|
ok(hres == S_OK, "get_borderStyle failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"none dotted dashed solid"),
|
2011-07-20 15:34:43 +02:00
|
|
|
"expected (none dotted dashed solid) = (%s)\n", wine_dbgstr_w(V_BSTR(&v)));
|
|
|
|
SysFreeString(str);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"double groove ridge inset");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_borderStyle(style, str);
|
|
|
|
ok(hres == S_OK, "put_borderStyle failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"window-inset outset ridge inset");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_borderStyle(style, str);
|
|
|
|
ok(hres == S_OK, "put_borderStyle failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"window-inset");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_borderStyle(style, str);
|
|
|
|
ok(hres == S_OK, "put_borderStyle failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"none none none none none");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_borderStyle(style, str);
|
|
|
|
ok(hres == S_OK, "put_borderStyle failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"invalid none none none");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_borderStyle(style, str);
|
2018-08-28 12:45:49 +02:00
|
|
|
todo_wine_if(compat_mode >= COMPAT_IE9)
|
|
|
|
ok(hres == (compat_mode < COMPAT_IE9 ? E_INVALIDARG : S_OK),
|
|
|
|
"put_borderStyle failed: %08x\n", hres);
|
2011-07-20 15:34:43 +02:00
|
|
|
SysFreeString(str);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"none invalid none none");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_borderStyle(style, str);
|
2018-08-28 12:45:49 +02:00
|
|
|
todo_wine_if(compat_mode >= COMPAT_IE9)
|
|
|
|
ok(hres == (compat_mode < COMPAT_IE9 ? E_INVALIDARG : S_OK),
|
|
|
|
"put_borderStyle failed: %08x\n", hres);
|
2011-07-20 15:34:43 +02:00
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_put_borderStyle(style, sDefault);
|
|
|
|
ok(hres == S_OK, "put_borderStyle failed: %08x\n", hres);
|
|
|
|
SysFreeString(sDefault);
|
|
|
|
|
2016-05-26 16:44:05 +02:00
|
|
|
/* backgroundColor */
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_get_backgroundColor(style, &v);
|
|
|
|
ok(hres == S_OK, "get_backgroundColor: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "type failed: %d\n", V_VT(&v));
|
|
|
|
ok(!V_BSTR(&v), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
|
|
|
|
VariantClear(&v);
|
|
|
|
|
2012-03-30 14:14:16 +02:00
|
|
|
V_VT(&v) = VT_BSTR;
|
2020-01-30 20:37:28 +01:00
|
|
|
V_BSTR(&v) = SysAllocString(L"red");
|
2012-03-30 14:14:16 +02:00
|
|
|
hres = IHTMLStyle_put_backgroundColor(style, v);
|
|
|
|
ok(hres == S_OK, "put_backgroundColor failed: %08x\n", hres);
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_backgroundColor(style, &v);
|
|
|
|
ok(hres == S_OK, "get_backgroundColor: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "type failed: %d\n", V_VT(&v));
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"red"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2012-03-30 14:14:16 +02:00
|
|
|
VariantClear(&v);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"fixed");
|
2014-08-18 17:31:01 +02:00
|
|
|
hres = IHTMLStyle_put_backgroundAttachment(style, str);
|
|
|
|
ok(hres == S_OK, "put_backgroundAttachment failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_backgroundAttachment(style, &str);
|
|
|
|
ok(hres == S_OK, "get_backgroundAttachment failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"fixed"), "ret = %s\n", wine_dbgstr_w(str));
|
2014-08-18 17:31:01 +02:00
|
|
|
SysFreeString(str);
|
|
|
|
|
2011-07-20 15:34:43 +02:00
|
|
|
/* padding */
|
|
|
|
hres = IHTMLStyle_get_padding(style, &str);
|
|
|
|
ok(hres == S_OK, "get_padding failed: %08x\n", hres);
|
|
|
|
ok(!str, "padding = %s\n", wine_dbgstr_w(str));
|
|
|
|
SysFreeString(str);
|
|
|
|
|
2012-01-26 14:33:47 +01:00
|
|
|
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));
|
2018-08-28 12:45:49 +02:00
|
|
|
if(compat_mode < COMPAT_IE9)
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"6px"), "paddingTop = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2018-08-28 12:45:49 +02:00
|
|
|
else
|
|
|
|
ok(!V_BSTR(&v), "paddingTop = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2012-01-26 14:33:47 +01:00
|
|
|
VariantClear(&v);
|
|
|
|
|
2012-01-26 14:33:57 +01:00
|
|
|
hres = IHTMLStyle_get_paddingRight(style, &v);
|
|
|
|
ok(hres == S_OK, "get_paddingRight: %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_paddingRight(style, v);
|
|
|
|
ok(hres == S_OK, "put_paddingRight failed: %08x\n", hres);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_paddingRight(style, &v);
|
|
|
|
ok(hres == S_OK, "get_paddingRight: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
|
2018-08-28 12:45:49 +02:00
|
|
|
if(compat_mode < COMPAT_IE9)
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"6px"), "paddingRight = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2018-08-28 12:45:49 +02:00
|
|
|
else
|
|
|
|
ok(!V_BSTR(&v), "paddingRight = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2012-01-26 14:33:57 +01:00
|
|
|
VariantClear(&v);
|
|
|
|
|
2012-01-26 14:34:05 +01:00
|
|
|
hres = IHTMLStyle_get_paddingBottom(style, &v);
|
|
|
|
ok(hres == S_OK, "get_paddingBottom: %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_paddingBottom(style, v);
|
|
|
|
ok(hres == S_OK, "put_paddingBottom failed: %08x\n", hres);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_paddingBottom(style, &v);
|
|
|
|
ok(hres == S_OK, "get_paddingBottom: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
|
2018-08-28 12:45:49 +02:00
|
|
|
if(compat_mode < COMPAT_IE9)
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"6px"), "paddingBottom = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2018-08-28 12:45:49 +02:00
|
|
|
else
|
|
|
|
ok(!V_BSTR(&v), "paddingBottom = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2012-01-26 14:34:05 +01:00
|
|
|
VariantClear(&v);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"1");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_padding(style, str);
|
|
|
|
ok(hres == S_OK, "put_padding failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_padding(style, &str);
|
|
|
|
ok(hres == S_OK, "get_padding failed: %08x\n", hres);
|
2018-08-28 12:45:49 +02:00
|
|
|
if(compat_mode < COMPAT_IE9)
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"1px"), "padding = %s\n", wine_dbgstr_w(str));
|
2018-08-28 12:45:49 +02:00
|
|
|
else
|
|
|
|
ok(!str, "padding = %s\n", wine_dbgstr_w(str));
|
2011-07-20 15:34:43 +02:00
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
/* PaddingLeft */
|
|
|
|
hres = IHTMLStyle_get_paddingLeft(style, &vDefault);
|
|
|
|
ok(hres == S_OK, "get_paddingLeft: %08x\n", hres);
|
2012-01-26 14:34:22 +01:00
|
|
|
ok(V_VT(&vDefault) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&vDefault));
|
2018-08-28 12:45:49 +02:00
|
|
|
if(compat_mode < COMPAT_IE9)
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&vDefault), L"1px"), "paddingLeft = %s\n",
|
2018-08-28 12:45:49 +02:00
|
|
|
wine_dbgstr_w(V_BSTR(&vDefault)));
|
|
|
|
else
|
|
|
|
ok(!V_BSTR(&vDefault), "paddingLeft = %s\n", wine_dbgstr_w(V_BSTR(&vDefault)));
|
2011-07-20 15:34:43 +02:00
|
|
|
|
|
|
|
V_VT(&v) = VT_BSTR;
|
2020-01-30 20:37:28 +01:00
|
|
|
V_BSTR(&v) = SysAllocString(L"10");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_paddingLeft(style, v);
|
|
|
|
ok(hres == S_OK, "put_paddingLeft: %08x\n", hres);
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_paddingLeft(style, &v);
|
|
|
|
ok(hres == S_OK, "get_paddingLeft: %08x\n", hres);
|
2018-08-28 12:45:49 +02:00
|
|
|
if(compat_mode < COMPAT_IE9)
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"10px"), "paddingLeft = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2018-08-28 12:45:49 +02:00
|
|
|
else
|
|
|
|
ok(!V_BSTR(&v), "paddingLeft = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2011-07-20 15:34:43 +02:00
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_put_paddingLeft(style, vDefault);
|
|
|
|
ok(hres == S_OK, "put_paddingLeft: %08x\n", hres);
|
|
|
|
|
|
|
|
/* BackgroundRepeat */
|
|
|
|
hres = IHTMLStyle_get_backgroundRepeat(style, &sDefault);
|
|
|
|
ok(hres == S_OK, "get_backgroundRepeat failed: %08x\n", hres);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"invalid");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_backgroundRepeat(style, str);
|
2018-08-28 12:45:49 +02:00
|
|
|
ok(hres == (compat_mode < COMPAT_IE9 ? E_INVALIDARG : S_OK),
|
|
|
|
"put_backgroundRepeat failed: %08x\n", hres);
|
2011-07-20 15:34:43 +02:00
|
|
|
SysFreeString(str);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"repeat");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_backgroundRepeat(style, str);
|
|
|
|
ok(hres == S_OK, "put_backgroundRepeat failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"no-repeat");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_backgroundRepeat(style, str);
|
|
|
|
ok(hres == S_OK, "put_backgroundRepeat failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"repeat-x");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_backgroundRepeat(style, str);
|
|
|
|
ok(hres == S_OK, "put_backgroundRepeat failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"repeat-y");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_backgroundRepeat(style, str);
|
|
|
|
ok(hres == S_OK, "put_backgroundRepeat failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_backgroundRepeat(style, &str);
|
|
|
|
ok(hres == S_OK, "get_backgroundRepeat failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"repeat-y"), "str=%s\n", wine_dbgstr_w(str));
|
2011-07-20 15:34:43 +02:00
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_put_backgroundRepeat(style, sDefault);
|
|
|
|
ok(hres == S_OK, "put_backgroundRepeat failed: %08x\n", hres);
|
|
|
|
SysFreeString(sDefault);
|
|
|
|
|
|
|
|
/* BorderColor */
|
|
|
|
hres = IHTMLStyle_get_borderColor(style, &sDefault);
|
|
|
|
ok(hres == S_OK, "get_borderColor failed: %08x\n", hres);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"red green red blue");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_borderColor(style, str);
|
|
|
|
ok(hres == S_OK, "put_borderColor failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_borderColor(style, &str);
|
|
|
|
ok(hres == S_OK, "get_borderColor failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"red green red blue"), "str=%s\n", wine_dbgstr_w(str));
|
2011-07-20 15:34:43 +02:00
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_put_borderColor(style, sDefault);
|
|
|
|
ok(hres == S_OK, "put_borderColor failed: %08x\n", hres);
|
|
|
|
SysFreeString(sDefault);
|
|
|
|
|
|
|
|
/* BorderRight */
|
|
|
|
hres = IHTMLStyle_get_borderRight(style, &sDefault);
|
|
|
|
ok(hres == S_OK, "get_borderRight failed: %08x\n", hres);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"thick dotted red");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_borderRight(style, str);
|
|
|
|
ok(hres == S_OK, "put_borderRight failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
/* IHTMLStyle_get_borderRight appears to have a bug where
|
|
|
|
it returns the first letter of the color. So we check
|
|
|
|
each style individually.
|
|
|
|
*/
|
|
|
|
V_BSTR(&v) = NULL;
|
|
|
|
hres = IHTMLStyle_get_borderRightColor(style, &v);
|
|
|
|
ok(hres == S_OK, "get_borderRightColor failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"red"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2011-07-20 15:34:43 +02:00
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
V_BSTR(&v) = NULL;
|
|
|
|
hres = IHTMLStyle_get_borderRightWidth(style, &v);
|
|
|
|
ok(hres == S_OK, "get_borderRightWidth failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"thick"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2011-07-20 15:34:43 +02:00
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_borderRightStyle(style, &str);
|
|
|
|
ok(hres == S_OK, "get_borderRightStyle failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"dotted"), "str=%s\n", wine_dbgstr_w(str));
|
2011-07-20 15:34:43 +02:00
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_put_borderRight(style, sDefault);
|
|
|
|
ok(hres == S_OK, "put_borderRight failed: %08x\n", hres);
|
|
|
|
SysFreeString(sDefault);
|
|
|
|
|
|
|
|
/* BorderTop */
|
|
|
|
hres = IHTMLStyle_get_borderTop(style, &sDefault);
|
|
|
|
ok(hres == S_OK, "get_borderTop failed: %08x\n", hres);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"thick dotted red");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_borderTop(style, str);
|
|
|
|
ok(hres == S_OK, "put_borderTop failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
/* IHTMLStyle_get_borderTop appears to have a bug where
|
|
|
|
it returns the first letter of the color. So we check
|
|
|
|
each style individually.
|
|
|
|
*/
|
|
|
|
V_BSTR(&v) = NULL;
|
|
|
|
hres = IHTMLStyle_get_borderTopColor(style, &v);
|
|
|
|
ok(hres == S_OK, "get_borderTopColor failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"red"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2011-07-20 15:34:43 +02:00
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
V_BSTR(&v) = NULL;
|
|
|
|
hres = IHTMLStyle_get_borderTopWidth(style, &v);
|
|
|
|
ok(hres == S_OK, "get_borderTopWidth failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"thick"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2011-07-20 15:34:43 +02:00
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_borderTopStyle(style, &str);
|
|
|
|
ok(hres == S_OK, "get_borderTopStyle failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"dotted"), "str=%s\n", wine_dbgstr_w(str));
|
2011-07-20 15:34:43 +02:00
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_put_borderTop(style, sDefault);
|
|
|
|
ok(hres == S_OK, "put_borderTop failed: %08x\n", hres);
|
|
|
|
SysFreeString(sDefault);
|
|
|
|
|
|
|
|
/* BorderBottom */
|
|
|
|
hres = IHTMLStyle_get_borderBottom(style, &sDefault);
|
|
|
|
ok(hres == S_OK, "get_borderBottom failed: %08x\n", hres);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"thick dotted red");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_borderBottom(style, str);
|
|
|
|
ok(hres == S_OK, "put_borderBottom failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
/* IHTMLStyle_get_borderBottom appears to have a bug where
|
|
|
|
it returns the first letter of the color. So we check
|
|
|
|
each style individually.
|
|
|
|
*/
|
|
|
|
V_BSTR(&v) = NULL;
|
|
|
|
hres = IHTMLStyle_get_borderBottomColor(style, &v);
|
|
|
|
ok(hres == S_OK, "get_borderBottomColor failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"red"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2011-07-20 15:34:43 +02:00
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
V_BSTR(&v) = NULL;
|
|
|
|
hres = IHTMLStyle_get_borderBottomWidth(style, &v);
|
|
|
|
ok(hres == S_OK, "get_borderBottomWidth failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"thick"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2011-07-20 15:34:43 +02:00
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_borderBottomStyle(style, &str);
|
|
|
|
ok(hres == S_OK, "get_borderBottomStyle failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"dotted"), "str=%s\n", wine_dbgstr_w(str));
|
2011-07-20 15:34:43 +02:00
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_put_borderBottom(style, sDefault);
|
|
|
|
ok(hres == S_OK, "put_borderBottom failed: %08x\n", hres);
|
|
|
|
SysFreeString(sDefault);
|
|
|
|
|
|
|
|
/* BorderLeft */
|
|
|
|
hres = IHTMLStyle_get_borderLeft(style, &sDefault);
|
|
|
|
ok(hres == S_OK, "get_borderLeft failed: %08x\n", hres);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"thick dotted red");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_borderLeft(style, str);
|
|
|
|
ok(hres == S_OK, "put_borderLeft failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
/* IHTMLStyle_get_borderLeft appears to have a bug where
|
|
|
|
it returns the first letter of the color. So we check
|
|
|
|
each style individually.
|
|
|
|
*/
|
|
|
|
V_BSTR(&v) = NULL;
|
|
|
|
hres = IHTMLStyle_get_borderLeftColor(style, &v);
|
|
|
|
ok(hres == S_OK, "get_borderLeftColor failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"red"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2011-07-20 15:34:43 +02:00
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
V_BSTR(&v) = NULL;
|
|
|
|
hres = IHTMLStyle_get_borderLeftWidth(style, &v);
|
|
|
|
ok(hres == S_OK, "get_borderLeftWidth failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"thick"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2011-07-20 15:34:43 +02:00
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_borderLeftStyle(style, &str);
|
|
|
|
ok(hres == S_OK, "get_borderLeftStyle failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"dotted"), "str=%s\n", wine_dbgstr_w(str));
|
2011-07-20 15:34:43 +02:00
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_put_borderLeft(style, sDefault);
|
|
|
|
ok(hres == S_OK, "put_borderLeft failed: %08x\n", hres);
|
|
|
|
SysFreeString(sDefault);
|
|
|
|
|
|
|
|
/* backgroundPositionX */
|
|
|
|
hres = IHTMLStyle_get_backgroundPositionX(style, &v);
|
|
|
|
ok(hres == S_OK, "get_backgroundPositionX failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
|
|
|
|
ok(!V_BSTR(&v), "backgroundPositionX = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
|
|
|
VariantClear(&v);
|
|
|
|
|
2018-08-31 16:36:33 +02:00
|
|
|
if(css_style) {
|
|
|
|
V_VT(&v) = VT_BSTR;
|
2020-01-30 20:37:28 +01:00
|
|
|
V_BSTR(&v) = SysAllocString(L"11px");
|
2018-08-31 16:36:33 +02:00
|
|
|
hres = IHTMLCSSStyleDeclaration_put_backgroundPositionX(css_style, v);
|
|
|
|
ok(hres == S_OK, "put_backgroundPositionX failed: %08x\n", hres);
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLCSSStyleDeclaration_get_backgroundPositionX(css_style, &v);
|
|
|
|
ok(hres == S_OK, "get_backgroundPositionX failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"11px"), "backgroundPositionX = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2018-08-31 16:36:33 +02:00
|
|
|
VariantClear(&v);
|
|
|
|
}
|
|
|
|
|
2011-07-20 15:34:43 +02:00
|
|
|
V_VT(&v) = VT_BSTR;
|
2020-01-30 20:37:28 +01:00
|
|
|
V_BSTR(&v) = SysAllocString(L"10px");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_backgroundPositionX(style, v);
|
|
|
|
ok(hres == S_OK, "put_backgroundPositionX failed: %08x\n", hres);
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_backgroundPositionX(style, &v);
|
|
|
|
ok(hres == S_OK, "get_backgroundPositionX failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"10px"), "backgroundPositionX = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2011-07-20 15:34:43 +02:00
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
/* backgroundPositionY */
|
|
|
|
hres = IHTMLStyle_get_backgroundPositionY(style, &v);
|
|
|
|
ok(hres == S_OK, "get_backgroundPositionY failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_BSTR;
|
2020-01-30 20:37:28 +01:00
|
|
|
V_BSTR(&v) = SysAllocString(L"15px");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_backgroundPositionY(style, v);
|
|
|
|
ok(hres == S_OK, "put_backgroundPositionY failed: %08x\n", hres);
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_backgroundPositionY(style, &v);
|
|
|
|
ok(hres == S_OK, "get_backgroundPositionY failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"15px"), "backgroundPositionY = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2011-07-20 15:34:43 +02:00
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
/* backgroundPosition */
|
|
|
|
str = NULL;
|
|
|
|
hres = IHTMLStyle_get_backgroundPosition(style, &str);
|
|
|
|
ok(hres == S_OK, "get_backgroundPosition failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"10px 15px"), "backgroundPosition = %s\n", wine_dbgstr_w(str));
|
2011-07-20 15:34:43 +02:00
|
|
|
SysFreeString(str);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"center 20%");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_backgroundPosition(style, str);
|
|
|
|
ok(hres == S_OK, "put_backgroundPosition failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
str = NULL;
|
|
|
|
hres = IHTMLStyle_get_backgroundPosition(style, &str);
|
|
|
|
ok(hres == S_OK, "get_backgroundPosition failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"center 20%"), "backgroundPosition = %s\n", wine_dbgstr_w(str));
|
2011-07-20 15:34:43 +02:00
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_backgroundPositionX(style, &v);
|
|
|
|
ok(hres == S_OK, "get_backgroundPositionX failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"center"), "backgroundPositionX = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2011-07-20 15:34:43 +02:00
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_backgroundPositionY(style, &v);
|
|
|
|
ok(hres == S_OK, "get_backgroundPositionY failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"20%"), "backgroundPositionY = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2011-07-20 15:34:43 +02:00
|
|
|
VariantClear(&v);
|
|
|
|
|
2018-08-31 16:36:50 +02:00
|
|
|
if(css_style) {
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"left 21%");
|
2018-08-31 16:36:50 +02:00
|
|
|
hres = IHTMLCSSStyleDeclaration_put_backgroundPosition(css_style, str);
|
|
|
|
ok(hres == S_OK, "put_backgroundPosition failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
str = NULL;
|
|
|
|
hres = IHTMLCSSStyleDeclaration_get_backgroundPosition(css_style, &str);
|
|
|
|
ok(hres == S_OK, "get_backgroundPosition failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"left 21%"), "backgroundPosition = %s\n", wine_dbgstr_w(str));
|
2018-08-31 16:36:50 +02:00
|
|
|
SysFreeString(str);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* borderTopWidth */
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_get_borderTopWidth(style, &vDefault);
|
|
|
|
ok(hres == S_OK, "get_borderTopWidth: %08x\n", hres);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_BSTR;
|
2020-01-30 20:37:28 +01:00
|
|
|
V_BSTR(&v) = SysAllocString(L"10px");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_borderTopWidth(style, v);
|
|
|
|
ok(hres == S_OK, "put_borderTopWidth: %08x\n", hres);
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_borderTopWidth(style, &v);
|
|
|
|
ok(hres == S_OK, "get_borderTopWidth: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"10px"), "expected 10px = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2011-07-20 15:34:43 +02:00
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_put_borderTopWidth(style, vDefault);
|
|
|
|
ok(hres == S_OK, "put_borderTopWidth: %08x\n", hres);
|
|
|
|
VariantClear(&vDefault);
|
|
|
|
|
|
|
|
/* borderRightWidth */
|
|
|
|
hres = IHTMLStyle_get_borderRightWidth(style, &vDefault);
|
|
|
|
ok(hres == S_OK, "get_borderRightWidth: %08x\n", hres);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_BSTR;
|
2020-01-30 20:37:28 +01:00
|
|
|
V_BSTR(&v) = SysAllocString(L"10");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_borderRightWidth(style, v);
|
|
|
|
ok(hres == S_OK, "put_borderRightWidth: %08x\n", hres);
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_borderRightWidth(style, &v);
|
|
|
|
ok(hres == S_OK, "get_borderRightWidth: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), compat_mode < COMPAT_IE9 ? L"10px" : L"1px"),
|
2018-08-28 12:45:49 +02:00
|
|
|
"borderRightWidth = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2011-07-20 15:34:43 +02:00
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_put_borderRightWidth(style, vDefault);
|
|
|
|
ok(hres == S_OK, "put_borderRightWidth: %08x\n", hres);
|
|
|
|
VariantClear(&vDefault);
|
|
|
|
|
|
|
|
/* borderBottomWidth */
|
|
|
|
hres = IHTMLStyle_get_borderBottomWidth(style, &vDefault);
|
|
|
|
ok(hres == S_OK, "get_borderBottomWidth: %08x\n", hres);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_BSTR;
|
2020-01-30 20:37:28 +01:00
|
|
|
V_BSTR(&v) = SysAllocString(L"10");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_borderBottomWidth(style, v);
|
|
|
|
ok(hres == S_OK, "put_borderBottomWidth: %08x\n", hres);
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_borderBottomWidth(style, &v);
|
|
|
|
ok(hres == S_OK, "get_borderBottomWidth: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), compat_mode < COMPAT_IE9 ? L"10px" : L"1px"),
|
2018-08-28 12:45:49 +02:00
|
|
|
"borderBottomWidth = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2011-07-20 15:34:43 +02:00
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_put_borderBottomWidth(style, vDefault);
|
|
|
|
ok(hres == S_OK, "put_borderBottomWidth: %08x\n", hres);
|
|
|
|
VariantClear(&vDefault);
|
|
|
|
|
|
|
|
/* borderLeftWidth */
|
|
|
|
hres = IHTMLStyle_get_borderLeftWidth(style, &vDefault);
|
|
|
|
ok(hres == S_OK, "get_borderLeftWidth: %08x\n", hres);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_BSTR;
|
2020-01-30 20:37:28 +01:00
|
|
|
V_BSTR(&v) = SysAllocString(L"10");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_borderLeftWidth(style, v);
|
|
|
|
ok(hres == S_OK, "put_borderLeftWidth: %08x\n", hres);
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_borderLeftWidth(style, &v);
|
|
|
|
ok(hres == S_OK, "get_borderLeftWidth: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), compat_mode < COMPAT_IE9 ? L"10px" : L"1px"),
|
2018-08-28 12:45:49 +02:00
|
|
|
"expected 10px = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2011-07-20 15:34:43 +02:00
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_put_borderLeftWidth(style, vDefault);
|
|
|
|
ok(hres == S_OK, "put_borderLeftWidth: %08x\n", hres);
|
|
|
|
VariantClear(&vDefault);
|
|
|
|
|
|
|
|
/* wordSpacing */
|
|
|
|
hres = IHTMLStyle_get_wordSpacing(style, &vDefault);
|
|
|
|
ok(hres == S_OK, "get_wordSpacing: %08x\n", hres);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_BSTR;
|
2020-01-30 20:37:28 +01:00
|
|
|
V_BSTR(&v) = SysAllocString(L"10");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_wordSpacing(style, v);
|
|
|
|
ok(hres == S_OK, "put_wordSpacing: %08x\n", hres);
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_wordSpacing(style, &v);
|
|
|
|
ok(hres == S_OK, "get_wordSpacing: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
|
2018-08-28 12:45:49 +02:00
|
|
|
if(compat_mode < COMPAT_IE9)
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"10px"), "expected 10px = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2018-08-28 12:45:49 +02:00
|
|
|
else
|
|
|
|
ok(!V_BSTR(&v), "expected 10px = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2011-07-20 15:34:43 +02:00
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_put_wordSpacing(style, vDefault);
|
|
|
|
ok(hres == S_OK, "put_wordSpacing: %08x\n", hres);
|
|
|
|
VariantClear(&vDefault);
|
|
|
|
|
|
|
|
/* letterSpacing */
|
|
|
|
hres = IHTMLStyle_get_letterSpacing(style, &vDefault);
|
|
|
|
ok(hres == S_OK, "get_letterSpacing: %08x\n", hres);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_BSTR;
|
2020-01-30 20:37:28 +01:00
|
|
|
V_BSTR(&v) = SysAllocString(L"11");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_letterSpacing(style, v);
|
|
|
|
ok(hres == S_OK, "put_letterSpacing: %08x\n", hres);
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_letterSpacing(style, &v);
|
|
|
|
ok(hres == S_OK, "get_letterSpacing: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
|
2018-08-28 12:45:49 +02:00
|
|
|
if(compat_mode < COMPAT_IE9)
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"11px"), "letterSpacing = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2018-08-28 12:45:49 +02:00
|
|
|
else
|
|
|
|
ok(!V_BSTR(&v), "letterSpacing = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2011-07-20 15:34:43 +02:00
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_put_letterSpacing(style, vDefault);
|
|
|
|
ok(hres == S_OK, "put_letterSpacing: %08x\n", hres);
|
|
|
|
VariantClear(&vDefault);
|
|
|
|
|
|
|
|
/* borderTopColor */
|
|
|
|
hres = IHTMLStyle_get_borderTopColor(style, &vDefault);
|
|
|
|
ok(hres == S_OK, "get_borderTopColor: %08x\n", hres);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_BSTR;
|
2020-01-30 20:37:28 +01:00
|
|
|
V_BSTR(&v) = SysAllocString(L"red");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_borderTopColor(style, v);
|
|
|
|
ok(hres == S_OK, "put_borderTopColor: %08x\n", hres);
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_borderTopColor(style, &v);
|
|
|
|
ok(hres == S_OK, "get_borderTopColor: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"red"), "expected red = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2011-07-20 15:34:43 +02:00
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_put_borderTopColor(style, vDefault);
|
|
|
|
ok(hres == S_OK, "put_borderTopColor: %08x\n", hres);
|
|
|
|
|
|
|
|
/* borderRightColor */
|
|
|
|
hres = IHTMLStyle_get_borderRightColor(style, &vDefault);
|
|
|
|
ok(hres == S_OK, "get_borderRightColor: %08x\n", hres);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_BSTR;
|
2020-01-30 20:37:28 +01:00
|
|
|
V_BSTR(&v) = SysAllocString(L"blue");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_borderRightColor(style, v);
|
|
|
|
ok(hres == S_OK, "put_borderRightColor: %08x\n", hres);
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_borderRightColor(style, &v);
|
|
|
|
ok(hres == S_OK, "get_borderRightColor: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"blue"), "expected blue = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2011-07-20 15:34:43 +02:00
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_put_borderRightColor(style, vDefault);
|
|
|
|
ok(hres == S_OK, "putborderRightColorr: %08x\n", hres);
|
|
|
|
|
|
|
|
/* borderBottomColor */
|
|
|
|
hres = IHTMLStyle_get_borderBottomColor(style, &vDefault);
|
|
|
|
ok(hres == S_OK, "get_borderBottomColor: %08x\n", hres);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_BSTR;
|
2020-01-30 20:37:28 +01:00
|
|
|
V_BSTR(&v) = SysAllocString(L"cyan");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_borderBottomColor(style, v);
|
|
|
|
ok(hres == S_OK, "put_borderBottomColor: %08x\n", hres);
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_borderBottomColor(style, &v);
|
|
|
|
ok(hres == S_OK, "get_borderBottomColor: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"cyan"), "expected cyan = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2011-07-20 15:34:43 +02:00
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_put_borderBottomColor(style, vDefault);
|
|
|
|
ok(hres == S_OK, "put_borderBottomColor: %08x\n", hres);
|
|
|
|
|
|
|
|
/* borderLeftColor */
|
|
|
|
hres = IHTMLStyle_get_borderLeftColor(style, &vDefault);
|
|
|
|
ok(hres == S_OK, "get_borderLeftColor: %08x\n", hres);
|
|
|
|
|
|
|
|
V_VT(&v) = VT_BSTR;
|
2020-01-30 20:37:28 +01:00
|
|
|
V_BSTR(&v) = SysAllocString(L"cyan");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_borderLeftColor(style, v);
|
|
|
|
ok(hres == S_OK, "put_borderLeftColor: %08x\n", hres);
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_borderLeftColor(style, &v);
|
|
|
|
ok(hres == S_OK, "get_borderLeftColor: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(V_BSTR(&v), L"cyan"), "expected cyan = %s\n", wine_dbgstr_w(V_BSTR(&v)));
|
2011-07-20 15:34:43 +02:00
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_put_borderLeftColor(style, vDefault);
|
|
|
|
ok(hres == S_OK, "put_borderLeftColor: %08x\n", hres);
|
|
|
|
|
|
|
|
/* clip */
|
|
|
|
hres = IHTMLStyle_get_clip(style, &str);
|
|
|
|
ok(hres == S_OK, "get_clip failed: %08x\n", hres);
|
|
|
|
ok(!str, "clip = %s\n", wine_dbgstr_w(str));
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"rect(0px 1px 500px 505px)");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_clip(style, str);
|
|
|
|
ok(hres == S_OK, "put_clip failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_clip(style, &str);
|
|
|
|
ok(hres == S_OK, "get_clip failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, compat_mode < COMPAT_IE9 ? L"rect(0px 1px 500px 505px)" : L"rect(0px, 1px, 500px, 505px)"),
|
2018-08-28 12:45:49 +02:00
|
|
|
"clip = %s\n", wine_dbgstr_w(str));
|
2011-07-20 15:34:43 +02:00
|
|
|
SysFreeString(str);
|
|
|
|
|
2012-10-23 13:41:13 +02:00
|
|
|
/* clear */
|
|
|
|
hres = IHTMLStyle_get_clear(style, &str);
|
|
|
|
ok(hres == S_OK, "get_clear failed: %08x\n", hres);
|
|
|
|
ok(!str, "clear = %s\n", wine_dbgstr_w(str));
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"both");
|
2012-10-23 13:41:13 +02:00
|
|
|
hres = IHTMLStyle_put_clear(style, str);
|
|
|
|
ok(hres == S_OK, "put_clear failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_clear(style, &str);
|
|
|
|
ok(hres == S_OK, "get_clear failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"both"), "clear = %s\n", wine_dbgstr_w(str));
|
2012-10-23 13:41:13 +02:00
|
|
|
SysFreeString(str);
|
|
|
|
|
2011-07-20 15:34:43 +02:00
|
|
|
/* pageBreakAfter */
|
|
|
|
hres = IHTMLStyle_get_pageBreakAfter(style, &str);
|
|
|
|
ok(hres == S_OK, "get_pageBreakAfter failed: %08x\n", hres);
|
|
|
|
ok(!str, "pageBreakAfter = %s\n", wine_dbgstr_w(str));
|
|
|
|
|
2018-08-31 16:36:50 +02:00
|
|
|
if(css_style) {
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"right");
|
2018-08-31 16:36:50 +02:00
|
|
|
hres = IHTMLCSSStyleDeclaration_put_pageBreakAfter(css_style, str);
|
|
|
|
ok(hres == S_OK, "put_pageBreakAfter failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
hres = IHTMLCSSStyleDeclaration_get_pageBreakAfter(css_style, &str);
|
|
|
|
ok(hres == S_OK, "get_pageBreakAfter failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"right"), "pageBreakAfter = %s\n", wine_dbgstr_w(str));
|
2018-08-31 16:36:50 +02:00
|
|
|
SysFreeString(str);
|
|
|
|
}
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"always");
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_pageBreakAfter(style, str);
|
|
|
|
ok(hres == S_OK, "put_pageBreakAfter failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_pageBreakAfter(style, &str);
|
|
|
|
ok(hres == S_OK, "get_pageBreakAfter failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"always"), "pageBreakAfter = %s\n", wine_dbgstr_w(str));
|
2011-07-20 15:34:43 +02:00
|
|
|
SysFreeString(str);
|
|
|
|
|
2011-07-21 12:26:37 +02:00
|
|
|
/* pageBreakBefore */
|
|
|
|
hres = IHTMLStyle_get_pageBreakBefore(style, &str);
|
|
|
|
ok(hres == S_OK, "get_pageBreakBefore failed: %08x\n", hres);
|
|
|
|
ok(!str, "pageBreakBefore = %s\n", wine_dbgstr_w(str));
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"always");
|
2011-07-21 12:26:37 +02:00
|
|
|
hres = IHTMLStyle_put_pageBreakBefore(style, str);
|
|
|
|
ok(hres == S_OK, "put_pageBreakBefore failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_pageBreakBefore(style, &str);
|
|
|
|
ok(hres == S_OK, "get_pageBreakBefore failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"always"), "pageBreakBefore = %s\n", wine_dbgstr_w(str));
|
2011-07-21 12:26:37 +02:00
|
|
|
SysFreeString(str);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
test_style_remove_attribute(style, L"pageBreakBefore", VARIANT_TRUE);
|
|
|
|
test_style_remove_attribute(style, L"pageBreakBefore", VARIANT_FALSE);
|
2012-04-16 13:49:22 +02:00
|
|
|
|
|
|
|
hres = IHTMLStyle_get_pageBreakBefore(style, &str);
|
|
|
|
ok(hres == S_OK, "get_pageBreakBefore failed: %08x\n", hres);
|
|
|
|
ok(!str, "pageBreakBefore = %s\n", wine_dbgstr_w(str));
|
|
|
|
|
2013-08-28 17:51:08 +02:00
|
|
|
str = (void*)0xdeadbeef;
|
|
|
|
hres = IHTMLStyle_get_whiteSpace(style, &str);
|
|
|
|
ok(hres == S_OK, "get_whiteSpace failed: %08x\n", hres);
|
|
|
|
ok(!str, "whiteSpace = %s\n", wine_dbgstr_w(str));
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"nowrap");
|
2013-08-28 17:51:08 +02:00
|
|
|
hres = IHTMLStyle_put_whiteSpace(style, str);
|
|
|
|
SysFreeString(str);
|
|
|
|
ok(hres == S_OK, "put_whiteSpace failed: %08x\n", hres);
|
|
|
|
|
|
|
|
str = NULL;
|
|
|
|
hres = IHTMLStyle_get_whiteSpace(style, &str);
|
|
|
|
ok(hres == S_OK, "get_whiteSpace failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"nowrap"), "whiteSpace = %s\n", wine_dbgstr_w(str));
|
2013-08-28 17:51:08 +02:00
|
|
|
SysFreeString(str);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"normal");
|
2015-08-14 16:59:13 +02:00
|
|
|
hres = IHTMLStyle_put_whiteSpace(style, str);
|
|
|
|
SysFreeString(str);
|
|
|
|
ok(hres == S_OK, "put_whiteSpace failed: %08x\n", hres);
|
|
|
|
|
|
|
|
str = NULL;
|
|
|
|
hres = IHTMLStyle_get_whiteSpace(style, &str);
|
|
|
|
ok(hres == S_OK, "get_whiteSpace failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"normal"), "whiteSpace = %s\n", wine_dbgstr_w(str));
|
2015-08-14 16:59:13 +02:00
|
|
|
SysFreeString(str);
|
|
|
|
|
2014-03-24 13:47:56 +01:00
|
|
|
/* listStyleType */
|
|
|
|
hres = IHTMLStyle_get_listStyleType(style, &str);
|
|
|
|
ok(hres == S_OK, "get_listStyleType failed: %08x\n", hres);
|
|
|
|
ok(!str, "listStyleType = %s\n", wine_dbgstr_w(str));
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"square");
|
2014-03-24 13:47:56 +01:00
|
|
|
hres = IHTMLStyle_put_listStyleType(style, str);
|
|
|
|
ok(hres == S_OK, "put_listStyleType failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
str = NULL;
|
|
|
|
hres = IHTMLStyle_get_listStyleType(style, &str);
|
|
|
|
ok(hres == S_OK, "get_listStyleType failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"square"), "listStyleType = %s\n", wine_dbgstr_w(str));
|
2014-08-10 15:14:37 +02:00
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"inside");
|
2014-08-10 15:14:37 +02:00
|
|
|
hres = IHTMLStyle_put_listStylePosition(style, str);
|
|
|
|
ok(hres == S_OK, "put_listStylePosition failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
hres = IHTMLStyle_get_listStylePosition(style, &str);
|
|
|
|
ok(hres == S_OK, "get_listStylePosition failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"inside"), "listStyleType = %s\n", wine_dbgstr_w(str));
|
2014-03-24 13:47:56 +01:00
|
|
|
SysFreeString(str);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"decimal-leading-zero none inside");
|
2014-08-20 15:35:43 +02:00
|
|
|
hres = IHTMLStyle_put_listStyle(style, str);
|
|
|
|
ok(hres == S_OK || broken(hres == E_INVALIDARG), /* win 2000 */
|
|
|
|
"put_listStyle(%s) failed: %08x\n", wine_dbgstr_w(str), hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
if (hres != E_INVALIDARG) {
|
|
|
|
hres = IHTMLStyle_get_listStyle(style, &str);
|
|
|
|
ok(hres == S_OK, "get_listStyle failed: %08x\n", hres);
|
2020-01-28 16:41:37 +01:00
|
|
|
ok(wcsstr(str, L"decimal-leading-zero") && wcsstr(str, L"inside"),
|
2014-08-20 15:35:43 +02:00
|
|
|
"listStyle = %s\n", wine_dbgstr_w(str));
|
2018-08-28 12:45:49 +02:00
|
|
|
if(compat_mode < COMPAT_IE9)
|
2020-01-28 16:41:37 +01:00
|
|
|
ok(wcsstr(str, L"none") != NULL, "listStyle = %s\n", wine_dbgstr_w(str));
|
2018-08-28 12:45:49 +02:00
|
|
|
else
|
|
|
|
todo_wine
|
2020-01-28 16:41:37 +01:00
|
|
|
ok(!wcsstr(str, L"none"), "listStyle = %s\n", wine_dbgstr_w(str));
|
2018-08-28 12:45:49 +02:00
|
|
|
|
2014-08-20 15:35:43 +02:00
|
|
|
SysFreeString(str);
|
|
|
|
} else {
|
|
|
|
win_skip("IHTMLStyle_put_listStyle already failed\n");
|
|
|
|
}
|
|
|
|
|
2014-12-15 19:13:13 +01:00
|
|
|
str = (void*)0xdeadbeef;
|
|
|
|
hres = IHTMLStyle_get_styleFloat(style, &str);
|
|
|
|
ok(hres == S_OK, "get_styleFloat failed: %08x\n", hres);
|
|
|
|
ok(!str, "styleFloat = %s\n", wine_dbgstr_w(str));
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"left");
|
2014-12-15 19:13:13 +01:00
|
|
|
hres = IHTMLStyle_put_styleFloat(style, str);
|
|
|
|
ok(hres == S_OK, "put_styleFloat failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
str = NULL;
|
|
|
|
hres = IHTMLStyle_get_styleFloat(style, &str);
|
|
|
|
ok(hres == S_OK, "get_styleFloat failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"left"), "styleFloat = %s\n", wine_dbgstr_w(str));
|
2018-09-07 14:44:24 +02:00
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
if(css_style) {
|
|
|
|
str = NULL;
|
|
|
|
hres = IHTMLCSSStyleDeclaration_get_cssFloat(css_style, &str);
|
|
|
|
ok(hres == S_OK, "get_cssFloat failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"left"), "cssFloat = %s\n", wine_dbgstr_w(str));
|
2018-09-10 17:27:46 +02:00
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
str = NULL;
|
|
|
|
hres = IHTMLCSSStyleDeclaration_get_styleFloat(css_style, &str);
|
|
|
|
ok(hres == S_OK, "get_styleFloat failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"left"), "styleFloat = %s\n", wine_dbgstr_w(str));
|
2018-09-07 14:44:24 +02:00
|
|
|
SysFreeString(str);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"right");
|
2018-09-07 14:44:24 +02:00
|
|
|
hres = IHTMLCSSStyleDeclaration_put_cssFloat(css_style, str);
|
|
|
|
ok(hres == S_OK, "put_styleFloat failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
str = NULL;
|
|
|
|
hres = IHTMLCSSStyleDeclaration_get_cssFloat(css_style, &str);
|
|
|
|
ok(hres == S_OK, "get_cssFloat failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"right"), "styleFloat = %s\n", wine_dbgstr_w(str));
|
2018-09-07 14:44:24 +02:00
|
|
|
SysFreeString(str);
|
2018-09-10 17:27:46 +02:00
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(L"left");
|
2018-09-10 17:27:46 +02:00
|
|
|
hres = IHTMLCSSStyleDeclaration_put_styleFloat(css_style, str);
|
|
|
|
ok(hres == S_OK, "put_styleFloat failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
str = NULL;
|
|
|
|
hres = IHTMLCSSStyleDeclaration_get_cssFloat(css_style, &str);
|
|
|
|
ok(hres == S_OK, "get_cssFloat failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"left"), "styleFloat = %s\n", wine_dbgstr_w(str));
|
2018-09-10 17:27:46 +02:00
|
|
|
SysFreeString(str);
|
2018-09-07 14:44:24 +02:00
|
|
|
}
|
2014-12-15 19:13:13 +01:00
|
|
|
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_QueryInterface(style, &IID_IHTMLStyle2, (void**)&style2);
|
|
|
|
ok(hres == S_OK, "Could not get IHTMLStyle2 iface: %08x\n", hres);
|
|
|
|
if(SUCCEEDED(hres)) {
|
|
|
|
test_style2(style2);
|
|
|
|
IHTMLStyle2_Release(style2);
|
|
|
|
}
|
|
|
|
|
|
|
|
hres = IHTMLStyle_QueryInterface(style, &IID_IHTMLStyle3, (void**)&style3);
|
|
|
|
ok(hres == S_OK, "Could not get IHTMLStyle3 iface: %08x\n", hres);
|
|
|
|
if(SUCCEEDED(hres)) {
|
2018-09-06 16:15:19 +02:00
|
|
|
test_style3(style3, css_style);
|
2011-07-20 15:34:43 +02:00
|
|
|
IHTMLStyle3_Release(style3);
|
|
|
|
}
|
|
|
|
|
|
|
|
hres = IHTMLStyle_QueryInterface(style, &IID_IHTMLStyle4, (void**)&style4);
|
|
|
|
ok(hres == S_OK, "Could not get IHTMLStyle4 iface: %08x\n", hres);
|
|
|
|
if(SUCCEEDED(hres)) {
|
|
|
|
test_style4(style4);
|
|
|
|
IHTMLStyle4_Release(style4);
|
|
|
|
}
|
2013-09-30 16:05:34 +02:00
|
|
|
|
2014-09-02 04:20:01 +02:00
|
|
|
hres = IHTMLStyle_QueryInterface(style, &IID_IHTMLStyle5, (void**)&style5);
|
|
|
|
if(SUCCEEDED(hres)) {
|
|
|
|
test_style5(style5);
|
|
|
|
IHTMLStyle5_Release(style5);
|
|
|
|
}else {
|
|
|
|
win_skip("IHTMLStyle5 not available\n");
|
|
|
|
}
|
|
|
|
|
2013-09-30 16:05:34 +02:00
|
|
|
hres = IHTMLStyle_QueryInterface(style, &IID_IHTMLStyle6, (void**)&style6);
|
|
|
|
if(SUCCEEDED(hres)) {
|
|
|
|
test_style6(style6);
|
|
|
|
IHTMLStyle6_Release(style6);
|
|
|
|
}else {
|
|
|
|
win_skip("IHTMLStyle6 not available\n");
|
|
|
|
}
|
2018-08-31 16:36:24 +02:00
|
|
|
|
2020-06-05 18:28:48 +02:00
|
|
|
if(compat_mode >= COMPAT_IE9) {
|
2018-09-06 16:15:04 +02:00
|
|
|
test_css_style_declaration(css_style);
|
2020-06-05 18:28:48 +02:00
|
|
|
if(css_style2)
|
|
|
|
test_css_style_declaration2(css_style2);
|
|
|
|
}
|
2018-09-06 16:15:04 +02:00
|
|
|
|
2018-09-06 16:15:35 +02:00
|
|
|
if(css_style2)
|
|
|
|
IHTMLCSSStyleDeclaration2_Release(css_style2);
|
2018-08-31 16:36:24 +02:00
|
|
|
if(css_style)
|
|
|
|
IHTMLCSSStyleDeclaration_Release(css_style);
|
2011-07-20 15:34:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#define test_style_filter(a,b) _test_style_filter(__LINE__,a,b)
|
2020-01-30 20:37:28 +01:00
|
|
|
static void _test_style_filter(unsigned line, IHTMLStyle *style, const WCHAR *exval)
|
2011-07-20 15:34:43 +02:00
|
|
|
{
|
|
|
|
BSTR str;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
str = (void*)0xdeadbeef;
|
|
|
|
hres = IHTMLStyle_get_filter(style, &str);
|
|
|
|
ok_(__FILE__,line)(hres == S_OK, "get_filter failed: %08x\n", hres);
|
|
|
|
if(exval)
|
2020-01-30 20:37:28 +01:00
|
|
|
ok_(__FILE__,line)(str && !wcscmp(str, exval), "filter = %s, expected %s\n", wine_dbgstr_w(str), wine_dbgstr_w(exval));
|
2011-07-20 15:34:43 +02:00
|
|
|
else
|
|
|
|
ok_(__FILE__,line)(!str, "str = %s, expected NULL\n", wine_dbgstr_w(str));
|
|
|
|
|
|
|
|
SysFreeString(str);
|
|
|
|
}
|
|
|
|
|
2012-03-16 12:18:19 +01:00
|
|
|
#define test_current_style_filter(a,b) _test_current_style_filter(__LINE__,a,b)
|
2020-01-30 20:37:38 +01:00
|
|
|
static void _test_current_style_filter(unsigned line, IHTMLCurrentStyle2 *style, const WCHAR *exval)
|
2012-03-16 12:18:19 +01:00
|
|
|
{
|
|
|
|
BSTR str;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
str = (void*)0xdeadbeef;
|
|
|
|
hres = IHTMLCurrentStyle2_get_filter(style, &str);
|
|
|
|
ok_(__FILE__,line)(hres == S_OK, "get_filter failed: %08x\n", hres);
|
|
|
|
if(exval)
|
2020-01-30 20:37:38 +01:00
|
|
|
ok_(__FILE__,line)(str && !lstrcmpW(str, exval), "filter = %s, expected %s\n", wine_dbgstr_w(str), wine_dbgstr_w(exval));
|
2012-03-16 12:18:19 +01:00
|
|
|
else
|
|
|
|
ok_(__FILE__,line)(!str, "str = %s, expected NULL\n", wine_dbgstr_w(str));
|
|
|
|
|
|
|
|
SysFreeString(str);
|
|
|
|
}
|
|
|
|
|
2011-07-20 15:34:43 +02:00
|
|
|
#define set_style_filter(a,b) _set_style_filter(__LINE__,a,b)
|
2020-01-30 20:37:28 +01:00
|
|
|
static void _set_style_filter(unsigned line, IHTMLStyle *style, const WCHAR *val)
|
2011-07-20 15:34:43 +02:00
|
|
|
{
|
2020-01-30 20:37:28 +01:00
|
|
|
BSTR str;
|
2011-07-20 15:34:43 +02:00
|
|
|
HRESULT hres;
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
str = SysAllocString(val);
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLStyle_put_filter(style, str);
|
|
|
|
ok_(__FILE__,line)(hres == S_OK, "put_filter failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
_test_style_filter(line, style, val);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void test_style_filters(IHTMLElement *elem)
|
|
|
|
{
|
2012-03-16 12:18:19 +01:00
|
|
|
IHTMLElement2 *elem2 = get_elem2_iface((IUnknown*)elem);
|
|
|
|
IHTMLCurrentStyle2 *current_style2;
|
|
|
|
IHTMLCurrentStyle *current_style;
|
2011-07-20 15:34:43 +02:00
|
|
|
IHTMLStyle *style;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
hres = IHTMLElement_get_style(elem, &style);
|
|
|
|
ok(hres == S_OK, "get_style failed: %08x\n", hres);
|
|
|
|
|
2012-03-16 12:18:19 +01:00
|
|
|
hres = IHTMLElement2_get_currentStyle(elem2, ¤t_style);
|
|
|
|
ok(hres == S_OK, "get_style failed: %08x\n", hres);
|
|
|
|
|
2013-08-22 15:58:47 +02:00
|
|
|
current_style2 = get_current_style2_iface((IUnknown*)current_style);
|
2012-03-16 12:18:19 +01:00
|
|
|
|
2011-07-20 15:34:43 +02:00
|
|
|
test_style_filter(style, NULL);
|
2012-03-16 12:18:19 +01:00
|
|
|
test_current_style_filter(current_style2, NULL);
|
2020-01-30 20:37:28 +01:00
|
|
|
set_style_filter(style, L"alpha(opacity=50.0040)");
|
2020-01-30 20:37:38 +01:00
|
|
|
test_current_style_filter(current_style2, L"alpha(opacity=50.0040)");
|
2020-01-30 20:37:28 +01:00
|
|
|
set_style_filter(style, L"alpha(opacity=100)");
|
2011-07-20 15:34:43 +02:00
|
|
|
|
|
|
|
IHTMLStyle_Release(style);
|
|
|
|
|
|
|
|
hres = IHTMLElement_get_style(elem, &style);
|
|
|
|
ok(hres == S_OK, "get_style failed: %08x\n", hres);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
test_style_filter(style, L"alpha(opacity=100)");
|
|
|
|
set_style_filter(style, L"xxx(a,b,c) alpha(opacity=100)");
|
2011-07-20 15:34:43 +02:00
|
|
|
set_style_filter(style, NULL);
|
2020-01-30 20:37:28 +01:00
|
|
|
set_style_filter(style, L"alpha(opacity=100)");
|
|
|
|
test_style_remove_attribute(style, L"filter", VARIANT_TRUE);
|
|
|
|
test_style_remove_attribute(style, L"filter", VARIANT_FALSE);
|
2012-04-16 13:49:22 +02:00
|
|
|
test_style_filter(style, NULL);
|
|
|
|
|
2011-07-20 15:34:43 +02:00
|
|
|
|
2012-03-16 12:18:19 +01:00
|
|
|
IHTMLCurrentStyle2_Release(current_style2);
|
2011-07-20 15:34:43 +02:00
|
|
|
IHTMLStyle_Release(style);
|
2012-03-16 12:18:19 +01:00
|
|
|
IHTMLElement2_Release(elem2);
|
2011-07-20 15:34:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void test_current_style(IHTMLCurrentStyle *current_style)
|
|
|
|
{
|
2013-08-22 15:58:47 +02:00
|
|
|
IHTMLCurrentStyle2 *current_style2;
|
2015-08-14 16:59:13 +02:00
|
|
|
IHTMLCurrentStyle3 *current_style3;
|
2016-01-11 13:52:07 +01:00
|
|
|
IHTMLCurrentStyle4 *current_style4;
|
2013-08-22 15:58:47 +02:00
|
|
|
VARIANT_BOOL b;
|
2011-07-20 15:34:43 +02:00
|
|
|
BSTR str;
|
|
|
|
HRESULT hres;
|
|
|
|
VARIANT v;
|
|
|
|
|
|
|
|
hres = IHTMLCurrentStyle_get_display(current_style, &str);
|
|
|
|
ok(hres == S_OK, "get_display failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"block"), "get_display returned %s\n", wine_dbgstr_w(str));
|
2011-07-20 15:34:43 +02:00
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
hres = IHTMLCurrentStyle_get_position(current_style, &str);
|
|
|
|
ok(hres == S_OK, "get_position failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"absolute"), "get_position returned %s\n", wine_dbgstr_w(str));
|
2011-07-20 15:34:43 +02:00
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
hres = IHTMLCurrentStyle_get_fontFamily(current_style, &str);
|
|
|
|
ok(hres == S_OK, "get_fontFamily failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
hres = IHTMLCurrentStyle_get_fontStyle(current_style, &str);
|
|
|
|
ok(hres == S_OK, "get_fontStyle failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"normal"), "get_fontStyle returned %s\n", wine_dbgstr_w(str));
|
2011-07-20 15:34:43 +02:00
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
hres = IHTMLCurrentStyle_get_backgroundImage(current_style, &str);
|
|
|
|
ok(hres == S_OK, "get_backgroundImage failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"none"), "get_backgroundImage returned %s\n", wine_dbgstr_w(str));
|
2011-07-20 15:34:43 +02:00
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
hres = IHTMLCurrentStyle_get_fontVariant(current_style, &str);
|
|
|
|
ok(hres == S_OK, "get_fontVariant failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"normal"), "get_fontVariant returned %s\n", wine_dbgstr_w(str));
|
2011-07-20 15:34:43 +02:00
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
hres = IHTMLCurrentStyle_get_borderTopStyle(current_style, &str);
|
|
|
|
ok(hres == S_OK, "get_borderTopStyle failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"none"), "get_borderTopStyle returned %s\n", wine_dbgstr_w(str));
|
2011-07-20 15:34:43 +02:00
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
hres = IHTMLCurrentStyle_get_borderRightStyle(current_style, &str);
|
|
|
|
ok(hres == S_OK, "get_borderRightStyle failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"none"), "get_borderRightStyle returned %s\n", wine_dbgstr_w(str));
|
2011-07-20 15:34:43 +02:00
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
hres = IHTMLCurrentStyle_get_borderBottomStyle(current_style, &str);
|
|
|
|
ok(hres == S_OK, "get_borderBottomStyle failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"none"), "get_borderBottomStyle returned %s\n", wine_dbgstr_w(str));
|
2011-07-20 15:34:43 +02:00
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
hres = IHTMLCurrentStyle_get_borderLeftStyle(current_style, &str);
|
|
|
|
ok(hres == S_OK, "get_borderLeftStyle failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"none"), "get_borderLeftStyle returned %s\n", wine_dbgstr_w(str));
|
2011-07-20 15:34:43 +02:00
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
hres = IHTMLCurrentStyle_get_textAlign(current_style, &str);
|
|
|
|
ok(hres == S_OK, "get_textAlign failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"center"), "get_textAlign returned %s\n", wine_dbgstr_w(str));
|
2011-07-20 15:34:43 +02:00
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
hres = IHTMLCurrentStyle_get_textDecoration(current_style, &str);
|
|
|
|
ok(hres == S_OK, "get_textDecoration failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"none"), "get_textDecoration returned %s\n", wine_dbgstr_w(str));
|
2011-07-20 15:34:43 +02:00
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
hres = IHTMLCurrentStyle_get_cursor(current_style, &str);
|
|
|
|
ok(hres == S_OK, "get_cursor failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"default"), "get_cursor returned %s\n", wine_dbgstr_w(str));
|
2011-07-20 15:34:43 +02:00
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
hres = IHTMLCurrentStyle_get_backgroundRepeat(current_style, &str);
|
|
|
|
ok(hres == S_OK, "get_backgroundRepeat failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"repeat"), "get_backgroundRepeat returned %s\n", wine_dbgstr_w(str));
|
2011-07-20 15:34:43 +02:00
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
hres = IHTMLCurrentStyle_get_borderColor(current_style, &str);
|
|
|
|
ok(hres == S_OK, "get_borderColor failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
hres = IHTMLCurrentStyle_get_borderStyle(current_style, &str);
|
|
|
|
ok(hres == S_OK, "get_borderStyle failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
hres = IHTMLCurrentStyle_get_visibility(current_style, &str);
|
|
|
|
ok(hres == S_OK, "get_visibility failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
hres = IHTMLCurrentStyle_get_overflow(current_style, &str);
|
|
|
|
ok(hres == S_OK, "get_overflow failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
hres = IHTMLCurrentStyle_get_borderWidth(current_style, &str);
|
|
|
|
ok(hres == S_OK, "get_borderWidth failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
hres = IHTMLCurrentStyle_get_margin(current_style, &str);
|
|
|
|
ok(hres == S_OK, "get_margin failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
hres = IHTMLCurrentStyle_get_padding(current_style, &str);
|
|
|
|
ok(hres == S_OK, "get_padding failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
hres = IHTMLCurrentStyle_get_fontWeight(current_style, &v);
|
|
|
|
ok(hres == S_OK, "get_fontWeight failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_I4, "V_VT(v) = %d\n", V_VT(&v));
|
|
|
|
ok( V_I4(&v) == 400, "expect 400 got (%d)\n", V_I4(&v));
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLCurrentStyle_get_fontSize(current_style, &v);
|
|
|
|
ok(hres == S_OK, "get_fontSize failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLCurrentStyle_get_left(current_style, &v);
|
|
|
|
ok(hres == S_OK, "get_left failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLCurrentStyle_get_top(current_style, &v);
|
|
|
|
ok(hres == S_OK, "get_top failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLCurrentStyle_get_width(current_style, &v);
|
|
|
|
ok(hres == S_OK, "get_width failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLCurrentStyle_get_height(current_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));
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLCurrentStyle_get_paddingLeft(current_style, &v);
|
|
|
|
ok(hres == S_OK, "get_paddingLeft failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLCurrentStyle_get_zIndex(current_style, &v);
|
|
|
|
ok(hres == S_OK, "get_zIndex failed: %08x\n", hres);
|
|
|
|
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);
|
2020-01-30 20:37:38 +01:00
|
|
|
test_var_bstr(&v, compat_mode < COMPAT_IE9 ? L"100px" : L"middle");
|
2011-07-20 15:34:43 +02:00
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLCurrentStyle_get_marginRight(current_style, &v);
|
|
|
|
ok(hres == S_OK, "get_marginRight failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLCurrentStyle_get_marginLeft(current_style, &v);
|
|
|
|
ok(hres == S_OK, "get_marginLeft failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLCurrentStyle_get_borderLeftWidth(current_style, &v);
|
|
|
|
ok(hres == S_OK, "get_borderLeftWidth failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
V_BSTR(&v) = NULL;
|
|
|
|
hres = IHTMLCurrentStyle_get_borderRightWidth(current_style, &v);
|
|
|
|
ok(hres == S_OK, "get_borderRightWidth failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLCurrentStyle_get_borderBottomWidth(current_style, &v);
|
|
|
|
ok(hres == S_OK, "get_borderBottomWidth failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLCurrentStyle_get_borderTopWidth(current_style, &v);
|
|
|
|
ok(hres == S_OK, "get_borderTopWidth failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLCurrentStyle_get_color(current_style, &v);
|
|
|
|
ok(hres == S_OK, "get_color failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLCurrentStyle_get_backgroundColor(current_style, &v);
|
|
|
|
ok(hres == S_OK, "get_backgroundColor failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLCurrentStyle_get_borderLeftColor(current_style, &v);
|
|
|
|
ok(hres == S_OK, "get_borderLeftColor failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLCurrentStyle_get_borderTopColor(current_style, &v);
|
|
|
|
ok(hres == S_OK, "get_borderTopColor failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLCurrentStyle_get_borderRightColor(current_style, &v);
|
|
|
|
ok(hres == S_OK, "get_borderRightColor failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLCurrentStyle_get_borderBottomColor(current_style, &v);
|
|
|
|
ok(hres == S_OK, "get_borderBottomColor failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLCurrentStyle_get_paddingTop(current_style, &v);
|
|
|
|
ok(hres == S_OK, "get_paddingTop failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLCurrentStyle_get_paddingRight(current_style, &v);
|
|
|
|
ok(hres == S_OK, "get_paddingRight failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLCurrentStyle_get_paddingBottom(current_style, &v);
|
|
|
|
ok(hres == S_OK, "get_paddingRight failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLCurrentStyle_get_letterSpacing(current_style, &v);
|
|
|
|
ok(hres == S_OK, "get_letterSpacing failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLCurrentStyle_get_marginTop(current_style, &v);
|
|
|
|
ok(hres == S_OK, "get_marginTop failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLCurrentStyle_get_marginBottom(current_style, &v);
|
|
|
|
ok(hres == S_OK, "get_marginBottom failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLCurrentStyle_get_right(current_style, &v);
|
|
|
|
ok(hres == S_OK, "get_Right failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLCurrentStyle_get_bottom(current_style, &v);
|
|
|
|
ok(hres == S_OK, "get_bottom failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLCurrentStyle_get_lineHeight(current_style, &v);
|
|
|
|
ok(hres == S_OK, "get_lineHeight failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
|
|
|
|
VariantClear(&v);
|
|
|
|
|
|
|
|
hres = IHTMLCurrentStyle_get_textIndent(current_style, &v);
|
|
|
|
ok(hres == S_OK, "get_textIndent failed: %08x\n", hres);
|
|
|
|
ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
|
|
|
|
VariantClear(&v);
|
2013-08-22 15:58:47 +02:00
|
|
|
|
2014-09-15 03:51:10 +02:00
|
|
|
hres = IHTMLCurrentStyle_get_textTransform(current_style, &str);
|
|
|
|
ok(hres == S_OK, "get_textTransform failed: %08x\n", hres);
|
|
|
|
SysFreeString(str);
|
|
|
|
|
2016-01-07 16:30:18 +01:00
|
|
|
hres = IHTMLCurrentStyle_get_styleFloat(current_style, &str);
|
|
|
|
ok(hres == S_OK, "get_styleFloat failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"none"), "styleFloat = %s\n", wine_dbgstr_w(str));
|
2016-01-07 16:30:18 +01:00
|
|
|
SysFreeString(str);
|
|
|
|
|
2016-01-11 13:51:48 +01:00
|
|
|
hres = IHTMLCurrentStyle_get_overflowX(current_style, &str);
|
|
|
|
ok(hres == S_OK, "get_overflowX failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"hidden"), "overflowX = %s\n", wine_dbgstr_w(str));
|
2016-01-11 13:51:48 +01:00
|
|
|
SysFreeString(str);
|
|
|
|
|
2016-01-11 13:51:56 +01:00
|
|
|
hres = IHTMLCurrentStyle_get_overflowY(current_style, &str);
|
|
|
|
ok(hres == S_OK, "get_overflowY failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"hidden"), "overflowY = %s\n", wine_dbgstr_w(str));
|
2016-01-11 13:51:56 +01:00
|
|
|
SysFreeString(str);
|
|
|
|
|
2017-02-15 16:28:46 +01:00
|
|
|
hres = IHTMLCurrentStyle_get_direction(current_style, &str);
|
|
|
|
ok(hres == S_OK, "get_direction failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"ltr"), "direction = %s\n", wine_dbgstr_w(str));
|
2017-02-15 16:28:46 +01:00
|
|
|
SysFreeString(str);
|
|
|
|
|
2013-08-22 15:58:47 +02:00
|
|
|
current_style2 = get_current_style2_iface((IUnknown*)current_style);
|
|
|
|
|
|
|
|
b = 100;
|
|
|
|
hres = IHTMLCurrentStyle2_get_hasLayout(current_style2, &b);
|
|
|
|
ok(hres == S_OK, "get_hasLayout failed: %08x\n", hres);
|
|
|
|
ok(b == VARIANT_TRUE, "hasLayout = %x\n", b);
|
|
|
|
|
|
|
|
IHTMLCurrentStyle2_Release(current_style2);
|
2015-08-14 16:59:13 +02:00
|
|
|
|
|
|
|
hres = IHTMLCurrentStyle_QueryInterface(current_style, &IID_IHTMLCurrentStyle3, (void**)¤t_style3);
|
|
|
|
ok(hres == S_OK, "Could not get IHTMLCurrentStyle3 iface: %08x\n", hres);
|
|
|
|
|
|
|
|
hres = IHTMLCurrentStyle3_get_whiteSpace(current_style3, &str);
|
|
|
|
ok(hres == S_OK, "get_whiteSpace failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"normal"), "whiteSpace = %s\n", wine_dbgstr_w(str));
|
2015-08-14 16:59:13 +02:00
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
IHTMLCurrentStyle3_Release(current_style3);
|
2016-01-11 13:52:07 +01:00
|
|
|
|
|
|
|
hres = IHTMLCurrentStyle_QueryInterface(current_style, &IID_IHTMLCurrentStyle4, (void**)¤t_style4);
|
2016-02-08 17:52:17 +01:00
|
|
|
ok(hres == S_OK || broken(hres == E_NOINTERFACE), "Could not get IHTMLCurrentStyle4 iface: %08x\n", hres);
|
|
|
|
if(SUCCEEDED(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);
|
2016-01-11 13:52:07 +01:00
|
|
|
|
2016-02-08 17:52:17 +01:00
|
|
|
IHTMLCurrentStyle4_Release(current_style4);
|
|
|
|
}else {
|
|
|
|
win_skip("IHTMLCurrentStyle4 not supported.\n");
|
|
|
|
}
|
2011-07-20 15:34:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void basic_style_test(IHTMLDocument2 *doc)
|
|
|
|
{
|
|
|
|
IHTMLCurrentStyle *cstyle;
|
|
|
|
IHTMLElement *elem;
|
|
|
|
IHTMLStyle *style;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
hres = IHTMLDocument2_get_body(doc, &elem);
|
|
|
|
ok(hres == S_OK, "get_body failed: %08x\n", hres);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
elem_set_innerhtml(elem, L"<div id=\"divid\"></div>");
|
2018-08-28 12:45:49 +02:00
|
|
|
|
2011-07-20 15:34:43 +02:00
|
|
|
hres = IHTMLElement_get_style(elem, &style);
|
|
|
|
ok(hres == S_OK, "get_style failed: %08x\n", hres);
|
|
|
|
|
|
|
|
test_body_style(style);
|
|
|
|
|
|
|
|
cstyle = get_current_style(elem);
|
|
|
|
test_current_style(cstyle);
|
|
|
|
IHTMLCurrentStyle_Release(cstyle);
|
2011-10-03 20:51:28 +02:00
|
|
|
IHTMLElement_Release(elem);
|
2011-07-20 15:34:43 +02:00
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
elem = get_element_by_id(doc, L"divid");
|
2011-07-20 15:34:43 +02:00
|
|
|
test_style_filters(elem);
|
|
|
|
|
|
|
|
test_set_csstext(style);
|
|
|
|
IHTMLStyle_Release(style);
|
|
|
|
IHTMLElement_Release(elem);
|
|
|
|
}
|
|
|
|
|
2012-07-25 15:16:29 +02:00
|
|
|
static const char runtimestyle_test_str[] =
|
|
|
|
"<html><head><style>body {text-decoration: auto}</style></head><body></body></html>";
|
|
|
|
|
2018-08-28 12:45:49 +02:00
|
|
|
static const char runtimestyle_ie9_test_str[] =
|
|
|
|
"<!DOCTYPE html>\n"
|
|
|
|
"<html>"
|
|
|
|
" <head>"
|
|
|
|
" <meta http-equiv=\"x-ua-compatible\" content=\"IE=9\" />"
|
|
|
|
" <style>body {text-decoration: auto}</style>"
|
|
|
|
" </head>"
|
|
|
|
" <body>"
|
|
|
|
" </body>"
|
|
|
|
"</html>";
|
|
|
|
|
2012-07-25 15:16:29 +02:00
|
|
|
static void runtimestyle_test(IHTMLDocument2 *doc)
|
|
|
|
{
|
|
|
|
IHTMLStyle *style, *runtime_style;
|
|
|
|
IHTMLElement2 *elem2;
|
|
|
|
IHTMLElement *elem;
|
|
|
|
BSTR str;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
hres = IHTMLDocument2_get_body(doc, &elem);
|
|
|
|
ok(hres == S_OK, "get_body failed: %08x\n", hres);
|
|
|
|
|
|
|
|
elem2 = get_elem2_iface((IUnknown*)elem);
|
|
|
|
|
|
|
|
hres = IHTMLElement2_get_runtimeStyle(elem2, &runtime_style);
|
|
|
|
ok(hres == S_OK, "get_runtimeStyle failed: %08x\n", hres);
|
|
|
|
|
|
|
|
hres = IHTMLElement_get_style(elem, &style);
|
|
|
|
ok(hres == S_OK, "get_style failed: %08x\n", hres);
|
|
|
|
|
|
|
|
test_text_decoration(style, NULL);
|
|
|
|
test_text_decoration(runtime_style, NULL);
|
2020-01-30 20:37:28 +01:00
|
|
|
set_text_decoration(style, L"underline");
|
2020-01-30 20:37:38 +01:00
|
|
|
test_text_decoration(style, L"underline");
|
2012-07-25 15:16:29 +02:00
|
|
|
|
|
|
|
hres = IHTMLStyle_get_textDecoration(style, &str);
|
|
|
|
ok(hres == S_OK, "get_textDecoration failed: %08x\n", hres);
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(broken(!str) || !lstrcmpW(str, L"underline"), "textDecoration = %s\n", wine_dbgstr_w(str));
|
2012-07-25 15:16:29 +02:00
|
|
|
SysFreeString(str);
|
|
|
|
|
2020-01-30 20:37:28 +01:00
|
|
|
set_text_decoration(runtime_style, L"blink");
|
2020-01-30 20:37:38 +01:00
|
|
|
test_text_decoration(runtime_style, L"blink");
|
2012-07-25 15:16:29 +02:00
|
|
|
|
|
|
|
hres = IHTMLStyle_get_textDecoration(style, &str);
|
|
|
|
ok(hres == S_OK, "get_textDecoration failed: %08x\n", hres);
|
|
|
|
todo_wine
|
2020-01-30 20:37:38 +01:00
|
|
|
ok(!lstrcmpW(str, L"underline"), "textDecoration = %s\n", wine_dbgstr_w(str));
|
2012-07-25 15:16:29 +02:00
|
|
|
SysFreeString(str);
|
|
|
|
|
|
|
|
IHTMLStyle_Release(runtime_style);
|
|
|
|
IHTMLStyle_Release(style);
|
|
|
|
IHTMLElement2_Release(elem2);
|
|
|
|
IHTMLElement_Release(elem);
|
|
|
|
}
|
|
|
|
|
2011-07-20 15:34:43 +02:00
|
|
|
static IHTMLDocument2 *notif_doc;
|
|
|
|
static BOOL doc_complete;
|
|
|
|
|
|
|
|
static IHTMLDocument2 *create_document(void)
|
|
|
|
{
|
|
|
|
IHTMLDocument2 *doc;
|
|
|
|
IHTMLDocument5 *doc5;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
hres = CoCreateInstance(&CLSID_HTMLDocument, NULL, CLSCTX_INPROC_SERVER|CLSCTX_INPROC_HANDLER,
|
|
|
|
&IID_IHTMLDocument2, (void**)&doc);
|
2020-05-13 10:33:54 +02:00
|
|
|
#if !defined(__i386__) && !defined(__x86_64__)
|
|
|
|
todo_wine
|
|
|
|
#endif
|
2011-07-20 15:34:43 +02:00
|
|
|
ok(hres == S_OK, "CoCreateInstance failed: %08x\n", hres);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
hres = IHTMLDocument2_QueryInterface(doc, &IID_IHTMLDocument5, (void**)&doc5);
|
|
|
|
if(FAILED(hres)) {
|
|
|
|
win_skip("Could not get IHTMLDocument5, probably too old IE\n");
|
|
|
|
IHTMLDocument2_Release(doc);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
IHTMLDocument5_Release(doc5);
|
|
|
|
return doc;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI PropertyNotifySink_QueryInterface(IPropertyNotifySink *iface,
|
|
|
|
REFIID riid, void**ppv)
|
|
|
|
{
|
|
|
|
if(IsEqualGUID(&IID_IPropertyNotifySink, riid)) {
|
|
|
|
*ppv = iface;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
ok(0, "unexpected call\n");
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI PropertyNotifySink_AddRef(IPropertyNotifySink *iface)
|
|
|
|
{
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI PropertyNotifySink_Release(IPropertyNotifySink *iface)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI PropertyNotifySink_OnChanged(IPropertyNotifySink *iface, DISPID dispID)
|
|
|
|
{
|
|
|
|
if(dispID == DISPID_READYSTATE){
|
|
|
|
BSTR state;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
hres = IHTMLDocument2_get_readyState(notif_doc, &state);
|
|
|
|
ok(hres == S_OK, "get_readyState failed: %08x\n", hres);
|
|
|
|
|
2020-01-30 20:37:38 +01:00
|
|
|
if(!lstrcmpW(state, L"complete"))
|
2011-07-20 15:34:43 +02:00
|
|
|
doc_complete = TRUE;
|
|
|
|
|
|
|
|
SysFreeString(state);
|
|
|
|
}
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI PropertyNotifySink_OnRequestEdit(IPropertyNotifySink *iface, DISPID dispID)
|
|
|
|
{
|
|
|
|
ok(0, "unexpected call\n");
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static IPropertyNotifySinkVtbl PropertyNotifySinkVtbl = {
|
|
|
|
PropertyNotifySink_QueryInterface,
|
|
|
|
PropertyNotifySink_AddRef,
|
|
|
|
PropertyNotifySink_Release,
|
|
|
|
PropertyNotifySink_OnChanged,
|
|
|
|
PropertyNotifySink_OnRequestEdit
|
|
|
|
};
|
|
|
|
|
|
|
|
static IPropertyNotifySink PropertyNotifySink = { &PropertyNotifySinkVtbl };
|
|
|
|
|
|
|
|
static IHTMLDocument2 *create_doc_with_string(const char *str)
|
|
|
|
{
|
|
|
|
IPersistStreamInit *init;
|
|
|
|
IStream *stream;
|
|
|
|
IHTMLDocument2 *doc;
|
2017-11-28 12:18:15 +01:00
|
|
|
HRESULT hres;
|
2011-07-20 15:34:43 +02:00
|
|
|
HGLOBAL mem;
|
|
|
|
SIZE_T len;
|
|
|
|
|
|
|
|
notif_doc = doc = create_document();
|
|
|
|
if(!doc)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
doc_complete = FALSE;
|
|
|
|
len = strlen(str);
|
|
|
|
mem = GlobalAlloc(0, len);
|
|
|
|
memcpy(mem, str, len);
|
2017-11-28 12:18:15 +01:00
|
|
|
hres = CreateStreamOnHGlobal(mem, TRUE, &stream);
|
|
|
|
ok(hres == S_OK, "Failed to create a stream, hr %#x.\n", hres);
|
2011-07-20 15:34:43 +02:00
|
|
|
|
2017-11-28 12:18:15 +01:00
|
|
|
hres = IHTMLDocument2_QueryInterface(doc, &IID_IPersistStreamInit, (void**)&init);
|
|
|
|
ok(hres == S_OK, "Failed to get IPersistStreamInit, hr %#x.\n", hres);
|
2011-07-20 15:34:43 +02:00
|
|
|
|
|
|
|
IPersistStreamInit_Load(init, stream);
|
|
|
|
IPersistStreamInit_Release(init);
|
|
|
|
IStream_Release(stream);
|
|
|
|
|
|
|
|
return doc;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void do_advise(IUnknown *unk, REFIID riid, IUnknown *unk_advise)
|
|
|
|
{
|
|
|
|
IConnectionPointContainer *container;
|
|
|
|
IConnectionPoint *cp;
|
|
|
|
DWORD cookie;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
hres = IUnknown_QueryInterface(unk, &IID_IConnectionPointContainer, (void**)&container);
|
|
|
|
ok(hres == S_OK, "QueryInterface(IID_IConnectionPointContainer) failed: %08x\n", hres);
|
|
|
|
|
|
|
|
hres = IConnectionPointContainer_FindConnectionPoint(container, riid, &cp);
|
|
|
|
IConnectionPointContainer_Release(container);
|
|
|
|
ok(hres == S_OK, "FindConnectionPoint failed: %08x\n", hres);
|
|
|
|
|
|
|
|
hres = IConnectionPoint_Advise(cp, unk_advise, &cookie);
|
|
|
|
IConnectionPoint_Release(cp);
|
|
|
|
ok(hres == S_OK, "Advise failed: %08x\n", hres);
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef void (*style_test_t)(IHTMLDocument2*);
|
|
|
|
|
|
|
|
static void run_test(const char *str, style_test_t test)
|
|
|
|
{
|
|
|
|
IHTMLDocument2 *doc;
|
|
|
|
ULONG ref;
|
|
|
|
MSG msg;
|
|
|
|
|
|
|
|
doc = create_doc_with_string(str);
|
|
|
|
if(!doc)
|
|
|
|
return;
|
|
|
|
|
|
|
|
do_advise((IUnknown*)doc, &IID_IPropertyNotifySink, (IUnknown*)&PropertyNotifySink);
|
|
|
|
|
2013-10-10 12:53:34 +02:00
|
|
|
while(!doc_complete && GetMessageW(&msg, NULL, 0, 0)) {
|
2011-07-20 15:34:43 +02:00
|
|
|
TranslateMessage(&msg);
|
2013-10-10 12:53:34 +02:00
|
|
|
DispatchMessageW(&msg);
|
2011-07-20 15:34:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
test(doc);
|
|
|
|
|
|
|
|
ref = IHTMLDocument2_Release(doc);
|
|
|
|
ok(!ref || broken(ref == 1), /* Vista */
|
|
|
|
"ref = %d\n", ref);
|
|
|
|
}
|
|
|
|
|
2018-08-28 12:45:49 +02:00
|
|
|
static BOOL check_ie(void)
|
|
|
|
{
|
|
|
|
IHTMLDocument2 *doc;
|
|
|
|
IHTMLDocument7 *doc7;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
doc = create_document();
|
|
|
|
if(!doc)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
hres = IHTMLDocument2_QueryInterface(doc, &IID_IHTMLDocument7, (void**)&doc7);
|
|
|
|
if(SUCCEEDED(hres)) {
|
|
|
|
is_ie9plus = TRUE;
|
|
|
|
IHTMLDocument7_Release(doc7);
|
|
|
|
}
|
|
|
|
|
|
|
|
trace("is_ie9plus %x\n", is_ie9plus);
|
|
|
|
|
|
|
|
IHTMLDocument2_Release(doc);
|
|
|
|
return TRUE;
|
|
|
|
}
|
2011-07-20 15:34:43 +02:00
|
|
|
|
|
|
|
START_TEST(style)
|
|
|
|
{
|
|
|
|
CoInitialize(NULL);
|
|
|
|
|
2018-08-28 12:45:49 +02:00
|
|
|
if(check_ie()) {
|
|
|
|
trace("Running tests in quirks mode...\n");
|
|
|
|
run_test(doc_blank, basic_style_test);
|
|
|
|
run_test(runtimestyle_test_str, runtimestyle_test);
|
|
|
|
if(is_ie9plus) {
|
|
|
|
trace("Running tests in IE9 mode...\n");
|
|
|
|
compat_mode = COMPAT_IE9;
|
|
|
|
run_test(doc_blank_ie9, basic_style_test);
|
|
|
|
run_test(runtimestyle_ie9_test_str, runtimestyle_test);
|
|
|
|
}
|
|
|
|
}
|
2011-07-20 15:34:43 +02:00
|
|
|
|
|
|
|
CoUninitialize();
|
|
|
|
}
|