mshtml: Use proper helpers to implement IHTMLSyle::fontSize property.
[wine/multimedia.git] / dlls / mshtml / tests / style.c
blob7adb0ea28301c916bb195d7fb69f637f8c75f9b8
1 /*
2 * Copyright 2007-2011 Jacek Caban for CodeWeavers
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 #define COBJMACROS
20 #define CONST_VTABLE
22 #include <wine/test.h>
23 #include <stdarg.h>
24 #include <stdio.h>
26 #include "windef.h"
27 #include "winbase.h"
28 #include "ole2.h"
29 #include "mshtml.h"
30 #include "mshtmhst.h"
31 #include "docobj.h"
33 static int strcmp_wa(LPCWSTR strw, const char *stra)
35 CHAR buf[512];
36 WideCharToMultiByte(CP_ACP, 0, strw, -1, buf, sizeof(buf), NULL, NULL);
37 return lstrcmpA(stra, buf);
40 static BSTR a2bstr(const char *str)
42 BSTR ret;
43 int len;
45 if(!str)
46 return NULL;
48 len = MultiByteToWideChar(CP_ACP, 0, str, -1, NULL, 0);
49 ret = SysAllocStringLen(NULL, len);
50 MultiByteToWideChar(CP_ACP, 0, str, -1, ret, len);
52 return ret;
55 #define get_elem2_iface(u) _get_elem2_iface(__LINE__,u)
56 static IHTMLElement2 *_get_elem2_iface(unsigned line, IUnknown *unk)
58 IHTMLElement2 *elem;
59 HRESULT hres;
61 hres = IUnknown_QueryInterface(unk, &IID_IHTMLElement2, (void**)&elem);
62 ok_(__FILE__,line) (hres == S_OK, "Could not get IHTMLElement2: %08x\n", hres);
63 return elem;
66 static IHTMLElement *get_element_by_id(IHTMLDocument2 *doc, const char *id)
68 HRESULT hres;
69 IHTMLDocument3 *doc3;
70 IHTMLElement *result;
71 BSTR idW = a2bstr(id);
73 hres = IHTMLDocument2_QueryInterface(doc, &IID_IHTMLDocument3, (void**)&doc3);
74 ok(hres == S_OK, "QueryInterface(IID_IHTMLDocument3) failed: %08x\n", hres);
76 hres = IHTMLDocument3_getElementById(doc3, idW, &result);
77 ok(hres == S_OK, "getElementById failed: %08x\n", hres);
78 ok(result != NULL, "result == NULL\n");
79 SysFreeString(idW);
81 IHTMLDocument3_Release(doc3);
82 return result;
85 #define get_current_style(e) _get_current_style(__LINE__,e)
86 static IHTMLCurrentStyle *_get_current_style(unsigned line, IHTMLElement *elem)
88 IHTMLCurrentStyle *cstyle;
89 IHTMLElement2 *elem2;
90 HRESULT hres;
92 hres = IHTMLElement_QueryInterface(elem, &IID_IHTMLElement2, (void**)&elem2);
93 ok(hres == S_OK, "Could not get IHTMLElement2 iface: %08x\n", hres);
95 cstyle = NULL;
96 hres = IHTMLElement2_get_currentStyle(elem2, &cstyle);
97 ok(hres == S_OK, "get_currentStyle failed: %08x\n", hres);
98 ok(cstyle != NULL, "cstyle = %p\n", cstyle);
100 IHTMLElement2_Release(elem2);
101 return cstyle;
104 #define test_border_styles(p, n) _test_border_styles(__LINE__, p, n)
105 static void _test_border_styles(unsigned line, IHTMLStyle *pStyle, BSTR Name)
107 HRESULT hres;
108 DISPID dispid;
110 hres = IHTMLStyle_GetIDsOfNames(pStyle, &IID_NULL, &Name, 1,
111 LOCALE_USER_DEFAULT, &dispid);
112 ok_(__FILE__,line) (hres == S_OK, "GetIDsOfNames: %08x\n", hres);
113 if(hres == S_OK)
115 DISPPARAMS params = {NULL,NULL,0,0};
116 DISPID dispidNamed = DISPID_PROPERTYPUT;
117 VARIANT ret;
118 VARIANT vDefault;
119 VARIANTARG arg;
121 hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
122 DISPATCH_PROPERTYGET, &params, &vDefault, NULL, NULL);
123 ok_(__FILE__,line) (hres == S_OK, "get_default. ret: %08x\n", hres);
125 params.cArgs = 1;
126 params.cNamedArgs = 1;
127 params.rgdispidNamedArgs = &dispidNamed;
128 V_VT(&arg) = VT_BSTR;
129 V_BSTR(&arg) = a2bstr("none");
130 params.rgvarg = &arg;
131 hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
132 DISPATCH_PROPERTYPUT, &params, &ret, NULL, NULL);
133 ok_(__FILE__,line) (hres == S_OK, "none. ret: %08x\n", hres);
134 VariantClear(&arg);
136 V_VT(&arg) = VT_BSTR;
137 V_BSTR(&arg) = a2bstr("dotted");
138 hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
139 DISPATCH_PROPERTYPUT, &params, &ret, NULL, NULL);
140 ok_(__FILE__,line) (hres == S_OK, "dotted. ret: %08x\n", hres);
141 VariantClear(&arg);
143 V_VT(&arg) = VT_BSTR;
144 V_BSTR(&arg) = a2bstr("dashed");
145 hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
146 DISPATCH_PROPERTYPUT, &params, &ret, NULL, NULL);
147 ok_(__FILE__,line) (hres == S_OK, "dashed. ret: %08x\n", hres);
148 VariantClear(&arg);
150 V_VT(&arg) = VT_BSTR;
151 V_BSTR(&arg) = a2bstr("solid");
152 hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
153 DISPATCH_PROPERTYPUT, &params, &ret, NULL, NULL);
154 ok_(__FILE__,line) (hres == S_OK, "solid. ret: %08x\n", hres);
155 VariantClear(&arg);
157 V_VT(&arg) = VT_BSTR;
158 V_BSTR(&arg) = a2bstr("double");
159 hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
160 DISPATCH_PROPERTYPUT, &params, &ret, NULL, NULL);
161 ok_(__FILE__,line) (hres == S_OK, "double. ret: %08x\n", hres);
162 VariantClear(&arg);
164 V_VT(&arg) = VT_BSTR;
165 V_BSTR(&arg) = a2bstr("groove");
166 hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
167 DISPATCH_PROPERTYPUT, &params, &ret, NULL, NULL);
168 ok_(__FILE__,line) (hres == S_OK, "groove. ret: %08x\n", hres);
169 VariantClear(&arg);
171 V_VT(&arg) = VT_BSTR;
172 V_BSTR(&arg) = a2bstr("ridge");
173 hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
174 DISPATCH_PROPERTYPUT, &params, &ret, NULL, NULL);
175 ok_(__FILE__,line) (hres == S_OK, "ridge. ret: %08x\n", hres);
176 VariantClear(&arg);
178 V_VT(&arg) = VT_BSTR;
179 V_BSTR(&arg) = a2bstr("inset");
180 hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
181 DISPATCH_PROPERTYPUT, &params, &ret, NULL, NULL);
182 ok_(__FILE__,line) (hres == S_OK, "inset. ret: %08x\n", hres);
183 VariantClear(&arg);
185 V_VT(&arg) = VT_BSTR;
186 V_BSTR(&arg) = a2bstr("outset");
187 hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
188 DISPATCH_PROPERTYPUT, &params, &ret, NULL, NULL);
189 ok_(__FILE__,line) (hres == S_OK, "outset. ret: %08x\n", hres);
190 VariantClear(&arg);
192 V_VT(&arg) = VT_BSTR;
193 V_BSTR(&arg) = a2bstr("invalid");
194 hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
195 DISPATCH_PROPERTYPUT, &params, &ret, NULL, NULL);
196 ok_(__FILE__,line) (FAILED(hres), "invalid value passed.\n");
197 VariantClear(&arg);
199 params.rgvarg = &vDefault;
200 hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
201 DISPATCH_PROPERTYPUT, &params, &ret, NULL, NULL);
202 ok_(__FILE__,line) (hres == S_OK, "default. ret: %08x\n", hres);
203 VariantClear(&vDefault);
207 #define test_style_csstext(s,t) _test_style_csstext(__LINE__,s,t)
208 static void _test_style_csstext(unsigned line, IHTMLStyle *style, const char *extext)
210 BSTR text = (void*)0xdeadbeef;
211 HRESULT hres;
213 hres = IHTMLStyle_get_cssText(style, &text);
214 ok_(__FILE__,line)(hres == S_OK, "get_cssText failed: %08x\n", hres);
215 if(extext)
216 ok_(__FILE__,line)(!strcmp_wa(text, extext), "cssText = %s\n", wine_dbgstr_w(text));
217 else
218 ok_(__FILE__,line)(!text, "cssText = %s\n", wine_dbgstr_w(text));
220 SysFreeString(text);
223 #define test_style_set_csstext(s,t) _test_style_set_csstext(__LINE__,s,t)
224 static void _test_style_set_csstext(unsigned line, IHTMLStyle *style, const char *text)
226 BSTR tmp;
227 HRESULT hres;
229 tmp = a2bstr(text);
230 hres = IHTMLStyle_put_cssText(style, tmp);
231 ok_(__FILE__,line)(hres == S_OK, "put_cssText failed: %08x\n", hres);
232 SysFreeString(tmp);
235 static void test_set_csstext(IHTMLStyle *style)
237 VARIANT v;
238 HRESULT hres;
240 test_style_set_csstext(style, "background-color: black;");
242 hres = IHTMLStyle_get_backgroundColor(style, &v);
243 ok(hres == S_OK, "get_backgroundColor: %08x\n", hres);
244 ok(V_VT(&v) == VT_BSTR, "type failed: %d\n", V_VT(&v));
245 ok(!strcmp_wa(V_BSTR(&v), "black"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
246 VariantClear(&v);
249 static void test_style2(IHTMLStyle2 *style2)
251 VARIANT v;
252 BSTR str;
253 HRESULT hres;
255 str = (void*)0xdeadbeef;
256 hres = IHTMLStyle2_get_position(style2, &str);
257 ok(hres == S_OK, "get_position failed: %08x\n", hres);
258 ok(!str, "str != NULL\n");
260 str = a2bstr("absolute");
261 hres = IHTMLStyle2_put_position(style2, str);
262 ok(hres == S_OK, "put_position failed: %08x\n", hres);
263 SysFreeString(str);
265 str = NULL;
266 hres = IHTMLStyle2_get_position(style2, &str);
267 ok(hres == S_OK, "get_position failed: %08x\n", hres);
268 ok(!strcmp_wa(str, "absolute"), "get_position returned %s\n", wine_dbgstr_w(str));
269 SysFreeString(str);
271 /* Test right */
272 V_VT(&v) = VT_EMPTY;
273 hres = IHTMLStyle2_get_right(style2, &v);
274 ok(hres == S_OK, "get_top failed: %08x\n", hres);
275 ok(V_VT(&v) == VT_BSTR, "V_VT(right)=%d\n", V_VT(&v));
276 ok(!V_BSTR(&v), "V_BSTR(right) != NULL\n");
277 VariantClear(&v);
279 V_VT(&v) = VT_BSTR;
280 V_BSTR(&v) = a2bstr("3px");
281 hres = IHTMLStyle2_put_right(style2, v);
282 ok(hres == S_OK, "put_right failed: %08x\n", hres);
283 VariantClear(&v);
285 V_VT(&v) = VT_EMPTY;
286 hres = IHTMLStyle2_get_right(style2, &v);
287 ok(hres == S_OK, "get_right failed: %08x\n", hres);
288 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
289 ok(!strcmp_wa(V_BSTR(&v), "3px"), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
290 VariantClear(&v);
292 /* direction */
293 str = (void*)0xdeadbeef;
294 hres = IHTMLStyle2_get_direction(style2, &str);
295 ok(hres == S_OK, "get_direction failed: %08x\n", hres);
296 ok(!str, "str = %s\n", wine_dbgstr_w(str));
298 str = a2bstr("ltr");
299 hres = IHTMLStyle2_put_direction(style2, str);
300 ok(hres == S_OK, "put_direction failed: %08x\n", hres);
301 SysFreeString(str);
303 str = NULL;
304 hres = IHTMLStyle2_get_direction(style2, &str);
305 ok(hres == S_OK, "get_direction failed: %08x\n", hres);
306 ok(!strcmp_wa(str, "ltr"), "str = %s\n", wine_dbgstr_w(str));
307 SysFreeString(str);
310 static void test_style3(IHTMLStyle3 *style3)
312 BSTR str;
313 HRESULT hres;
315 str = (void*)0xdeadbeef;
316 hres = IHTMLStyle3_get_wordWrap(style3, &str);
317 ok(hres == S_OK, "get_wordWrap failed: %08x\n", hres);
318 ok(!str, "str != NULL\n");
320 str = a2bstr("break-word");
321 hres = IHTMLStyle3_put_wordWrap(style3, str);
322 ok(hres == S_OK, "put_wordWrap failed: %08x\n", hres);
323 SysFreeString(str);
325 str = NULL;
326 hres = IHTMLStyle3_get_wordWrap(style3, &str);
327 ok(hres == S_OK, "get_wordWrap failed: %08x\n", hres);
328 ok(!strcmp_wa(str, "break-word"), "get_wordWrap returned %s\n", wine_dbgstr_w(str));
329 SysFreeString(str);
332 static void test_style4(IHTMLStyle4 *style4)
334 HRESULT hres;
335 VARIANT v;
336 VARIANT vdefault;
338 hres = IHTMLStyle4_get_minHeight(style4, &vdefault);
339 ok(hres == S_OK, "get_minHeight failed: %08x\n", hres);
341 V_VT(&v) = VT_BSTR;
342 V_BSTR(&v) = a2bstr("10px");
343 hres = IHTMLStyle4_put_minHeight(style4, v);
344 ok(hres == S_OK, "put_minHeight failed: %08x\n", hres);
345 VariantClear(&v);
347 hres = IHTMLStyle4_get_minHeight(style4, &v);
348 ok(hres == S_OK, "get_minHeight failed: %08x\n", hres);
349 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
350 ok( !strcmp_wa(V_BSTR(&v), "10px"), "expect 10px got (%s)\n", wine_dbgstr_w(V_BSTR(&v)));
351 VariantClear(&v);
353 hres = IHTMLStyle4_put_minHeight(style4, vdefault);
354 ok(hres == S_OK, "put_minHeight failed: %08x\n", hres);
355 VariantClear(&vdefault);
358 static void test_body_style(IHTMLStyle *style)
360 IHTMLStyle2 *style2;
361 IHTMLStyle3 *style3;
362 IHTMLStyle4 *style4;
363 VARIANT_BOOL b;
364 VARIANT v;
365 BSTR str;
366 HRESULT hres;
367 float f;
368 BSTR sOverflowDefault;
369 BSTR sDefault;
370 VARIANT vDefault;
372 test_style_csstext(style, NULL);
374 hres = IHTMLStyle_get_position(style, &str);
375 ok(hres == S_OK, "get_position failed: %08x\n", hres);
376 ok(!str, "str=%s\n", wine_dbgstr_w(str));
378 V_VT(&v) = VT_NULL;
379 hres = IHTMLStyle_get_marginRight(style, &v);
380 ok(hres == S_OK, "get_marginRight failed: %08x\n", hres);
381 ok(V_VT(&v) == VT_BSTR, "V_VT(marginRight) = %d\n", V_VT(&v));
382 ok(!V_BSTR(&v), "V_BSTR(marginRight) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
384 V_VT(&v) = VT_I4;
385 V_I4(&v) = 6;
386 hres = IHTMLStyle_put_marginRight(style, v);
387 ok(hres == S_OK, "put_marginRight failed: %08x\n", hres);
389 V_VT(&v) = VT_NULL;
390 hres = IHTMLStyle_get_marginRight(style, &v);
391 ok(hres == S_OK, "get_marginRight failed: %08x\n", hres);
392 ok(V_VT(&v) == VT_BSTR, "V_VT(marginRight) = %d\n", V_VT(&v));
393 ok(!strcmp_wa(V_BSTR(&v), "6px"), "V_BSTR(marginRight) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
395 V_VT(&v) = VT_NULL;
396 hres = IHTMLStyle_get_marginBottom(style, &v);
397 ok(hres == S_OK, "get_marginBottom failed: %08x\n", hres);
398 ok(V_VT(&v) == VT_BSTR, "V_VT(marginBottom) = %d\n", V_VT(&v));
399 ok(!V_BSTR(&v), "V_BSTR(marginBottom) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
401 V_VT(&v) = VT_I4;
402 V_I4(&v) = 6;
403 hres = IHTMLStyle_put_marginBottom(style, v);
404 ok(hres == S_OK, "put_marginBottom failed: %08x\n", hres);
406 V_VT(&v) = VT_NULL;
407 hres = IHTMLStyle_get_marginBottom(style, &v);
408 ok(hres == S_OK, "get_marginBottom failed: %08x\n", hres);
409 ok(V_VT(&v) == VT_BSTR, "V_VT(marginBottom) = %d\n", V_VT(&v));
410 ok(!strcmp_wa(V_BSTR(&v), "6px"), "V_BSTR(marginBottom) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
412 V_VT(&v) = VT_NULL;
413 hres = IHTMLStyle_get_marginLeft(style, &v);
414 ok(hres == S_OK, "get_marginLeft failed: %08x\n", hres);
415 ok(V_VT(&v) == VT_BSTR, "V_VT(marginLeft) = %d\n", V_VT(&v));
416 ok(!V_BSTR(&v), "V_BSTR(marginLeft) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
418 V_VT(&v) = VT_I4;
419 V_I4(&v) = 6;
420 hres = IHTMLStyle_put_marginLeft(style, v);
421 ok(hres == S_OK, "put_marginLeft failed: %08x\n", hres);
423 V_VT(&v) = VT_NULL;
424 hres = IHTMLStyle_get_marginLeft(style, &v);
425 ok(hres == S_OK, "get_marginLeft failed: %08x\n", hres);
426 ok(V_VT(&v) == VT_BSTR, "V_VT(marginLeft) = %d\n", V_VT(&v));
427 ok(!strcmp_wa(V_BSTR(&v), "6px"), "V_BSTR(marginLeft) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
429 str = (void*)0xdeadbeef;
430 hres = IHTMLStyle_get_fontFamily(style, &str);
431 ok(hres == S_OK, "get_fontFamily failed: %08x\n", hres);
432 ok(!str, "fontFamily = %s\n", wine_dbgstr_w(str));
434 str = (void*)0xdeadbeef;
435 hres = IHTMLStyle_get_fontWeight(style, &str);
436 ok(hres == S_OK, "get_fontWeight failed: %08x\n", hres);
437 ok(!str, "fontWeight = %s\n", wine_dbgstr_w(str));
439 hres = IHTMLStyle_get_fontWeight(style, &sDefault);
440 ok(hres == S_OK, "get_fontWeight failed: %08x\n", hres);
442 str = a2bstr("test");
443 hres = IHTMLStyle_put_fontWeight(style, str);
444 ok(hres == E_INVALIDARG, "put_fontWeight failed: %08x\n", hres);
445 SysFreeString(str);
447 str = a2bstr("bold");
448 hres = IHTMLStyle_put_fontWeight(style, str);
449 ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
450 SysFreeString(str);
452 str = a2bstr("bolder");
453 hres = IHTMLStyle_put_fontWeight(style, str);
454 ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
455 SysFreeString(str);
457 str = a2bstr("lighter");
458 hres = IHTMLStyle_put_fontWeight(style, str);
459 ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
460 SysFreeString(str);
462 str = a2bstr("100");
463 hres = IHTMLStyle_put_fontWeight(style, str);
464 ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
465 SysFreeString(str);
467 str = a2bstr("200");
468 hres = IHTMLStyle_put_fontWeight(style, str);
469 ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
470 SysFreeString(str);
472 str = a2bstr("300");
473 hres = IHTMLStyle_put_fontWeight(style, str);
474 ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
475 SysFreeString(str);
477 str = a2bstr("400");
478 hres = IHTMLStyle_put_fontWeight(style, str);
479 ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
480 SysFreeString(str);
482 str = a2bstr("500");
483 hres = IHTMLStyle_put_fontWeight(style, str);
484 ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
485 SysFreeString(str);
487 str = a2bstr("600");
488 hres = IHTMLStyle_put_fontWeight(style, str);
489 ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
490 SysFreeString(str);
492 str = a2bstr("700");
493 hres = IHTMLStyle_put_fontWeight(style, str);
494 ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
495 SysFreeString(str);
497 str = a2bstr("800");
498 hres = IHTMLStyle_put_fontWeight(style, str);
499 ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
500 SysFreeString(str);
502 str = a2bstr("900");
503 hres = IHTMLStyle_put_fontWeight(style, str);
504 ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
505 SysFreeString(str);
507 hres = IHTMLStyle_get_fontWeight(style, &str);
508 ok(hres == S_OK, "get_fontWeight failed: %08x\n", hres);
509 ok(!strcmp_wa(str, "900"), "str != style900\n");
510 SysFreeString(str);
512 hres = IHTMLStyle_put_fontWeight(style, sDefault);
513 ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
514 SysFreeString(sDefault);
516 /* font Variant */
517 hres = IHTMLStyle_get_fontVariant(style, NULL);
518 ok(hres == E_INVALIDARG, "get_fontVariant failed: %08x\n", hres);
520 hres = IHTMLStyle_get_fontVariant(style, &sDefault);
521 ok(hres == S_OK, "get_fontVariant failed: %08x\n", hres);
523 str = a2bstr("test");
524 hres = IHTMLStyle_put_fontVariant(style, str);
525 ok(hres == E_INVALIDARG, "fontVariant failed: %08x\n", hres);
526 SysFreeString(str);
528 str = a2bstr("small-caps");
529 hres = IHTMLStyle_put_fontVariant(style, str);
530 ok(hres == S_OK, "fontVariant failed: %08x\n", hres);
531 SysFreeString(str);
533 str = a2bstr("normal");
534 hres = IHTMLStyle_put_fontVariant(style, str);
535 ok(hres == S_OK, "fontVariant failed: %08x\n", hres);
536 SysFreeString(str);
538 hres = IHTMLStyle_put_fontVariant(style, sDefault);
539 ok(hres == S_OK, "fontVariant failed: %08x\n", hres);
540 SysFreeString(sDefault);
542 str = (void*)0xdeadbeef;
543 hres = IHTMLStyle_get_display(style, &str);
544 ok(hres == S_OK, "get_display failed: %08x\n", hres);
545 ok(!str, "display = %s\n", wine_dbgstr_w(str));
547 str = (void*)0xdeadbeef;
548 hres = IHTMLStyle_get_visibility(style, &str);
549 ok(hres == S_OK, "get_visibility failed: %08x\n", hres);
550 ok(!str, "visibility = %s\n", wine_dbgstr_w(str));
552 V_VT(&v) = VT_NULL;
553 hres = IHTMLStyle_get_fontSize(style, &v);
554 ok(hres == S_OK, "get_fontSize failed: %08x\n", hres);
555 ok(V_VT(&v) == VT_BSTR, "V_VT(fontSize) = %d\n", V_VT(&v));
556 ok(!V_BSTR(&v), "V_BSTR(fontSize) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
558 V_VT(&v) = VT_I4;
559 V_I4(&v) = 12;
560 hres = IHTMLStyle_put_fontSize(style, v);
561 ok(hres == S_OK, "put_fontSize failed: %08x\n", hres);
563 V_VT(&v) = VT_NULL;
564 hres = IHTMLStyle_get_fontSize(style, &v);
565 ok(hres == S_OK, "get_fontSize failed: %08x\n", hres);
566 ok(V_VT(&v) == VT_BSTR, "V_VT(fontSize) = %d\n", V_VT(&v));
567 ok(!strcmp_wa(V_BSTR(&v), "12px"), "V_BSTR(fontSize) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
569 V_VT(&v) = VT_NULL;
570 hres = IHTMLStyle_get_color(style, &v);
571 ok(hres == S_OK, "get_color failed: %08x\n", hres);
572 ok(V_VT(&v) == VT_BSTR, "V_VT(color) = %d\n", V_VT(&v));
573 ok(!V_BSTR(&v), "V_BSTR(color) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
575 b = 0xfefe;
576 hres = IHTMLStyle_get_textDecorationUnderline(style, &b);
577 ok(hres == S_OK, "get_textDecorationUnderline failed: %08x\n", hres);
578 ok(b == VARIANT_FALSE, "textDecorationUnderline = %x\n", b);
580 hres = IHTMLStyle_put_textDecorationUnderline(style, VARIANT_TRUE);
581 ok(hres == S_OK, "put_textDecorationUnderline failed: %08x\n", hres);
582 ok(b == VARIANT_FALSE, "textDecorationUnderline = %x\n", b);
584 hres = IHTMLStyle_get_textDecorationUnderline(style, &b);
585 ok(hres == S_OK, "get_textDecorationUnderline failed: %08x\n", hres);
586 ok(b == VARIANT_TRUE, "textDecorationUnderline = %x\n", b);
588 hres = IHTMLStyle_put_textDecorationUnderline(style, VARIANT_FALSE);
589 ok(hres == S_OK, "put_textDecorationUnderline failed: %08x\n", hres);
591 b = 0xfefe;
592 hres = IHTMLStyle_get_textDecorationLineThrough(style, &b);
593 ok(hres == S_OK, "get_textDecorationLineThrough failed: %08x\n", hres);
594 ok(b == VARIANT_FALSE, "textDecorationLineThrough = %x\n", b);
596 hres = IHTMLStyle_put_textDecorationLineThrough(style, VARIANT_TRUE);
597 ok(hres == S_OK, "put_textDecorationLineThrough failed: %08x\n", hres);
598 ok(b == VARIANT_FALSE, "textDecorationLineThrough = %x\n", b);
600 hres = IHTMLStyle_get_textDecorationLineThrough(style, &b);
601 ok(hres == S_OK, "get_textDecorationLineThrough failed: %08x\n", hres);
602 ok(b == VARIANT_TRUE, "textDecorationLineThrough = %x\n", b);
604 hres = IHTMLStyle_put_textDecorationLineThrough(style, VARIANT_FALSE);
605 ok(hres == S_OK, "put_textDecorationLineThrough failed: %08x\n", hres);
607 b = 0xfefe;
608 hres = IHTMLStyle_get_textDecorationNone(style, &b);
609 ok(hres == S_OK, "get_textDecorationNone failed: %08x\n", hres);
610 ok(b == VARIANT_FALSE, "textDecorationNone = %x\n", b);
612 hres = IHTMLStyle_put_textDecorationNone(style, VARIANT_TRUE);
613 ok(hres == S_OK, "put_textDecorationNone failed: %08x\n", hres);
614 ok(b == VARIANT_FALSE, "textDecorationNone = %x\n", b);
616 hres = IHTMLStyle_get_textDecorationNone(style, &b);
617 ok(hres == S_OK, "get_textDecorationNone failed: %08x\n", hres);
618 ok(b == VARIANT_TRUE, "textDecorationNone = %x\n", b);
620 hres = IHTMLStyle_put_textDecorationNone(style, VARIANT_FALSE);
621 ok(hres == S_OK, "put_textDecorationNone failed: %08x\n", hres);
623 b = 0xfefe;
624 hres = IHTMLStyle_get_textDecorationOverline(style, &b);
625 ok(hres == S_OK, "get_textDecorationOverline failed: %08x\n", hres);
626 ok(b == VARIANT_FALSE, "textDecorationOverline = %x\n", b);
628 hres = IHTMLStyle_put_textDecorationOverline(style, VARIANT_TRUE);
629 ok(hres == S_OK, "put_textDecorationOverline failed: %08x\n", hres);
630 ok(b == VARIANT_FALSE, "textDecorationOverline = %x\n", b);
632 hres = IHTMLStyle_get_textDecorationOverline(style, &b);
633 ok(hres == S_OK, "get_textDecorationOverline failed: %08x\n", hres);
634 ok(b == VARIANT_TRUE, "textDecorationOverline = %x\n", b);
636 hres = IHTMLStyle_put_textDecorationOverline(style, VARIANT_FALSE);
637 ok(hres == S_OK, "put_textDecorationOverline failed: %08x\n", hres);
639 b = 0xfefe;
640 hres = IHTMLStyle_get_textDecorationBlink(style, &b);
641 ok(hres == S_OK, "get_textDecorationBlink failed: %08x\n", hres);
642 ok(b == VARIANT_FALSE, "textDecorationBlink = %x\n", b);
644 hres = IHTMLStyle_put_textDecorationBlink(style, VARIANT_TRUE);
645 ok(hres == S_OK, "put_textDecorationBlink failed: %08x\n", hres);
646 ok(b == VARIANT_FALSE, "textDecorationBlink = %x\n", b);
648 hres = IHTMLStyle_get_textDecorationBlink(style, &b);
649 ok(hres == S_OK, "get_textDecorationBlink failed: %08x\n", hres);
650 ok(b == VARIANT_TRUE, "textDecorationBlink = %x\n", b);
652 hres = IHTMLStyle_put_textDecorationBlink(style, VARIANT_FALSE);
653 ok(hres == S_OK, "textDecorationBlink failed: %08x\n", hres);
655 hres = IHTMLStyle_get_textDecoration(style, &sDefault);
656 ok(hres == S_OK, "get_textDecoration failed: %08x\n", hres);
658 str = a2bstr("invalid");
659 hres = IHTMLStyle_put_textDecoration(style, str);
660 ok(hres == E_INVALIDARG, "put_textDecoration failed: %08x\n", hres);
661 SysFreeString(str);
663 str = a2bstr("none");
664 hres = IHTMLStyle_put_textDecoration(style, str);
665 ok(hres == S_OK, "put_textDecoration failed: %08x\n", hres);
666 SysFreeString(str);
668 str = a2bstr("underline");
669 hres = IHTMLStyle_put_textDecoration(style, str);
670 ok(hres == S_OK, "put_textDecoration failed: %08x\n", hres);
671 SysFreeString(str);
673 str = a2bstr("overline");
674 hres = IHTMLStyle_put_textDecoration(style, str);
675 ok(hres == S_OK, "put_textDecoration failed: %08x\n", hres);
676 SysFreeString(str);
678 str = a2bstr("line-through");
679 hres = IHTMLStyle_put_textDecoration(style, str);
680 ok(hres == S_OK, "put_textDecoration failed: %08x\n", hres);
681 SysFreeString(str);
683 str = a2bstr("blink");
684 hres = IHTMLStyle_put_textDecoration(style, str);
685 ok(hres == S_OK, "put_textDecoration failed: %08x\n", hres);
686 SysFreeString(str);
688 hres = IHTMLStyle_get_textDecoration(style, &str);
689 ok(hres == S_OK, "get_textDecoration failed: %08x\n", hres);
690 ok(!strcmp_wa(str, "blink"), "str != blink\n");
691 SysFreeString(str);
693 hres = IHTMLStyle_put_textDecoration(style, sDefault);
694 ok(hres == S_OK, "put_textDecoration failed: %08x\n", hres);
695 SysFreeString(sDefault);
697 hres = IHTMLStyle_get_posWidth(style, NULL);
698 ok(hres == E_POINTER, "get_posWidth failed: %08x\n", hres);
700 hres = IHTMLStyle_get_posWidth(style, &f);
701 ok(hres == S_OK, "get_posWidth failed: %08x\n", hres);
702 ok(f == 0.0f, "f = %f\n", f);
704 V_VT(&v) = VT_EMPTY;
705 hres = IHTMLStyle_get_width(style, &v);
706 ok(hres == S_OK, "get_width failed: %08x\n", hres);
707 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
708 ok(!V_BSTR(&v), "V_BSTR(v)=%p\n", V_BSTR(&v));
710 hres = IHTMLStyle_put_posWidth(style, 2.2);
711 ok(hres == S_OK, "put_posWidth failed: %08x\n", hres);
713 hres = IHTMLStyle_get_posWidth(style, &f);
714 ok(hres == S_OK, "get_posWidth failed: %08x\n", hres);
715 ok(f == 2.0f ||
716 f == 2.2f, /* IE8 */
717 "f = %f\n", f);
719 V_VT(&v) = VT_BSTR;
720 V_BSTR(&v) = a2bstr("auto");
721 hres = IHTMLStyle_put_width(style, v);
722 ok(hres == S_OK, "put_width failed: %08x\n", hres);
723 VariantClear(&v);
725 V_VT(&v) = VT_EMPTY;
726 hres = IHTMLStyle_get_width(style, &v);
727 ok(hres == S_OK, "get_width failed: %08x\n", hres);
728 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
729 ok(!strcmp_wa(V_BSTR(&v), "auto"), "V_BSTR(v)=%s\n", wine_dbgstr_w(V_BSTR(&v)));
730 VariantClear(&v);
732 V_VT(&v) = VT_I4;
733 V_I4(&v) = 100;
734 hres = IHTMLStyle_put_width(style, v);
735 ok(hres == S_OK, "put_width failed: %08x\n", hres);
737 V_VT(&v) = VT_EMPTY;
738 hres = IHTMLStyle_get_width(style, &v);
739 ok(hres == S_OK, "get_width failed: %08x\n", hres);
740 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
741 ok(!strcmp_wa(V_BSTR(&v), "100px"), "V_BSTR(v)=%s\n", wine_dbgstr_w(V_BSTR(&v)));
742 VariantClear(&v);
744 /* margin tests */
745 str = (void*)0xdeadbeef;
746 hres = IHTMLStyle_get_margin(style, &str);
747 ok(hres == S_OK, "get_margin failed: %08x\n", hres);
748 ok(!str, "margin = %s\n", wine_dbgstr_w(str));
750 str = a2bstr("1");
751 hres = IHTMLStyle_put_margin(style, str);
752 ok(hres == S_OK, "put_margin failed: %08x\n", hres);
753 SysFreeString(str);
755 hres = IHTMLStyle_get_margin(style, &str);
756 ok(hres == S_OK, "get_margin failed: %08x\n", hres);
757 ok(!strcmp_wa(str, "1px"), "margin = %s\n", wine_dbgstr_w(str));
758 SysFreeString(str);
760 hres = IHTMLStyle_put_margin(style, NULL);
761 ok(hres == S_OK, "put_margin failed: %08x\n", hres);
763 str = (void*)0xdeadbeef;
764 hres = IHTMLStyle_get_marginTop(style, &v);
765 ok(hres == S_OK, "get_marginTop failed: %08x\n", hres);
766 ok(V_VT(&v) == VT_BSTR, "V_VT(marginTop) = %d\n", V_VT(&v));
767 ok(!V_BSTR(&v), "V_BSTR(marginTop) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
769 V_VT(&v) = VT_BSTR;
770 V_BSTR(&v) = a2bstr("6px");
771 hres = IHTMLStyle_put_marginTop(style, v);
772 SysFreeString(V_BSTR(&v));
773 ok(hres == S_OK, "put_marginTop failed: %08x\n", hres);
775 str = (void*)0xdeadbeef;
776 hres = IHTMLStyle_get_marginTop(style, &v);
777 ok(hres == S_OK, "get_marginTop failed: %08x\n", hres);
778 ok(V_VT(&v) == VT_BSTR, "V_VT(marginTop) = %d\n", V_VT(&v));
779 ok(!strcmp_wa(V_BSTR(&v), "6px"), "V_BSTR(marginTop) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
780 VariantClear(&v);
782 V_VT(&v) = VT_I4;
783 V_I4(&v) = 5;
784 hres = IHTMLStyle_put_marginTop(style, v);
785 ok(hres == S_OK, "put_marginTop failed: %08x\n", hres);
787 str = (void*)0xdeadbeef;
788 hres = IHTMLStyle_get_marginTop(style, &v);
789 ok(hres == S_OK, "get_marginTop failed: %08x\n", hres);
790 ok(V_VT(&v) == VT_BSTR, "V_VT(marginTop) = %d\n", V_VT(&v));
791 ok(!strcmp_wa(V_BSTR(&v), "5px"), "V_BSTR(marginTop) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
792 VariantClear(&v);
794 str = NULL;
795 hres = IHTMLStyle_get_border(style, &str);
796 ok(hres == S_OK, "get_border failed: %08x\n", hres);
797 ok(!str || !*str, "str is not empty\n");
798 SysFreeString(str);
800 str = a2bstr("1px");
801 hres = IHTMLStyle_put_border(style, str);
802 ok(hres == S_OK, "put_border failed: %08x\n", hres);
803 SysFreeString(str);
805 V_VT(&v) = VT_EMPTY;
806 hres = IHTMLStyle_get_left(style, &v);
807 ok(hres == S_OK, "get_left failed: %08x\n", hres);
808 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
809 ok(!V_BSTR(&v), "V_BSTR(v) != NULL\n");
810 VariantClear(&v);
812 /* Test posLeft */
813 hres = IHTMLStyle_get_posLeft(style, NULL);
814 ok(hres == E_POINTER, "get_posLeft failed: %08x\n", hres);
816 f = 1.0f;
817 hres = IHTMLStyle_get_posLeft(style, &f);
818 ok(hres == S_OK, "get_posLeft failed: %08x\n", hres);
819 ok(f == 0.0, "expected 0.0 got %f\n", f);
821 hres = IHTMLStyle_put_posLeft(style, 4.9f);
822 ok(hres == S_OK, "put_posLeft failed: %08x\n", hres);
824 hres = IHTMLStyle_get_posLeft(style, &f);
825 ok(hres == S_OK, "get_posLeft failed: %08x\n", hres);
826 ok(f == 4.0 ||
827 f == 4.9f, /* IE8 */
828 "expected 4.0 or 4.9 (IE8) got %f\n", f);
830 /* Ensure left is updated correctly. */
831 V_VT(&v) = VT_EMPTY;
832 hres = IHTMLStyle_get_left(style, &v);
833 ok(hres == S_OK, "get_left failed: %08x\n", hres);
834 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
835 ok(!strcmp_wa(V_BSTR(&v), "4px") ||
836 !strcmp_wa(V_BSTR(&v), "4.9px"), /* IE8 */
837 "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
838 VariantClear(&v);
840 /* Test left */
841 V_VT(&v) = VT_BSTR;
842 V_BSTR(&v) = a2bstr("3px");
843 hres = IHTMLStyle_put_left(style, v);
844 ok(hres == S_OK, "put_left failed: %08x\n", hres);
845 VariantClear(&v);
847 hres = IHTMLStyle_get_posLeft(style, &f);
848 ok(hres == S_OK, "get_posLeft failed: %08x\n", hres);
849 ok(f == 3.0, "expected 3.0 got %f\n", f);
851 V_VT(&v) = VT_EMPTY;
852 hres = IHTMLStyle_get_left(style, &v);
853 ok(hres == S_OK, "get_left failed: %08x\n", hres);
854 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
855 ok(!strcmp_wa(V_BSTR(&v), "3px"), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
856 VariantClear(&v);
858 V_VT(&v) = VT_NULL;
859 hres = IHTMLStyle_put_left(style, v);
860 ok(hres == S_OK, "put_left failed: %08x\n", hres);
862 V_VT(&v) = VT_EMPTY;
863 hres = IHTMLStyle_get_left(style, &v);
864 ok(hres == S_OK, "get_left failed: %08x\n", hres);
865 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
866 ok(!V_BSTR(&v), "V_BSTR(v) != NULL\n");
867 VariantClear(&v);
869 V_VT(&v) = VT_EMPTY;
870 hres = IHTMLStyle_get_top(style, &v);
871 ok(hres == S_OK, "get_top failed: %08x\n", hres);
872 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
873 ok(!V_BSTR(&v), "V_BSTR(v) != NULL\n");
874 VariantClear(&v);
876 /* Test posTop */
877 hres = IHTMLStyle_get_posTop(style, NULL);
878 ok(hres == E_POINTER, "get_posTop failed: %08x\n", hres);
880 f = 1.0f;
881 hres = IHTMLStyle_get_posTop(style, &f);
882 ok(hres == S_OK, "get_posTop failed: %08x\n", hres);
883 ok(f == 0.0, "expected 0.0 got %f\n", f);
885 hres = IHTMLStyle_put_posTop(style, 4.9f);
886 ok(hres == S_OK, "put_posTop failed: %08x\n", hres);
888 hres = IHTMLStyle_get_posTop(style, &f);
889 ok(hres == S_OK, "get_posTop failed: %08x\n", hres);
890 ok(f == 4.0 ||
891 f == 4.9f, /* IE8 */
892 "expected 4.0 or 4.9 (IE8) got %f\n", f);
894 V_VT(&v) = VT_BSTR;
895 V_BSTR(&v) = a2bstr("3px");
896 hres = IHTMLStyle_put_top(style, v);
897 ok(hres == S_OK, "put_top failed: %08x\n", hres);
898 VariantClear(&v);
900 V_VT(&v) = VT_EMPTY;
901 hres = IHTMLStyle_get_top(style, &v);
902 ok(hres == S_OK, "get_top failed: %08x\n", hres);
903 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
904 ok(!strcmp_wa(V_BSTR(&v), "3px"), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
905 VariantClear(&v);
907 hres = IHTMLStyle_get_posTop(style, &f);
908 ok(hres == S_OK, "get_posTop failed: %08x\n", hres);
909 ok(f == 3.0, "expected 3.0 got %f\n", f);
911 V_VT(&v) = VT_NULL;
912 hres = IHTMLStyle_put_top(style, v);
913 ok(hres == S_OK, "put_top failed: %08x\n", hres);
915 V_VT(&v) = VT_EMPTY;
916 hres = IHTMLStyle_get_top(style, &v);
917 ok(hres == S_OK, "get_top failed: %08x\n", hres);
918 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
919 ok(!V_BSTR(&v), "V_BSTR(v) != NULL\n");
920 VariantClear(&v);
922 /* Test posHeight */
923 hres = IHTMLStyle_get_posHeight(style, NULL);
924 ok(hres == E_POINTER, "get_posHeight failed: %08x\n", hres);
926 V_VT(&v) = VT_EMPTY;
927 hres = IHTMLStyle_get_height(style, &v);
928 ok(hres == S_OK, "get_height failed: %08x\n", hres);
929 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
930 ok(!V_BSTR(&v), "V_BSTR(v) != NULL\n");
931 VariantClear(&v);
933 f = 1.0f;
934 hres = IHTMLStyle_get_posHeight(style, &f);
935 ok(hres == S_OK, "get_posHeight failed: %08x\n", hres);
936 ok(f == 0.0, "expected 0.0 got %f\n", f);
938 hres = IHTMLStyle_put_posHeight(style, 4.9f);
939 ok(hres == S_OK, "put_posHeight failed: %08x\n", hres);
941 hres = IHTMLStyle_get_posHeight(style, &f);
942 ok(hres == S_OK, "get_posHeight failed: %08x\n", hres);
943 ok(f == 4.0 ||
944 f == 4.9f, /* IE8 */
945 "expected 4.0 or 4.9 (IE8) got %f\n", f);
947 V_VT(&v) = VT_BSTR;
948 V_BSTR(&v) = a2bstr("70px");
949 hres = IHTMLStyle_put_height(style, v);
950 ok(hres == S_OK, "put_height failed: %08x\n", hres);
951 VariantClear(&v);
953 V_VT(&v) = VT_EMPTY;
954 hres = IHTMLStyle_get_height(style, &v);
955 ok(hres == S_OK, "get_height failed: %08x\n", hres);
956 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
957 ok(!strcmp_wa(V_BSTR(&v), "70px"), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
958 VariantClear(&v);
960 V_VT(&v) = VT_I4;
961 V_I4(&v) = 64;
962 hres = IHTMLStyle_put_height(style, v);
963 ok(hres == S_OK, "put_height failed: %08x\n", hres);
965 V_VT(&v) = VT_EMPTY;
966 hres = IHTMLStyle_get_height(style, &v);
967 ok(hres == S_OK, "get_height failed: %08x\n", hres);
968 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
969 ok(!strcmp_wa(V_BSTR(&v), "64px"), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
970 VariantClear(&v);
972 hres = IHTMLStyle_get_posHeight(style, &f);
973 ok(hres == S_OK, "get_posHeight failed: %08x\n", hres);
974 ok(f == 64.0, "expected 64.0 got %f\n", f);
976 str = (void*)0xdeadbeef;
977 hres = IHTMLStyle_get_cursor(style, &str);
978 ok(hres == S_OK, "get_cursor failed: %08x\n", hres);
979 ok(!str, "get_cursor != NULL\n");
980 SysFreeString(str);
982 str = a2bstr("default");
983 hres = IHTMLStyle_put_cursor(style, str);
984 ok(hres == S_OK, "put_cursor failed: %08x\n", hres);
985 SysFreeString(str);
987 str = NULL;
988 hres = IHTMLStyle_get_cursor(style, &str);
989 ok(hres == S_OK, "get_cursor failed: %08x\n", hres);
990 ok(!strcmp_wa(str, "default"), "get_cursor returned %s\n", wine_dbgstr_w(str));
991 SysFreeString(str);
993 V_VT(&v) = VT_EMPTY;
994 hres = IHTMLStyle_get_verticalAlign(style, &v);
995 ok(hres == S_OK, "get_vertivalAlign failed: %08x\n", hres);
996 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
997 ok(!V_BSTR(&v), "V_BSTR(v) != NULL\n");
998 VariantClear(&v);
1000 V_VT(&v) = VT_BSTR;
1001 V_BSTR(&v) = a2bstr("middle");
1002 hres = IHTMLStyle_put_verticalAlign(style, v);
1003 ok(hres == S_OK, "put_vertivalAlign failed: %08x\n", hres);
1004 VariantClear(&v);
1006 V_VT(&v) = VT_EMPTY;
1007 hres = IHTMLStyle_get_verticalAlign(style, &v);
1008 ok(hres == S_OK, "get_verticalAlign failed: %08x\n", hres);
1009 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
1010 ok(!strcmp_wa(V_BSTR(&v), "middle"), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1011 VariantClear(&v);
1013 str = (void*)0xdeadbeef;
1014 hres = IHTMLStyle_get_textAlign(style, &str);
1015 ok(hres == S_OK, "get_textAlign failed: %08x\n", hres);
1016 ok(!str, "textAlign != NULL\n");
1018 str = a2bstr("center");
1019 hres = IHTMLStyle_put_textAlign(style, str);
1020 ok(hres == S_OK, "put_textAlign failed: %08x\n", hres);
1021 SysFreeString(str);
1023 str = NULL;
1024 hres = IHTMLStyle_get_textAlign(style, &str);
1025 ok(hres == S_OK, "get_textAlign failed: %08x\n", hres);
1026 ok(!strcmp_wa(str, "center"), "textAlign = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1027 SysFreeString(str);
1029 str = (void*)0xdeadbeef;
1030 hres = IHTMLStyle_get_filter(style, &str);
1031 ok(hres == S_OK, "get_filter failed: %08x\n", hres);
1032 ok(!str, "filter != NULL\n");
1034 str = a2bstr("alpha(opacity=100)");
1035 hres = IHTMLStyle_put_filter(style, str);
1036 ok(hres == S_OK, "put_filter failed: %08x\n", hres);
1037 SysFreeString(str);
1039 V_VT(&v) = VT_EMPTY;
1040 hres = IHTMLStyle_get_zIndex(style, &v);
1041 ok(hres == S_OK, "get_zIndex failed: %08x\n", hres);
1042 ok(V_VT(&v) == VT_I4, "V_VT(v)=%d\n", V_VT(&v));
1043 ok(!V_I4(&v), "V_I4(v) != 0\n");
1044 VariantClear(&v);
1046 V_VT(&v) = VT_BSTR;
1047 V_BSTR(&v) = a2bstr("1");
1048 hres = IHTMLStyle_put_zIndex(style, v);
1049 ok(hres == S_OK, "put_zIndex failed: %08x\n", hres);
1050 VariantClear(&v);
1052 V_VT(&v) = VT_EMPTY;
1053 hres = IHTMLStyle_get_zIndex(style, &v);
1054 ok(hres == S_OK, "get_zIndex failed: %08x\n", hres);
1055 ok(V_VT(&v) == VT_I4, "V_VT(v)=%d\n", V_VT(&v));
1056 ok(V_I4(&v) == 1, "V_I4(v) = %d\n", V_I4(&v));
1057 VariantClear(&v);
1059 /* fontStyle */
1060 hres = IHTMLStyle_get_fontStyle(style, &sDefault);
1061 ok(hres == S_OK, "get_fontStyle failed: %08x\n", hres);
1063 str = a2bstr("test");
1064 hres = IHTMLStyle_put_fontStyle(style, str);
1065 ok(hres == E_INVALIDARG, "put_fontStyle failed: %08x\n", hres);
1066 SysFreeString(str);
1068 str = a2bstr("italic");
1069 hres = IHTMLStyle_put_fontStyle(style, str);
1070 ok(hres == S_OK, "put_fontStyle failed: %08x\n", hres);
1071 SysFreeString(str);
1073 str = a2bstr("oblique");
1074 hres = IHTMLStyle_put_fontStyle(style, str);
1075 ok(hres == S_OK, "put_fontStyle failed: %08x\n", hres);
1076 SysFreeString(str);
1078 str = a2bstr("normal");
1079 hres = IHTMLStyle_put_fontStyle(style, str);
1080 ok(hres == S_OK, "put_fontStyle failed: %08x\n", hres);
1081 SysFreeString(str);
1083 hres = IHTMLStyle_put_fontStyle(style, sDefault);
1084 ok(hres == S_OK, "put_fontStyle failed: %08x\n", hres);
1085 SysFreeString(sDefault);
1087 /* overflow */
1088 hres = IHTMLStyle_get_overflow(style, NULL);
1089 ok(hres == E_INVALIDARG, "get_overflow failed: %08x\n", hres);
1091 hres = IHTMLStyle_get_overflow(style, &sOverflowDefault);
1092 ok(hres == S_OK, "get_overflow failed: %08x\n", hres);
1094 str = a2bstr("test");
1095 hres = IHTMLStyle_put_overflow(style, str);
1096 ok(hres == E_INVALIDARG, "put_overflow failed: %08x\n", hres);
1097 SysFreeString(str);
1099 str = a2bstr("visible");
1100 hres = IHTMLStyle_put_overflow(style, str);
1101 ok(hres == S_OK, "put_overflow failed: %08x\n", hres);
1102 SysFreeString(str);
1104 str = a2bstr("scroll");
1105 hres = IHTMLStyle_put_overflow(style, str);
1106 ok(hres == S_OK, "put_overflow failed: %08x\n", hres);
1107 SysFreeString(str);
1109 str = a2bstr("hidden");
1110 hres = IHTMLStyle_put_overflow(style, str);
1111 ok(hres == S_OK, "put_overflow failed: %08x\n", hres);
1112 SysFreeString(str);
1114 str = a2bstr("auto");
1115 hres = IHTMLStyle_put_overflow(style, str);
1116 ok(hres == S_OK, "put_overflow failed: %08x\n", hres);
1117 SysFreeString(str);
1119 hres = IHTMLStyle_get_overflow(style, &str);
1120 ok(hres == S_OK, "get_overflow failed: %08x\n", hres);
1121 ok(!strcmp_wa(str, "auto"), "str=%s\n", wine_dbgstr_w(str));
1122 SysFreeString(str);
1124 str = a2bstr("");
1125 hres = IHTMLStyle_put_overflow(style, str);
1126 ok(hres == S_OK, "put_overflow failed: %08x\n", hres);
1127 SysFreeString(str);
1129 hres = IHTMLStyle_get_overflow(style, &str);
1130 ok(hres == S_OK, "get_overflow failed: %08x\n", hres);
1131 ok(!str, "str=%s\n", wine_dbgstr_w(str));
1132 SysFreeString(str);
1134 /* restore overflow default */
1135 hres = IHTMLStyle_put_overflow(style, sOverflowDefault);
1136 ok(hres == S_OK, "put_overflow failed: %08x\n", hres);
1137 SysFreeString(sOverflowDefault);
1139 /* Attribute Tests*/
1140 hres = IHTMLStyle_getAttribute(style, NULL, 1, &v);
1141 ok(hres == E_INVALIDARG, "getAttribute failed: %08x\n", hres);
1143 str = a2bstr("position");
1144 hres = IHTMLStyle_getAttribute(style, str, 1, NULL);
1145 ok(hres == E_INVALIDARG, "getAttribute failed: %08x\n", hres);
1147 hres = IHTMLStyle_getAttribute(style, str, 1, &v);
1148 ok(hres == S_OK, "getAttribute failed: %08x\n", hres);
1149 ok(V_VT(&v) == VT_BSTR, "type failed: %d\n", V_VT(&v));
1150 VariantClear(&v);
1152 hres = IHTMLStyle_setAttribute(style, NULL, v, 1);
1153 ok(hres == E_INVALIDARG, "setAttribute failed: %08x\n", hres);
1155 V_VT(&v) = VT_BSTR;
1156 V_BSTR(&v) = a2bstr("absolute");
1157 hres = IHTMLStyle_setAttribute(style, str, v, 1);
1158 ok(hres == S_OK, "setAttribute failed: %08x\n", hres);
1159 VariantClear(&v);
1161 hres = IHTMLStyle_getAttribute(style, str, 1, &v);
1162 ok(hres == S_OK, "getAttribute failed: %08x\n", hres);
1163 ok(V_VT(&v) == VT_BSTR, "type failed: %d\n", V_VT(&v));
1164 ok(!strcmp_wa(V_BSTR(&v), "absolute"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
1165 VariantClear(&v);
1167 V_VT(&v) = VT_BSTR;
1168 V_BSTR(&v) = NULL;
1169 hres = IHTMLStyle_setAttribute(style, str, v, 1);
1170 ok(hres == S_OK, "setAttribute failed: %08x\n", hres);
1171 VariantClear(&v);
1173 SysFreeString(str);
1175 str = a2bstr("borderLeftStyle");
1176 test_border_styles(style, str);
1177 SysFreeString(str);
1179 str = a2bstr("borderbottomstyle");
1180 test_border_styles(style, str);
1181 SysFreeString(str);
1183 str = a2bstr("borderrightstyle");
1184 test_border_styles(style, str);
1185 SysFreeString(str);
1187 str = a2bstr("bordertopstyle");
1188 test_border_styles(style, str);
1189 SysFreeString(str);
1191 hres = IHTMLStyle_get_borderStyle(style, &sDefault);
1192 ok(hres == S_OK, "get_borderStyle failed: %08x\n", hres);
1194 str = a2bstr("none dotted dashed solid");
1195 hres = IHTMLStyle_put_borderStyle(style, str);
1196 ok(hres == S_OK, "put_borderStyle failed: %08x\n", hres);
1197 SysFreeString(str);
1199 str = a2bstr("none dotted dashed solid");
1200 hres = IHTMLStyle_get_borderStyle(style, &str);
1201 ok(hres == S_OK, "get_borderStyle failed: %08x\n", hres);
1202 ok(!strcmp_wa(str, "none dotted dashed solid"),
1203 "expected (none dotted dashed solid) = (%s)\n", wine_dbgstr_w(V_BSTR(&v)));
1204 SysFreeString(str);
1206 str = a2bstr("double groove ridge inset");
1207 hres = IHTMLStyle_put_borderStyle(style, str);
1208 ok(hres == S_OK, "put_borderStyle failed: %08x\n", hres);
1209 SysFreeString(str);
1211 str = a2bstr("window-inset outset ridge inset");
1212 hres = IHTMLStyle_put_borderStyle(style, str);
1213 ok(hres == S_OK, "put_borderStyle failed: %08x\n", hres);
1214 SysFreeString(str);
1216 str = a2bstr("window-inset");
1217 hres = IHTMLStyle_put_borderStyle(style, str);
1218 ok(hres == S_OK, "put_borderStyle failed: %08x\n", hres);
1219 SysFreeString(str);
1221 str = a2bstr("none none none none none");
1222 hres = IHTMLStyle_put_borderStyle(style, str);
1223 ok(hres == S_OK, "put_borderStyle failed: %08x\n", hres);
1224 SysFreeString(str);
1226 str = a2bstr("invalid none none none");
1227 hres = IHTMLStyle_put_borderStyle(style, str);
1228 ok(hres == E_INVALIDARG, "put_borderStyle failed: %08x\n", hres);
1229 SysFreeString(str);
1231 str = a2bstr("none invalid none none");
1232 hres = IHTMLStyle_put_borderStyle(style, str);
1233 ok(hres == E_INVALIDARG, "put_borderStyle failed: %08x\n", hres);
1234 SysFreeString(str);
1236 hres = IHTMLStyle_put_borderStyle(style, sDefault);
1237 ok(hres == S_OK, "put_borderStyle failed: %08x\n", hres);
1238 SysFreeString(sDefault);
1240 /* backgoundColor */
1241 hres = IHTMLStyle_get_backgroundColor(style, &v);
1242 ok(hres == S_OK, "get_backgroundColor: %08x\n", hres);
1243 ok(V_VT(&v) == VT_BSTR, "type failed: %d\n", V_VT(&v));
1244 ok(!V_BSTR(&v), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
1245 VariantClear(&v);
1247 /* padding */
1248 hres = IHTMLStyle_get_padding(style, &str);
1249 ok(hres == S_OK, "get_padding failed: %08x\n", hres);
1250 ok(!str, "padding = %s\n", wine_dbgstr_w(str));
1251 SysFreeString(str);
1253 hres = IHTMLStyle_get_paddingTop(style, &v);
1254 ok(hres == S_OK, "get_paddingTop: %08x\n", hres);
1255 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
1256 ok(!V_BSTR(&v), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1258 V_VT(&v) = VT_I4;
1259 V_I4(&v) = 6;
1260 hres = IHTMLStyle_put_paddingTop(style, v);
1261 ok(hres == S_OK, "put_paddingTop failed: %08x\n", hres);
1263 hres = IHTMLStyle_get_paddingTop(style, &v);
1264 ok(hres == S_OK, "get_paddingTop: %08x\n", hres);
1265 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
1266 ok(!strcmp_wa(V_BSTR(&v), "6px"), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1267 VariantClear(&v);
1269 hres = IHTMLStyle_get_paddingRight(style, &v);
1270 ok(hres == S_OK, "get_paddingRight: %08x\n", hres);
1271 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
1272 ok(!V_BSTR(&v), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1274 V_VT(&v) = VT_I4;
1275 V_I4(&v) = 6;
1276 hres = IHTMLStyle_put_paddingRight(style, v);
1277 ok(hres == S_OK, "put_paddingRight failed: %08x\n", hres);
1279 hres = IHTMLStyle_get_paddingRight(style, &v);
1280 ok(hres == S_OK, "get_paddingRight: %08x\n", hres);
1281 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
1282 ok(!strcmp_wa(V_BSTR(&v), "6px"), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1283 VariantClear(&v);
1285 hres = IHTMLStyle_get_paddingBottom(style, &v);
1286 ok(hres == S_OK, "get_paddingBottom: %08x\n", hres);
1287 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
1288 ok(!V_BSTR(&v), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1290 V_VT(&v) = VT_I4;
1291 V_I4(&v) = 6;
1292 hres = IHTMLStyle_put_paddingBottom(style, v);
1293 ok(hres == S_OK, "put_paddingBottom failed: %08x\n", hres);
1295 hres = IHTMLStyle_get_paddingBottom(style, &v);
1296 ok(hres == S_OK, "get_paddingBottom: %08x\n", hres);
1297 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
1298 ok(!strcmp_wa(V_BSTR(&v), "6px"), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1299 VariantClear(&v);
1301 str = a2bstr("1");
1302 hres = IHTMLStyle_put_padding(style, str);
1303 ok(hres == S_OK, "put_padding failed: %08x\n", hres);
1304 SysFreeString(str);
1306 hres = IHTMLStyle_get_padding(style, &str);
1307 ok(hres == S_OK, "get_padding failed: %08x\n", hres);
1308 ok(!strcmp_wa(str, "1px"), "padding = %s\n", wine_dbgstr_w(str));
1309 SysFreeString(str);
1311 /* PaddingLeft */
1312 hres = IHTMLStyle_get_paddingLeft(style, &vDefault);
1313 ok(hres == S_OK, "get_paddingLeft: %08x\n", hres);
1314 ok(V_VT(&vDefault) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&vDefault));
1315 ok(!strcmp_wa(V_BSTR(&vDefault), "1px"), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&vDefault)));
1317 V_VT(&v) = VT_BSTR;
1318 V_BSTR(&v) = a2bstr("10");
1319 hres = IHTMLStyle_put_paddingLeft(style, v);
1320 ok(hres == S_OK, "put_paddingLeft: %08x\n", hres);
1321 VariantClear(&v);
1323 hres = IHTMLStyle_get_paddingLeft(style, &v);
1324 ok(hres == S_OK, "get_paddingLeft: %08x\n", hres);
1325 ok(!strcmp_wa(V_BSTR(&v), "10px"), "expecte 10 = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1326 VariantClear(&v);
1328 hres = IHTMLStyle_put_paddingLeft(style, vDefault);
1329 ok(hres == S_OK, "put_paddingLeft: %08x\n", hres);
1331 /* BackgroundRepeat */
1332 hres = IHTMLStyle_get_backgroundRepeat(style, &sDefault);
1333 ok(hres == S_OK, "get_backgroundRepeat failed: %08x\n", hres);
1335 str = a2bstr("invalid");
1336 hres = IHTMLStyle_put_backgroundRepeat(style, str);
1337 ok(hres == E_INVALIDARG, "put_backgroundRepeat failed: %08x\n", hres);
1338 SysFreeString(str);
1340 str = a2bstr("repeat");
1341 hres = IHTMLStyle_put_backgroundRepeat(style, str);
1342 ok(hres == S_OK, "put_backgroundRepeat failed: %08x\n", hres);
1343 SysFreeString(str);
1345 str = a2bstr("no-repeat");
1346 hres = IHTMLStyle_put_backgroundRepeat(style, str);
1347 ok(hres == S_OK, "put_backgroundRepeat failed: %08x\n", hres);
1348 SysFreeString(str);
1350 str = a2bstr("repeat-x");
1351 hres = IHTMLStyle_put_backgroundRepeat(style, str);
1352 ok(hres == S_OK, "put_backgroundRepeat failed: %08x\n", hres);
1353 SysFreeString(str);
1355 str = a2bstr("repeat-y");
1356 hres = IHTMLStyle_put_backgroundRepeat(style, str);
1357 ok(hres == S_OK, "put_backgroundRepeat failed: %08x\n", hres);
1358 SysFreeString(str);
1360 hres = IHTMLStyle_get_backgroundRepeat(style, &str);
1361 ok(hres == S_OK, "get_backgroundRepeat failed: %08x\n", hres);
1362 ok(!strcmp_wa(str, "repeat-y"), "str=%s\n", wine_dbgstr_w(str));
1363 SysFreeString(str);
1365 hres = IHTMLStyle_put_backgroundRepeat(style, sDefault);
1366 ok(hres == S_OK, "put_backgroundRepeat failed: %08x\n", hres);
1367 SysFreeString(sDefault);
1369 /* BorderColor */
1370 hres = IHTMLStyle_get_borderColor(style, &sDefault);
1371 ok(hres == S_OK, "get_borderColor failed: %08x\n", hres);
1373 str = a2bstr("red green red blue");
1374 hres = IHTMLStyle_put_borderColor(style, str);
1375 ok(hres == S_OK, "put_borderColor failed: %08x\n", hres);
1376 SysFreeString(str);
1378 hres = IHTMLStyle_get_borderColor(style, &str);
1379 ok(hres == S_OK, "get_borderColor failed: %08x\n", hres);
1380 ok(!strcmp_wa(str, "red green red blue"), "str=%s\n", wine_dbgstr_w(str));
1381 SysFreeString(str);
1383 hres = IHTMLStyle_put_borderColor(style, sDefault);
1384 ok(hres == S_OK, "put_borderColor failed: %08x\n", hres);
1385 SysFreeString(sDefault);
1387 /* BorderRight */
1388 hres = IHTMLStyle_get_borderRight(style, &sDefault);
1389 ok(hres == S_OK, "get_borderRight failed: %08x\n", hres);
1391 str = a2bstr("thick dotted red");
1392 hres = IHTMLStyle_put_borderRight(style, str);
1393 ok(hres == S_OK, "put_borderRight failed: %08x\n", hres);
1394 SysFreeString(str);
1396 /* IHTMLStyle_get_borderRight appears to have a bug where
1397 it returns the first letter of the color. So we check
1398 each style individually.
1400 V_BSTR(&v) = NULL;
1401 hres = IHTMLStyle_get_borderRightColor(style, &v);
1402 ok(hres == S_OK, "get_borderRightColor failed: %08x\n", hres);
1403 ok(!strcmp_wa(V_BSTR(&v), "red"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
1404 VariantClear(&v);
1406 V_BSTR(&v) = NULL;
1407 hres = IHTMLStyle_get_borderRightWidth(style, &v);
1408 ok(hres == S_OK, "get_borderRightWidth failed: %08x\n", hres);
1409 ok(!strcmp_wa(V_BSTR(&v), "thick"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
1410 VariantClear(&v);
1412 hres = IHTMLStyle_get_borderRightStyle(style, &str);
1413 ok(hres == S_OK, "get_borderRightStyle failed: %08x\n", hres);
1414 ok(!strcmp_wa(str, "dotted"), "str=%s\n", wine_dbgstr_w(str));
1415 SysFreeString(str);
1417 hres = IHTMLStyle_put_borderRight(style, sDefault);
1418 ok(hres == S_OK, "put_borderRight failed: %08x\n", hres);
1419 SysFreeString(sDefault);
1421 /* BorderTop */
1422 hres = IHTMLStyle_get_borderTop(style, &sDefault);
1423 ok(hres == S_OK, "get_borderTop failed: %08x\n", hres);
1425 str = a2bstr("thick dotted red");
1426 hres = IHTMLStyle_put_borderTop(style, str);
1427 ok(hres == S_OK, "put_borderTop failed: %08x\n", hres);
1428 SysFreeString(str);
1430 /* IHTMLStyle_get_borderTop appears to have a bug where
1431 it returns the first letter of the color. So we check
1432 each style individually.
1434 V_BSTR(&v) = NULL;
1435 hres = IHTMLStyle_get_borderTopColor(style, &v);
1436 ok(hres == S_OK, "get_borderTopColor failed: %08x\n", hres);
1437 ok(!strcmp_wa(V_BSTR(&v), "red"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
1438 VariantClear(&v);
1440 V_BSTR(&v) = NULL;
1441 hres = IHTMLStyle_get_borderTopWidth(style, &v);
1442 ok(hres == S_OK, "get_borderTopWidth failed: %08x\n", hres);
1443 ok(!strcmp_wa(V_BSTR(&v), "thick"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
1444 VariantClear(&v);
1446 hres = IHTMLStyle_get_borderTopStyle(style, &str);
1447 ok(hres == S_OK, "get_borderTopStyle failed: %08x\n", hres);
1448 ok(!strcmp_wa(str, "dotted"), "str=%s\n", wine_dbgstr_w(str));
1449 SysFreeString(str);
1451 hres = IHTMLStyle_put_borderTop(style, sDefault);
1452 ok(hres == S_OK, "put_borderTop failed: %08x\n", hres);
1453 SysFreeString(sDefault);
1455 /* BorderBottom */
1456 hres = IHTMLStyle_get_borderBottom(style, &sDefault);
1457 ok(hres == S_OK, "get_borderBottom failed: %08x\n", hres);
1459 str = a2bstr("thick dotted red");
1460 hres = IHTMLStyle_put_borderBottom(style, str);
1461 ok(hres == S_OK, "put_borderBottom failed: %08x\n", hres);
1462 SysFreeString(str);
1464 /* IHTMLStyle_get_borderBottom appears to have a bug where
1465 it returns the first letter of the color. So we check
1466 each style individually.
1468 V_BSTR(&v) = NULL;
1469 hres = IHTMLStyle_get_borderBottomColor(style, &v);
1470 ok(hres == S_OK, "get_borderBottomColor failed: %08x\n", hres);
1471 ok(!strcmp_wa(V_BSTR(&v), "red"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
1472 VariantClear(&v);
1474 V_BSTR(&v) = NULL;
1475 hres = IHTMLStyle_get_borderBottomWidth(style, &v);
1476 ok(hres == S_OK, "get_borderBottomWidth failed: %08x\n", hres);
1477 ok(!strcmp_wa(V_BSTR(&v), "thick"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
1478 VariantClear(&v);
1480 hres = IHTMLStyle_get_borderBottomStyle(style, &str);
1481 ok(hres == S_OK, "get_borderBottomStyle failed: %08x\n", hres);
1482 ok(!strcmp_wa(str, "dotted"), "str=%s\n", wine_dbgstr_w(str));
1483 SysFreeString(str);
1485 hres = IHTMLStyle_put_borderBottom(style, sDefault);
1486 ok(hres == S_OK, "put_borderBottom failed: %08x\n", hres);
1487 SysFreeString(sDefault);
1489 /* BorderLeft */
1490 hres = IHTMLStyle_get_borderLeft(style, &sDefault);
1491 ok(hres == S_OK, "get_borderLeft failed: %08x\n", hres);
1493 str = a2bstr("thick dotted red");
1494 hres = IHTMLStyle_put_borderLeft(style, str);
1495 ok(hres == S_OK, "put_borderLeft failed: %08x\n", hres);
1496 SysFreeString(str);
1498 /* IHTMLStyle_get_borderLeft appears to have a bug where
1499 it returns the first letter of the color. So we check
1500 each style individually.
1502 V_BSTR(&v) = NULL;
1503 hres = IHTMLStyle_get_borderLeftColor(style, &v);
1504 ok(hres == S_OK, "get_borderLeftColor failed: %08x\n", hres);
1505 ok(!strcmp_wa(V_BSTR(&v), "red"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
1506 VariantClear(&v);
1508 V_BSTR(&v) = NULL;
1509 hres = IHTMLStyle_get_borderLeftWidth(style, &v);
1510 ok(hres == S_OK, "get_borderLeftWidth failed: %08x\n", hres);
1511 ok(!strcmp_wa(V_BSTR(&v), "thick"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
1512 VariantClear(&v);
1514 hres = IHTMLStyle_get_borderLeftStyle(style, &str);
1515 ok(hres == S_OK, "get_borderLeftStyle failed: %08x\n", hres);
1516 ok(!strcmp_wa(str, "dotted"), "str=%s\n", wine_dbgstr_w(str));
1517 SysFreeString(str);
1519 hres = IHTMLStyle_put_borderLeft(style, sDefault);
1520 ok(hres == S_OK, "put_borderLeft failed: %08x\n", hres);
1521 SysFreeString(sDefault);
1523 /* backgroundPositionX */
1524 hres = IHTMLStyle_get_backgroundPositionX(style, &v);
1525 ok(hres == S_OK, "get_backgroundPositionX failed: %08x\n", hres);
1526 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
1527 ok(!V_BSTR(&v), "backgroundPositionX = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1528 VariantClear(&v);
1530 V_VT(&v) = VT_BSTR;
1531 V_BSTR(&v) = a2bstr("10px");
1532 hres = IHTMLStyle_put_backgroundPositionX(style, v);
1533 ok(hres == S_OK, "put_backgroundPositionX failed: %08x\n", hres);
1534 VariantClear(&v);
1536 hres = IHTMLStyle_get_backgroundPositionX(style, &v);
1537 ok(hres == S_OK, "get_backgroundPositionX failed: %08x\n", hres);
1538 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
1539 ok(!strcmp_wa(V_BSTR(&v), "10px"), "backgroundPositionX = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1540 VariantClear(&v);
1542 /* backgroundPositionY */
1543 hres = IHTMLStyle_get_backgroundPositionY(style, &v);
1544 ok(hres == S_OK, "get_backgroundPositionY failed: %08x\n", hres);
1545 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
1546 VariantClear(&v);
1548 V_VT(&v) = VT_BSTR;
1549 V_BSTR(&v) = a2bstr("15px");
1550 hres = IHTMLStyle_put_backgroundPositionY(style, v);
1551 ok(hres == S_OK, "put_backgroundPositionY failed: %08x\n", hres);
1552 VariantClear(&v);
1554 hres = IHTMLStyle_get_backgroundPositionY(style, &v);
1555 ok(hres == S_OK, "get_backgroundPositionY failed: %08x\n", hres);
1556 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
1557 ok(!strcmp_wa(V_BSTR(&v), "15px"), "backgroundPositionY = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1558 VariantClear(&v);
1560 /* backgroundPosition */
1561 str = NULL;
1562 hres = IHTMLStyle_get_backgroundPosition(style, &str);
1563 ok(hres == S_OK, "get_backgroundPosition failed: %08x\n", hres);
1564 ok(!strcmp_wa(str, "10px 15px"), "backgroundPosition = %s\n", wine_dbgstr_w(str));
1565 SysFreeString(str);
1567 str = a2bstr("center 20%");
1568 hres = IHTMLStyle_put_backgroundPosition(style, str);
1569 ok(hres == S_OK, "put_backgroundPosition failed: %08x\n", hres);
1570 SysFreeString(str);
1572 str = NULL;
1573 hres = IHTMLStyle_get_backgroundPosition(style, &str);
1574 ok(hres == S_OK, "get_backgroundPosition failed: %08x\n", hres);
1575 ok(!strcmp_wa(str, "center 20%"), "backgroundPosition = %s\n", wine_dbgstr_w(str));
1576 SysFreeString(str);
1578 hres = IHTMLStyle_get_backgroundPositionX(style, &v);
1579 ok(hres == S_OK, "get_backgroundPositionX failed: %08x\n", hres);
1580 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
1581 ok(!strcmp_wa(V_BSTR(&v), "center"), "backgroundPositionX = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1582 VariantClear(&v);
1584 hres = IHTMLStyle_get_backgroundPositionY(style, &v);
1585 ok(hres == S_OK, "get_backgroundPositionY failed: %08x\n", hres);
1586 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
1587 ok(!strcmp_wa(V_BSTR(&v), "20%"), "backgroundPositionY = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1588 VariantClear(&v);
1590 /* borderTopWidth */
1591 hres = IHTMLStyle_get_borderTopWidth(style, &vDefault);
1592 ok(hres == S_OK, "get_borderTopWidth: %08x\n", hres);
1594 V_VT(&v) = VT_BSTR;
1595 V_BSTR(&v) = a2bstr("10px");
1596 hres = IHTMLStyle_put_borderTopWidth(style, v);
1597 ok(hres == S_OK, "put_borderTopWidth: %08x\n", hres);
1598 VariantClear(&v);
1600 hres = IHTMLStyle_get_borderTopWidth(style, &v);
1601 ok(hres == S_OK, "get_borderTopWidth: %08x\n", hres);
1602 ok(!strcmp_wa(V_BSTR(&v), "10px"), "expected 10px = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1603 VariantClear(&v);
1605 hres = IHTMLStyle_put_borderTopWidth(style, vDefault);
1606 ok(hres == S_OK, "put_borderTopWidth: %08x\n", hres);
1607 VariantClear(&vDefault);
1609 /* borderRightWidth */
1610 hres = IHTMLStyle_get_borderRightWidth(style, &vDefault);
1611 ok(hres == S_OK, "get_borderRightWidth: %08x\n", hres);
1613 V_VT(&v) = VT_BSTR;
1614 V_BSTR(&v) = a2bstr("10");
1615 hres = IHTMLStyle_put_borderRightWidth(style, v);
1616 ok(hres == S_OK, "put_borderRightWidth: %08x\n", hres);
1617 VariantClear(&v);
1619 hres = IHTMLStyle_get_borderRightWidth(style, &v);
1620 ok(hres == S_OK, "get_borderRightWidth: %08x\n", hres);
1621 ok(!strcmp_wa(V_BSTR(&v), "10px"), "expected 10px = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1622 VariantClear(&v);
1624 hres = IHTMLStyle_put_borderRightWidth(style, vDefault);
1625 ok(hres == S_OK, "put_borderRightWidth: %08x\n", hres);
1626 VariantClear(&vDefault);
1628 /* borderBottomWidth */
1629 hres = IHTMLStyle_get_borderBottomWidth(style, &vDefault);
1630 ok(hres == S_OK, "get_borderBottomWidth: %08x\n", hres);
1632 V_VT(&v) = VT_BSTR;
1633 V_BSTR(&v) = a2bstr("10");
1634 hres = IHTMLStyle_put_borderBottomWidth(style, v);
1635 ok(hres == S_OK, "put_borderBottomWidth: %08x\n", hres);
1636 VariantClear(&v);
1638 hres = IHTMLStyle_get_borderBottomWidth(style, &v);
1639 ok(hres == S_OK, "get_borderBottomWidth: %08x\n", hres);
1640 ok(!strcmp_wa(V_BSTR(&v), "10px"), "expected 10px = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1641 VariantClear(&v);
1643 hres = IHTMLStyle_put_borderBottomWidth(style, vDefault);
1644 ok(hres == S_OK, "put_borderBottomWidth: %08x\n", hres);
1645 VariantClear(&vDefault);
1647 /* borderLeftWidth */
1648 hres = IHTMLStyle_get_borderLeftWidth(style, &vDefault);
1649 ok(hres == S_OK, "get_borderLeftWidth: %08x\n", hres);
1651 V_VT(&v) = VT_BSTR;
1652 V_BSTR(&v) = a2bstr("10");
1653 hres = IHTMLStyle_put_borderLeftWidth(style, v);
1654 ok(hres == S_OK, "put_borderLeftWidth: %08x\n", hres);
1655 VariantClear(&v);
1657 hres = IHTMLStyle_get_borderLeftWidth(style, &v);
1658 ok(hres == S_OK, "get_borderLeftWidth: %08x\n", hres);
1659 ok(!strcmp_wa(V_BSTR(&v), "10px"), "expected 10px = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1660 VariantClear(&v);
1662 hres = IHTMLStyle_put_borderLeftWidth(style, vDefault);
1663 ok(hres == S_OK, "put_borderLeftWidth: %08x\n", hres);
1664 VariantClear(&vDefault);
1666 /* wordSpacing */
1667 hres = IHTMLStyle_get_wordSpacing(style, &vDefault);
1668 ok(hres == S_OK, "get_wordSpacing: %08x\n", hres);
1670 V_VT(&v) = VT_BSTR;
1671 V_BSTR(&v) = a2bstr("10");
1672 hres = IHTMLStyle_put_wordSpacing(style, v);
1673 ok(hres == S_OK, "put_wordSpacing: %08x\n", hres);
1674 VariantClear(&v);
1676 hres = IHTMLStyle_get_wordSpacing(style, &v);
1677 ok(hres == S_OK, "get_wordSpacing: %08x\n", hres);
1678 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
1679 ok(!strcmp_wa(V_BSTR(&v), "10px"), "expected 10px = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1680 VariantClear(&v);
1682 hres = IHTMLStyle_put_wordSpacing(style, vDefault);
1683 ok(hres == S_OK, "put_wordSpacing: %08x\n", hres);
1684 VariantClear(&vDefault);
1686 /* letterSpacing */
1687 hres = IHTMLStyle_get_letterSpacing(style, &vDefault);
1688 ok(hres == S_OK, "get_letterSpacing: %08x\n", hres);
1690 V_VT(&v) = VT_BSTR;
1691 V_BSTR(&v) = a2bstr("11");
1692 hres = IHTMLStyle_put_letterSpacing(style, v);
1693 ok(hres == S_OK, "put_letterSpacing: %08x\n", hres);
1694 VariantClear(&v);
1696 hres = IHTMLStyle_get_letterSpacing(style, &v);
1697 ok(hres == S_OK, "get_letterSpacing: %08x\n", hres);
1698 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
1699 ok(!strcmp_wa(V_BSTR(&v), "11px"), "expected 10px = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1700 VariantClear(&v);
1702 hres = IHTMLStyle_put_letterSpacing(style, vDefault);
1703 ok(hres == S_OK, "put_letterSpacing: %08x\n", hres);
1704 VariantClear(&vDefault);
1706 /* borderTopColor */
1707 hres = IHTMLStyle_get_borderTopColor(style, &vDefault);
1708 ok(hres == S_OK, "get_borderTopColor: %08x\n", hres);
1710 V_VT(&v) = VT_BSTR;
1711 V_BSTR(&v) = a2bstr("red");
1712 hres = IHTMLStyle_put_borderTopColor(style, v);
1713 ok(hres == S_OK, "put_borderTopColor: %08x\n", hres);
1714 VariantClear(&v);
1716 hres = IHTMLStyle_get_borderTopColor(style, &v);
1717 ok(hres == S_OK, "get_borderTopColor: %08x\n", hres);
1718 ok(!strcmp_wa(V_BSTR(&v), "red"), "expecte red = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1719 VariantClear(&v);
1721 hres = IHTMLStyle_put_borderTopColor(style, vDefault);
1722 ok(hres == S_OK, "put_borderTopColor: %08x\n", hres);
1724 /* borderRightColor */
1725 hres = IHTMLStyle_get_borderRightColor(style, &vDefault);
1726 ok(hres == S_OK, "get_borderRightColor: %08x\n", hres);
1728 V_VT(&v) = VT_BSTR;
1729 V_BSTR(&v) = a2bstr("blue");
1730 hres = IHTMLStyle_put_borderRightColor(style, v);
1731 ok(hres == S_OK, "put_borderRightColor: %08x\n", hres);
1732 VariantClear(&v);
1734 hres = IHTMLStyle_get_borderRightColor(style, &v);
1735 ok(hres == S_OK, "get_borderRightColor: %08x\n", hres);
1736 ok(!strcmp_wa(V_BSTR(&v), "blue"), "expected blue = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1737 VariantClear(&v);
1739 hres = IHTMLStyle_put_borderRightColor(style, vDefault);
1740 ok(hres == S_OK, "putborderRightColorr: %08x\n", hres);
1742 /* borderBottomColor */
1743 hres = IHTMLStyle_get_borderBottomColor(style, &vDefault);
1744 ok(hres == S_OK, "get_borderBottomColor: %08x\n", hres);
1746 V_VT(&v) = VT_BSTR;
1747 V_BSTR(&v) = a2bstr("cyan");
1748 hres = IHTMLStyle_put_borderBottomColor(style, v);
1749 ok(hres == S_OK, "put_borderBottomColor: %08x\n", hres);
1750 VariantClear(&v);
1752 hres = IHTMLStyle_get_borderBottomColor(style, &v);
1753 ok(hres == S_OK, "get_borderBottomColor: %08x\n", hres);
1754 ok(!strcmp_wa(V_BSTR(&v), "cyan"), "expected cyan = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1755 VariantClear(&v);
1757 hres = IHTMLStyle_put_borderBottomColor(style, vDefault);
1758 ok(hres == S_OK, "put_borderBottomColor: %08x\n", hres);
1760 /* borderLeftColor */
1761 hres = IHTMLStyle_get_borderLeftColor(style, &vDefault);
1762 ok(hres == S_OK, "get_borderLeftColor: %08x\n", hres);
1764 V_VT(&v) = VT_BSTR;
1765 V_BSTR(&v) = a2bstr("cyan");
1766 hres = IHTMLStyle_put_borderLeftColor(style, v);
1767 ok(hres == S_OK, "put_borderLeftColor: %08x\n", hres);
1768 VariantClear(&v);
1770 hres = IHTMLStyle_get_borderLeftColor(style, &v);
1771 ok(hres == S_OK, "get_borderLeftColor: %08x\n", hres);
1772 ok(!strcmp_wa(V_BSTR(&v), "cyan"), "expected cyan = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1773 VariantClear(&v);
1775 hres = IHTMLStyle_put_borderLeftColor(style, vDefault);
1776 ok(hres == S_OK, "put_borderLeftColor: %08x\n", hres);
1778 /* clip */
1779 hres = IHTMLStyle_get_clip(style, &str);
1780 ok(hres == S_OK, "get_clip failed: %08x\n", hres);
1781 ok(!str, "clip = %s\n", wine_dbgstr_w(str));
1783 str = a2bstr("rect(0px 1px 500px 505px)");
1784 hres = IHTMLStyle_put_clip(style, str);
1785 ok(hres == S_OK, "put_clip failed: %08x\n", hres);
1786 SysFreeString(str);
1788 hres = IHTMLStyle_get_clip(style, &str);
1789 ok(hres == S_OK, "get_clip failed: %08x\n", hres);
1790 ok(!strcmp_wa(str, "rect(0px 1px 500px 505px)"), "clip = %s\n", wine_dbgstr_w(str));
1791 SysFreeString(str);
1793 /* pageBreakAfter */
1794 hres = IHTMLStyle_get_pageBreakAfter(style, &str);
1795 ok(hres == S_OK, "get_pageBreakAfter failed: %08x\n", hres);
1796 ok(!str, "pageBreakAfter = %s\n", wine_dbgstr_w(str));
1798 str = a2bstr("always");
1799 hres = IHTMLStyle_put_pageBreakAfter(style, str);
1800 ok(hres == S_OK, "put_pageBreakAfter failed: %08x\n", hres);
1801 SysFreeString(str);
1803 hres = IHTMLStyle_get_pageBreakAfter(style, &str);
1804 ok(hres == S_OK, "get_pageBreakAfter failed: %08x\n", hres);
1805 ok(!strcmp_wa(str, "always"), "pageBreakAfter = %s\n", wine_dbgstr_w(str));
1806 SysFreeString(str);
1808 /* pageBreakBefore */
1809 hres = IHTMLStyle_get_pageBreakBefore(style, &str);
1810 ok(hres == S_OK, "get_pageBreakBefore failed: %08x\n", hres);
1811 ok(!str, "pageBreakBefore = %s\n", wine_dbgstr_w(str));
1813 str = a2bstr("always");
1814 hres = IHTMLStyle_put_pageBreakBefore(style, str);
1815 ok(hres == S_OK, "put_pageBreakBefore failed: %08x\n", hres);
1816 SysFreeString(str);
1818 hres = IHTMLStyle_get_pageBreakBefore(style, &str);
1819 ok(hres == S_OK, "get_pageBreakBefore failed: %08x\n", hres);
1820 ok(!strcmp_wa(str, "always"), "pageBreakBefore = %s\n", wine_dbgstr_w(str));
1821 SysFreeString(str);
1823 hres = IHTMLStyle_QueryInterface(style, &IID_IHTMLStyle2, (void**)&style2);
1824 ok(hres == S_OK, "Could not get IHTMLStyle2 iface: %08x\n", hres);
1825 if(SUCCEEDED(hres)) {
1826 test_style2(style2);
1827 IHTMLStyle2_Release(style2);
1830 hres = IHTMLStyle_QueryInterface(style, &IID_IHTMLStyle3, (void**)&style3);
1831 ok(hres == S_OK, "Could not get IHTMLStyle3 iface: %08x\n", hres);
1832 if(SUCCEEDED(hres)) {
1833 test_style3(style3);
1834 IHTMLStyle3_Release(style3);
1837 hres = IHTMLStyle_QueryInterface(style, &IID_IHTMLStyle4, (void**)&style4);
1838 ok(hres == S_OK, "Could not get IHTMLStyle4 iface: %08x\n", hres);
1839 if(SUCCEEDED(hres)) {
1840 test_style4(style4);
1841 IHTMLStyle4_Release(style4);
1845 #define test_style_filter(a,b) _test_style_filter(__LINE__,a,b)
1846 static void _test_style_filter(unsigned line, IHTMLStyle *style, const char *exval)
1848 BSTR str;
1849 HRESULT hres;
1851 str = (void*)0xdeadbeef;
1852 hres = IHTMLStyle_get_filter(style, &str);
1853 ok_(__FILE__,line)(hres == S_OK, "get_filter failed: %08x\n", hres);
1854 if(exval)
1855 ok_(__FILE__,line)(str && !strcmp_wa(str, exval), "filter = %s, expected %s\n", wine_dbgstr_w(str), exval);
1856 else
1857 ok_(__FILE__,line)(!str, "str = %s, expected NULL\n", wine_dbgstr_w(str));
1859 SysFreeString(str);
1862 #define test_current_style_filter(a,b) _test_current_style_filter(__LINE__,a,b)
1863 static void _test_current_style_filter(unsigned line, IHTMLCurrentStyle2 *style, const char *exval)
1865 BSTR str;
1866 HRESULT hres;
1868 str = (void*)0xdeadbeef;
1869 hres = IHTMLCurrentStyle2_get_filter(style, &str);
1870 ok_(__FILE__,line)(hres == S_OK, "get_filter failed: %08x\n", hres);
1871 if(exval)
1872 ok_(__FILE__,line)(str && !strcmp_wa(str, exval), "filter = %s, expected %s\n", wine_dbgstr_w(str), exval);
1873 else
1874 ok_(__FILE__,line)(!str, "str = %s, expected NULL\n", wine_dbgstr_w(str));
1876 SysFreeString(str);
1879 #define set_style_filter(a,b) _set_style_filter(__LINE__,a,b)
1880 static void _set_style_filter(unsigned line, IHTMLStyle *style, const char *val)
1882 BSTR str = a2bstr(val);
1883 HRESULT hres;
1885 hres = IHTMLStyle_put_filter(style, str);
1886 ok_(__FILE__,line)(hres == S_OK, "put_filter failed: %08x\n", hres);
1887 SysFreeString(str);
1889 _test_style_filter(line, style, val);
1892 static void test_style_filters(IHTMLElement *elem)
1894 IHTMLElement2 *elem2 = get_elem2_iface((IUnknown*)elem);
1895 IHTMLCurrentStyle2 *current_style2;
1896 IHTMLCurrentStyle *current_style;
1897 IHTMLStyle *style;
1898 HRESULT hres;
1900 hres = IHTMLElement_get_style(elem, &style);
1901 ok(hres == S_OK, "get_style failed: %08x\n", hres);
1903 hres = IHTMLElement2_get_currentStyle(elem2, &current_style);
1904 ok(hres == S_OK, "get_style failed: %08x\n", hres);
1906 hres = IHTMLCurrentStyle_QueryInterface(current_style, &IID_IHTMLCurrentStyle2, (void**)&current_style2);
1907 IHTMLCurrentStyle_Release(current_style);
1908 ok(hres == S_OK, "Could not get IHTMLCurrentStyle2 iface: %08x\n", hres);
1910 test_style_filter(style, NULL);
1911 test_current_style_filter(current_style2, NULL);
1912 set_style_filter(style, "alpha(opacity=50.0040)");
1913 test_current_style_filter(current_style2, "alpha(opacity=50.0040)");
1914 set_style_filter(style, "alpha(opacity=100)");
1916 IHTMLStyle_Release(style);
1918 hres = IHTMLElement_get_style(elem, &style);
1919 ok(hres == S_OK, "get_style failed: %08x\n", hres);
1921 test_style_filter(style, "alpha(opacity=100)");
1922 set_style_filter(style, "xxx(a,b,c) alpha(opacity=100)");
1923 set_style_filter(style, NULL);
1925 IHTMLCurrentStyle2_Release(current_style2);
1926 IHTMLStyle_Release(style);
1927 IHTMLElement2_Release(elem2);
1930 static void test_current_style(IHTMLCurrentStyle *current_style)
1932 BSTR str;
1933 HRESULT hres;
1934 VARIANT v;
1936 hres = IHTMLCurrentStyle_get_display(current_style, &str);
1937 ok(hres == S_OK, "get_display failed: %08x\n", hres);
1938 ok(!strcmp_wa(str, "block"), "get_display returned %s\n", wine_dbgstr_w(str));
1939 SysFreeString(str);
1941 hres = IHTMLCurrentStyle_get_position(current_style, &str);
1942 ok(hres == S_OK, "get_position failed: %08x\n", hres);
1943 ok(!strcmp_wa(str, "absolute"), "get_position returned %s\n", wine_dbgstr_w(str));
1944 SysFreeString(str);
1946 hres = IHTMLCurrentStyle_get_fontFamily(current_style, &str);
1947 ok(hres == S_OK, "get_fontFamily failed: %08x\n", hres);
1948 SysFreeString(str);
1950 hres = IHTMLCurrentStyle_get_fontStyle(current_style, &str);
1951 ok(hres == S_OK, "get_fontStyle failed: %08x\n", hres);
1952 ok(!strcmp_wa(str, "normal"), "get_fontStyle returned %s\n", wine_dbgstr_w(str));
1953 SysFreeString(str);
1955 hres = IHTMLCurrentStyle_get_backgroundImage(current_style, &str);
1956 ok(hres == S_OK, "get_backgroundImage failed: %08x\n", hres);
1957 ok(!strcmp_wa(str, "none"), "get_backgroundImage returned %s\n", wine_dbgstr_w(str));
1958 SysFreeString(str);
1960 hres = IHTMLCurrentStyle_get_fontVariant(current_style, &str);
1961 ok(hres == S_OK, "get_fontVariant failed: %08x\n", hres);
1962 ok(!strcmp_wa(str, "normal"), "get_fontVariant returned %s\n", wine_dbgstr_w(str));
1963 SysFreeString(str);
1965 hres = IHTMLCurrentStyle_get_borderTopStyle(current_style, &str);
1966 ok(hres == S_OK, "get_borderTopStyle failed: %08x\n", hres);
1967 ok(!strcmp_wa(str, "none"), "get_borderTopStyle returned %s\n", wine_dbgstr_w(str));
1968 SysFreeString(str);
1970 hres = IHTMLCurrentStyle_get_borderRightStyle(current_style, &str);
1971 ok(hres == S_OK, "get_borderRightStyle failed: %08x\n", hres);
1972 ok(!strcmp_wa(str, "none"), "get_borderRightStyle returned %s\n", wine_dbgstr_w(str));
1973 SysFreeString(str);
1975 hres = IHTMLCurrentStyle_get_borderBottomStyle(current_style, &str);
1976 ok(hres == S_OK, "get_borderBottomStyle failed: %08x\n", hres);
1977 ok(!strcmp_wa(str, "none"), "get_borderBottomStyle returned %s\n", wine_dbgstr_w(str));
1978 SysFreeString(str);
1980 hres = IHTMLCurrentStyle_get_borderLeftStyle(current_style, &str);
1981 ok(hres == S_OK, "get_borderLeftStyle failed: %08x\n", hres);
1982 ok(!strcmp_wa(str, "none"), "get_borderLeftStyle returned %s\n", wine_dbgstr_w(str));
1983 SysFreeString(str);
1985 hres = IHTMLCurrentStyle_get_textAlign(current_style, &str);
1986 ok(hres == S_OK, "get_textAlign failed: %08x\n", hres);
1987 ok(!strcmp_wa(str, "center"), "get_textAlign returned %s\n", wine_dbgstr_w(str));
1988 SysFreeString(str);
1990 hres = IHTMLCurrentStyle_get_textDecoration(current_style, &str);
1991 ok(hres == S_OK, "get_textDecoration failed: %08x\n", hres);
1992 ok(!strcmp_wa(str, "none"), "get_textDecoration returned %s\n", wine_dbgstr_w(str));
1993 SysFreeString(str);
1995 hres = IHTMLCurrentStyle_get_cursor(current_style, &str);
1996 ok(hres == S_OK, "get_cursor failed: %08x\n", hres);
1997 ok(!strcmp_wa(str, "default"), "get_cursor returned %s\n", wine_dbgstr_w(str));
1998 SysFreeString(str);
2000 hres = IHTMLCurrentStyle_get_backgroundRepeat(current_style, &str);
2001 ok(hres == S_OK, "get_backgroundRepeat failed: %08x\n", hres);
2002 ok(!strcmp_wa(str, "repeat"), "get_backgroundRepeat returned %s\n", wine_dbgstr_w(str));
2003 SysFreeString(str);
2005 hres = IHTMLCurrentStyle_get_borderColor(current_style, &str);
2006 ok(hres == S_OK, "get_borderColor failed: %08x\n", hres);
2007 SysFreeString(str);
2009 hres = IHTMLCurrentStyle_get_borderStyle(current_style, &str);
2010 ok(hres == S_OK, "get_borderStyle failed: %08x\n", hres);
2011 SysFreeString(str);
2013 hres = IHTMLCurrentStyle_get_visibility(current_style, &str);
2014 ok(hres == S_OK, "get_visibility failed: %08x\n", hres);
2015 SysFreeString(str);
2017 hres = IHTMLCurrentStyle_get_overflow(current_style, &str);
2018 ok(hres == S_OK, "get_overflow failed: %08x\n", hres);
2019 SysFreeString(str);
2021 hres = IHTMLCurrentStyle_get_borderWidth(current_style, &str);
2022 ok(hres == S_OK, "get_borderWidth failed: %08x\n", hres);
2023 SysFreeString(str);
2025 hres = IHTMLCurrentStyle_get_margin(current_style, &str);
2026 ok(hres == S_OK, "get_margin failed: %08x\n", hres);
2027 SysFreeString(str);
2029 hres = IHTMLCurrentStyle_get_padding(current_style, &str);
2030 ok(hres == S_OK, "get_padding failed: %08x\n", hres);
2031 SysFreeString(str);
2033 hres = IHTMLCurrentStyle_get_fontWeight(current_style, &v);
2034 ok(hres == S_OK, "get_fontWeight failed: %08x\n", hres);
2035 ok(V_VT(&v) == VT_I4, "V_VT(v) = %d\n", V_VT(&v));
2036 ok( V_I4(&v) == 400, "expect 400 got (%d)\n", V_I4(&v));
2037 VariantClear(&v);
2039 hres = IHTMLCurrentStyle_get_fontSize(current_style, &v);
2040 ok(hres == S_OK, "get_fontSize failed: %08x\n", hres);
2041 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2042 VariantClear(&v);
2044 hres = IHTMLCurrentStyle_get_left(current_style, &v);
2045 ok(hres == S_OK, "get_left failed: %08x\n", hres);
2046 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2047 VariantClear(&v);
2049 hres = IHTMLCurrentStyle_get_top(current_style, &v);
2050 ok(hres == S_OK, "get_top failed: %08x\n", hres);
2051 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2052 VariantClear(&v);
2054 hres = IHTMLCurrentStyle_get_width(current_style, &v);
2055 ok(hres == S_OK, "get_width failed: %08x\n", hres);
2056 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2057 VariantClear(&v);
2059 hres = IHTMLCurrentStyle_get_height(current_style, &v);
2060 ok(hres == S_OK, "get_height failed: %08x\n", hres);
2061 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2062 VariantClear(&v);
2064 hres = IHTMLCurrentStyle_get_paddingLeft(current_style, &v);
2065 ok(hres == S_OK, "get_paddingLeft failed: %08x\n", hres);
2066 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2067 VariantClear(&v);
2069 hres = IHTMLCurrentStyle_get_zIndex(current_style, &v);
2070 ok(hres == S_OK, "get_zIndex failed: %08x\n", hres);
2071 ok(V_VT(&v) == VT_I4, "V_VT(v) = %d\n", V_VT(&v));
2072 ok( V_I4(&v) == 1, "expect 1 got (%d)\n", V_I4(&v));
2073 VariantClear(&v);
2075 hres = IHTMLCurrentStyle_get_verticalAlign(current_style, &v);
2076 ok(hres == S_OK, "get_verticalAlign failed: %08x\n", hres);
2077 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2078 ok(!strcmp_wa(V_BSTR(&v), "middle"), "get_verticalAlign returned %s\n", wine_dbgstr_w(V_BSTR(&v)));
2079 VariantClear(&v);
2081 hres = IHTMLCurrentStyle_get_marginRight(current_style, &v);
2082 ok(hres == S_OK, "get_marginRight failed: %08x\n", hres);
2083 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2084 VariantClear(&v);
2086 hres = IHTMLCurrentStyle_get_marginLeft(current_style, &v);
2087 ok(hres == S_OK, "get_marginLeft failed: %08x\n", hres);
2088 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2089 VariantClear(&v);
2091 hres = IHTMLCurrentStyle_get_borderLeftWidth(current_style, &v);
2092 ok(hres == S_OK, "get_borderLeftWidth failed: %08x\n", hres);
2093 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2094 VariantClear(&v);
2096 V_BSTR(&v) = NULL;
2097 hres = IHTMLCurrentStyle_get_borderRightWidth(current_style, &v);
2098 ok(hres == S_OK, "get_borderRightWidth failed: %08x\n", hres);
2099 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2100 VariantClear(&v);
2102 hres = IHTMLCurrentStyle_get_borderBottomWidth(current_style, &v);
2103 ok(hres == S_OK, "get_borderBottomWidth failed: %08x\n", hres);
2104 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2105 VariantClear(&v);
2107 hres = IHTMLCurrentStyle_get_borderTopWidth(current_style, &v);
2108 ok(hres == S_OK, "get_borderTopWidth failed: %08x\n", hres);
2109 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2110 VariantClear(&v);
2112 hres = IHTMLCurrentStyle_get_color(current_style, &v);
2113 ok(hres == S_OK, "get_color failed: %08x\n", hres);
2114 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2115 VariantClear(&v);
2117 hres = IHTMLCurrentStyle_get_backgroundColor(current_style, &v);
2118 ok(hres == S_OK, "get_backgroundColor failed: %08x\n", hres);
2119 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2120 VariantClear(&v);
2122 hres = IHTMLCurrentStyle_get_borderLeftColor(current_style, &v);
2123 ok(hres == S_OK, "get_borderLeftColor failed: %08x\n", hres);
2124 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2125 VariantClear(&v);
2127 hres = IHTMLCurrentStyle_get_borderTopColor(current_style, &v);
2128 ok(hres == S_OK, "get_borderTopColor failed: %08x\n", hres);
2129 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2130 VariantClear(&v);
2132 hres = IHTMLCurrentStyle_get_borderRightColor(current_style, &v);
2133 ok(hres == S_OK, "get_borderRightColor failed: %08x\n", hres);
2134 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2135 VariantClear(&v);
2137 hres = IHTMLCurrentStyle_get_borderBottomColor(current_style, &v);
2138 ok(hres == S_OK, "get_borderBottomColor failed: %08x\n", hres);
2139 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2140 VariantClear(&v);
2142 hres = IHTMLCurrentStyle_get_paddingTop(current_style, &v);
2143 ok(hres == S_OK, "get_paddingTop failed: %08x\n", hres);
2144 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2145 VariantClear(&v);
2147 hres = IHTMLCurrentStyle_get_paddingRight(current_style, &v);
2148 ok(hres == S_OK, "get_paddingRight failed: %08x\n", hres);
2149 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2150 VariantClear(&v);
2152 hres = IHTMLCurrentStyle_get_paddingBottom(current_style, &v);
2153 ok(hres == S_OK, "get_paddingRight failed: %08x\n", hres);
2154 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2155 VariantClear(&v);
2157 hres = IHTMLCurrentStyle_get_letterSpacing(current_style, &v);
2158 ok(hres == S_OK, "get_letterSpacing failed: %08x\n", hres);
2159 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2160 VariantClear(&v);
2162 hres = IHTMLCurrentStyle_get_marginTop(current_style, &v);
2163 ok(hres == S_OK, "get_marginTop failed: %08x\n", hres);
2164 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2165 VariantClear(&v);
2167 hres = IHTMLCurrentStyle_get_marginBottom(current_style, &v);
2168 ok(hres == S_OK, "get_marginBottom failed: %08x\n", hres);
2169 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2170 VariantClear(&v);
2172 hres = IHTMLCurrentStyle_get_right(current_style, &v);
2173 ok(hres == S_OK, "get_Right failed: %08x\n", hres);
2174 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2175 VariantClear(&v);
2177 hres = IHTMLCurrentStyle_get_bottom(current_style, &v);
2178 ok(hres == S_OK, "get_bottom failed: %08x\n", hres);
2179 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2180 VariantClear(&v);
2182 hres = IHTMLCurrentStyle_get_lineHeight(current_style, &v);
2183 ok(hres == S_OK, "get_lineHeight failed: %08x\n", hres);
2184 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2185 VariantClear(&v);
2187 hres = IHTMLCurrentStyle_get_textIndent(current_style, &v);
2188 ok(hres == S_OK, "get_textIndent failed: %08x\n", hres);
2189 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2190 VariantClear(&v);
2193 static const char basic_test_str[] = "<html><body><div id=\"divid\"></div/</body></html>";
2195 static void basic_style_test(IHTMLDocument2 *doc)
2197 IHTMLCurrentStyle *cstyle;
2198 IHTMLElement *elem;
2199 IHTMLStyle *style;
2200 HRESULT hres;
2202 hres = IHTMLDocument2_get_body(doc, &elem);
2203 ok(hres == S_OK, "get_body failed: %08x\n", hres);
2205 hres = IHTMLElement_get_style(elem, &style);
2206 ok(hres == S_OK, "get_style failed: %08x\n", hres);
2208 test_body_style(style);
2210 cstyle = get_current_style(elem);
2211 test_current_style(cstyle);
2212 IHTMLCurrentStyle_Release(cstyle);
2213 IHTMLElement_Release(elem);
2215 elem = get_element_by_id(doc, "divid");
2216 test_style_filters(elem);
2218 test_set_csstext(style);
2219 IHTMLStyle_Release(style);
2220 IHTMLElement_Release(elem);
2223 static IHTMLDocument2 *notif_doc;
2224 static BOOL doc_complete;
2226 static IHTMLDocument2 *create_document(void)
2228 IHTMLDocument2 *doc;
2229 IHTMLDocument5 *doc5;
2230 HRESULT hres;
2232 hres = CoCreateInstance(&CLSID_HTMLDocument, NULL, CLSCTX_INPROC_SERVER|CLSCTX_INPROC_HANDLER,
2233 &IID_IHTMLDocument2, (void**)&doc);
2234 ok(hres == S_OK, "CoCreateInstance failed: %08x\n", hres);
2235 if(FAILED(hres))
2236 return NULL;
2238 hres = IHTMLDocument2_QueryInterface(doc, &IID_IHTMLDocument5, (void**)&doc5);
2239 if(FAILED(hres)) {
2240 win_skip("Could not get IHTMLDocument5, probably too old IE\n");
2241 IHTMLDocument2_Release(doc);
2242 return NULL;
2245 IHTMLDocument5_Release(doc5);
2246 return doc;
2249 static HRESULT WINAPI PropertyNotifySink_QueryInterface(IPropertyNotifySink *iface,
2250 REFIID riid, void**ppv)
2252 if(IsEqualGUID(&IID_IPropertyNotifySink, riid)) {
2253 *ppv = iface;
2254 return S_OK;
2257 ok(0, "unexpected call\n");
2258 return E_NOINTERFACE;
2261 static ULONG WINAPI PropertyNotifySink_AddRef(IPropertyNotifySink *iface)
2263 return 2;
2266 static ULONG WINAPI PropertyNotifySink_Release(IPropertyNotifySink *iface)
2268 return 1;
2271 static HRESULT WINAPI PropertyNotifySink_OnChanged(IPropertyNotifySink *iface, DISPID dispID)
2273 if(dispID == DISPID_READYSTATE){
2274 BSTR state;
2275 HRESULT hres;
2277 hres = IHTMLDocument2_get_readyState(notif_doc, &state);
2278 ok(hres == S_OK, "get_readyState failed: %08x\n", hres);
2280 if(!strcmp_wa(state, "complete"))
2281 doc_complete = TRUE;
2283 SysFreeString(state);
2286 return S_OK;
2289 static HRESULT WINAPI PropertyNotifySink_OnRequestEdit(IPropertyNotifySink *iface, DISPID dispID)
2291 ok(0, "unexpected call\n");
2292 return E_NOTIMPL;
2295 static IPropertyNotifySinkVtbl PropertyNotifySinkVtbl = {
2296 PropertyNotifySink_QueryInterface,
2297 PropertyNotifySink_AddRef,
2298 PropertyNotifySink_Release,
2299 PropertyNotifySink_OnChanged,
2300 PropertyNotifySink_OnRequestEdit
2303 static IPropertyNotifySink PropertyNotifySink = { &PropertyNotifySinkVtbl };
2305 static IHTMLDocument2 *create_doc_with_string(const char *str)
2307 IPersistStreamInit *init;
2308 IStream *stream;
2309 IHTMLDocument2 *doc;
2310 HGLOBAL mem;
2311 SIZE_T len;
2313 notif_doc = doc = create_document();
2314 if(!doc)
2315 return NULL;
2317 doc_complete = FALSE;
2318 len = strlen(str);
2319 mem = GlobalAlloc(0, len);
2320 memcpy(mem, str, len);
2321 CreateStreamOnHGlobal(mem, TRUE, &stream);
2323 IHTMLDocument2_QueryInterface(doc, &IID_IPersistStreamInit, (void**)&init);
2325 IPersistStreamInit_Load(init, stream);
2326 IPersistStreamInit_Release(init);
2327 IStream_Release(stream);
2329 return doc;
2332 static void do_advise(IUnknown *unk, REFIID riid, IUnknown *unk_advise)
2334 IConnectionPointContainer *container;
2335 IConnectionPoint *cp;
2336 DWORD cookie;
2337 HRESULT hres;
2339 hres = IUnknown_QueryInterface(unk, &IID_IConnectionPointContainer, (void**)&container);
2340 ok(hres == S_OK, "QueryInterface(IID_IConnectionPointContainer) failed: %08x\n", hres);
2342 hres = IConnectionPointContainer_FindConnectionPoint(container, riid, &cp);
2343 IConnectionPointContainer_Release(container);
2344 ok(hres == S_OK, "FindConnectionPoint failed: %08x\n", hres);
2346 hres = IConnectionPoint_Advise(cp, unk_advise, &cookie);
2347 IConnectionPoint_Release(cp);
2348 ok(hres == S_OK, "Advise failed: %08x\n", hres);
2351 typedef void (*style_test_t)(IHTMLDocument2*);
2353 static void run_test(const char *str, style_test_t test)
2355 IHTMLDocument2 *doc;
2356 ULONG ref;
2357 MSG msg;
2359 doc = create_doc_with_string(str);
2360 if(!doc)
2361 return;
2363 do_advise((IUnknown*)doc, &IID_IPropertyNotifySink, (IUnknown*)&PropertyNotifySink);
2365 while(!doc_complete && GetMessage(&msg, NULL, 0, 0)) {
2366 TranslateMessage(&msg);
2367 DispatchMessage(&msg);
2370 test(doc);
2372 ref = IHTMLDocument2_Release(doc);
2373 ok(!ref || broken(ref == 1), /* Vista */
2374 "ref = %d\n", ref);
2378 START_TEST(style)
2380 CoInitialize(NULL);
2382 run_test(basic_test_str, basic_style_test);
2384 CoUninitialize();