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
22 #include <wine/test.h>
33 static int strcmp_wa(LPCWSTR strw, const char *stra)
36 WideCharToMultiByte(CP_ACP, 0, strw, -1, buf, sizeof(buf), NULL, NULL);
37 return lstrcmpA(stra, buf);
40 static BSTR a2bstr(const char *str)
48 len = MultiByteToWideChar(CP_ACP, 0, str, -1, NULL, 0);
49 ret = SysAllocStringLen(NULL, len);
50 MultiByteToWideChar(CP_ACP, 0, str, -1, ret, len);
55 #define get_elem2_iface(u) _get_elem2_iface(__LINE__,u)
56 static IHTMLElement2 *_get_elem2_iface(unsigned line, IUnknown *unk)
61 hres = IUnknown_QueryInterface(unk, &IID_IHTMLElement2, (void**)&elem);
62 ok_(__FILE__,line) (hres == S_OK, "Could not get IHTMLElement2: %08x\n", hres);
66 static IHTMLElement *get_element_by_id(IHTMLDocument2 *doc, const char *id)
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");
81 IHTMLDocument3_Release(doc3);
85 #define get_current_style(e) _get_current_style(__LINE__,e)
86 static IHTMLCurrentStyle *_get_current_style(unsigned line, IHTMLElement *elem)
88 IHTMLCurrentStyle *cstyle;
92 hres = IHTMLElement_QueryInterface(elem, &IID_IHTMLElement2, (void**)&elem2);
93 ok(hres == S_OK, "Could not get IHTMLElement2 iface: %08x\n", hres);
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);
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)
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);
115 DISPPARAMS params = {NULL,NULL,0,0};
116 DISPID dispidNamed = DISPID_PROPERTYPUT;
121 hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
122 DISPATCH_PROPERTYGET, ¶ms, &vDefault, NULL, NULL);
123 ok_(__FILE__,line) (hres == S_OK, "get_default. ret: %08x\n", hres);
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, ¶ms, &ret, NULL, NULL);
133 ok_(__FILE__,line) (hres == S_OK, "none. ret: %08x\n", hres);
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, ¶ms, &ret, NULL, NULL);
140 ok_(__FILE__,line) (hres == S_OK, "dotted. ret: %08x\n", hres);
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, ¶ms, &ret, NULL, NULL);
147 ok_(__FILE__,line) (hres == S_OK, "dashed. ret: %08x\n", hres);
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, ¶ms, &ret, NULL, NULL);
154 ok_(__FILE__,line) (hres == S_OK, "solid. ret: %08x\n", hres);
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, ¶ms, &ret, NULL, NULL);
161 ok_(__FILE__,line) (hres == S_OK, "double. ret: %08x\n", hres);
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, ¶ms, &ret, NULL, NULL);
168 ok_(__FILE__,line) (hres == S_OK, "groove. ret: %08x\n", hres);
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, ¶ms, &ret, NULL, NULL);
175 ok_(__FILE__,line) (hres == S_OK, "ridge. ret: %08x\n", hres);
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, ¶ms, &ret, NULL, NULL);
182 ok_(__FILE__,line) (hres == S_OK, "inset. ret: %08x\n", hres);
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, ¶ms, &ret, NULL, NULL);
189 ok_(__FILE__,line) (hres == S_OK, "outset. ret: %08x\n", hres);
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, ¶ms, &ret, NULL, NULL);
196 ok_(__FILE__,line) (FAILED(hres), "invalid value passed.\n");
199 params.rgvarg = &vDefault;
200 hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
201 DISPATCH_PROPERTYPUT, ¶ms, &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;
213 hres = IHTMLStyle_get_cssText(style, &text);
214 ok_(__FILE__,line)(hres == S_OK, "get_cssText failed: %08x\n", hres);
216 ok_(__FILE__,line)(!strcmp_wa(text, extext), "cssText = %s\n", wine_dbgstr_w(text));
218 ok_(__FILE__,line)(!text, "cssText = %s\n", wine_dbgstr_w(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)
230 hres = IHTMLStyle_put_cssText(style, tmp);
231 ok_(__FILE__,line)(hres == S_OK, "put_cssText failed: %08x\n", hres);
235 static void test_set_csstext(IHTMLStyle *style)
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)));
249 static void test_style2(IHTMLStyle2 *style2)
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);
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));
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");
280 V_BSTR(&v) = a2bstr("3px");
281 hres = IHTMLStyle2_put_right(style2, v);
282 ok(hres == S_OK, "put_right failed: %08x\n", hres);
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)));
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));
299 hres = IHTMLStyle2_put_direction(style2, str);
300 ok(hres == S_OK, "put_direction failed: %08x\n", hres);
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));
310 static void test_style3(IHTMLStyle3 *style3)
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);
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));
332 static void test_style4(IHTMLStyle4 *style4)
338 hres = IHTMLStyle4_get_minHeight(style4, &vdefault);
339 ok(hres == S_OK, "get_minHeight failed: %08x\n", hres);
342 V_BSTR(&v) = a2bstr("10px");
343 hres = IHTMLStyle4_put_minHeight(style4, v);
344 ok(hres == S_OK, "put_minHeight failed: %08x\n", hres);
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)));
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)
368 BSTR sOverflowDefault;
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));
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)));
386 hres = IHTMLStyle_put_marginRight(style, v);
387 ok(hres == S_OK, "put_marginRight failed: %08x\n", hres);
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)));
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)));
403 hres = IHTMLStyle_put_marginBottom(style, v);
404 ok(hres == S_OK, "put_marginBottom failed: %08x\n", hres);
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)));
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)));
420 hres = IHTMLStyle_put_marginLeft(style, v);
421 ok(hres == S_OK, "put_marginLeft failed: %08x\n", hres);
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);
447 str = a2bstr("bold");
448 hres = IHTMLStyle_put_fontWeight(style, str);
449 ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
452 str = a2bstr("bolder");
453 hres = IHTMLStyle_put_fontWeight(style, str);
454 ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
457 str = a2bstr("lighter");
458 hres = IHTMLStyle_put_fontWeight(style, str);
459 ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
463 hres = IHTMLStyle_put_fontWeight(style, str);
464 ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
468 hres = IHTMLStyle_put_fontWeight(style, str);
469 ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
473 hres = IHTMLStyle_put_fontWeight(style, str);
474 ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
478 hres = IHTMLStyle_put_fontWeight(style, str);
479 ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
483 hres = IHTMLStyle_put_fontWeight(style, str);
484 ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
488 hres = IHTMLStyle_put_fontWeight(style, str);
489 ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
493 hres = IHTMLStyle_put_fontWeight(style, str);
494 ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
498 hres = IHTMLStyle_put_fontWeight(style, str);
499 ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
503 hres = IHTMLStyle_put_fontWeight(style, str);
504 ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
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");
512 hres = IHTMLStyle_put_fontWeight(style, sDefault);
513 ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
514 SysFreeString(sDefault);
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);
528 str = a2bstr("small-caps");
529 hres = IHTMLStyle_put_fontVariant(style, str);
530 ok(hres == S_OK, "fontVariant failed: %08x\n", hres);
533 str = a2bstr("normal");
534 hres = IHTMLStyle_put_fontVariant(style, str);
535 ok(hres == S_OK, "fontVariant failed: %08x\n", hres);
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));
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)));
560 hres = IHTMLStyle_put_fontSize(style, v);
561 ok(hres == S_OK, "put_fontSize failed: %08x\n", hres);
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)));
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)));
577 hres = IHTMLStyle_put_color(style, v);
578 ok(hres == S_OK, "put_color failed: %08x\n", hres);
581 hres = IHTMLStyle_get_color(style, &v);
582 ok(hres == S_OK, "get_color failed: %08x\n", hres);
583 ok(V_VT(&v) == VT_BSTR, "V_VT(color) = %d\n", V_VT(&v));
585 ok(!strcmp_wa(V_BSTR(&v), "#00fdfd"), "V_BSTR(color) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
588 hres = IHTMLStyle_get_textDecorationUnderline(style, &b);
589 ok(hres == S_OK, "get_textDecorationUnderline failed: %08x\n", hres);
590 ok(b == VARIANT_FALSE, "textDecorationUnderline = %x\n", b);
592 hres = IHTMLStyle_put_textDecorationUnderline(style, VARIANT_TRUE);
593 ok(hres == S_OK, "put_textDecorationUnderline failed: %08x\n", hres);
594 ok(b == VARIANT_FALSE, "textDecorationUnderline = %x\n", b);
596 hres = IHTMLStyle_get_textDecorationUnderline(style, &b);
597 ok(hres == S_OK, "get_textDecorationUnderline failed: %08x\n", hres);
598 ok(b == VARIANT_TRUE, "textDecorationUnderline = %x\n", b);
600 hres = IHTMLStyle_put_textDecorationUnderline(style, VARIANT_FALSE);
601 ok(hres == S_OK, "put_textDecorationUnderline failed: %08x\n", hres);
604 hres = IHTMLStyle_get_textDecorationLineThrough(style, &b);
605 ok(hres == S_OK, "get_textDecorationLineThrough failed: %08x\n", hres);
606 ok(b == VARIANT_FALSE, "textDecorationLineThrough = %x\n", b);
608 hres = IHTMLStyle_put_textDecorationLineThrough(style, VARIANT_TRUE);
609 ok(hres == S_OK, "put_textDecorationLineThrough failed: %08x\n", hres);
610 ok(b == VARIANT_FALSE, "textDecorationLineThrough = %x\n", b);
612 hres = IHTMLStyle_get_textDecorationLineThrough(style, &b);
613 ok(hres == S_OK, "get_textDecorationLineThrough failed: %08x\n", hres);
614 ok(b == VARIANT_TRUE, "textDecorationLineThrough = %x\n", b);
616 hres = IHTMLStyle_put_textDecorationLineThrough(style, VARIANT_FALSE);
617 ok(hres == S_OK, "put_textDecorationLineThrough failed: %08x\n", hres);
620 hres = IHTMLStyle_get_textDecorationNone(style, &b);
621 ok(hres == S_OK, "get_textDecorationNone failed: %08x\n", hres);
622 ok(b == VARIANT_FALSE, "textDecorationNone = %x\n", b);
624 hres = IHTMLStyle_put_textDecorationNone(style, VARIANT_TRUE);
625 ok(hres == S_OK, "put_textDecorationNone failed: %08x\n", hres);
626 ok(b == VARIANT_FALSE, "textDecorationNone = %x\n", b);
628 hres = IHTMLStyle_get_textDecorationNone(style, &b);
629 ok(hres == S_OK, "get_textDecorationNone failed: %08x\n", hres);
630 ok(b == VARIANT_TRUE, "textDecorationNone = %x\n", b);
632 hres = IHTMLStyle_put_textDecorationNone(style, VARIANT_FALSE);
633 ok(hres == S_OK, "put_textDecorationNone failed: %08x\n", hres);
636 hres = IHTMLStyle_get_textDecorationOverline(style, &b);
637 ok(hres == S_OK, "get_textDecorationOverline failed: %08x\n", hres);
638 ok(b == VARIANT_FALSE, "textDecorationOverline = %x\n", b);
640 hres = IHTMLStyle_put_textDecorationOverline(style, VARIANT_TRUE);
641 ok(hres == S_OK, "put_textDecorationOverline failed: %08x\n", hres);
642 ok(b == VARIANT_FALSE, "textDecorationOverline = %x\n", b);
644 hres = IHTMLStyle_get_textDecorationOverline(style, &b);
645 ok(hres == S_OK, "get_textDecorationOverline failed: %08x\n", hres);
646 ok(b == VARIANT_TRUE, "textDecorationOverline = %x\n", b);
648 hres = IHTMLStyle_put_textDecorationOverline(style, VARIANT_FALSE);
649 ok(hres == S_OK, "put_textDecorationOverline failed: %08x\n", hres);
652 hres = IHTMLStyle_get_textDecorationBlink(style, &b);
653 ok(hres == S_OK, "get_textDecorationBlink failed: %08x\n", hres);
654 ok(b == VARIANT_FALSE, "textDecorationBlink = %x\n", b);
656 hres = IHTMLStyle_put_textDecorationBlink(style, VARIANT_TRUE);
657 ok(hres == S_OK, "put_textDecorationBlink failed: %08x\n", hres);
658 ok(b == VARIANT_FALSE, "textDecorationBlink = %x\n", b);
660 hres = IHTMLStyle_get_textDecorationBlink(style, &b);
661 ok(hres == S_OK, "get_textDecorationBlink failed: %08x\n", hres);
662 ok(b == VARIANT_TRUE, "textDecorationBlink = %x\n", b);
664 hres = IHTMLStyle_put_textDecorationBlink(style, VARIANT_FALSE);
665 ok(hres == S_OK, "textDecorationBlink failed: %08x\n", hres);
667 hres = IHTMLStyle_get_textDecoration(style, &sDefault);
668 ok(hres == S_OK, "get_textDecoration failed: %08x\n", hres);
670 str = a2bstr("invalid");
671 hres = IHTMLStyle_put_textDecoration(style, str);
672 ok(hres == E_INVALIDARG, "put_textDecoration failed: %08x\n", hres);
675 str = a2bstr("none");
676 hres = IHTMLStyle_put_textDecoration(style, str);
677 ok(hres == S_OK, "put_textDecoration failed: %08x\n", hres);
680 str = a2bstr("underline");
681 hres = IHTMLStyle_put_textDecoration(style, str);
682 ok(hres == S_OK, "put_textDecoration failed: %08x\n", hres);
685 str = a2bstr("overline");
686 hres = IHTMLStyle_put_textDecoration(style, str);
687 ok(hres == S_OK, "put_textDecoration failed: %08x\n", hres);
690 str = a2bstr("line-through");
691 hres = IHTMLStyle_put_textDecoration(style, str);
692 ok(hres == S_OK, "put_textDecoration failed: %08x\n", hres);
695 str = a2bstr("blink");
696 hres = IHTMLStyle_put_textDecoration(style, str);
697 ok(hres == S_OK, "put_textDecoration failed: %08x\n", hres);
700 hres = IHTMLStyle_get_textDecoration(style, &str);
701 ok(hres == S_OK, "get_textDecoration failed: %08x\n", hres);
702 ok(!strcmp_wa(str, "blink"), "str != blink\n");
705 hres = IHTMLStyle_put_textDecoration(style, sDefault);
706 ok(hres == S_OK, "put_textDecoration failed: %08x\n", hres);
707 SysFreeString(sDefault);
709 hres = IHTMLStyle_get_posWidth(style, NULL);
710 ok(hres == E_POINTER, "get_posWidth failed: %08x\n", hres);
712 hres = IHTMLStyle_get_posWidth(style, &f);
713 ok(hres == S_OK, "get_posWidth failed: %08x\n", hres);
714 ok(f == 0.0f, "f = %f\n", f);
717 hres = IHTMLStyle_get_width(style, &v);
718 ok(hres == S_OK, "get_width failed: %08x\n", hres);
719 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
720 ok(!V_BSTR(&v), "V_BSTR(v)=%p\n", V_BSTR(&v));
722 hres = IHTMLStyle_put_posWidth(style, 2.2);
723 ok(hres == S_OK, "put_posWidth failed: %08x\n", hres);
725 hres = IHTMLStyle_get_posWidth(style, &f);
726 ok(hres == S_OK, "get_posWidth failed: %08x\n", hres);
732 V_BSTR(&v) = a2bstr("auto");
733 hres = IHTMLStyle_put_width(style, v);
734 ok(hres == S_OK, "put_width failed: %08x\n", hres);
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), "auto"), "V_BSTR(v)=%s\n", wine_dbgstr_w(V_BSTR(&v)));
746 hres = IHTMLStyle_put_width(style, v);
747 ok(hres == S_OK, "put_width failed: %08x\n", hres);
750 hres = IHTMLStyle_get_width(style, &v);
751 ok(hres == S_OK, "get_width failed: %08x\n", hres);
752 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
753 ok(!strcmp_wa(V_BSTR(&v), "100px"), "V_BSTR(v)=%s\n", wine_dbgstr_w(V_BSTR(&v)));
757 str = (void*)0xdeadbeef;
758 hres = IHTMLStyle_get_margin(style, &str);
759 ok(hres == S_OK, "get_margin failed: %08x\n", hres);
760 ok(!str, "margin = %s\n", wine_dbgstr_w(str));
763 hres = IHTMLStyle_put_margin(style, str);
764 ok(hres == S_OK, "put_margin failed: %08x\n", hres);
767 hres = IHTMLStyle_get_margin(style, &str);
768 ok(hres == S_OK, "get_margin failed: %08x\n", hres);
769 ok(!strcmp_wa(str, "1px"), "margin = %s\n", wine_dbgstr_w(str));
772 hres = IHTMLStyle_put_margin(style, NULL);
773 ok(hres == S_OK, "put_margin 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(!V_BSTR(&v), "V_BSTR(marginTop) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
782 V_BSTR(&v) = a2bstr("6px");
783 hres = IHTMLStyle_put_marginTop(style, v);
784 SysFreeString(V_BSTR(&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), "6px"), "V_BSTR(marginTop) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
796 hres = IHTMLStyle_put_marginTop(style, v);
797 ok(hres == S_OK, "put_marginTop failed: %08x\n", hres);
799 str = (void*)0xdeadbeef;
800 hres = IHTMLStyle_get_marginTop(style, &v);
801 ok(hres == S_OK, "get_marginTop failed: %08x\n", hres);
802 ok(V_VT(&v) == VT_BSTR, "V_VT(marginTop) = %d\n", V_VT(&v));
803 ok(!strcmp_wa(V_BSTR(&v), "5px"), "V_BSTR(marginTop) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
807 hres = IHTMLStyle_get_border(style, &str);
808 ok(hres == S_OK, "get_border failed: %08x\n", hres);
809 ok(!str || !*str, "str is not empty\n");
813 hres = IHTMLStyle_put_border(style, str);
814 ok(hres == S_OK, "put_border failed: %08x\n", hres);
818 hres = IHTMLStyle_get_left(style, &v);
819 ok(hres == S_OK, "get_left failed: %08x\n", hres);
820 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
821 ok(!V_BSTR(&v), "V_BSTR(v) != NULL\n");
825 hres = IHTMLStyle_get_posLeft(style, NULL);
826 ok(hres == E_POINTER, "get_posLeft failed: %08x\n", hres);
829 hres = IHTMLStyle_get_posLeft(style, &f);
830 ok(hres == S_OK, "get_posLeft failed: %08x\n", hres);
831 ok(f == 0.0, "expected 0.0 got %f\n", f);
833 hres = IHTMLStyle_put_posLeft(style, 4.9f);
834 ok(hres == S_OK, "put_posLeft failed: %08x\n", hres);
836 hres = IHTMLStyle_get_posLeft(style, &f);
837 ok(hres == S_OK, "get_posLeft failed: %08x\n", hres);
840 "expected 4.0 or 4.9 (IE8) got %f\n", f);
842 /* Ensure left is updated correctly. */
844 hres = IHTMLStyle_get_left(style, &v);
845 ok(hres == S_OK, "get_left failed: %08x\n", hres);
846 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
847 ok(!strcmp_wa(V_BSTR(&v), "4px") ||
848 !strcmp_wa(V_BSTR(&v), "4.9px"), /* IE8 */
849 "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
854 V_BSTR(&v) = a2bstr("3px");
855 hres = IHTMLStyle_put_left(style, v);
856 ok(hres == S_OK, "put_left failed: %08x\n", hres);
859 hres = IHTMLStyle_get_posLeft(style, &f);
860 ok(hres == S_OK, "get_posLeft failed: %08x\n", hres);
861 ok(f == 3.0, "expected 3.0 got %f\n", f);
864 hres = IHTMLStyle_get_left(style, &v);
865 ok(hres == S_OK, "get_left failed: %08x\n", hres);
866 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
867 ok(!strcmp_wa(V_BSTR(&v), "3px"), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
871 hres = IHTMLStyle_put_left(style, v);
872 ok(hres == S_OK, "put_left failed: %08x\n", hres);
875 hres = IHTMLStyle_get_left(style, &v);
876 ok(hres == S_OK, "get_left failed: %08x\n", hres);
877 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
878 ok(!V_BSTR(&v), "V_BSTR(v) != NULL\n");
882 hres = IHTMLStyle_get_top(style, &v);
883 ok(hres == S_OK, "get_top failed: %08x\n", hres);
884 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
885 ok(!V_BSTR(&v), "V_BSTR(v) != NULL\n");
889 hres = IHTMLStyle_get_posTop(style, NULL);
890 ok(hres == E_POINTER, "get_posTop failed: %08x\n", hres);
893 hres = IHTMLStyle_get_posTop(style, &f);
894 ok(hres == S_OK, "get_posTop failed: %08x\n", hres);
895 ok(f == 0.0, "expected 0.0 got %f\n", f);
897 hres = IHTMLStyle_put_posTop(style, 4.9f);
898 ok(hres == S_OK, "put_posTop failed: %08x\n", hres);
900 hres = IHTMLStyle_get_posTop(style, &f);
901 ok(hres == S_OK, "get_posTop failed: %08x\n", hres);
904 "expected 4.0 or 4.9 (IE8) got %f\n", f);
907 V_BSTR(&v) = a2bstr("3px");
908 hres = IHTMLStyle_put_top(style, v);
909 ok(hres == S_OK, "put_top failed: %08x\n", hres);
913 hres = IHTMLStyle_get_top(style, &v);
914 ok(hres == S_OK, "get_top failed: %08x\n", hres);
915 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
916 ok(!strcmp_wa(V_BSTR(&v), "3px"), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
919 hres = IHTMLStyle_get_posTop(style, &f);
920 ok(hres == S_OK, "get_posTop failed: %08x\n", hres);
921 ok(f == 3.0, "expected 3.0 got %f\n", f);
924 hres = IHTMLStyle_put_top(style, v);
925 ok(hres == S_OK, "put_top failed: %08x\n", hres);
928 hres = IHTMLStyle_get_top(style, &v);
929 ok(hres == S_OK, "get_top failed: %08x\n", hres);
930 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
931 ok(!V_BSTR(&v), "V_BSTR(v) != NULL\n");
935 hres = IHTMLStyle_get_posHeight(style, NULL);
936 ok(hres == E_POINTER, "get_posHeight failed: %08x\n", hres);
939 hres = IHTMLStyle_get_height(style, &v);
940 ok(hres == S_OK, "get_height failed: %08x\n", hres);
941 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
942 ok(!V_BSTR(&v), "V_BSTR(v) != NULL\n");
946 hres = IHTMLStyle_get_posHeight(style, &f);
947 ok(hres == S_OK, "get_posHeight failed: %08x\n", hres);
948 ok(f == 0.0, "expected 0.0 got %f\n", f);
950 hres = IHTMLStyle_put_posHeight(style, 4.9f);
951 ok(hres == S_OK, "put_posHeight failed: %08x\n", hres);
953 hres = IHTMLStyle_get_posHeight(style, &f);
954 ok(hres == S_OK, "get_posHeight failed: %08x\n", hres);
957 "expected 4.0 or 4.9 (IE8) got %f\n", f);
960 V_BSTR(&v) = a2bstr("70px");
961 hres = IHTMLStyle_put_height(style, v);
962 ok(hres == S_OK, "put_height failed: %08x\n", hres);
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), "70px"), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
974 hres = IHTMLStyle_put_height(style, v);
975 ok(hres == S_OK, "put_height failed: %08x\n", hres);
978 hres = IHTMLStyle_get_height(style, &v);
979 ok(hres == S_OK, "get_height failed: %08x\n", hres);
980 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
981 ok(!strcmp_wa(V_BSTR(&v), "64px"), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
984 hres = IHTMLStyle_get_posHeight(style, &f);
985 ok(hres == S_OK, "get_posHeight failed: %08x\n", hres);
986 ok(f == 64.0, "expected 64.0 got %f\n", f);
988 str = (void*)0xdeadbeef;
989 hres = IHTMLStyle_get_cursor(style, &str);
990 ok(hres == S_OK, "get_cursor failed: %08x\n", hres);
991 ok(!str, "get_cursor != NULL\n");
994 str = a2bstr("default");
995 hres = IHTMLStyle_put_cursor(style, str);
996 ok(hres == S_OK, "put_cursor failed: %08x\n", hres);
1000 hres = IHTMLStyle_get_cursor(style, &str);
1001 ok(hres == S_OK, "get_cursor failed: %08x\n", hres);
1002 ok(!strcmp_wa(str, "default"), "get_cursor returned %s\n", wine_dbgstr_w(str));
1005 V_VT(&v) = VT_EMPTY;
1006 hres = IHTMLStyle_get_verticalAlign(style, &v);
1007 ok(hres == S_OK, "get_vertivalAlign failed: %08x\n", hres);
1008 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
1009 ok(!V_BSTR(&v), "V_BSTR(v) != NULL\n");
1013 V_BSTR(&v) = a2bstr("middle");
1014 hres = IHTMLStyle_put_verticalAlign(style, v);
1015 ok(hres == S_OK, "put_vertivalAlign failed: %08x\n", hres);
1018 V_VT(&v) = VT_EMPTY;
1019 hres = IHTMLStyle_get_verticalAlign(style, &v);
1020 ok(hres == S_OK, "get_verticalAlign failed: %08x\n", hres);
1021 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
1022 ok(!strcmp_wa(V_BSTR(&v), "middle"), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1027 hres = IHTMLStyle_put_verticalAlign(style, v);
1028 ok(hres == S_OK, "put_vertivalAlign failed: %08x\n", hres);
1031 V_VT(&v) = VT_EMPTY;
1032 hres = IHTMLStyle_get_verticalAlign(style, &v);
1033 ok(hres == S_OK, "get_verticalAlign failed: %08x\n", hres);
1034 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
1035 ok(!strcmp_wa(V_BSTR(&v), "100px"), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1038 str = (void*)0xdeadbeef;
1039 hres = IHTMLStyle_get_textAlign(style, &str);
1040 ok(hres == S_OK, "get_textAlign failed: %08x\n", hres);
1041 ok(!str, "textAlign != NULL\n");
1043 str = a2bstr("center");
1044 hres = IHTMLStyle_put_textAlign(style, str);
1045 ok(hres == S_OK, "put_textAlign failed: %08x\n", hres);
1049 hres = IHTMLStyle_get_textAlign(style, &str);
1050 ok(hres == S_OK, "get_textAlign failed: %08x\n", hres);
1051 ok(!strcmp_wa(str, "center"), "textAlign = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1054 str = (void*)0xdeadbeef;
1055 hres = IHTMLStyle_get_filter(style, &str);
1056 ok(hres == S_OK, "get_filter failed: %08x\n", hres);
1057 ok(!str, "filter != NULL\n");
1059 str = a2bstr("alpha(opacity=100)");
1060 hres = IHTMLStyle_put_filter(style, str);
1061 ok(hres == S_OK, "put_filter failed: %08x\n", hres);
1064 V_VT(&v) = VT_EMPTY;
1065 hres = IHTMLStyle_get_zIndex(style, &v);
1066 ok(hres == S_OK, "get_zIndex failed: %08x\n", hres);
1067 ok(V_VT(&v) == VT_I4, "V_VT(v)=%d\n", V_VT(&v));
1068 ok(!V_I4(&v), "V_I4(v) != 0\n");
1072 V_BSTR(&v) = a2bstr("1");
1073 hres = IHTMLStyle_put_zIndex(style, v);
1074 ok(hres == S_OK, "put_zIndex failed: %08x\n", hres);
1077 V_VT(&v) = VT_EMPTY;
1078 hres = IHTMLStyle_get_zIndex(style, &v);
1079 ok(hres == S_OK, "get_zIndex failed: %08x\n", hres);
1080 ok(V_VT(&v) == VT_I4, "V_VT(v)=%d\n", V_VT(&v));
1081 ok(V_I4(&v) == 1, "V_I4(v) = %d\n", V_I4(&v));
1085 hres = IHTMLStyle_get_fontStyle(style, &sDefault);
1086 ok(hres == S_OK, "get_fontStyle failed: %08x\n", hres);
1088 str = a2bstr("test");
1089 hres = IHTMLStyle_put_fontStyle(style, str);
1090 ok(hres == E_INVALIDARG, "put_fontStyle failed: %08x\n", hres);
1093 str = a2bstr("italic");
1094 hres = IHTMLStyle_put_fontStyle(style, str);
1095 ok(hres == S_OK, "put_fontStyle failed: %08x\n", hres);
1098 str = a2bstr("oblique");
1099 hres = IHTMLStyle_put_fontStyle(style, str);
1100 ok(hres == S_OK, "put_fontStyle failed: %08x\n", hres);
1103 str = a2bstr("normal");
1104 hres = IHTMLStyle_put_fontStyle(style, str);
1105 ok(hres == S_OK, "put_fontStyle failed: %08x\n", hres);
1108 hres = IHTMLStyle_put_fontStyle(style, sDefault);
1109 ok(hres == S_OK, "put_fontStyle failed: %08x\n", hres);
1110 SysFreeString(sDefault);
1113 hres = IHTMLStyle_get_overflow(style, NULL);
1114 ok(hres == E_INVALIDARG, "get_overflow failed: %08x\n", hres);
1116 hres = IHTMLStyle_get_overflow(style, &sOverflowDefault);
1117 ok(hres == S_OK, "get_overflow failed: %08x\n", hres);
1119 str = a2bstr("test");
1120 hres = IHTMLStyle_put_overflow(style, str);
1121 ok(hres == E_INVALIDARG, "put_overflow failed: %08x\n", hres);
1124 str = a2bstr("visible");
1125 hres = IHTMLStyle_put_overflow(style, str);
1126 ok(hres == S_OK, "put_overflow failed: %08x\n", hres);
1129 str = a2bstr("scroll");
1130 hres = IHTMLStyle_put_overflow(style, str);
1131 ok(hres == S_OK, "put_overflow failed: %08x\n", hres);
1134 str = a2bstr("hidden");
1135 hres = IHTMLStyle_put_overflow(style, str);
1136 ok(hres == S_OK, "put_overflow failed: %08x\n", hres);
1139 str = a2bstr("auto");
1140 hres = IHTMLStyle_put_overflow(style, str);
1141 ok(hres == S_OK, "put_overflow failed: %08x\n", hres);
1144 hres = IHTMLStyle_get_overflow(style, &str);
1145 ok(hres == S_OK, "get_overflow failed: %08x\n", hres);
1146 ok(!strcmp_wa(str, "auto"), "str=%s\n", wine_dbgstr_w(str));
1150 hres = IHTMLStyle_put_overflow(style, str);
1151 ok(hres == S_OK, "put_overflow failed: %08x\n", hres);
1154 hres = IHTMLStyle_get_overflow(style, &str);
1155 ok(hres == S_OK, "get_overflow failed: %08x\n", hres);
1156 ok(!str, "str=%s\n", wine_dbgstr_w(str));
1159 /* restore overflow default */
1160 hres = IHTMLStyle_put_overflow(style, sOverflowDefault);
1161 ok(hres == S_OK, "put_overflow failed: %08x\n", hres);
1162 SysFreeString(sOverflowDefault);
1164 /* Attribute Tests*/
1165 hres = IHTMLStyle_getAttribute(style, NULL, 1, &v);
1166 ok(hres == E_INVALIDARG, "getAttribute failed: %08x\n", hres);
1168 str = a2bstr("position");
1169 hres = IHTMLStyle_getAttribute(style, str, 1, NULL);
1170 ok(hres == E_INVALIDARG, "getAttribute failed: %08x\n", hres);
1172 hres = IHTMLStyle_getAttribute(style, str, 1, &v);
1173 ok(hres == S_OK, "getAttribute failed: %08x\n", hres);
1174 ok(V_VT(&v) == VT_BSTR, "type failed: %d\n", V_VT(&v));
1177 hres = IHTMLStyle_setAttribute(style, NULL, v, 1);
1178 ok(hres == E_INVALIDARG, "setAttribute failed: %08x\n", hres);
1181 V_BSTR(&v) = a2bstr("absolute");
1182 hres = IHTMLStyle_setAttribute(style, str, v, 1);
1183 ok(hres == S_OK, "setAttribute failed: %08x\n", hres);
1186 hres = IHTMLStyle_getAttribute(style, str, 1, &v);
1187 ok(hres == S_OK, "getAttribute failed: %08x\n", hres);
1188 ok(V_VT(&v) == VT_BSTR, "type failed: %d\n", V_VT(&v));
1189 ok(!strcmp_wa(V_BSTR(&v), "absolute"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
1194 hres = IHTMLStyle_setAttribute(style, str, v, 1);
1195 ok(hres == S_OK, "setAttribute failed: %08x\n", hres);
1200 str = a2bstr("borderLeftStyle");
1201 test_border_styles(style, str);
1204 str = a2bstr("borderbottomstyle");
1205 test_border_styles(style, str);
1208 str = a2bstr("borderrightstyle");
1209 test_border_styles(style, str);
1212 str = a2bstr("bordertopstyle");
1213 test_border_styles(style, str);
1216 hres = IHTMLStyle_get_borderStyle(style, &sDefault);
1217 ok(hres == S_OK, "get_borderStyle failed: %08x\n", hres);
1219 str = a2bstr("none dotted dashed solid");
1220 hres = IHTMLStyle_put_borderStyle(style, str);
1221 ok(hres == S_OK, "put_borderStyle failed: %08x\n", hres);
1224 str = a2bstr("none dotted dashed solid");
1225 hres = IHTMLStyle_get_borderStyle(style, &str);
1226 ok(hres == S_OK, "get_borderStyle failed: %08x\n", hres);
1227 ok(!strcmp_wa(str, "none dotted dashed solid"),
1228 "expected (none dotted dashed solid) = (%s)\n", wine_dbgstr_w(V_BSTR(&v)));
1231 str = a2bstr("double groove ridge inset");
1232 hres = IHTMLStyle_put_borderStyle(style, str);
1233 ok(hres == S_OK, "put_borderStyle failed: %08x\n", hres);
1236 str = a2bstr("window-inset outset ridge inset");
1237 hres = IHTMLStyle_put_borderStyle(style, str);
1238 ok(hres == S_OK, "put_borderStyle failed: %08x\n", hres);
1241 str = a2bstr("window-inset");
1242 hres = IHTMLStyle_put_borderStyle(style, str);
1243 ok(hres == S_OK, "put_borderStyle failed: %08x\n", hres);
1246 str = a2bstr("none none none none none");
1247 hres = IHTMLStyle_put_borderStyle(style, str);
1248 ok(hres == S_OK, "put_borderStyle failed: %08x\n", hres);
1251 str = a2bstr("invalid none none none");
1252 hres = IHTMLStyle_put_borderStyle(style, str);
1253 ok(hres == E_INVALIDARG, "put_borderStyle failed: %08x\n", hres);
1256 str = a2bstr("none invalid none none");
1257 hres = IHTMLStyle_put_borderStyle(style, str);
1258 ok(hres == E_INVALIDARG, "put_borderStyle failed: %08x\n", hres);
1261 hres = IHTMLStyle_put_borderStyle(style, sDefault);
1262 ok(hres == S_OK, "put_borderStyle failed: %08x\n", hres);
1263 SysFreeString(sDefault);
1265 /* backgoundColor */
1266 hres = IHTMLStyle_get_backgroundColor(style, &v);
1267 ok(hres == S_OK, "get_backgroundColor: %08x\n", hres);
1268 ok(V_VT(&v) == VT_BSTR, "type failed: %d\n", V_VT(&v));
1269 ok(!V_BSTR(&v), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
1273 V_BSTR(&v) = a2bstr("red");
1274 hres = IHTMLStyle_put_backgroundColor(style, v);
1275 ok(hres == S_OK, "put_backgroundColor failed: %08x\n", hres);
1278 hres = IHTMLStyle_get_backgroundColor(style, &v);
1279 ok(hres == S_OK, "get_backgroundColor: %08x\n", hres);
1280 ok(V_VT(&v) == VT_BSTR, "type failed: %d\n", V_VT(&v));
1281 ok(!strcmp_wa(V_BSTR(&v), "red"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
1285 hres = IHTMLStyle_get_padding(style, &str);
1286 ok(hres == S_OK, "get_padding failed: %08x\n", hres);
1287 ok(!str, "padding = %s\n", wine_dbgstr_w(str));
1290 hres = IHTMLStyle_get_paddingTop(style, &v);
1291 ok(hres == S_OK, "get_paddingTop: %08x\n", hres);
1292 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
1293 ok(!V_BSTR(&v), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1297 hres = IHTMLStyle_put_paddingTop(style, v);
1298 ok(hres == S_OK, "put_paddingTop failed: %08x\n", hres);
1300 hres = IHTMLStyle_get_paddingTop(style, &v);
1301 ok(hres == S_OK, "get_paddingTop: %08x\n", hres);
1302 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
1303 ok(!strcmp_wa(V_BSTR(&v), "6px"), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1306 hres = IHTMLStyle_get_paddingRight(style, &v);
1307 ok(hres == S_OK, "get_paddingRight: %08x\n", hres);
1308 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
1309 ok(!V_BSTR(&v), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1313 hres = IHTMLStyle_put_paddingRight(style, v);
1314 ok(hres == S_OK, "put_paddingRight failed: %08x\n", hres);
1316 hres = IHTMLStyle_get_paddingRight(style, &v);
1317 ok(hres == S_OK, "get_paddingRight: %08x\n", hres);
1318 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
1319 ok(!strcmp_wa(V_BSTR(&v), "6px"), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1322 hres = IHTMLStyle_get_paddingBottom(style, &v);
1323 ok(hres == S_OK, "get_paddingBottom: %08x\n", hres);
1324 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
1325 ok(!V_BSTR(&v), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1329 hres = IHTMLStyle_put_paddingBottom(style, v);
1330 ok(hres == S_OK, "put_paddingBottom failed: %08x\n", hres);
1332 hres = IHTMLStyle_get_paddingBottom(style, &v);
1333 ok(hres == S_OK, "get_paddingBottom: %08x\n", hres);
1334 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
1335 ok(!strcmp_wa(V_BSTR(&v), "6px"), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1339 hres = IHTMLStyle_put_padding(style, str);
1340 ok(hres == S_OK, "put_padding failed: %08x\n", hres);
1343 hres = IHTMLStyle_get_padding(style, &str);
1344 ok(hres == S_OK, "get_padding failed: %08x\n", hres);
1345 ok(!strcmp_wa(str, "1px"), "padding = %s\n", wine_dbgstr_w(str));
1349 hres = IHTMLStyle_get_paddingLeft(style, &vDefault);
1350 ok(hres == S_OK, "get_paddingLeft: %08x\n", hres);
1351 ok(V_VT(&vDefault) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&vDefault));
1352 ok(!strcmp_wa(V_BSTR(&vDefault), "1px"), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&vDefault)));
1355 V_BSTR(&v) = a2bstr("10");
1356 hres = IHTMLStyle_put_paddingLeft(style, v);
1357 ok(hres == S_OK, "put_paddingLeft: %08x\n", hres);
1360 hres = IHTMLStyle_get_paddingLeft(style, &v);
1361 ok(hres == S_OK, "get_paddingLeft: %08x\n", hres);
1362 ok(!strcmp_wa(V_BSTR(&v), "10px"), "expecte 10 = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1365 hres = IHTMLStyle_put_paddingLeft(style, vDefault);
1366 ok(hres == S_OK, "put_paddingLeft: %08x\n", hres);
1368 /* BackgroundRepeat */
1369 hres = IHTMLStyle_get_backgroundRepeat(style, &sDefault);
1370 ok(hres == S_OK, "get_backgroundRepeat failed: %08x\n", hres);
1372 str = a2bstr("invalid");
1373 hres = IHTMLStyle_put_backgroundRepeat(style, str);
1374 ok(hres == E_INVALIDARG, "put_backgroundRepeat failed: %08x\n", hres);
1377 str = a2bstr("repeat");
1378 hres = IHTMLStyle_put_backgroundRepeat(style, str);
1379 ok(hres == S_OK, "put_backgroundRepeat failed: %08x\n", hres);
1382 str = a2bstr("no-repeat");
1383 hres = IHTMLStyle_put_backgroundRepeat(style, str);
1384 ok(hres == S_OK, "put_backgroundRepeat failed: %08x\n", hres);
1387 str = a2bstr("repeat-x");
1388 hres = IHTMLStyle_put_backgroundRepeat(style, str);
1389 ok(hres == S_OK, "put_backgroundRepeat failed: %08x\n", hres);
1392 str = a2bstr("repeat-y");
1393 hres = IHTMLStyle_put_backgroundRepeat(style, str);
1394 ok(hres == S_OK, "put_backgroundRepeat failed: %08x\n", hres);
1397 hres = IHTMLStyle_get_backgroundRepeat(style, &str);
1398 ok(hres == S_OK, "get_backgroundRepeat failed: %08x\n", hres);
1399 ok(!strcmp_wa(str, "repeat-y"), "str=%s\n", wine_dbgstr_w(str));
1402 hres = IHTMLStyle_put_backgroundRepeat(style, sDefault);
1403 ok(hres == S_OK, "put_backgroundRepeat failed: %08x\n", hres);
1404 SysFreeString(sDefault);
1407 hres = IHTMLStyle_get_borderColor(style, &sDefault);
1408 ok(hres == S_OK, "get_borderColor failed: %08x\n", hres);
1410 str = a2bstr("red green red blue");
1411 hres = IHTMLStyle_put_borderColor(style, str);
1412 ok(hres == S_OK, "put_borderColor failed: %08x\n", hres);
1415 hres = IHTMLStyle_get_borderColor(style, &str);
1416 ok(hres == S_OK, "get_borderColor failed: %08x\n", hres);
1417 ok(!strcmp_wa(str, "red green red blue"), "str=%s\n", wine_dbgstr_w(str));
1420 hres = IHTMLStyle_put_borderColor(style, sDefault);
1421 ok(hres == S_OK, "put_borderColor failed: %08x\n", hres);
1422 SysFreeString(sDefault);
1425 hres = IHTMLStyle_get_borderRight(style, &sDefault);
1426 ok(hres == S_OK, "get_borderRight failed: %08x\n", hres);
1428 str = a2bstr("thick dotted red");
1429 hres = IHTMLStyle_put_borderRight(style, str);
1430 ok(hres == S_OK, "put_borderRight failed: %08x\n", hres);
1433 /* IHTMLStyle_get_borderRight appears to have a bug where
1434 it returns the first letter of the color. So we check
1435 each style individually.
1438 hres = IHTMLStyle_get_borderRightColor(style, &v);
1439 ok(hres == S_OK, "get_borderRightColor failed: %08x\n", hres);
1440 ok(!strcmp_wa(V_BSTR(&v), "red"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
1444 hres = IHTMLStyle_get_borderRightWidth(style, &v);
1445 ok(hres == S_OK, "get_borderRightWidth failed: %08x\n", hres);
1446 ok(!strcmp_wa(V_BSTR(&v), "thick"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
1449 hres = IHTMLStyle_get_borderRightStyle(style, &str);
1450 ok(hres == S_OK, "get_borderRightStyle failed: %08x\n", hres);
1451 ok(!strcmp_wa(str, "dotted"), "str=%s\n", wine_dbgstr_w(str));
1454 hres = IHTMLStyle_put_borderRight(style, sDefault);
1455 ok(hres == S_OK, "put_borderRight failed: %08x\n", hres);
1456 SysFreeString(sDefault);
1459 hres = IHTMLStyle_get_borderTop(style, &sDefault);
1460 ok(hres == S_OK, "get_borderTop failed: %08x\n", hres);
1462 str = a2bstr("thick dotted red");
1463 hres = IHTMLStyle_put_borderTop(style, str);
1464 ok(hres == S_OK, "put_borderTop failed: %08x\n", hres);
1467 /* IHTMLStyle_get_borderTop appears to have a bug where
1468 it returns the first letter of the color. So we check
1469 each style individually.
1472 hres = IHTMLStyle_get_borderTopColor(style, &v);
1473 ok(hres == S_OK, "get_borderTopColor failed: %08x\n", hres);
1474 ok(!strcmp_wa(V_BSTR(&v), "red"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
1478 hres = IHTMLStyle_get_borderTopWidth(style, &v);
1479 ok(hres == S_OK, "get_borderTopWidth failed: %08x\n", hres);
1480 ok(!strcmp_wa(V_BSTR(&v), "thick"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
1483 hres = IHTMLStyle_get_borderTopStyle(style, &str);
1484 ok(hres == S_OK, "get_borderTopStyle failed: %08x\n", hres);
1485 ok(!strcmp_wa(str, "dotted"), "str=%s\n", wine_dbgstr_w(str));
1488 hres = IHTMLStyle_put_borderTop(style, sDefault);
1489 ok(hres == S_OK, "put_borderTop failed: %08x\n", hres);
1490 SysFreeString(sDefault);
1493 hres = IHTMLStyle_get_borderBottom(style, &sDefault);
1494 ok(hres == S_OK, "get_borderBottom failed: %08x\n", hres);
1496 str = a2bstr("thick dotted red");
1497 hres = IHTMLStyle_put_borderBottom(style, str);
1498 ok(hres == S_OK, "put_borderBottom failed: %08x\n", hres);
1501 /* IHTMLStyle_get_borderBottom appears to have a bug where
1502 it returns the first letter of the color. So we check
1503 each style individually.
1506 hres = IHTMLStyle_get_borderBottomColor(style, &v);
1507 ok(hres == S_OK, "get_borderBottomColor failed: %08x\n", hres);
1508 ok(!strcmp_wa(V_BSTR(&v), "red"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
1512 hres = IHTMLStyle_get_borderBottomWidth(style, &v);
1513 ok(hres == S_OK, "get_borderBottomWidth failed: %08x\n", hres);
1514 ok(!strcmp_wa(V_BSTR(&v), "thick"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
1517 hres = IHTMLStyle_get_borderBottomStyle(style, &str);
1518 ok(hres == S_OK, "get_borderBottomStyle failed: %08x\n", hres);
1519 ok(!strcmp_wa(str, "dotted"), "str=%s\n", wine_dbgstr_w(str));
1522 hres = IHTMLStyle_put_borderBottom(style, sDefault);
1523 ok(hres == S_OK, "put_borderBottom failed: %08x\n", hres);
1524 SysFreeString(sDefault);
1527 hres = IHTMLStyle_get_borderLeft(style, &sDefault);
1528 ok(hres == S_OK, "get_borderLeft failed: %08x\n", hres);
1530 str = a2bstr("thick dotted red");
1531 hres = IHTMLStyle_put_borderLeft(style, str);
1532 ok(hres == S_OK, "put_borderLeft failed: %08x\n", hres);
1535 /* IHTMLStyle_get_borderLeft appears to have a bug where
1536 it returns the first letter of the color. So we check
1537 each style individually.
1540 hres = IHTMLStyle_get_borderLeftColor(style, &v);
1541 ok(hres == S_OK, "get_borderLeftColor failed: %08x\n", hres);
1542 ok(!strcmp_wa(V_BSTR(&v), "red"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
1546 hres = IHTMLStyle_get_borderLeftWidth(style, &v);
1547 ok(hres == S_OK, "get_borderLeftWidth failed: %08x\n", hres);
1548 ok(!strcmp_wa(V_BSTR(&v), "thick"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
1551 hres = IHTMLStyle_get_borderLeftStyle(style, &str);
1552 ok(hres == S_OK, "get_borderLeftStyle failed: %08x\n", hres);
1553 ok(!strcmp_wa(str, "dotted"), "str=%s\n", wine_dbgstr_w(str));
1556 hres = IHTMLStyle_put_borderLeft(style, sDefault);
1557 ok(hres == S_OK, "put_borderLeft failed: %08x\n", hres);
1558 SysFreeString(sDefault);
1560 /* backgroundPositionX */
1561 hres = IHTMLStyle_get_backgroundPositionX(style, &v);
1562 ok(hres == S_OK, "get_backgroundPositionX failed: %08x\n", hres);
1563 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
1564 ok(!V_BSTR(&v), "backgroundPositionX = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1568 V_BSTR(&v) = a2bstr("10px");
1569 hres = IHTMLStyle_put_backgroundPositionX(style, v);
1570 ok(hres == S_OK, "put_backgroundPositionX failed: %08x\n", hres);
1573 hres = IHTMLStyle_get_backgroundPositionX(style, &v);
1574 ok(hres == S_OK, "get_backgroundPositionX failed: %08x\n", hres);
1575 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
1576 ok(!strcmp_wa(V_BSTR(&v), "10px"), "backgroundPositionX = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1579 /* backgroundPositionY */
1580 hres = IHTMLStyle_get_backgroundPositionY(style, &v);
1581 ok(hres == S_OK, "get_backgroundPositionY failed: %08x\n", hres);
1582 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
1586 V_BSTR(&v) = a2bstr("15px");
1587 hres = IHTMLStyle_put_backgroundPositionY(style, v);
1588 ok(hres == S_OK, "put_backgroundPositionY failed: %08x\n", hres);
1591 hres = IHTMLStyle_get_backgroundPositionY(style, &v);
1592 ok(hres == S_OK, "get_backgroundPositionY failed: %08x\n", hres);
1593 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
1594 ok(!strcmp_wa(V_BSTR(&v), "15px"), "backgroundPositionY = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1597 /* backgroundPosition */
1599 hres = IHTMLStyle_get_backgroundPosition(style, &str);
1600 ok(hres == S_OK, "get_backgroundPosition failed: %08x\n", hres);
1601 ok(!strcmp_wa(str, "10px 15px"), "backgroundPosition = %s\n", wine_dbgstr_w(str));
1604 str = a2bstr("center 20%");
1605 hres = IHTMLStyle_put_backgroundPosition(style, str);
1606 ok(hres == S_OK, "put_backgroundPosition failed: %08x\n", hres);
1610 hres = IHTMLStyle_get_backgroundPosition(style, &str);
1611 ok(hres == S_OK, "get_backgroundPosition failed: %08x\n", hres);
1612 ok(!strcmp_wa(str, "center 20%"), "backgroundPosition = %s\n", wine_dbgstr_w(str));
1615 hres = IHTMLStyle_get_backgroundPositionX(style, &v);
1616 ok(hres == S_OK, "get_backgroundPositionX failed: %08x\n", hres);
1617 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
1618 ok(!strcmp_wa(V_BSTR(&v), "center"), "backgroundPositionX = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1621 hres = IHTMLStyle_get_backgroundPositionY(style, &v);
1622 ok(hres == S_OK, "get_backgroundPositionY failed: %08x\n", hres);
1623 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
1624 ok(!strcmp_wa(V_BSTR(&v), "20%"), "backgroundPositionY = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1627 /* borderTopWidth */
1628 hres = IHTMLStyle_get_borderTopWidth(style, &vDefault);
1629 ok(hres == S_OK, "get_borderTopWidth: %08x\n", hres);
1632 V_BSTR(&v) = a2bstr("10px");
1633 hres = IHTMLStyle_put_borderTopWidth(style, v);
1634 ok(hres == S_OK, "put_borderTopWidth: %08x\n", hres);
1637 hres = IHTMLStyle_get_borderTopWidth(style, &v);
1638 ok(hres == S_OK, "get_borderTopWidth: %08x\n", hres);
1639 ok(!strcmp_wa(V_BSTR(&v), "10px"), "expected 10px = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1642 hres = IHTMLStyle_put_borderTopWidth(style, vDefault);
1643 ok(hres == S_OK, "put_borderTopWidth: %08x\n", hres);
1644 VariantClear(&vDefault);
1646 /* borderRightWidth */
1647 hres = IHTMLStyle_get_borderRightWidth(style, &vDefault);
1648 ok(hres == S_OK, "get_borderRightWidth: %08x\n", hres);
1651 V_BSTR(&v) = a2bstr("10");
1652 hres = IHTMLStyle_put_borderRightWidth(style, v);
1653 ok(hres == S_OK, "put_borderRightWidth: %08x\n", hres);
1656 hres = IHTMLStyle_get_borderRightWidth(style, &v);
1657 ok(hres == S_OK, "get_borderRightWidth: %08x\n", hres);
1658 ok(!strcmp_wa(V_BSTR(&v), "10px"), "expected 10px = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1661 hres = IHTMLStyle_put_borderRightWidth(style, vDefault);
1662 ok(hres == S_OK, "put_borderRightWidth: %08x\n", hres);
1663 VariantClear(&vDefault);
1665 /* borderBottomWidth */
1666 hres = IHTMLStyle_get_borderBottomWidth(style, &vDefault);
1667 ok(hres == S_OK, "get_borderBottomWidth: %08x\n", hres);
1670 V_BSTR(&v) = a2bstr("10");
1671 hres = IHTMLStyle_put_borderBottomWidth(style, v);
1672 ok(hres == S_OK, "put_borderBottomWidth: %08x\n", hres);
1675 hres = IHTMLStyle_get_borderBottomWidth(style, &v);
1676 ok(hres == S_OK, "get_borderBottomWidth: %08x\n", hres);
1677 ok(!strcmp_wa(V_BSTR(&v), "10px"), "expected 10px = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1680 hres = IHTMLStyle_put_borderBottomWidth(style, vDefault);
1681 ok(hres == S_OK, "put_borderBottomWidth: %08x\n", hres);
1682 VariantClear(&vDefault);
1684 /* borderLeftWidth */
1685 hres = IHTMLStyle_get_borderLeftWidth(style, &vDefault);
1686 ok(hres == S_OK, "get_borderLeftWidth: %08x\n", hres);
1689 V_BSTR(&v) = a2bstr("10");
1690 hres = IHTMLStyle_put_borderLeftWidth(style, v);
1691 ok(hres == S_OK, "put_borderLeftWidth: %08x\n", hres);
1694 hres = IHTMLStyle_get_borderLeftWidth(style, &v);
1695 ok(hres == S_OK, "get_borderLeftWidth: %08x\n", hres);
1696 ok(!strcmp_wa(V_BSTR(&v), "10px"), "expected 10px = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1699 hres = IHTMLStyle_put_borderLeftWidth(style, vDefault);
1700 ok(hres == S_OK, "put_borderLeftWidth: %08x\n", hres);
1701 VariantClear(&vDefault);
1704 hres = IHTMLStyle_get_wordSpacing(style, &vDefault);
1705 ok(hres == S_OK, "get_wordSpacing: %08x\n", hres);
1708 V_BSTR(&v) = a2bstr("10");
1709 hres = IHTMLStyle_put_wordSpacing(style, v);
1710 ok(hres == S_OK, "put_wordSpacing: %08x\n", hres);
1713 hres = IHTMLStyle_get_wordSpacing(style, &v);
1714 ok(hres == S_OK, "get_wordSpacing: %08x\n", hres);
1715 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
1716 ok(!strcmp_wa(V_BSTR(&v), "10px"), "expected 10px = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1719 hres = IHTMLStyle_put_wordSpacing(style, vDefault);
1720 ok(hres == S_OK, "put_wordSpacing: %08x\n", hres);
1721 VariantClear(&vDefault);
1724 hres = IHTMLStyle_get_letterSpacing(style, &vDefault);
1725 ok(hres == S_OK, "get_letterSpacing: %08x\n", hres);
1728 V_BSTR(&v) = a2bstr("11");
1729 hres = IHTMLStyle_put_letterSpacing(style, v);
1730 ok(hres == S_OK, "put_letterSpacing: %08x\n", hres);
1733 hres = IHTMLStyle_get_letterSpacing(style, &v);
1734 ok(hres == S_OK, "get_letterSpacing: %08x\n", hres);
1735 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
1736 ok(!strcmp_wa(V_BSTR(&v), "11px"), "expected 10px = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1739 hres = IHTMLStyle_put_letterSpacing(style, vDefault);
1740 ok(hres == S_OK, "put_letterSpacing: %08x\n", hres);
1741 VariantClear(&vDefault);
1743 /* borderTopColor */
1744 hres = IHTMLStyle_get_borderTopColor(style, &vDefault);
1745 ok(hres == S_OK, "get_borderTopColor: %08x\n", hres);
1748 V_BSTR(&v) = a2bstr("red");
1749 hres = IHTMLStyle_put_borderTopColor(style, v);
1750 ok(hres == S_OK, "put_borderTopColor: %08x\n", hres);
1753 hres = IHTMLStyle_get_borderTopColor(style, &v);
1754 ok(hres == S_OK, "get_borderTopColor: %08x\n", hres);
1755 ok(!strcmp_wa(V_BSTR(&v), "red"), "expecte red = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1758 hres = IHTMLStyle_put_borderTopColor(style, vDefault);
1759 ok(hres == S_OK, "put_borderTopColor: %08x\n", hres);
1761 /* borderRightColor */
1762 hres = IHTMLStyle_get_borderRightColor(style, &vDefault);
1763 ok(hres == S_OK, "get_borderRightColor: %08x\n", hres);
1766 V_BSTR(&v) = a2bstr("blue");
1767 hres = IHTMLStyle_put_borderRightColor(style, v);
1768 ok(hres == S_OK, "put_borderRightColor: %08x\n", hres);
1771 hres = IHTMLStyle_get_borderRightColor(style, &v);
1772 ok(hres == S_OK, "get_borderRightColor: %08x\n", hres);
1773 ok(!strcmp_wa(V_BSTR(&v), "blue"), "expected blue = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1776 hres = IHTMLStyle_put_borderRightColor(style, vDefault);
1777 ok(hres == S_OK, "putborderRightColorr: %08x\n", hres);
1779 /* borderBottomColor */
1780 hres = IHTMLStyle_get_borderBottomColor(style, &vDefault);
1781 ok(hres == S_OK, "get_borderBottomColor: %08x\n", hres);
1784 V_BSTR(&v) = a2bstr("cyan");
1785 hres = IHTMLStyle_put_borderBottomColor(style, v);
1786 ok(hres == S_OK, "put_borderBottomColor: %08x\n", hres);
1789 hres = IHTMLStyle_get_borderBottomColor(style, &v);
1790 ok(hres == S_OK, "get_borderBottomColor: %08x\n", hres);
1791 ok(!strcmp_wa(V_BSTR(&v), "cyan"), "expected cyan = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1794 hres = IHTMLStyle_put_borderBottomColor(style, vDefault);
1795 ok(hres == S_OK, "put_borderBottomColor: %08x\n", hres);
1797 /* borderLeftColor */
1798 hres = IHTMLStyle_get_borderLeftColor(style, &vDefault);
1799 ok(hres == S_OK, "get_borderLeftColor: %08x\n", hres);
1802 V_BSTR(&v) = a2bstr("cyan");
1803 hres = IHTMLStyle_put_borderLeftColor(style, v);
1804 ok(hres == S_OK, "put_borderLeftColor: %08x\n", hres);
1807 hres = IHTMLStyle_get_borderLeftColor(style, &v);
1808 ok(hres == S_OK, "get_borderLeftColor: %08x\n", hres);
1809 ok(!strcmp_wa(V_BSTR(&v), "cyan"), "expected cyan = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1812 hres = IHTMLStyle_put_borderLeftColor(style, vDefault);
1813 ok(hres == S_OK, "put_borderLeftColor: %08x\n", hres);
1816 hres = IHTMLStyle_get_clip(style, &str);
1817 ok(hres == S_OK, "get_clip failed: %08x\n", hres);
1818 ok(!str, "clip = %s\n", wine_dbgstr_w(str));
1820 str = a2bstr("rect(0px 1px 500px 505px)");
1821 hres = IHTMLStyle_put_clip(style, str);
1822 ok(hres == S_OK, "put_clip failed: %08x\n", hres);
1825 hres = IHTMLStyle_get_clip(style, &str);
1826 ok(hres == S_OK, "get_clip failed: %08x\n", hres);
1827 ok(!strcmp_wa(str, "rect(0px 1px 500px 505px)"), "clip = %s\n", wine_dbgstr_w(str));
1830 /* pageBreakAfter */
1831 hres = IHTMLStyle_get_pageBreakAfter(style, &str);
1832 ok(hres == S_OK, "get_pageBreakAfter failed: %08x\n", hres);
1833 ok(!str, "pageBreakAfter = %s\n", wine_dbgstr_w(str));
1835 str = a2bstr("always");
1836 hres = IHTMLStyle_put_pageBreakAfter(style, str);
1837 ok(hres == S_OK, "put_pageBreakAfter failed: %08x\n", hres);
1840 hres = IHTMLStyle_get_pageBreakAfter(style, &str);
1841 ok(hres == S_OK, "get_pageBreakAfter failed: %08x\n", hres);
1842 ok(!strcmp_wa(str, "always"), "pageBreakAfter = %s\n", wine_dbgstr_w(str));
1845 /* pageBreakBefore */
1846 hres = IHTMLStyle_get_pageBreakBefore(style, &str);
1847 ok(hres == S_OK, "get_pageBreakBefore failed: %08x\n", hres);
1848 ok(!str, "pageBreakBefore = %s\n", wine_dbgstr_w(str));
1850 str = a2bstr("always");
1851 hres = IHTMLStyle_put_pageBreakBefore(style, str);
1852 ok(hres == S_OK, "put_pageBreakBefore failed: %08x\n", hres);
1855 hres = IHTMLStyle_get_pageBreakBefore(style, &str);
1856 ok(hres == S_OK, "get_pageBreakBefore failed: %08x\n", hres);
1857 ok(!strcmp_wa(str, "always"), "pageBreakBefore = %s\n", wine_dbgstr_w(str));
1860 hres = IHTMLStyle_QueryInterface(style, &IID_IHTMLStyle2, (void**)&style2);
1861 ok(hres == S_OK, "Could not get IHTMLStyle2 iface: %08x\n", hres);
1862 if(SUCCEEDED(hres)) {
1863 test_style2(style2);
1864 IHTMLStyle2_Release(style2);
1867 hres = IHTMLStyle_QueryInterface(style, &IID_IHTMLStyle3, (void**)&style3);
1868 ok(hres == S_OK, "Could not get IHTMLStyle3 iface: %08x\n", hres);
1869 if(SUCCEEDED(hres)) {
1870 test_style3(style3);
1871 IHTMLStyle3_Release(style3);
1874 hres = IHTMLStyle_QueryInterface(style, &IID_IHTMLStyle4, (void**)&style4);
1875 ok(hres == S_OK, "Could not get IHTMLStyle4 iface: %08x\n", hres);
1876 if(SUCCEEDED(hres)) {
1877 test_style4(style4);
1878 IHTMLStyle4_Release(style4);
1882 #define test_style_filter(a,b) _test_style_filter(__LINE__,a,b)
1883 static void _test_style_filter(unsigned line, IHTMLStyle *style, const char *exval)
1888 str = (void*)0xdeadbeef;
1889 hres = IHTMLStyle_get_filter(style, &str);
1890 ok_(__FILE__,line)(hres == S_OK, "get_filter failed: %08x\n", hres);
1892 ok_(__FILE__,line)(str && !strcmp_wa(str, exval), "filter = %s, expected %s\n", wine_dbgstr_w(str), exval);
1894 ok_(__FILE__,line)(!str, "str = %s, expected NULL\n", wine_dbgstr_w(str));
1899 #define test_current_style_filter(a,b) _test_current_style_filter(__LINE__,a,b)
1900 static void _test_current_style_filter(unsigned line, IHTMLCurrentStyle2 *style, const char *exval)
1905 str = (void*)0xdeadbeef;
1906 hres = IHTMLCurrentStyle2_get_filter(style, &str);
1907 ok_(__FILE__,line)(hres == S_OK, "get_filter failed: %08x\n", hres);
1909 ok_(__FILE__,line)(str && !strcmp_wa(str, exval), "filter = %s, expected %s\n", wine_dbgstr_w(str), exval);
1911 ok_(__FILE__,line)(!str, "str = %s, expected NULL\n", wine_dbgstr_w(str));
1916 #define set_style_filter(a,b) _set_style_filter(__LINE__,a,b)
1917 static void _set_style_filter(unsigned line, IHTMLStyle *style, const char *val)
1919 BSTR str = a2bstr(val);
1922 hres = IHTMLStyle_put_filter(style, str);
1923 ok_(__FILE__,line)(hres == S_OK, "put_filter failed: %08x\n", hres);
1926 _test_style_filter(line, style, val);
1929 static void test_style_filters(IHTMLElement *elem)
1931 IHTMLElement2 *elem2 = get_elem2_iface((IUnknown*)elem);
1932 IHTMLCurrentStyle2 *current_style2;
1933 IHTMLCurrentStyle *current_style;
1937 hres = IHTMLElement_get_style(elem, &style);
1938 ok(hres == S_OK, "get_style failed: %08x\n", hres);
1940 hres = IHTMLElement2_get_currentStyle(elem2, ¤t_style);
1941 ok(hres == S_OK, "get_style failed: %08x\n", hres);
1943 hres = IHTMLCurrentStyle_QueryInterface(current_style, &IID_IHTMLCurrentStyle2, (void**)¤t_style2);
1944 IHTMLCurrentStyle_Release(current_style);
1945 ok(hres == S_OK, "Could not get IHTMLCurrentStyle2 iface: %08x\n", hres);
1947 test_style_filter(style, NULL);
1948 test_current_style_filter(current_style2, NULL);
1949 set_style_filter(style, "alpha(opacity=50.0040)");
1950 test_current_style_filter(current_style2, "alpha(opacity=50.0040)");
1951 set_style_filter(style, "alpha(opacity=100)");
1953 IHTMLStyle_Release(style);
1955 hres = IHTMLElement_get_style(elem, &style);
1956 ok(hres == S_OK, "get_style failed: %08x\n", hres);
1958 test_style_filter(style, "alpha(opacity=100)");
1959 set_style_filter(style, "xxx(a,b,c) alpha(opacity=100)");
1960 set_style_filter(style, NULL);
1962 IHTMLCurrentStyle2_Release(current_style2);
1963 IHTMLStyle_Release(style);
1964 IHTMLElement2_Release(elem2);
1967 static void test_current_style(IHTMLCurrentStyle *current_style)
1973 hres = IHTMLCurrentStyle_get_display(current_style, &str);
1974 ok(hres == S_OK, "get_display failed: %08x\n", hres);
1975 ok(!strcmp_wa(str, "block"), "get_display returned %s\n", wine_dbgstr_w(str));
1978 hres = IHTMLCurrentStyle_get_position(current_style, &str);
1979 ok(hres == S_OK, "get_position failed: %08x\n", hres);
1980 ok(!strcmp_wa(str, "absolute"), "get_position returned %s\n", wine_dbgstr_w(str));
1983 hres = IHTMLCurrentStyle_get_fontFamily(current_style, &str);
1984 ok(hres == S_OK, "get_fontFamily failed: %08x\n", hres);
1987 hres = IHTMLCurrentStyle_get_fontStyle(current_style, &str);
1988 ok(hres == S_OK, "get_fontStyle failed: %08x\n", hres);
1989 ok(!strcmp_wa(str, "normal"), "get_fontStyle returned %s\n", wine_dbgstr_w(str));
1992 hres = IHTMLCurrentStyle_get_backgroundImage(current_style, &str);
1993 ok(hres == S_OK, "get_backgroundImage failed: %08x\n", hres);
1994 ok(!strcmp_wa(str, "none"), "get_backgroundImage returned %s\n", wine_dbgstr_w(str));
1997 hres = IHTMLCurrentStyle_get_fontVariant(current_style, &str);
1998 ok(hres == S_OK, "get_fontVariant failed: %08x\n", hres);
1999 ok(!strcmp_wa(str, "normal"), "get_fontVariant returned %s\n", wine_dbgstr_w(str));
2002 hres = IHTMLCurrentStyle_get_borderTopStyle(current_style, &str);
2003 ok(hres == S_OK, "get_borderTopStyle failed: %08x\n", hres);
2004 ok(!strcmp_wa(str, "none"), "get_borderTopStyle returned %s\n", wine_dbgstr_w(str));
2007 hres = IHTMLCurrentStyle_get_borderRightStyle(current_style, &str);
2008 ok(hres == S_OK, "get_borderRightStyle failed: %08x\n", hres);
2009 ok(!strcmp_wa(str, "none"), "get_borderRightStyle returned %s\n", wine_dbgstr_w(str));
2012 hres = IHTMLCurrentStyle_get_borderBottomStyle(current_style, &str);
2013 ok(hres == S_OK, "get_borderBottomStyle failed: %08x\n", hres);
2014 ok(!strcmp_wa(str, "none"), "get_borderBottomStyle returned %s\n", wine_dbgstr_w(str));
2017 hres = IHTMLCurrentStyle_get_borderLeftStyle(current_style, &str);
2018 ok(hres == S_OK, "get_borderLeftStyle failed: %08x\n", hres);
2019 ok(!strcmp_wa(str, "none"), "get_borderLeftStyle returned %s\n", wine_dbgstr_w(str));
2022 hres = IHTMLCurrentStyle_get_textAlign(current_style, &str);
2023 ok(hres == S_OK, "get_textAlign failed: %08x\n", hres);
2024 ok(!strcmp_wa(str, "center"), "get_textAlign returned %s\n", wine_dbgstr_w(str));
2027 hres = IHTMLCurrentStyle_get_textDecoration(current_style, &str);
2028 ok(hres == S_OK, "get_textDecoration failed: %08x\n", hres);
2029 ok(!strcmp_wa(str, "none"), "get_textDecoration returned %s\n", wine_dbgstr_w(str));
2032 hres = IHTMLCurrentStyle_get_cursor(current_style, &str);
2033 ok(hres == S_OK, "get_cursor failed: %08x\n", hres);
2034 ok(!strcmp_wa(str, "default"), "get_cursor returned %s\n", wine_dbgstr_w(str));
2037 hres = IHTMLCurrentStyle_get_backgroundRepeat(current_style, &str);
2038 ok(hres == S_OK, "get_backgroundRepeat failed: %08x\n", hres);
2039 ok(!strcmp_wa(str, "repeat"), "get_backgroundRepeat returned %s\n", wine_dbgstr_w(str));
2042 hres = IHTMLCurrentStyle_get_borderColor(current_style, &str);
2043 ok(hres == S_OK, "get_borderColor failed: %08x\n", hres);
2046 hres = IHTMLCurrentStyle_get_borderStyle(current_style, &str);
2047 ok(hres == S_OK, "get_borderStyle failed: %08x\n", hres);
2050 hres = IHTMLCurrentStyle_get_visibility(current_style, &str);
2051 ok(hres == S_OK, "get_visibility failed: %08x\n", hres);
2054 hres = IHTMLCurrentStyle_get_overflow(current_style, &str);
2055 ok(hres == S_OK, "get_overflow failed: %08x\n", hres);
2058 hres = IHTMLCurrentStyle_get_borderWidth(current_style, &str);
2059 ok(hres == S_OK, "get_borderWidth failed: %08x\n", hres);
2062 hres = IHTMLCurrentStyle_get_margin(current_style, &str);
2063 ok(hres == S_OK, "get_margin failed: %08x\n", hres);
2066 hres = IHTMLCurrentStyle_get_padding(current_style, &str);
2067 ok(hres == S_OK, "get_padding failed: %08x\n", hres);
2070 hres = IHTMLCurrentStyle_get_fontWeight(current_style, &v);
2071 ok(hres == S_OK, "get_fontWeight failed: %08x\n", hres);
2072 ok(V_VT(&v) == VT_I4, "V_VT(v) = %d\n", V_VT(&v));
2073 ok( V_I4(&v) == 400, "expect 400 got (%d)\n", V_I4(&v));
2076 hres = IHTMLCurrentStyle_get_fontSize(current_style, &v);
2077 ok(hres == S_OK, "get_fontSize failed: %08x\n", hres);
2078 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2081 hres = IHTMLCurrentStyle_get_left(current_style, &v);
2082 ok(hres == S_OK, "get_left failed: %08x\n", hres);
2083 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2086 hres = IHTMLCurrentStyle_get_top(current_style, &v);
2087 ok(hres == S_OK, "get_top failed: %08x\n", hres);
2088 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2091 hres = IHTMLCurrentStyle_get_width(current_style, &v);
2092 ok(hres == S_OK, "get_width failed: %08x\n", hres);
2093 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2096 hres = IHTMLCurrentStyle_get_height(current_style, &v);
2097 ok(hres == S_OK, "get_height failed: %08x\n", hres);
2098 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2101 hres = IHTMLCurrentStyle_get_paddingLeft(current_style, &v);
2102 ok(hres == S_OK, "get_paddingLeft failed: %08x\n", hres);
2103 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2106 hres = IHTMLCurrentStyle_get_zIndex(current_style, &v);
2107 ok(hres == S_OK, "get_zIndex failed: %08x\n", hres);
2108 ok(V_VT(&v) == VT_I4, "V_VT(v) = %d\n", V_VT(&v));
2109 ok( V_I4(&v) == 1, "expect 1 got (%d)\n", V_I4(&v));
2112 hres = IHTMLCurrentStyle_get_verticalAlign(current_style, &v);
2113 ok(hres == S_OK, "get_verticalAlign failed: %08x\n", hres);
2114 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2115 ok(!strcmp_wa(V_BSTR(&v), "100px"), "get_verticalAlign returned %s\n", wine_dbgstr_w(V_BSTR(&v)));
2118 hres = IHTMLCurrentStyle_get_marginRight(current_style, &v);
2119 ok(hres == S_OK, "get_marginRight failed: %08x\n", hres);
2120 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2123 hres = IHTMLCurrentStyle_get_marginLeft(current_style, &v);
2124 ok(hres == S_OK, "get_marginLeft failed: %08x\n", hres);
2125 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2128 hres = IHTMLCurrentStyle_get_borderLeftWidth(current_style, &v);
2129 ok(hres == S_OK, "get_borderLeftWidth failed: %08x\n", hres);
2130 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2134 hres = IHTMLCurrentStyle_get_borderRightWidth(current_style, &v);
2135 ok(hres == S_OK, "get_borderRightWidth failed: %08x\n", hres);
2136 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2139 hres = IHTMLCurrentStyle_get_borderBottomWidth(current_style, &v);
2140 ok(hres == S_OK, "get_borderBottomWidth failed: %08x\n", hres);
2141 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2144 hres = IHTMLCurrentStyle_get_borderTopWidth(current_style, &v);
2145 ok(hres == S_OK, "get_borderTopWidth failed: %08x\n", hres);
2146 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2149 hres = IHTMLCurrentStyle_get_color(current_style, &v);
2150 ok(hres == S_OK, "get_color failed: %08x\n", hres);
2151 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2154 hres = IHTMLCurrentStyle_get_backgroundColor(current_style, &v);
2155 ok(hres == S_OK, "get_backgroundColor failed: %08x\n", hres);
2156 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2159 hres = IHTMLCurrentStyle_get_borderLeftColor(current_style, &v);
2160 ok(hres == S_OK, "get_borderLeftColor failed: %08x\n", hres);
2161 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2164 hres = IHTMLCurrentStyle_get_borderTopColor(current_style, &v);
2165 ok(hres == S_OK, "get_borderTopColor failed: %08x\n", hres);
2166 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2169 hres = IHTMLCurrentStyle_get_borderRightColor(current_style, &v);
2170 ok(hres == S_OK, "get_borderRightColor failed: %08x\n", hres);
2171 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2174 hres = IHTMLCurrentStyle_get_borderBottomColor(current_style, &v);
2175 ok(hres == S_OK, "get_borderBottomColor failed: %08x\n", hres);
2176 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2179 hres = IHTMLCurrentStyle_get_paddingTop(current_style, &v);
2180 ok(hres == S_OK, "get_paddingTop failed: %08x\n", hres);
2181 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2184 hres = IHTMLCurrentStyle_get_paddingRight(current_style, &v);
2185 ok(hres == S_OK, "get_paddingRight failed: %08x\n", hres);
2186 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2189 hres = IHTMLCurrentStyle_get_paddingBottom(current_style, &v);
2190 ok(hres == S_OK, "get_paddingRight failed: %08x\n", hres);
2191 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2194 hres = IHTMLCurrentStyle_get_letterSpacing(current_style, &v);
2195 ok(hres == S_OK, "get_letterSpacing failed: %08x\n", hres);
2196 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2199 hres = IHTMLCurrentStyle_get_marginTop(current_style, &v);
2200 ok(hres == S_OK, "get_marginTop failed: %08x\n", hres);
2201 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2204 hres = IHTMLCurrentStyle_get_marginBottom(current_style, &v);
2205 ok(hres == S_OK, "get_marginBottom failed: %08x\n", hres);
2206 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2209 hres = IHTMLCurrentStyle_get_right(current_style, &v);
2210 ok(hres == S_OK, "get_Right failed: %08x\n", hres);
2211 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2214 hres = IHTMLCurrentStyle_get_bottom(current_style, &v);
2215 ok(hres == S_OK, "get_bottom failed: %08x\n", hres);
2216 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2219 hres = IHTMLCurrentStyle_get_lineHeight(current_style, &v);
2220 ok(hres == S_OK, "get_lineHeight failed: %08x\n", hres);
2221 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2224 hres = IHTMLCurrentStyle_get_textIndent(current_style, &v);
2225 ok(hres == S_OK, "get_textIndent failed: %08x\n", hres);
2226 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2230 static const char basic_test_str[] = "<html><body><div id=\"divid\"></div/</body></html>";
2232 static void basic_style_test(IHTMLDocument2 *doc)
2234 IHTMLCurrentStyle *cstyle;
2239 hres = IHTMLDocument2_get_body(doc, &elem);
2240 ok(hres == S_OK, "get_body failed: %08x\n", hres);
2242 hres = IHTMLElement_get_style(elem, &style);
2243 ok(hres == S_OK, "get_style failed: %08x\n", hres);
2245 test_body_style(style);
2247 cstyle = get_current_style(elem);
2248 test_current_style(cstyle);
2249 IHTMLCurrentStyle_Release(cstyle);
2250 IHTMLElement_Release(elem);
2252 elem = get_element_by_id(doc, "divid");
2253 test_style_filters(elem);
2255 test_set_csstext(style);
2256 IHTMLStyle_Release(style);
2257 IHTMLElement_Release(elem);
2260 static IHTMLDocument2 *notif_doc;
2261 static BOOL doc_complete;
2263 static IHTMLDocument2 *create_document(void)
2265 IHTMLDocument2 *doc;
2266 IHTMLDocument5 *doc5;
2269 hres = CoCreateInstance(&CLSID_HTMLDocument, NULL, CLSCTX_INPROC_SERVER|CLSCTX_INPROC_HANDLER,
2270 &IID_IHTMLDocument2, (void**)&doc);
2271 ok(hres == S_OK, "CoCreateInstance failed: %08x\n", hres);
2275 hres = IHTMLDocument2_QueryInterface(doc, &IID_IHTMLDocument5, (void**)&doc5);
2277 win_skip("Could not get IHTMLDocument5, probably too old IE\n");
2278 IHTMLDocument2_Release(doc);
2282 IHTMLDocument5_Release(doc5);
2286 static HRESULT WINAPI PropertyNotifySink_QueryInterface(IPropertyNotifySink *iface,
2287 REFIID riid, void**ppv)
2289 if(IsEqualGUID(&IID_IPropertyNotifySink, riid)) {
2294 ok(0, "unexpected call\n");
2295 return E_NOINTERFACE;
2298 static ULONG WINAPI PropertyNotifySink_AddRef(IPropertyNotifySink *iface)
2303 static ULONG WINAPI PropertyNotifySink_Release(IPropertyNotifySink *iface)
2308 static HRESULT WINAPI PropertyNotifySink_OnChanged(IPropertyNotifySink *iface, DISPID dispID)
2310 if(dispID == DISPID_READYSTATE){
2314 hres = IHTMLDocument2_get_readyState(notif_doc, &state);
2315 ok(hres == S_OK, "get_readyState failed: %08x\n", hres);
2317 if(!strcmp_wa(state, "complete"))
2318 doc_complete = TRUE;
2320 SysFreeString(state);
2326 static HRESULT WINAPI PropertyNotifySink_OnRequestEdit(IPropertyNotifySink *iface, DISPID dispID)
2328 ok(0, "unexpected call\n");
2332 static IPropertyNotifySinkVtbl PropertyNotifySinkVtbl = {
2333 PropertyNotifySink_QueryInterface,
2334 PropertyNotifySink_AddRef,
2335 PropertyNotifySink_Release,
2336 PropertyNotifySink_OnChanged,
2337 PropertyNotifySink_OnRequestEdit
2340 static IPropertyNotifySink PropertyNotifySink = { &PropertyNotifySinkVtbl };
2342 static IHTMLDocument2 *create_doc_with_string(const char *str)
2344 IPersistStreamInit *init;
2346 IHTMLDocument2 *doc;
2350 notif_doc = doc = create_document();
2354 doc_complete = FALSE;
2356 mem = GlobalAlloc(0, len);
2357 memcpy(mem, str, len);
2358 CreateStreamOnHGlobal(mem, TRUE, &stream);
2360 IHTMLDocument2_QueryInterface(doc, &IID_IPersistStreamInit, (void**)&init);
2362 IPersistStreamInit_Load(init, stream);
2363 IPersistStreamInit_Release(init);
2364 IStream_Release(stream);
2369 static void do_advise(IUnknown *unk, REFIID riid, IUnknown *unk_advise)
2371 IConnectionPointContainer *container;
2372 IConnectionPoint *cp;
2376 hres = IUnknown_QueryInterface(unk, &IID_IConnectionPointContainer, (void**)&container);
2377 ok(hres == S_OK, "QueryInterface(IID_IConnectionPointContainer) failed: %08x\n", hres);
2379 hres = IConnectionPointContainer_FindConnectionPoint(container, riid, &cp);
2380 IConnectionPointContainer_Release(container);
2381 ok(hres == S_OK, "FindConnectionPoint failed: %08x\n", hres);
2383 hres = IConnectionPoint_Advise(cp, unk_advise, &cookie);
2384 IConnectionPoint_Release(cp);
2385 ok(hres == S_OK, "Advise failed: %08x\n", hres);
2388 typedef void (*style_test_t)(IHTMLDocument2*);
2390 static void run_test(const char *str, style_test_t test)
2392 IHTMLDocument2 *doc;
2396 doc = create_doc_with_string(str);
2400 do_advise((IUnknown*)doc, &IID_IPropertyNotifySink, (IUnknown*)&PropertyNotifySink);
2402 while(!doc_complete && GetMessage(&msg, NULL, 0, 0)) {
2403 TranslateMessage(&msg);
2404 DispatchMessage(&msg);
2409 ref = IHTMLDocument2_Release(doc);
2410 ok(!ref || broken(ref == 1), /* Vista */
2419 run_test(basic_test_str, basic_style_test);