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 test_var_bstr(a,b) _test_var_bstr(__LINE__,a,b)
56 static void _test_var_bstr(unsigned line
, const VARIANT
*v
, const char *expect
)
58 ok_(__FILE__
,line
)(V_VT(v
) == VT_BSTR
, "V_VT(v) = %d\n", V_VT(v
));
60 ok_(__FILE__
,line
)(!strcmp_wa(V_BSTR(v
), expect
), "V_BSTR(v) = %s, expected %s\n", wine_dbgstr_w(V_BSTR(v
)), expect
);
62 ok_(__FILE__
,line
)(!V_BSTR(v
), "V_BSTR(v) = %s, expected NULL\n", wine_dbgstr_w(V_BSTR(v
)));
65 #define get_elem2_iface(u) _get_elem2_iface(__LINE__,u)
66 static IHTMLElement2
*_get_elem2_iface(unsigned line
, IUnknown
*unk
)
71 hres
= IUnknown_QueryInterface(unk
, &IID_IHTMLElement2
, (void**)&elem
);
72 ok_(__FILE__
,line
) (hres
== S_OK
, "Could not get IHTMLElement2: %08x\n", hres
);
76 static IHTMLElement
*get_element_by_id(IHTMLDocument2
*doc
, const char *id
)
81 BSTR idW
= a2bstr(id
);
83 hres
= IHTMLDocument2_QueryInterface(doc
, &IID_IHTMLDocument3
, (void**)&doc3
);
84 ok(hres
== S_OK
, "QueryInterface(IID_IHTMLDocument3) failed: %08x\n", hres
);
86 hres
= IHTMLDocument3_getElementById(doc3
, idW
, &result
);
87 ok(hres
== S_OK
, "getElementById failed: %08x\n", hres
);
88 ok(result
!= NULL
, "result == NULL\n");
91 IHTMLDocument3_Release(doc3
);
95 #define get_current_style(e) _get_current_style(__LINE__,e)
96 static IHTMLCurrentStyle
*_get_current_style(unsigned line
, IHTMLElement
*elem
)
98 IHTMLCurrentStyle
*cstyle
;
102 hres
= IHTMLElement_QueryInterface(elem
, &IID_IHTMLElement2
, (void**)&elem2
);
103 ok(hres
== S_OK
, "Could not get IHTMLElement2 iface: %08x\n", hres
);
106 hres
= IHTMLElement2_get_currentStyle(elem2
, &cstyle
);
107 ok(hres
== S_OK
, "get_currentStyle failed: %08x\n", hres
);
108 ok(cstyle
!= NULL
, "cstyle = %p\n", cstyle
);
110 IHTMLElement2_Release(elem2
);
114 #define test_border_styles(p, n) _test_border_styles(__LINE__, p, n)
115 static void _test_border_styles(unsigned line
, IHTMLStyle
*pStyle
, BSTR Name
)
120 hres
= IHTMLStyle_GetIDsOfNames(pStyle
, &IID_NULL
, &Name
, 1,
121 LOCALE_USER_DEFAULT
, &dispid
);
122 ok_(__FILE__
,line
) (hres
== S_OK
, "GetIDsOfNames: %08x\n", hres
);
125 DISPPARAMS params
= {NULL
,NULL
,0,0};
126 DISPID dispidNamed
= DISPID_PROPERTYPUT
;
131 hres
= IHTMLStyle_Invoke(pStyle
, dispid
, &IID_NULL
, LOCALE_SYSTEM_DEFAULT
,
132 DISPATCH_PROPERTYGET
, ¶ms
, &vDefault
, NULL
, NULL
);
133 ok_(__FILE__
,line
) (hres
== S_OK
, "get_default. ret: %08x\n", hres
);
136 params
.cNamedArgs
= 1;
137 params
.rgdispidNamedArgs
= &dispidNamed
;
138 V_VT(&arg
) = VT_BSTR
;
139 V_BSTR(&arg
) = a2bstr("none");
140 params
.rgvarg
= &arg
;
141 hres
= IHTMLStyle_Invoke(pStyle
, dispid
, &IID_NULL
, LOCALE_SYSTEM_DEFAULT
,
142 DISPATCH_PROPERTYPUT
, ¶ms
, &ret
, NULL
, NULL
);
143 ok_(__FILE__
,line
) (hres
== S_OK
, "none. ret: %08x\n", hres
);
146 V_VT(&arg
) = VT_BSTR
;
147 V_BSTR(&arg
) = a2bstr("dotted");
148 hres
= IHTMLStyle_Invoke(pStyle
, dispid
, &IID_NULL
, LOCALE_SYSTEM_DEFAULT
,
149 DISPATCH_PROPERTYPUT
, ¶ms
, &ret
, NULL
, NULL
);
150 ok_(__FILE__
,line
) (hres
== S_OK
, "dotted. ret: %08x\n", hres
);
153 V_VT(&arg
) = VT_BSTR
;
154 V_BSTR(&arg
) = a2bstr("dashed");
155 hres
= IHTMLStyle_Invoke(pStyle
, dispid
, &IID_NULL
, LOCALE_SYSTEM_DEFAULT
,
156 DISPATCH_PROPERTYPUT
, ¶ms
, &ret
, NULL
, NULL
);
157 ok_(__FILE__
,line
) (hres
== S_OK
, "dashed. ret: %08x\n", hres
);
160 V_VT(&arg
) = VT_BSTR
;
161 V_BSTR(&arg
) = a2bstr("solid");
162 hres
= IHTMLStyle_Invoke(pStyle
, dispid
, &IID_NULL
, LOCALE_SYSTEM_DEFAULT
,
163 DISPATCH_PROPERTYPUT
, ¶ms
, &ret
, NULL
, NULL
);
164 ok_(__FILE__
,line
) (hres
== S_OK
, "solid. ret: %08x\n", hres
);
167 V_VT(&arg
) = VT_BSTR
;
168 V_BSTR(&arg
) = a2bstr("double");
169 hres
= IHTMLStyle_Invoke(pStyle
, dispid
, &IID_NULL
, LOCALE_SYSTEM_DEFAULT
,
170 DISPATCH_PROPERTYPUT
, ¶ms
, &ret
, NULL
, NULL
);
171 ok_(__FILE__
,line
) (hres
== S_OK
, "double. ret: %08x\n", hres
);
174 V_VT(&arg
) = VT_BSTR
;
175 V_BSTR(&arg
) = a2bstr("groove");
176 hres
= IHTMLStyle_Invoke(pStyle
, dispid
, &IID_NULL
, LOCALE_SYSTEM_DEFAULT
,
177 DISPATCH_PROPERTYPUT
, ¶ms
, &ret
, NULL
, NULL
);
178 ok_(__FILE__
,line
) (hres
== S_OK
, "groove. ret: %08x\n", hres
);
181 V_VT(&arg
) = VT_BSTR
;
182 V_BSTR(&arg
) = a2bstr("ridge");
183 hres
= IHTMLStyle_Invoke(pStyle
, dispid
, &IID_NULL
, LOCALE_SYSTEM_DEFAULT
,
184 DISPATCH_PROPERTYPUT
, ¶ms
, &ret
, NULL
, NULL
);
185 ok_(__FILE__
,line
) (hres
== S_OK
, "ridge. ret: %08x\n", hres
);
188 V_VT(&arg
) = VT_BSTR
;
189 V_BSTR(&arg
) = a2bstr("inset");
190 hres
= IHTMLStyle_Invoke(pStyle
, dispid
, &IID_NULL
, LOCALE_SYSTEM_DEFAULT
,
191 DISPATCH_PROPERTYPUT
, ¶ms
, &ret
, NULL
, NULL
);
192 ok_(__FILE__
,line
) (hres
== S_OK
, "inset. ret: %08x\n", hres
);
195 V_VT(&arg
) = VT_BSTR
;
196 V_BSTR(&arg
) = a2bstr("outset");
197 hres
= IHTMLStyle_Invoke(pStyle
, dispid
, &IID_NULL
, LOCALE_SYSTEM_DEFAULT
,
198 DISPATCH_PROPERTYPUT
, ¶ms
, &ret
, NULL
, NULL
);
199 ok_(__FILE__
,line
) (hres
== S_OK
, "outset. ret: %08x\n", hres
);
202 V_VT(&arg
) = VT_BSTR
;
203 V_BSTR(&arg
) = a2bstr("invalid");
204 hres
= IHTMLStyle_Invoke(pStyle
, dispid
, &IID_NULL
, LOCALE_SYSTEM_DEFAULT
,
205 DISPATCH_PROPERTYPUT
, ¶ms
, &ret
, NULL
, NULL
);
206 ok_(__FILE__
,line
) (FAILED(hres
), "invalid value passed.\n");
209 params
.rgvarg
= &vDefault
;
210 hres
= IHTMLStyle_Invoke(pStyle
, dispid
, &IID_NULL
, LOCALE_SYSTEM_DEFAULT
,
211 DISPATCH_PROPERTYPUT
, ¶ms
, &ret
, NULL
, NULL
);
212 ok_(__FILE__
,line
) (hres
== S_OK
, "default. ret: %08x\n", hres
);
213 VariantClear(&vDefault
);
217 #define test_style_csstext(s,t) _test_style_csstext(__LINE__,s,t)
218 static void _test_style_csstext(unsigned line
, IHTMLStyle
*style
, const char *extext
)
220 BSTR text
= (void*)0xdeadbeef;
223 hres
= IHTMLStyle_get_cssText(style
, &text
);
224 ok_(__FILE__
,line
)(hres
== S_OK
, "get_cssText failed: %08x\n", hres
);
226 ok_(__FILE__
,line
)(!strcmp_wa(text
, extext
), "cssText = %s\n", wine_dbgstr_w(text
));
228 ok_(__FILE__
,line
)(!text
, "cssText = %s\n", wine_dbgstr_w(text
));
233 #define test_style_set_csstext(s,t) _test_style_set_csstext(__LINE__,s,t)
234 static void _test_style_set_csstext(unsigned line
, IHTMLStyle
*style
, const char *text
)
240 hres
= IHTMLStyle_put_cssText(style
, tmp
);
241 ok_(__FILE__
,line
)(hres
== S_OK
, "put_cssText failed: %08x\n", hres
);
245 #define test_style_remove_attribute(a,b,c) _test_style_remove_attribute(__LINE__,a,b,c)
246 static void _test_style_remove_attribute(unsigned line
, IHTMLStyle
*style
, const char *attr
, VARIANT_BOOL exb
)
248 BSTR str
= a2bstr(attr
);
249 VARIANT_BOOL b
= 100;
252 hres
= IHTMLStyle_removeAttribute(style
, str
, 1, &b
);
254 ok_(__FILE__
,line
)(hres
== S_OK
, "removeAttribute failed: %08x\n", hres
);
255 ok_(__FILE__
,line
)(b
== exb
, "removeAttribute returned %x, expected %x\n", b
, exb
);
258 #define set_text_decoration(a,b) _set_text_decoration(__LINE__,a,b)
259 static void _set_text_decoration(unsigned line
, IHTMLStyle
*style
, const char *v
)
265 hres
= IHTMLStyle_put_textDecoration(style
, str
);
266 ok_(__FILE__
,line
)(hres
== S_OK
, "put_textDecoration failed: %08x\n", hres
);
270 #define test_text_decoration(a,b) _test_text_decoration(__LINE__,a,b)
271 static void _test_text_decoration(unsigned line
, IHTMLStyle
*style
, const char *exdec
)
276 hres
= IHTMLStyle_get_textDecoration(style
, &str
);
277 ok_(__FILE__
,line
)(hres
== S_OK
, "get_textDecoration failed: %08x\n", hres
);
279 ok_(__FILE__
,line
)(!strcmp_wa(str
, exdec
), "textDecoration = %s, expected %s\n", wine_dbgstr_w(str
), exdec
);
281 ok_(__FILE__
,line
)(!str
, "textDecoration = %s, expected NULL\n", wine_dbgstr_w(str
));
285 static void test_set_csstext(IHTMLStyle
*style
)
290 test_style_set_csstext(style
, "background-color: black;");
292 hres
= IHTMLStyle_get_backgroundColor(style
, &v
);
293 ok(hres
== S_OK
, "get_backgroundColor: %08x\n", hres
);
294 ok(V_VT(&v
) == VT_BSTR
, "type failed: %d\n", V_VT(&v
));
295 ok(!strcmp_wa(V_BSTR(&v
), "black"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v
)));
299 static void test_style2(IHTMLStyle2
*style2
)
305 str
= (void*)0xdeadbeef;
306 hres
= IHTMLStyle2_get_position(style2
, &str
);
307 ok(hres
== S_OK
, "get_position failed: %08x\n", hres
);
308 ok(!str
, "str != NULL\n");
310 str
= a2bstr("absolute");
311 hres
= IHTMLStyle2_put_position(style2
, str
);
312 ok(hres
== S_OK
, "put_position failed: %08x\n", hres
);
316 hres
= IHTMLStyle2_get_position(style2
, &str
);
317 ok(hres
== S_OK
, "get_position failed: %08x\n", hres
);
318 ok(!strcmp_wa(str
, "absolute"), "get_position returned %s\n", wine_dbgstr_w(str
));
323 hres
= IHTMLStyle2_get_right(style2
, &v
);
324 ok(hres
== S_OK
, "get_top failed: %08x\n", hres
);
325 ok(V_VT(&v
) == VT_BSTR
, "V_VT(right)=%d\n", V_VT(&v
));
326 ok(!V_BSTR(&v
), "V_BSTR(right) != NULL\n");
330 V_BSTR(&v
) = a2bstr("3px");
331 hres
= IHTMLStyle2_put_right(style2
, v
);
332 ok(hres
== S_OK
, "put_right failed: %08x\n", hres
);
336 hres
= IHTMLStyle2_get_right(style2
, &v
);
337 ok(hres
== S_OK
, "get_right failed: %08x\n", hres
);
338 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v)=%d\n", V_VT(&v
));
339 ok(!strcmp_wa(V_BSTR(&v
), "3px"), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v
)));
343 str
= (void*)0xdeadbeef;
344 hres
= IHTMLStyle2_get_direction(style2
, &str
);
345 ok(hres
== S_OK
, "get_direction failed: %08x\n", hres
);
346 ok(!str
, "str = %s\n", wine_dbgstr_w(str
));
349 hres
= IHTMLStyle2_put_direction(style2
, str
);
350 ok(hres
== S_OK
, "put_direction failed: %08x\n", hres
);
354 hres
= IHTMLStyle2_get_direction(style2
, &str
);
355 ok(hres
== S_OK
, "get_direction failed: %08x\n", hres
);
356 ok(!strcmp_wa(str
, "ltr"), "str = %s\n", wine_dbgstr_w(str
));
361 hres
= IHTMLStyle2_get_bottom(style2
, &v
);
362 ok(hres
== S_OK
, "get_bottom failed: %08x\n", hres
);
363 test_var_bstr(&v
, NULL
);
367 hres
= IHTMLStyle2_put_bottom(style2
, v
);
368 ok(hres
== S_OK
, "put_bottom failed: %08x\n", hres
);
371 hres
= IHTMLStyle2_get_bottom(style2
, &v
);
372 ok(hres
== S_OK
, "get_bottom failed: %08x\n", hres
);
373 test_var_bstr(&v
, "4px");
376 str
= (void*)0xdeadbeef;
377 hres
= IHTMLStyle2_get_overflowX(style2
, &str
);
378 ok(hres
== S_OK
, "get_overflowX failed: %08x\n", hres
);
379 ok(!str
, "overflowX = %s\n", wine_dbgstr_w(str
));
381 str
= a2bstr("hidden");
382 hres
= IHTMLStyle2_put_overflowX(style2
, str
);
383 ok(hres
== S_OK
, "put_overflowX failed: %08x\n", hres
);
387 hres
= IHTMLStyle2_get_overflowX(style2
, &str
);
388 ok(hres
== S_OK
, "get_overflowX failed: %08x\n", hres
);
389 ok(!strcmp_wa(str
, "hidden"), "overflowX = %s\n", wine_dbgstr_w(str
));
392 str
= (void*)0xdeadbeef;
393 hres
= IHTMLStyle2_get_overflowY(style2
, &str
);
394 ok(hres
== S_OK
, "get_overflowY failed: %08x\n", hres
);
395 ok(!str
, "overflowY = %s\n", wine_dbgstr_w(str
));
397 str
= a2bstr("hidden");
398 hres
= IHTMLStyle2_put_overflowY(style2
, str
);
399 ok(hres
== S_OK
, "put_overflowY failed: %08x\n", hres
);
403 hres
= IHTMLStyle2_get_overflowY(style2
, &str
);
404 ok(hres
== S_OK
, "get_overflowY failed: %08x\n", hres
);
405 ok(!strcmp_wa(str
, "hidden"), "overflowX = %s\n", wine_dbgstr_w(str
));
408 static void test_style3(IHTMLStyle3
*style3
)
413 str
= (void*)0xdeadbeef;
414 hres
= IHTMLStyle3_get_wordWrap(style3
, &str
);
415 ok(hres
== S_OK
, "get_wordWrap failed: %08x\n", hres
);
416 ok(!str
, "str != NULL\n");
418 str
= a2bstr("break-word");
419 hres
= IHTMLStyle3_put_wordWrap(style3
, str
);
420 ok(hres
== S_OK
, "put_wordWrap failed: %08x\n", hres
);
424 hres
= IHTMLStyle3_get_wordWrap(style3
, &str
);
425 ok(hres
== S_OK
, "get_wordWrap failed: %08x\n", hres
);
426 ok(!strcmp_wa(str
, "break-word"), "get_wordWrap returned %s\n", wine_dbgstr_w(str
));
430 static void test_style4(IHTMLStyle4
*style4
)
436 hres
= IHTMLStyle4_get_minHeight(style4
, &vdefault
);
437 ok(hres
== S_OK
, "get_minHeight failed: %08x\n", hres
);
440 V_BSTR(&v
) = a2bstr("10px");
441 hres
= IHTMLStyle4_put_minHeight(style4
, v
);
442 ok(hres
== S_OK
, "put_minHeight failed: %08x\n", hres
);
445 hres
= IHTMLStyle4_get_minHeight(style4
, &v
);
446 ok(hres
== S_OK
, "get_minHeight failed: %08x\n", hres
);
447 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v) = %d\n", V_VT(&v
));
448 ok( !strcmp_wa(V_BSTR(&v
), "10px"), "expect 10px got (%s)\n", wine_dbgstr_w(V_BSTR(&v
)));
451 hres
= IHTMLStyle4_put_minHeight(style4
, vdefault
);
452 ok(hres
== S_OK
, "put_minHeight failed: %08x\n", hres
);
453 VariantClear(&vdefault
);
456 static void test_body_style(IHTMLStyle
*style
)
466 BSTR sOverflowDefault
;
471 test_style_csstext(style
, NULL
);
473 hres
= IHTMLStyle_get_position(style
, &str
);
474 ok(hres
== S_OK
, "get_position failed: %08x\n", hres
);
475 ok(!str
, "str=%s\n", wine_dbgstr_w(str
));
478 hres
= IHTMLStyle_get_marginRight(style
, &v
);
479 ok(hres
== S_OK
, "get_marginRight failed: %08x\n", hres
);
480 ok(V_VT(&v
) == VT_BSTR
, "V_VT(marginRight) = %d\n", V_VT(&v
));
481 ok(!V_BSTR(&v
), "V_BSTR(marginRight) = %s\n", wine_dbgstr_w(V_BSTR(&v
)));
485 hres
= IHTMLStyle_put_marginRight(style
, v
);
486 ok(hres
== S_OK
, "put_marginRight failed: %08x\n", hres
);
489 hres
= IHTMLStyle_get_marginRight(style
, &v
);
490 ok(hres
== S_OK
, "get_marginRight failed: %08x\n", hres
);
491 ok(V_VT(&v
) == VT_BSTR
, "V_VT(marginRight) = %d\n", V_VT(&v
));
492 ok(!strcmp_wa(V_BSTR(&v
), "6px"), "V_BSTR(marginRight) = %s\n", wine_dbgstr_w(V_BSTR(&v
)));
495 hres
= IHTMLStyle_get_marginBottom(style
, &v
);
496 ok(hres
== S_OK
, "get_marginBottom failed: %08x\n", hres
);
497 ok(V_VT(&v
) == VT_BSTR
, "V_VT(marginBottom) = %d\n", V_VT(&v
));
498 ok(!V_BSTR(&v
), "V_BSTR(marginBottom) = %s\n", wine_dbgstr_w(V_BSTR(&v
)));
502 hres
= IHTMLStyle_put_marginBottom(style
, v
);
503 ok(hres
== S_OK
, "put_marginBottom failed: %08x\n", hres
);
506 hres
= IHTMLStyle_get_marginBottom(style
, &v
);
507 ok(hres
== S_OK
, "get_marginBottom failed: %08x\n", hres
);
508 ok(V_VT(&v
) == VT_BSTR
, "V_VT(marginBottom) = %d\n", V_VT(&v
));
509 ok(!strcmp_wa(V_BSTR(&v
), "6px"), "V_BSTR(marginBottom) = %s\n", wine_dbgstr_w(V_BSTR(&v
)));
512 hres
= IHTMLStyle_get_marginLeft(style
, &v
);
513 ok(hres
== S_OK
, "get_marginLeft failed: %08x\n", hres
);
514 ok(V_VT(&v
) == VT_BSTR
, "V_VT(marginLeft) = %d\n", V_VT(&v
));
515 ok(!V_BSTR(&v
), "V_BSTR(marginLeft) = %s\n", wine_dbgstr_w(V_BSTR(&v
)));
519 hres
= IHTMLStyle_put_marginLeft(style
, v
);
520 ok(hres
== S_OK
, "put_marginLeft failed: %08x\n", hres
);
523 hres
= IHTMLStyle_get_marginLeft(style
, &v
);
524 ok(hres
== S_OK
, "get_marginLeft failed: %08x\n", hres
);
525 ok(V_VT(&v
) == VT_BSTR
, "V_VT(marginLeft) = %d\n", V_VT(&v
));
526 ok(!strcmp_wa(V_BSTR(&v
), "6px"), "V_BSTR(marginLeft) = %s\n", wine_dbgstr_w(V_BSTR(&v
)));
528 str
= (void*)0xdeadbeef;
529 hres
= IHTMLStyle_get_fontFamily(style
, &str
);
530 ok(hres
== S_OK
, "get_fontFamily failed: %08x\n", hres
);
531 ok(!str
, "fontFamily = %s\n", wine_dbgstr_w(str
));
533 str
= (void*)0xdeadbeef;
534 hres
= IHTMLStyle_get_fontWeight(style
, &str
);
535 ok(hres
== S_OK
, "get_fontWeight failed: %08x\n", hres
);
536 ok(!str
, "fontWeight = %s\n", wine_dbgstr_w(str
));
538 hres
= IHTMLStyle_get_fontWeight(style
, &sDefault
);
539 ok(hres
== S_OK
, "get_fontWeight failed: %08x\n", hres
);
541 str
= a2bstr("test");
542 hres
= IHTMLStyle_put_fontWeight(style
, str
);
543 ok(hres
== E_INVALIDARG
, "put_fontWeight failed: %08x\n", hres
);
546 str
= a2bstr("bold");
547 hres
= IHTMLStyle_put_fontWeight(style
, str
);
548 ok(hres
== S_OK
, "put_fontWeight failed: %08x\n", hres
);
551 str
= a2bstr("bolder");
552 hres
= IHTMLStyle_put_fontWeight(style
, str
);
553 ok(hres
== S_OK
, "put_fontWeight failed: %08x\n", hres
);
556 str
= a2bstr("lighter");
557 hres
= IHTMLStyle_put_fontWeight(style
, str
);
558 ok(hres
== S_OK
, "put_fontWeight failed: %08x\n", hres
);
562 hres
= IHTMLStyle_put_fontWeight(style
, str
);
563 ok(hres
== S_OK
, "put_fontWeight failed: %08x\n", hres
);
567 hres
= IHTMLStyle_put_fontWeight(style
, str
);
568 ok(hres
== S_OK
, "put_fontWeight failed: %08x\n", hres
);
572 hres
= IHTMLStyle_put_fontWeight(style
, str
);
573 ok(hres
== S_OK
, "put_fontWeight failed: %08x\n", hres
);
577 hres
= IHTMLStyle_put_fontWeight(style
, str
);
578 ok(hres
== S_OK
, "put_fontWeight failed: %08x\n", hres
);
582 hres
= IHTMLStyle_put_fontWeight(style
, str
);
583 ok(hres
== S_OK
, "put_fontWeight failed: %08x\n", hres
);
587 hres
= IHTMLStyle_put_fontWeight(style
, str
);
588 ok(hres
== S_OK
, "put_fontWeight failed: %08x\n", hres
);
592 hres
= IHTMLStyle_put_fontWeight(style
, str
);
593 ok(hres
== S_OK
, "put_fontWeight failed: %08x\n", hres
);
597 hres
= IHTMLStyle_put_fontWeight(style
, str
);
598 ok(hres
== S_OK
, "put_fontWeight failed: %08x\n", hres
);
602 hres
= IHTMLStyle_put_fontWeight(style
, str
);
603 ok(hres
== S_OK
, "put_fontWeight failed: %08x\n", hres
);
606 hres
= IHTMLStyle_get_fontWeight(style
, &str
);
607 ok(hres
== S_OK
, "get_fontWeight failed: %08x\n", hres
);
608 ok(!strcmp_wa(str
, "900"), "str != style900\n");
611 hres
= IHTMLStyle_put_fontWeight(style
, sDefault
);
612 ok(hres
== S_OK
, "put_fontWeight failed: %08x\n", hres
);
613 SysFreeString(sDefault
);
616 hres
= IHTMLStyle_get_fontVariant(style
, NULL
);
617 ok(hres
== E_INVALIDARG
, "get_fontVariant failed: %08x\n", hres
);
619 hres
= IHTMLStyle_get_fontVariant(style
, &sDefault
);
620 ok(hres
== S_OK
, "get_fontVariant failed: %08x\n", hres
);
622 str
= a2bstr("test");
623 hres
= IHTMLStyle_put_fontVariant(style
, str
);
624 ok(hres
== E_INVALIDARG
, "fontVariant failed: %08x\n", hres
);
627 str
= a2bstr("small-caps");
628 hres
= IHTMLStyle_put_fontVariant(style
, str
);
629 ok(hres
== S_OK
, "fontVariant failed: %08x\n", hres
);
632 str
= a2bstr("normal");
633 hres
= IHTMLStyle_put_fontVariant(style
, str
);
634 ok(hres
== S_OK
, "fontVariant failed: %08x\n", hres
);
637 hres
= IHTMLStyle_put_fontVariant(style
, sDefault
);
638 ok(hres
== S_OK
, "fontVariant failed: %08x\n", hres
);
639 SysFreeString(sDefault
);
641 str
= (void*)0xdeadbeef;
642 hres
= IHTMLStyle_get_display(style
, &str
);
643 ok(hres
== S_OK
, "get_display failed: %08x\n", hres
);
644 ok(!str
, "display = %s\n", wine_dbgstr_w(str
));
646 str
= (void*)0xdeadbeef;
647 hres
= IHTMLStyle_get_visibility(style
, &str
);
648 ok(hres
== S_OK
, "get_visibility failed: %08x\n", hres
);
649 ok(!str
, "visibility = %s\n", wine_dbgstr_w(str
));
652 hres
= IHTMLStyle_get_fontSize(style
, &v
);
653 ok(hres
== S_OK
, "get_fontSize failed: %08x\n", hres
);
654 ok(V_VT(&v
) == VT_BSTR
, "V_VT(fontSize) = %d\n", V_VT(&v
));
655 ok(!V_BSTR(&v
), "V_BSTR(fontSize) = %s\n", wine_dbgstr_w(V_BSTR(&v
)));
659 hres
= IHTMLStyle_put_fontSize(style
, v
);
660 ok(hres
== S_OK
, "put_fontSize failed: %08x\n", hres
);
663 hres
= IHTMLStyle_get_fontSize(style
, &v
);
664 ok(hres
== S_OK
, "get_fontSize failed: %08x\n", hres
);
665 ok(V_VT(&v
) == VT_BSTR
, "V_VT(fontSize) = %d\n", V_VT(&v
));
666 ok(!strcmp_wa(V_BSTR(&v
), "12px"), "V_BSTR(fontSize) = %s\n", wine_dbgstr_w(V_BSTR(&v
)));
669 hres
= IHTMLStyle_get_color(style
, &v
);
670 ok(hres
== S_OK
, "get_color failed: %08x\n", hres
);
671 ok(V_VT(&v
) == VT_BSTR
, "V_VT(color) = %d\n", V_VT(&v
));
672 ok(!V_BSTR(&v
), "V_BSTR(color) = %s\n", wine_dbgstr_w(V_BSTR(&v
)));
676 hres
= IHTMLStyle_put_color(style
, v
);
677 ok(hres
== S_OK
, "put_color failed: %08x\n", hres
);
680 hres
= IHTMLStyle_get_color(style
, &v
);
681 ok(hres
== S_OK
, "get_color failed: %08x\n", hres
);
682 ok(V_VT(&v
) == VT_BSTR
, "V_VT(color) = %d\n", V_VT(&v
));
684 ok(!strcmp_wa(V_BSTR(&v
), "#00fdfd"), "V_BSTR(color) = %s\n", wine_dbgstr_w(V_BSTR(&v
)));
687 hres
= IHTMLStyle_get_textDecorationUnderline(style
, &b
);
688 ok(hres
== S_OK
, "get_textDecorationUnderline failed: %08x\n", hres
);
689 ok(b
== VARIANT_FALSE
, "textDecorationUnderline = %x\n", b
);
691 hres
= IHTMLStyle_put_textDecorationUnderline(style
, VARIANT_TRUE
);
692 ok(hres
== S_OK
, "put_textDecorationUnderline failed: %08x\n", hres
);
694 hres
= IHTMLStyle_get_textDecorationUnderline(style
, &b
);
695 ok(hres
== S_OK
, "get_textDecorationUnderline failed: %08x\n", hres
);
696 ok(b
== VARIANT_TRUE
, "textDecorationUnderline = %x\n", b
);
698 hres
= IHTMLStyle_put_textDecorationUnderline(style
, VARIANT_FALSE
);
699 ok(hres
== S_OK
, "put_textDecorationUnderline failed: %08x\n", hres
);
702 hres
= IHTMLStyle_get_textDecorationLineThrough(style
, &b
);
703 ok(hres
== S_OK
, "get_textDecorationLineThrough failed: %08x\n", hres
);
704 ok(b
== VARIANT_FALSE
, "textDecorationLineThrough = %x\n", b
);
706 hres
= IHTMLStyle_put_textDecorationLineThrough(style
, VARIANT_TRUE
);
707 ok(hres
== S_OK
, "put_textDecorationLineThrough failed: %08x\n", hres
);
709 hres
= IHTMLStyle_get_textDecorationLineThrough(style
, &b
);
710 ok(hres
== S_OK
, "get_textDecorationLineThrough failed: %08x\n", hres
);
711 ok(b
== VARIANT_TRUE
, "textDecorationLineThrough = %x\n", b
);
713 hres
= IHTMLStyle_put_textDecorationLineThrough(style
, VARIANT_FALSE
);
714 ok(hres
== S_OK
, "put_textDecorationLineThrough failed: %08x\n", hres
);
717 hres
= IHTMLStyle_get_textDecorationNone(style
, &b
);
718 ok(hres
== S_OK
, "get_textDecorationNone failed: %08x\n", hres
);
719 ok(b
== VARIANT_FALSE
, "textDecorationNone = %x\n", b
);
721 hres
= IHTMLStyle_put_textDecorationNone(style
, VARIANT_TRUE
);
722 ok(hres
== S_OK
, "put_textDecorationNone failed: %08x\n", hres
);
724 hres
= IHTMLStyle_get_textDecorationNone(style
, &b
);
725 ok(hres
== S_OK
, "get_textDecorationNone failed: %08x\n", hres
);
726 ok(b
== VARIANT_TRUE
, "textDecorationNone = %x\n", b
);
728 hres
= IHTMLStyle_put_textDecorationNone(style
, VARIANT_FALSE
);
729 ok(hres
== S_OK
, "put_textDecorationNone failed: %08x\n", hres
);
732 hres
= IHTMLStyle_get_textDecorationOverline(style
, &b
);
733 ok(hres
== S_OK
, "get_textDecorationOverline failed: %08x\n", hres
);
734 ok(b
== VARIANT_FALSE
, "textDecorationOverline = %x\n", b
);
736 hres
= IHTMLStyle_put_textDecorationOverline(style
, VARIANT_TRUE
);
737 ok(hres
== S_OK
, "put_textDecorationOverline failed: %08x\n", hres
);
739 hres
= IHTMLStyle_get_textDecorationOverline(style
, &b
);
740 ok(hres
== S_OK
, "get_textDecorationOverline failed: %08x\n", hres
);
741 ok(b
== VARIANT_TRUE
, "textDecorationOverline = %x\n", b
);
743 hres
= IHTMLStyle_put_textDecorationOverline(style
, VARIANT_FALSE
);
744 ok(hres
== S_OK
, "put_textDecorationOverline failed: %08x\n", hres
);
747 hres
= IHTMLStyle_get_textDecorationBlink(style
, &b
);
748 ok(hres
== S_OK
, "get_textDecorationBlink failed: %08x\n", hres
);
749 ok(b
== VARIANT_FALSE
, "textDecorationBlink = %x\n", b
);
751 hres
= IHTMLStyle_put_textDecorationBlink(style
, VARIANT_TRUE
);
752 ok(hres
== S_OK
, "put_textDecorationBlink failed: %08x\n", hres
);
754 hres
= IHTMLStyle_get_textDecorationBlink(style
, &b
);
755 ok(hres
== S_OK
, "get_textDecorationBlink failed: %08x\n", hres
);
756 ok(b
== VARIANT_TRUE
, "textDecorationBlink = %x\n", b
);
758 hres
= IHTMLStyle_put_textDecorationBlink(style
, VARIANT_FALSE
);
759 ok(hres
== S_OK
, "textDecorationBlink failed: %08x\n", hres
);
761 hres
= IHTMLStyle_get_textDecoration(style
, &sDefault
);
762 ok(hres
== S_OK
, "get_textDecoration failed: %08x\n", hres
);
764 str
= a2bstr("invalid");
765 hres
= IHTMLStyle_put_textDecoration(style
, str
);
766 ok(hres
== E_INVALIDARG
, "put_textDecoration failed: %08x\n", hres
);
769 set_text_decoration(style
, "none");
770 test_text_decoration(style
, "none");
771 set_text_decoration(style
, "underline");
772 set_text_decoration(style
, "overline");
773 set_text_decoration(style
, "line-through");
774 set_text_decoration(style
, "blink");
775 set_text_decoration(style
, "overline");
776 set_text_decoration(style
, "blink");
777 test_text_decoration(style
, "blink");
779 hres
= IHTMLStyle_put_textDecoration(style
, sDefault
);
780 ok(hres
== S_OK
, "put_textDecoration failed: %08x\n", hres
);
781 SysFreeString(sDefault
);
783 hres
= IHTMLStyle_get_posWidth(style
, NULL
);
784 ok(hres
== E_POINTER
, "get_posWidth failed: %08x\n", hres
);
786 hres
= IHTMLStyle_get_posWidth(style
, &f
);
787 ok(hres
== S_OK
, "get_posWidth failed: %08x\n", hres
);
788 ok(f
== 0.0f
, "f = %f\n", f
);
791 hres
= IHTMLStyle_get_width(style
, &v
);
792 ok(hres
== S_OK
, "get_width failed: %08x\n", hres
);
793 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v)=%d\n", V_VT(&v
));
794 ok(!V_BSTR(&v
), "V_BSTR(v)=%p\n", V_BSTR(&v
));
796 hres
= IHTMLStyle_put_posWidth(style
, 2.2);
797 ok(hres
== S_OK
, "put_posWidth failed: %08x\n", hres
);
799 hres
= IHTMLStyle_get_posWidth(style
, &f
);
800 ok(hres
== S_OK
, "get_posWidth failed: %08x\n", hres
);
806 V_BSTR(&v
) = a2bstr("auto");
807 hres
= IHTMLStyle_put_width(style
, v
);
808 ok(hres
== S_OK
, "put_width failed: %08x\n", hres
);
812 hres
= IHTMLStyle_get_width(style
, &v
);
813 ok(hres
== S_OK
, "get_width failed: %08x\n", hres
);
814 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v)=%d\n", V_VT(&v
));
815 ok(!strcmp_wa(V_BSTR(&v
), "auto"), "V_BSTR(v)=%s\n", wine_dbgstr_w(V_BSTR(&v
)));
820 hres
= IHTMLStyle_put_width(style
, v
);
821 ok(hres
== S_OK
, "put_width failed: %08x\n", hres
);
824 hres
= IHTMLStyle_get_width(style
, &v
);
825 ok(hres
== S_OK
, "get_width failed: %08x\n", hres
);
826 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v)=%d\n", V_VT(&v
));
827 ok(!strcmp_wa(V_BSTR(&v
), "100px"), "V_BSTR(v)=%s\n", wine_dbgstr_w(V_BSTR(&v
)));
830 hres
= IHTMLStyle_put_pixelWidth(style
, 50);
831 ok(hres
== S_OK
, "put_pixelWidth failed: %08x\n", hres
);
834 hres
= IHTMLStyle_get_width(style
, &v
);
835 ok(hres
== S_OK
, "get_width failed: %08x\n", hres
);
836 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v)=%d\n", V_VT(&v
));
837 ok(!strcmp_wa(V_BSTR(&v
), "50px"), "V_BSTR(v)=%s\n", wine_dbgstr_w(V_BSTR(&v
)));
841 str
= (void*)0xdeadbeef;
842 hres
= IHTMLStyle_get_margin(style
, &str
);
843 ok(hres
== S_OK
, "get_margin failed: %08x\n", hres
);
844 ok(!str
, "margin = %s\n", wine_dbgstr_w(str
));
847 hres
= IHTMLStyle_put_margin(style
, str
);
848 ok(hres
== S_OK
, "put_margin failed: %08x\n", hres
);
851 hres
= IHTMLStyle_get_margin(style
, &str
);
852 ok(hres
== S_OK
, "get_margin failed: %08x\n", hres
);
853 ok(!strcmp_wa(str
, "1px"), "margin = %s\n", wine_dbgstr_w(str
));
856 hres
= IHTMLStyle_put_margin(style
, NULL
);
857 ok(hres
== S_OK
, "put_margin failed: %08x\n", hres
);
859 str
= (void*)0xdeadbeef;
860 hres
= IHTMLStyle_get_marginTop(style
, &v
);
861 ok(hres
== S_OK
, "get_marginTop failed: %08x\n", hres
);
862 ok(V_VT(&v
) == VT_BSTR
, "V_VT(marginTop) = %d\n", V_VT(&v
));
863 ok(!V_BSTR(&v
), "V_BSTR(marginTop) = %s\n", wine_dbgstr_w(V_BSTR(&v
)));
866 V_BSTR(&v
) = a2bstr("6px");
867 hres
= IHTMLStyle_put_marginTop(style
, v
);
868 SysFreeString(V_BSTR(&v
));
869 ok(hres
== S_OK
, "put_marginTop failed: %08x\n", hres
);
871 str
= (void*)0xdeadbeef;
872 hres
= IHTMLStyle_get_marginTop(style
, &v
);
873 ok(hres
== S_OK
, "get_marginTop failed: %08x\n", hres
);
874 ok(V_VT(&v
) == VT_BSTR
, "V_VT(marginTop) = %d\n", V_VT(&v
));
875 ok(!strcmp_wa(V_BSTR(&v
), "6px"), "V_BSTR(marginTop) = %s\n", wine_dbgstr_w(V_BSTR(&v
)));
880 hres
= IHTMLStyle_put_marginTop(style
, v
);
881 ok(hres
== S_OK
, "put_marginTop failed: %08x\n", hres
);
883 str
= (void*)0xdeadbeef;
884 hres
= IHTMLStyle_get_marginTop(style
, &v
);
885 ok(hres
== S_OK
, "get_marginTop failed: %08x\n", hres
);
886 ok(V_VT(&v
) == VT_BSTR
, "V_VT(marginTop) = %d\n", V_VT(&v
));
887 ok(!strcmp_wa(V_BSTR(&v
), "5px"), "V_BSTR(marginTop) = %s\n", wine_dbgstr_w(V_BSTR(&v
)));
891 hres
= IHTMLStyle_get_border(style
, &str
);
892 ok(hres
== S_OK
, "get_border failed: %08x\n", hres
);
893 ok(!str
|| !*str
, "str is not empty\n");
897 hres
= IHTMLStyle_put_border(style
, str
);
898 ok(hres
== S_OK
, "put_border failed: %08x\n", hres
);
902 hres
= IHTMLStyle_get_left(style
, &v
);
903 ok(hres
== S_OK
, "get_left failed: %08x\n", hres
);
904 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v)=%d\n", V_VT(&v
));
905 ok(!V_BSTR(&v
), "V_BSTR(v) != NULL\n");
909 hres
= IHTMLStyle_get_pixelLeft(style
, &l
);
910 ok(hres
== S_OK
, "get_pixelLeft failed: %08x\n", hres
);
911 ok(!l
, "pixelLeft = %d\n", l
);
914 hres
= IHTMLStyle_get_posLeft(style
, NULL
);
915 ok(hres
== E_POINTER
, "get_posLeft failed: %08x\n", hres
);
918 hres
= IHTMLStyle_get_posLeft(style
, &f
);
919 ok(hres
== S_OK
, "get_posLeft failed: %08x\n", hres
);
920 ok(f
== 0.0, "expected 0.0 got %f\n", f
);
922 hres
= IHTMLStyle_put_posLeft(style
, 4.9f
);
923 ok(hres
== S_OK
, "put_posLeft failed: %08x\n", hres
);
925 hres
= IHTMLStyle_get_posLeft(style
, &f
);
926 ok(hres
== S_OK
, "get_posLeft failed: %08x\n", hres
);
929 "expected 4.0 or 4.9 (IE8) got %f\n", f
);
931 /* Ensure left is updated correctly. */
933 hres
= IHTMLStyle_get_left(style
, &v
);
934 ok(hres
== S_OK
, "get_left failed: %08x\n", hres
);
935 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v)=%d\n", V_VT(&v
));
936 ok(!strcmp_wa(V_BSTR(&v
), "4px") ||
937 !strcmp_wa(V_BSTR(&v
), "4.9px"), /* IE8 */
938 "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v
)));
943 V_BSTR(&v
) = a2bstr("3px");
944 hres
= IHTMLStyle_put_left(style
, v
);
945 ok(hres
== S_OK
, "put_left failed: %08x\n", hres
);
948 hres
= IHTMLStyle_get_posLeft(style
, &f
);
949 ok(hres
== S_OK
, "get_posLeft failed: %08x\n", hres
);
950 ok(f
== 3.0, "expected 3.0 got %f\n", f
);
953 hres
= IHTMLStyle_get_pixelLeft(style
, &l
);
954 ok(hres
== S_OK
, "get_pixelLeft failed: %08x\n", hres
);
955 ok(l
== 3, "pixelLeft = %d\n", l
);
958 hres
= IHTMLStyle_get_left(style
, &v
);
959 ok(hres
== S_OK
, "get_left failed: %08x\n", hres
);
960 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v)=%d\n", V_VT(&v
));
961 ok(!strcmp_wa(V_BSTR(&v
), "3px"), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v
)));
965 V_BSTR(&v
) = a2bstr("4.99");
966 hres
= IHTMLStyle_put_left(style
, v
);
967 ok(hres
== S_OK
, "put_left failed: %08x\n", hres
);
971 hres
= IHTMLStyle_get_pixelLeft(style
, &l
);
972 ok(hres
== S_OK
, "get_pixelLeft failed: %08x\n", hres
);
973 ok(l
== 4, "pixelLeft = %d\n", l
);
976 hres
= IHTMLStyle_put_left(style
, v
);
977 ok(hres
== S_OK
, "put_left failed: %08x\n", hres
);
980 hres
= IHTMLStyle_get_left(style
, &v
);
981 ok(hres
== S_OK
, "get_left failed: %08x\n", hres
);
982 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v)=%d\n", V_VT(&v
));
983 ok(!V_BSTR(&v
), "V_BSTR(v) != NULL\n");
987 hres
= IHTMLStyle_get_top(style
, &v
);
988 ok(hres
== S_OK
, "get_top failed: %08x\n", hres
);
989 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v)=%d\n", V_VT(&v
));
990 ok(!V_BSTR(&v
), "V_BSTR(v) != NULL\n");
994 hres
= IHTMLStyle_get_pixelLeft(style
, &l
);
995 ok(hres
== S_OK
, "get_pixelLeft failed: %08x\n", hres
);
996 ok(!l
, "pixelLeft = %d\n", l
);
998 hres
= IHTMLStyle_put_pixelLeft(style
, 6);
999 ok(hres
== S_OK
, "put_pixelLeft failed: %08x\n", hres
);
1002 hres
= IHTMLStyle_get_pixelLeft(style
, &l
);
1003 ok(hres
== S_OK
, "get_pixelLeft failed: %08x\n", hres
);
1004 ok(l
== 6, "pixelLeft = %d\n", l
);
1006 V_VT(&v
) = VT_EMPTY
;
1007 hres
= IHTMLStyle_get_left(style
, &v
);
1008 ok(hres
== S_OK
, "get_left 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
), "6px"), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v
)));
1014 hres
= IHTMLStyle_get_posTop(style
, NULL
);
1015 ok(hres
== E_POINTER
, "get_posTop failed: %08x\n", hres
);
1018 hres
= IHTMLStyle_get_posTop(style
, &f
);
1019 ok(hres
== S_OK
, "get_posTop failed: %08x\n", hres
);
1020 ok(f
== 0.0, "expected 0.0 got %f\n", f
);
1022 hres
= IHTMLStyle_put_posTop(style
, 4.9f
);
1023 ok(hres
== S_OK
, "put_posTop failed: %08x\n", hres
);
1025 hres
= IHTMLStyle_get_posTop(style
, &f
);
1026 ok(hres
== S_OK
, "get_posTop failed: %08x\n", hres
);
1028 f
== 4.9f
, /* IE8 */
1029 "expected 4.0 or 4.9 (IE8) got %f\n", f
);
1032 V_BSTR(&v
) = a2bstr("3px");
1033 hres
= IHTMLStyle_put_top(style
, v
);
1034 ok(hres
== S_OK
, "put_top failed: %08x\n", hres
);
1037 V_VT(&v
) = VT_EMPTY
;
1038 hres
= IHTMLStyle_get_top(style
, &v
);
1039 ok(hres
== S_OK
, "get_top failed: %08x\n", hres
);
1040 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v)=%d\n", V_VT(&v
));
1041 ok(!strcmp_wa(V_BSTR(&v
), "3px"), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v
)));
1044 hres
= IHTMLStyle_get_posTop(style
, &f
);
1045 ok(hres
== S_OK
, "get_posTop failed: %08x\n", hres
);
1046 ok(f
== 3.0, "expected 3.0 got %f\n", f
);
1049 hres
= IHTMLStyle_put_top(style
, v
);
1050 ok(hres
== S_OK
, "put_top failed: %08x\n", hres
);
1052 V_VT(&v
) = VT_EMPTY
;
1053 hres
= IHTMLStyle_get_top(style
, &v
);
1054 ok(hres
== S_OK
, "get_top failed: %08x\n", hres
);
1055 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v)=%d\n", V_VT(&v
));
1056 ok(!V_BSTR(&v
), "V_BSTR(v) != NULL\n");
1059 /* Test posHeight */
1060 hres
= IHTMLStyle_get_posHeight(style
, NULL
);
1061 ok(hres
== E_POINTER
, "get_posHeight failed: %08x\n", hres
);
1063 V_VT(&v
) = VT_EMPTY
;
1064 hres
= IHTMLStyle_get_height(style
, &v
);
1065 ok(hres
== S_OK
, "get_height failed: %08x\n", hres
);
1066 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v)=%d\n", V_VT(&v
));
1067 ok(!V_BSTR(&v
), "V_BSTR(v) != NULL\n");
1071 hres
= IHTMLStyle_get_posHeight(style
, &f
);
1072 ok(hres
== S_OK
, "get_posHeight failed: %08x\n", hres
);
1073 ok(f
== 0.0, "expected 0.0 got %f\n", f
);
1075 hres
= IHTMLStyle_put_posHeight(style
, 4.9f
);
1076 ok(hres
== S_OK
, "put_posHeight failed: %08x\n", hres
);
1078 hres
= IHTMLStyle_get_posHeight(style
, &f
);
1079 ok(hres
== S_OK
, "get_posHeight failed: %08x\n", hres
);
1081 f
== 4.9f
, /* IE8 */
1082 "expected 4.0 or 4.9 (IE8) got %f\n", f
);
1085 V_BSTR(&v
) = a2bstr("70px");
1086 hres
= IHTMLStyle_put_height(style
, v
);
1087 ok(hres
== S_OK
, "put_height failed: %08x\n", hres
);
1090 V_VT(&v
) = VT_EMPTY
;
1091 hres
= IHTMLStyle_get_height(style
, &v
);
1092 ok(hres
== S_OK
, "get_height failed: %08x\n", hres
);
1093 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v)=%d\n", V_VT(&v
));
1094 ok(!strcmp_wa(V_BSTR(&v
), "70px"), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v
)));
1099 hres
= IHTMLStyle_put_height(style
, v
);
1100 ok(hres
== S_OK
, "put_height failed: %08x\n", hres
);
1103 V_VT(&v
) = VT_EMPTY
;
1104 hres
= IHTMLStyle_get_height(style
, &v
);
1105 ok(hres
== S_OK
, "get_height failed: %08x\n", hres
);
1106 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v)=%d\n", V_VT(&v
));
1107 ok(!V_BSTR(&v
), "V_BSTR(v) = %s, expected NULL\n", wine_dbgstr_w(V_BSTR(&v
)));
1112 hres
= IHTMLStyle_put_height(style
, v
);
1113 ok(hres
== S_OK
, "put_height failed: %08x\n", hres
);
1115 V_VT(&v
) = VT_EMPTY
;
1116 hres
= IHTMLStyle_get_height(style
, &v
);
1117 ok(hres
== S_OK
, "get_height failed: %08x\n", hres
);
1118 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v)=%d\n", V_VT(&v
));
1119 ok(!strcmp_wa(V_BSTR(&v
), "64px"), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v
)));
1122 hres
= IHTMLStyle_get_posHeight(style
, &f
);
1123 ok(hres
== S_OK
, "get_posHeight failed: %08x\n", hres
);
1124 ok(f
== 64.0, "expected 64.0 got %f\n", f
);
1126 str
= (void*)0xdeadbeef;
1127 hres
= IHTMLStyle_get_cursor(style
, &str
);
1128 ok(hres
== S_OK
, "get_cursor failed: %08x\n", hres
);
1129 ok(!str
, "get_cursor != NULL\n");
1132 str
= a2bstr("default");
1133 hres
= IHTMLStyle_put_cursor(style
, str
);
1134 ok(hres
== S_OK
, "put_cursor failed: %08x\n", hres
);
1138 hres
= IHTMLStyle_get_cursor(style
, &str
);
1139 ok(hres
== S_OK
, "get_cursor failed: %08x\n", hres
);
1140 ok(!strcmp_wa(str
, "default"), "get_cursor returned %s\n", wine_dbgstr_w(str
));
1143 V_VT(&v
) = VT_EMPTY
;
1144 hres
= IHTMLStyle_get_verticalAlign(style
, &v
);
1145 ok(hres
== S_OK
, "get_vertivalAlign failed: %08x\n", hres
);
1146 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v)=%d\n", V_VT(&v
));
1147 ok(!V_BSTR(&v
), "V_BSTR(v) != NULL\n");
1151 V_BSTR(&v
) = a2bstr("middle");
1152 hres
= IHTMLStyle_put_verticalAlign(style
, v
);
1153 ok(hres
== S_OK
, "put_vertivalAlign failed: %08x\n", hres
);
1156 V_VT(&v
) = VT_EMPTY
;
1157 hres
= IHTMLStyle_get_verticalAlign(style
, &v
);
1158 ok(hres
== S_OK
, "get_verticalAlign failed: %08x\n", hres
);
1159 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v)=%d\n", V_VT(&v
));
1160 ok(!strcmp_wa(V_BSTR(&v
), "middle"), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v
)));
1165 hres
= IHTMLStyle_put_verticalAlign(style
, v
);
1166 ok(hres
== S_OK
, "put_vertivalAlign failed: %08x\n", hres
);
1169 V_VT(&v
) = VT_EMPTY
;
1170 hres
= IHTMLStyle_get_verticalAlign(style
, &v
);
1171 ok(hres
== S_OK
, "get_verticalAlign failed: %08x\n", hres
);
1172 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v)=%d\n", V_VT(&v
));
1173 ok(!strcmp_wa(V_BSTR(&v
), "100px"), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v
)));
1176 str
= (void*)0xdeadbeef;
1177 hres
= IHTMLStyle_get_textAlign(style
, &str
);
1178 ok(hres
== S_OK
, "get_textAlign failed: %08x\n", hres
);
1179 ok(!str
, "textAlign != NULL\n");
1181 str
= a2bstr("center");
1182 hres
= IHTMLStyle_put_textAlign(style
, str
);
1183 ok(hres
== S_OK
, "put_textAlign failed: %08x\n", hres
);
1187 hres
= IHTMLStyle_get_textAlign(style
, &str
);
1188 ok(hres
== S_OK
, "get_textAlign failed: %08x\n", hres
);
1189 ok(!strcmp_wa(str
, "center"), "textAlign = %s\n", wine_dbgstr_w(V_BSTR(&v
)));
1192 str
= (void*)0xdeadbeef;
1193 hres
= IHTMLStyle_get_filter(style
, &str
);
1194 ok(hres
== S_OK
, "get_filter failed: %08x\n", hres
);
1195 ok(!str
, "filter != NULL\n");
1197 str
= a2bstr("alpha(opacity=100)");
1198 hres
= IHTMLStyle_put_filter(style
, str
);
1199 ok(hres
== S_OK
, "put_filter failed: %08x\n", hres
);
1202 V_VT(&v
) = VT_EMPTY
;
1203 hres
= IHTMLStyle_get_zIndex(style
, &v
);
1204 ok(hres
== S_OK
, "get_zIndex failed: %08x\n", hres
);
1205 ok(V_VT(&v
) == VT_I4
, "V_VT(v)=%d\n", V_VT(&v
));
1206 ok(!V_I4(&v
), "V_I4(v) != 0\n");
1210 V_BSTR(&v
) = a2bstr("1");
1211 hres
= IHTMLStyle_put_zIndex(style
, v
);
1212 ok(hres
== S_OK
, "put_zIndex failed: %08x\n", hres
);
1215 V_VT(&v
) = VT_EMPTY
;
1216 hres
= IHTMLStyle_get_zIndex(style
, &v
);
1217 ok(hres
== S_OK
, "get_zIndex failed: %08x\n", hres
);
1218 ok(V_VT(&v
) == VT_I4
, "V_VT(v)=%d\n", V_VT(&v
));
1219 ok(V_I4(&v
) == 1, "V_I4(v) = %d\n", V_I4(&v
));
1223 hres
= IHTMLStyle_get_fontStyle(style
, &sDefault
);
1224 ok(hres
== S_OK
, "get_fontStyle failed: %08x\n", hres
);
1226 str
= a2bstr("test");
1227 hres
= IHTMLStyle_put_fontStyle(style
, str
);
1228 ok(hres
== E_INVALIDARG
, "put_fontStyle failed: %08x\n", hres
);
1231 str
= a2bstr("italic");
1232 hres
= IHTMLStyle_put_fontStyle(style
, str
);
1233 ok(hres
== S_OK
, "put_fontStyle failed: %08x\n", hres
);
1236 str
= a2bstr("oblique");
1237 hres
= IHTMLStyle_put_fontStyle(style
, str
);
1238 ok(hres
== S_OK
, "put_fontStyle failed: %08x\n", hres
);
1241 str
= a2bstr("normal");
1242 hres
= IHTMLStyle_put_fontStyle(style
, str
);
1243 ok(hres
== S_OK
, "put_fontStyle failed: %08x\n", hres
);
1246 hres
= IHTMLStyle_put_fontStyle(style
, sDefault
);
1247 ok(hres
== S_OK
, "put_fontStyle failed: %08x\n", hres
);
1248 SysFreeString(sDefault
);
1251 hres
= IHTMLStyle_get_overflow(style
, NULL
);
1252 ok(hres
== E_INVALIDARG
, "get_overflow failed: %08x\n", hres
);
1254 hres
= IHTMLStyle_get_overflow(style
, &sOverflowDefault
);
1255 ok(hres
== S_OK
, "get_overflow failed: %08x\n", hres
);
1257 str
= a2bstr("test");
1258 hres
= IHTMLStyle_put_overflow(style
, str
);
1259 ok(hres
== E_INVALIDARG
, "put_overflow failed: %08x\n", hres
);
1262 str
= a2bstr("visible");
1263 hres
= IHTMLStyle_put_overflow(style
, str
);
1264 ok(hres
== S_OK
, "put_overflow failed: %08x\n", hres
);
1267 str
= a2bstr("scroll");
1268 hres
= IHTMLStyle_put_overflow(style
, str
);
1269 ok(hres
== S_OK
, "put_overflow failed: %08x\n", hres
);
1272 str
= a2bstr("hidden");
1273 hres
= IHTMLStyle_put_overflow(style
, str
);
1274 ok(hres
== S_OK
, "put_overflow failed: %08x\n", hres
);
1277 str
= a2bstr("auto");
1278 hres
= IHTMLStyle_put_overflow(style
, str
);
1279 ok(hres
== S_OK
, "put_overflow failed: %08x\n", hres
);
1282 hres
= IHTMLStyle_get_overflow(style
, &str
);
1283 ok(hres
== S_OK
, "get_overflow failed: %08x\n", hres
);
1284 ok(!strcmp_wa(str
, "auto"), "str=%s\n", wine_dbgstr_w(str
));
1288 hres
= IHTMLStyle_put_overflow(style
, str
);
1289 ok(hres
== S_OK
, "put_overflow failed: %08x\n", hres
);
1292 hres
= IHTMLStyle_get_overflow(style
, &str
);
1293 ok(hres
== S_OK
, "get_overflow failed: %08x\n", hres
);
1294 ok(!str
, "str=%s\n", wine_dbgstr_w(str
));
1297 /* restore overflow default */
1298 hres
= IHTMLStyle_put_overflow(style
, sOverflowDefault
);
1299 ok(hres
== S_OK
, "put_overflow failed: %08x\n", hres
);
1300 SysFreeString(sOverflowDefault
);
1302 /* Attribute Tests*/
1303 hres
= IHTMLStyle_getAttribute(style
, NULL
, 1, &v
);
1304 ok(hres
== E_INVALIDARG
, "getAttribute failed: %08x\n", hres
);
1306 str
= a2bstr("position");
1307 hres
= IHTMLStyle_getAttribute(style
, str
, 1, NULL
);
1308 ok(hres
== E_INVALIDARG
, "getAttribute failed: %08x\n", hres
);
1310 hres
= IHTMLStyle_getAttribute(style
, str
, 1, &v
);
1311 ok(hres
== S_OK
, "getAttribute failed: %08x\n", hres
);
1312 ok(V_VT(&v
) == VT_BSTR
, "type failed: %d\n", V_VT(&v
));
1315 hres
= IHTMLStyle_setAttribute(style
, NULL
, v
, 1);
1316 ok(hres
== E_INVALIDARG
, "setAttribute failed: %08x\n", hres
);
1319 V_BSTR(&v
) = a2bstr("absolute");
1320 hres
= IHTMLStyle_setAttribute(style
, str
, v
, 1);
1321 ok(hres
== S_OK
, "setAttribute failed: %08x\n", hres
);
1324 hres
= IHTMLStyle_getAttribute(style
, str
, 1, &v
);
1325 ok(hres
== S_OK
, "getAttribute failed: %08x\n", hres
);
1326 ok(V_VT(&v
) == VT_BSTR
, "type failed: %d\n", V_VT(&v
));
1327 ok(!strcmp_wa(V_BSTR(&v
), "absolute"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v
)));
1332 hres
= IHTMLStyle_setAttribute(style
, str
, v
, 1);
1333 ok(hres
== S_OK
, "setAttribute failed: %08x\n", hres
);
1338 str
= a2bstr("borderLeftStyle");
1339 test_border_styles(style
, str
);
1342 str
= a2bstr("borderbottomstyle");
1343 test_border_styles(style
, str
);
1346 str
= a2bstr("borderrightstyle");
1347 test_border_styles(style
, str
);
1350 str
= a2bstr("bordertopstyle");
1351 test_border_styles(style
, str
);
1354 hres
= IHTMLStyle_get_borderStyle(style
, &sDefault
);
1355 ok(hres
== S_OK
, "get_borderStyle failed: %08x\n", hres
);
1357 str
= a2bstr("none dotted dashed solid");
1358 hres
= IHTMLStyle_put_borderStyle(style
, str
);
1359 ok(hres
== S_OK
, "put_borderStyle failed: %08x\n", hres
);
1362 str
= a2bstr("none dotted dashed solid");
1363 hres
= IHTMLStyle_get_borderStyle(style
, &str
);
1364 ok(hres
== S_OK
, "get_borderStyle failed: %08x\n", hres
);
1365 ok(!strcmp_wa(str
, "none dotted dashed solid"),
1366 "expected (none dotted dashed solid) = (%s)\n", wine_dbgstr_w(V_BSTR(&v
)));
1369 str
= a2bstr("double groove ridge inset");
1370 hres
= IHTMLStyle_put_borderStyle(style
, str
);
1371 ok(hres
== S_OK
, "put_borderStyle failed: %08x\n", hres
);
1374 str
= a2bstr("window-inset outset ridge inset");
1375 hres
= IHTMLStyle_put_borderStyle(style
, str
);
1376 ok(hres
== S_OK
, "put_borderStyle failed: %08x\n", hres
);
1379 str
= a2bstr("window-inset");
1380 hres
= IHTMLStyle_put_borderStyle(style
, str
);
1381 ok(hres
== S_OK
, "put_borderStyle failed: %08x\n", hres
);
1384 str
= a2bstr("none none none none none");
1385 hres
= IHTMLStyle_put_borderStyle(style
, str
);
1386 ok(hres
== S_OK
, "put_borderStyle failed: %08x\n", hres
);
1389 str
= a2bstr("invalid none none none");
1390 hres
= IHTMLStyle_put_borderStyle(style
, str
);
1391 ok(hres
== E_INVALIDARG
, "put_borderStyle failed: %08x\n", hres
);
1394 str
= a2bstr("none invalid none none");
1395 hres
= IHTMLStyle_put_borderStyle(style
, str
);
1396 ok(hres
== E_INVALIDARG
, "put_borderStyle failed: %08x\n", hres
);
1399 hres
= IHTMLStyle_put_borderStyle(style
, sDefault
);
1400 ok(hres
== S_OK
, "put_borderStyle failed: %08x\n", hres
);
1401 SysFreeString(sDefault
);
1403 /* backgoundColor */
1404 hres
= IHTMLStyle_get_backgroundColor(style
, &v
);
1405 ok(hres
== S_OK
, "get_backgroundColor: %08x\n", hres
);
1406 ok(V_VT(&v
) == VT_BSTR
, "type failed: %d\n", V_VT(&v
));
1407 ok(!V_BSTR(&v
), "str=%s\n", wine_dbgstr_w(V_BSTR(&v
)));
1411 V_BSTR(&v
) = a2bstr("red");
1412 hres
= IHTMLStyle_put_backgroundColor(style
, v
);
1413 ok(hres
== S_OK
, "put_backgroundColor failed: %08x\n", hres
);
1416 hres
= IHTMLStyle_get_backgroundColor(style
, &v
);
1417 ok(hres
== S_OK
, "get_backgroundColor: %08x\n", hres
);
1418 ok(V_VT(&v
) == VT_BSTR
, "type failed: %d\n", V_VT(&v
));
1419 ok(!strcmp_wa(V_BSTR(&v
), "red"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v
)));
1423 hres
= IHTMLStyle_get_padding(style
, &str
);
1424 ok(hres
== S_OK
, "get_padding failed: %08x\n", hres
);
1425 ok(!str
, "padding = %s\n", wine_dbgstr_w(str
));
1428 hres
= IHTMLStyle_get_paddingTop(style
, &v
);
1429 ok(hres
== S_OK
, "get_paddingTop: %08x\n", hres
);
1430 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v) = %d\n", V_VT(&v
));
1431 ok(!V_BSTR(&v
), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v
)));
1435 hres
= IHTMLStyle_put_paddingTop(style
, v
);
1436 ok(hres
== S_OK
, "put_paddingTop failed: %08x\n", hres
);
1438 hres
= IHTMLStyle_get_paddingTop(style
, &v
);
1439 ok(hres
== S_OK
, "get_paddingTop: %08x\n", hres
);
1440 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v) = %d\n", V_VT(&v
));
1441 ok(!strcmp_wa(V_BSTR(&v
), "6px"), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v
)));
1444 hres
= IHTMLStyle_get_paddingRight(style
, &v
);
1445 ok(hres
== S_OK
, "get_paddingRight: %08x\n", hres
);
1446 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v) = %d\n", V_VT(&v
));
1447 ok(!V_BSTR(&v
), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v
)));
1451 hres
= IHTMLStyle_put_paddingRight(style
, v
);
1452 ok(hres
== S_OK
, "put_paddingRight failed: %08x\n", hres
);
1454 hres
= IHTMLStyle_get_paddingRight(style
, &v
);
1455 ok(hres
== S_OK
, "get_paddingRight: %08x\n", hres
);
1456 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v) = %d\n", V_VT(&v
));
1457 ok(!strcmp_wa(V_BSTR(&v
), "6px"), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v
)));
1460 hres
= IHTMLStyle_get_paddingBottom(style
, &v
);
1461 ok(hres
== S_OK
, "get_paddingBottom: %08x\n", hres
);
1462 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v) = %d\n", V_VT(&v
));
1463 ok(!V_BSTR(&v
), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v
)));
1467 hres
= IHTMLStyle_put_paddingBottom(style
, v
);
1468 ok(hres
== S_OK
, "put_paddingBottom failed: %08x\n", hres
);
1470 hres
= IHTMLStyle_get_paddingBottom(style
, &v
);
1471 ok(hres
== S_OK
, "get_paddingBottom: %08x\n", hres
);
1472 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v) = %d\n", V_VT(&v
));
1473 ok(!strcmp_wa(V_BSTR(&v
), "6px"), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v
)));
1477 hres
= IHTMLStyle_put_padding(style
, str
);
1478 ok(hres
== S_OK
, "put_padding failed: %08x\n", hres
);
1481 hres
= IHTMLStyle_get_padding(style
, &str
);
1482 ok(hres
== S_OK
, "get_padding failed: %08x\n", hres
);
1483 ok(!strcmp_wa(str
, "1px"), "padding = %s\n", wine_dbgstr_w(str
));
1487 hres
= IHTMLStyle_get_paddingLeft(style
, &vDefault
);
1488 ok(hres
== S_OK
, "get_paddingLeft: %08x\n", hres
);
1489 ok(V_VT(&vDefault
) == VT_BSTR
, "V_VT(v) = %d\n", V_VT(&vDefault
));
1490 ok(!strcmp_wa(V_BSTR(&vDefault
), "1px"), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&vDefault
)));
1493 V_BSTR(&v
) = a2bstr("10");
1494 hres
= IHTMLStyle_put_paddingLeft(style
, v
);
1495 ok(hres
== S_OK
, "put_paddingLeft: %08x\n", hres
);
1498 hres
= IHTMLStyle_get_paddingLeft(style
, &v
);
1499 ok(hres
== S_OK
, "get_paddingLeft: %08x\n", hres
);
1500 ok(!strcmp_wa(V_BSTR(&v
), "10px"), "expecte 10 = %s\n", wine_dbgstr_w(V_BSTR(&v
)));
1503 hres
= IHTMLStyle_put_paddingLeft(style
, vDefault
);
1504 ok(hres
== S_OK
, "put_paddingLeft: %08x\n", hres
);
1506 /* BackgroundRepeat */
1507 hres
= IHTMLStyle_get_backgroundRepeat(style
, &sDefault
);
1508 ok(hres
== S_OK
, "get_backgroundRepeat failed: %08x\n", hres
);
1510 str
= a2bstr("invalid");
1511 hres
= IHTMLStyle_put_backgroundRepeat(style
, str
);
1512 ok(hres
== E_INVALIDARG
, "put_backgroundRepeat failed: %08x\n", hres
);
1515 str
= a2bstr("repeat");
1516 hres
= IHTMLStyle_put_backgroundRepeat(style
, str
);
1517 ok(hres
== S_OK
, "put_backgroundRepeat failed: %08x\n", hres
);
1520 str
= a2bstr("no-repeat");
1521 hres
= IHTMLStyle_put_backgroundRepeat(style
, str
);
1522 ok(hres
== S_OK
, "put_backgroundRepeat failed: %08x\n", hres
);
1525 str
= a2bstr("repeat-x");
1526 hres
= IHTMLStyle_put_backgroundRepeat(style
, str
);
1527 ok(hres
== S_OK
, "put_backgroundRepeat failed: %08x\n", hres
);
1530 str
= a2bstr("repeat-y");
1531 hres
= IHTMLStyle_put_backgroundRepeat(style
, str
);
1532 ok(hres
== S_OK
, "put_backgroundRepeat failed: %08x\n", hres
);
1535 hres
= IHTMLStyle_get_backgroundRepeat(style
, &str
);
1536 ok(hres
== S_OK
, "get_backgroundRepeat failed: %08x\n", hres
);
1537 ok(!strcmp_wa(str
, "repeat-y"), "str=%s\n", wine_dbgstr_w(str
));
1540 hres
= IHTMLStyle_put_backgroundRepeat(style
, sDefault
);
1541 ok(hres
== S_OK
, "put_backgroundRepeat failed: %08x\n", hres
);
1542 SysFreeString(sDefault
);
1545 hres
= IHTMLStyle_get_borderColor(style
, &sDefault
);
1546 ok(hres
== S_OK
, "get_borderColor failed: %08x\n", hres
);
1548 str
= a2bstr("red green red blue");
1549 hres
= IHTMLStyle_put_borderColor(style
, str
);
1550 ok(hres
== S_OK
, "put_borderColor failed: %08x\n", hres
);
1553 hres
= IHTMLStyle_get_borderColor(style
, &str
);
1554 ok(hres
== S_OK
, "get_borderColor failed: %08x\n", hres
);
1555 ok(!strcmp_wa(str
, "red green red blue"), "str=%s\n", wine_dbgstr_w(str
));
1558 hres
= IHTMLStyle_put_borderColor(style
, sDefault
);
1559 ok(hres
== S_OK
, "put_borderColor failed: %08x\n", hres
);
1560 SysFreeString(sDefault
);
1563 hres
= IHTMLStyle_get_borderRight(style
, &sDefault
);
1564 ok(hres
== S_OK
, "get_borderRight failed: %08x\n", hres
);
1566 str
= a2bstr("thick dotted red");
1567 hres
= IHTMLStyle_put_borderRight(style
, str
);
1568 ok(hres
== S_OK
, "put_borderRight failed: %08x\n", hres
);
1571 /* IHTMLStyle_get_borderRight appears to have a bug where
1572 it returns the first letter of the color. So we check
1573 each style individually.
1576 hres
= IHTMLStyle_get_borderRightColor(style
, &v
);
1577 ok(hres
== S_OK
, "get_borderRightColor failed: %08x\n", hres
);
1578 ok(!strcmp_wa(V_BSTR(&v
), "red"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v
)));
1582 hres
= IHTMLStyle_get_borderRightWidth(style
, &v
);
1583 ok(hres
== S_OK
, "get_borderRightWidth failed: %08x\n", hres
);
1584 ok(!strcmp_wa(V_BSTR(&v
), "thick"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v
)));
1587 hres
= IHTMLStyle_get_borderRightStyle(style
, &str
);
1588 ok(hres
== S_OK
, "get_borderRightStyle failed: %08x\n", hres
);
1589 ok(!strcmp_wa(str
, "dotted"), "str=%s\n", wine_dbgstr_w(str
));
1592 hres
= IHTMLStyle_put_borderRight(style
, sDefault
);
1593 ok(hres
== S_OK
, "put_borderRight failed: %08x\n", hres
);
1594 SysFreeString(sDefault
);
1597 hres
= IHTMLStyle_get_borderTop(style
, &sDefault
);
1598 ok(hres
== S_OK
, "get_borderTop failed: %08x\n", hres
);
1600 str
= a2bstr("thick dotted red");
1601 hres
= IHTMLStyle_put_borderTop(style
, str
);
1602 ok(hres
== S_OK
, "put_borderTop failed: %08x\n", hres
);
1605 /* IHTMLStyle_get_borderTop appears to have a bug where
1606 it returns the first letter of the color. So we check
1607 each style individually.
1610 hres
= IHTMLStyle_get_borderTopColor(style
, &v
);
1611 ok(hres
== S_OK
, "get_borderTopColor failed: %08x\n", hres
);
1612 ok(!strcmp_wa(V_BSTR(&v
), "red"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v
)));
1616 hres
= IHTMLStyle_get_borderTopWidth(style
, &v
);
1617 ok(hres
== S_OK
, "get_borderTopWidth failed: %08x\n", hres
);
1618 ok(!strcmp_wa(V_BSTR(&v
), "thick"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v
)));
1621 hres
= IHTMLStyle_get_borderTopStyle(style
, &str
);
1622 ok(hres
== S_OK
, "get_borderTopStyle failed: %08x\n", hres
);
1623 ok(!strcmp_wa(str
, "dotted"), "str=%s\n", wine_dbgstr_w(str
));
1626 hres
= IHTMLStyle_put_borderTop(style
, sDefault
);
1627 ok(hres
== S_OK
, "put_borderTop failed: %08x\n", hres
);
1628 SysFreeString(sDefault
);
1631 hres
= IHTMLStyle_get_borderBottom(style
, &sDefault
);
1632 ok(hres
== S_OK
, "get_borderBottom failed: %08x\n", hres
);
1634 str
= a2bstr("thick dotted red");
1635 hres
= IHTMLStyle_put_borderBottom(style
, str
);
1636 ok(hres
== S_OK
, "put_borderBottom failed: %08x\n", hres
);
1639 /* IHTMLStyle_get_borderBottom appears to have a bug where
1640 it returns the first letter of the color. So we check
1641 each style individually.
1644 hres
= IHTMLStyle_get_borderBottomColor(style
, &v
);
1645 ok(hres
== S_OK
, "get_borderBottomColor failed: %08x\n", hres
);
1646 ok(!strcmp_wa(V_BSTR(&v
), "red"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v
)));
1650 hres
= IHTMLStyle_get_borderBottomWidth(style
, &v
);
1651 ok(hres
== S_OK
, "get_borderBottomWidth failed: %08x\n", hres
);
1652 ok(!strcmp_wa(V_BSTR(&v
), "thick"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v
)));
1655 hres
= IHTMLStyle_get_borderBottomStyle(style
, &str
);
1656 ok(hres
== S_OK
, "get_borderBottomStyle failed: %08x\n", hres
);
1657 ok(!strcmp_wa(str
, "dotted"), "str=%s\n", wine_dbgstr_w(str
));
1660 hres
= IHTMLStyle_put_borderBottom(style
, sDefault
);
1661 ok(hres
== S_OK
, "put_borderBottom failed: %08x\n", hres
);
1662 SysFreeString(sDefault
);
1665 hres
= IHTMLStyle_get_borderLeft(style
, &sDefault
);
1666 ok(hres
== S_OK
, "get_borderLeft failed: %08x\n", hres
);
1668 str
= a2bstr("thick dotted red");
1669 hres
= IHTMLStyle_put_borderLeft(style
, str
);
1670 ok(hres
== S_OK
, "put_borderLeft failed: %08x\n", hres
);
1673 /* IHTMLStyle_get_borderLeft appears to have a bug where
1674 it returns the first letter of the color. So we check
1675 each style individually.
1678 hres
= IHTMLStyle_get_borderLeftColor(style
, &v
);
1679 ok(hres
== S_OK
, "get_borderLeftColor failed: %08x\n", hres
);
1680 ok(!strcmp_wa(V_BSTR(&v
), "red"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v
)));
1684 hres
= IHTMLStyle_get_borderLeftWidth(style
, &v
);
1685 ok(hres
== S_OK
, "get_borderLeftWidth failed: %08x\n", hres
);
1686 ok(!strcmp_wa(V_BSTR(&v
), "thick"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v
)));
1689 hres
= IHTMLStyle_get_borderLeftStyle(style
, &str
);
1690 ok(hres
== S_OK
, "get_borderLeftStyle failed: %08x\n", hres
);
1691 ok(!strcmp_wa(str
, "dotted"), "str=%s\n", wine_dbgstr_w(str
));
1694 hres
= IHTMLStyle_put_borderLeft(style
, sDefault
);
1695 ok(hres
== S_OK
, "put_borderLeft failed: %08x\n", hres
);
1696 SysFreeString(sDefault
);
1698 /* backgroundPositionX */
1699 hres
= IHTMLStyle_get_backgroundPositionX(style
, &v
);
1700 ok(hres
== S_OK
, "get_backgroundPositionX failed: %08x\n", hres
);
1701 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v)=%d\n", V_VT(&v
));
1702 ok(!V_BSTR(&v
), "backgroundPositionX = %s\n", wine_dbgstr_w(V_BSTR(&v
)));
1706 V_BSTR(&v
) = a2bstr("10px");
1707 hres
= IHTMLStyle_put_backgroundPositionX(style
, v
);
1708 ok(hres
== S_OK
, "put_backgroundPositionX failed: %08x\n", hres
);
1711 hres
= IHTMLStyle_get_backgroundPositionX(style
, &v
);
1712 ok(hres
== S_OK
, "get_backgroundPositionX failed: %08x\n", hres
);
1713 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v)=%d\n", V_VT(&v
));
1714 ok(!strcmp_wa(V_BSTR(&v
), "10px"), "backgroundPositionX = %s\n", wine_dbgstr_w(V_BSTR(&v
)));
1717 /* backgroundPositionY */
1718 hres
= IHTMLStyle_get_backgroundPositionY(style
, &v
);
1719 ok(hres
== S_OK
, "get_backgroundPositionY failed: %08x\n", hres
);
1720 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v)=%d\n", V_VT(&v
));
1724 V_BSTR(&v
) = a2bstr("15px");
1725 hres
= IHTMLStyle_put_backgroundPositionY(style
, v
);
1726 ok(hres
== S_OK
, "put_backgroundPositionY failed: %08x\n", hres
);
1729 hres
= IHTMLStyle_get_backgroundPositionY(style
, &v
);
1730 ok(hres
== S_OK
, "get_backgroundPositionY failed: %08x\n", hres
);
1731 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v)=%d\n", V_VT(&v
));
1732 ok(!strcmp_wa(V_BSTR(&v
), "15px"), "backgroundPositionY = %s\n", wine_dbgstr_w(V_BSTR(&v
)));
1735 /* backgroundPosition */
1737 hres
= IHTMLStyle_get_backgroundPosition(style
, &str
);
1738 ok(hres
== S_OK
, "get_backgroundPosition failed: %08x\n", hres
);
1739 ok(!strcmp_wa(str
, "10px 15px"), "backgroundPosition = %s\n", wine_dbgstr_w(str
));
1742 str
= a2bstr("center 20%");
1743 hres
= IHTMLStyle_put_backgroundPosition(style
, str
);
1744 ok(hres
== S_OK
, "put_backgroundPosition failed: %08x\n", hres
);
1748 hres
= IHTMLStyle_get_backgroundPosition(style
, &str
);
1749 ok(hres
== S_OK
, "get_backgroundPosition failed: %08x\n", hres
);
1750 ok(!strcmp_wa(str
, "center 20%"), "backgroundPosition = %s\n", wine_dbgstr_w(str
));
1753 hres
= IHTMLStyle_get_backgroundPositionX(style
, &v
);
1754 ok(hres
== S_OK
, "get_backgroundPositionX failed: %08x\n", hres
);
1755 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v)=%d\n", V_VT(&v
));
1756 ok(!strcmp_wa(V_BSTR(&v
), "center"), "backgroundPositionX = %s\n", wine_dbgstr_w(V_BSTR(&v
)));
1759 hres
= IHTMLStyle_get_backgroundPositionY(style
, &v
);
1760 ok(hres
== S_OK
, "get_backgroundPositionY failed: %08x\n", hres
);
1761 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v)=%d\n", V_VT(&v
));
1762 ok(!strcmp_wa(V_BSTR(&v
), "20%"), "backgroundPositionY = %s\n", wine_dbgstr_w(V_BSTR(&v
)));
1765 /* borderTopWidth */
1766 hres
= IHTMLStyle_get_borderTopWidth(style
, &vDefault
);
1767 ok(hres
== S_OK
, "get_borderTopWidth: %08x\n", hres
);
1770 V_BSTR(&v
) = a2bstr("10px");
1771 hres
= IHTMLStyle_put_borderTopWidth(style
, v
);
1772 ok(hres
== S_OK
, "put_borderTopWidth: %08x\n", hres
);
1775 hres
= IHTMLStyle_get_borderTopWidth(style
, &v
);
1776 ok(hres
== S_OK
, "get_borderTopWidth: %08x\n", hres
);
1777 ok(!strcmp_wa(V_BSTR(&v
), "10px"), "expected 10px = %s\n", wine_dbgstr_w(V_BSTR(&v
)));
1780 hres
= IHTMLStyle_put_borderTopWidth(style
, vDefault
);
1781 ok(hres
== S_OK
, "put_borderTopWidth: %08x\n", hres
);
1782 VariantClear(&vDefault
);
1784 /* borderRightWidth */
1785 hres
= IHTMLStyle_get_borderRightWidth(style
, &vDefault
);
1786 ok(hres
== S_OK
, "get_borderRightWidth: %08x\n", hres
);
1789 V_BSTR(&v
) = a2bstr("10");
1790 hres
= IHTMLStyle_put_borderRightWidth(style
, v
);
1791 ok(hres
== S_OK
, "put_borderRightWidth: %08x\n", hres
);
1794 hres
= IHTMLStyle_get_borderRightWidth(style
, &v
);
1795 ok(hres
== S_OK
, "get_borderRightWidth: %08x\n", hres
);
1796 ok(!strcmp_wa(V_BSTR(&v
), "10px"), "expected 10px = %s\n", wine_dbgstr_w(V_BSTR(&v
)));
1799 hres
= IHTMLStyle_put_borderRightWidth(style
, vDefault
);
1800 ok(hres
== S_OK
, "put_borderRightWidth: %08x\n", hres
);
1801 VariantClear(&vDefault
);
1803 /* borderBottomWidth */
1804 hres
= IHTMLStyle_get_borderBottomWidth(style
, &vDefault
);
1805 ok(hres
== S_OK
, "get_borderBottomWidth: %08x\n", hres
);
1808 V_BSTR(&v
) = a2bstr("10");
1809 hres
= IHTMLStyle_put_borderBottomWidth(style
, v
);
1810 ok(hres
== S_OK
, "put_borderBottomWidth: %08x\n", hres
);
1813 hres
= IHTMLStyle_get_borderBottomWidth(style
, &v
);
1814 ok(hres
== S_OK
, "get_borderBottomWidth: %08x\n", hres
);
1815 ok(!strcmp_wa(V_BSTR(&v
), "10px"), "expected 10px = %s\n", wine_dbgstr_w(V_BSTR(&v
)));
1818 hres
= IHTMLStyle_put_borderBottomWidth(style
, vDefault
);
1819 ok(hres
== S_OK
, "put_borderBottomWidth: %08x\n", hres
);
1820 VariantClear(&vDefault
);
1822 /* borderLeftWidth */
1823 hres
= IHTMLStyle_get_borderLeftWidth(style
, &vDefault
);
1824 ok(hres
== S_OK
, "get_borderLeftWidth: %08x\n", hres
);
1827 V_BSTR(&v
) = a2bstr("10");
1828 hres
= IHTMLStyle_put_borderLeftWidth(style
, v
);
1829 ok(hres
== S_OK
, "put_borderLeftWidth: %08x\n", hres
);
1832 hres
= IHTMLStyle_get_borderLeftWidth(style
, &v
);
1833 ok(hres
== S_OK
, "get_borderLeftWidth: %08x\n", hres
);
1834 ok(!strcmp_wa(V_BSTR(&v
), "10px"), "expected 10px = %s\n", wine_dbgstr_w(V_BSTR(&v
)));
1837 hres
= IHTMLStyle_put_borderLeftWidth(style
, vDefault
);
1838 ok(hres
== S_OK
, "put_borderLeftWidth: %08x\n", hres
);
1839 VariantClear(&vDefault
);
1842 hres
= IHTMLStyle_get_wordSpacing(style
, &vDefault
);
1843 ok(hres
== S_OK
, "get_wordSpacing: %08x\n", hres
);
1846 V_BSTR(&v
) = a2bstr("10");
1847 hres
= IHTMLStyle_put_wordSpacing(style
, v
);
1848 ok(hres
== S_OK
, "put_wordSpacing: %08x\n", hres
);
1851 hres
= IHTMLStyle_get_wordSpacing(style
, &v
);
1852 ok(hres
== S_OK
, "get_wordSpacing: %08x\n", hres
);
1853 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v)=%d\n", V_VT(&v
));
1854 ok(!strcmp_wa(V_BSTR(&v
), "10px"), "expected 10px = %s\n", wine_dbgstr_w(V_BSTR(&v
)));
1857 hres
= IHTMLStyle_put_wordSpacing(style
, vDefault
);
1858 ok(hres
== S_OK
, "put_wordSpacing: %08x\n", hres
);
1859 VariantClear(&vDefault
);
1862 hres
= IHTMLStyle_get_letterSpacing(style
, &vDefault
);
1863 ok(hres
== S_OK
, "get_letterSpacing: %08x\n", hres
);
1866 V_BSTR(&v
) = a2bstr("11");
1867 hres
= IHTMLStyle_put_letterSpacing(style
, v
);
1868 ok(hres
== S_OK
, "put_letterSpacing: %08x\n", hres
);
1871 hres
= IHTMLStyle_get_letterSpacing(style
, &v
);
1872 ok(hres
== S_OK
, "get_letterSpacing: %08x\n", hres
);
1873 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v)=%d\n", V_VT(&v
));
1874 ok(!strcmp_wa(V_BSTR(&v
), "11px"), "expected 10px = %s\n", wine_dbgstr_w(V_BSTR(&v
)));
1877 hres
= IHTMLStyle_put_letterSpacing(style
, vDefault
);
1878 ok(hres
== S_OK
, "put_letterSpacing: %08x\n", hres
);
1879 VariantClear(&vDefault
);
1881 /* borderTopColor */
1882 hres
= IHTMLStyle_get_borderTopColor(style
, &vDefault
);
1883 ok(hres
== S_OK
, "get_borderTopColor: %08x\n", hres
);
1886 V_BSTR(&v
) = a2bstr("red");
1887 hres
= IHTMLStyle_put_borderTopColor(style
, v
);
1888 ok(hres
== S_OK
, "put_borderTopColor: %08x\n", hres
);
1891 hres
= IHTMLStyle_get_borderTopColor(style
, &v
);
1892 ok(hres
== S_OK
, "get_borderTopColor: %08x\n", hres
);
1893 ok(!strcmp_wa(V_BSTR(&v
), "red"), "expecte red = %s\n", wine_dbgstr_w(V_BSTR(&v
)));
1896 hres
= IHTMLStyle_put_borderTopColor(style
, vDefault
);
1897 ok(hres
== S_OK
, "put_borderTopColor: %08x\n", hres
);
1899 /* borderRightColor */
1900 hres
= IHTMLStyle_get_borderRightColor(style
, &vDefault
);
1901 ok(hres
== S_OK
, "get_borderRightColor: %08x\n", hres
);
1904 V_BSTR(&v
) = a2bstr("blue");
1905 hres
= IHTMLStyle_put_borderRightColor(style
, v
);
1906 ok(hres
== S_OK
, "put_borderRightColor: %08x\n", hres
);
1909 hres
= IHTMLStyle_get_borderRightColor(style
, &v
);
1910 ok(hres
== S_OK
, "get_borderRightColor: %08x\n", hres
);
1911 ok(!strcmp_wa(V_BSTR(&v
), "blue"), "expected blue = %s\n", wine_dbgstr_w(V_BSTR(&v
)));
1914 hres
= IHTMLStyle_put_borderRightColor(style
, vDefault
);
1915 ok(hres
== S_OK
, "putborderRightColorr: %08x\n", hres
);
1917 /* borderBottomColor */
1918 hres
= IHTMLStyle_get_borderBottomColor(style
, &vDefault
);
1919 ok(hres
== S_OK
, "get_borderBottomColor: %08x\n", hres
);
1922 V_BSTR(&v
) = a2bstr("cyan");
1923 hres
= IHTMLStyle_put_borderBottomColor(style
, v
);
1924 ok(hres
== S_OK
, "put_borderBottomColor: %08x\n", hres
);
1927 hres
= IHTMLStyle_get_borderBottomColor(style
, &v
);
1928 ok(hres
== S_OK
, "get_borderBottomColor: %08x\n", hres
);
1929 ok(!strcmp_wa(V_BSTR(&v
), "cyan"), "expected cyan = %s\n", wine_dbgstr_w(V_BSTR(&v
)));
1932 hres
= IHTMLStyle_put_borderBottomColor(style
, vDefault
);
1933 ok(hres
== S_OK
, "put_borderBottomColor: %08x\n", hres
);
1935 /* borderLeftColor */
1936 hres
= IHTMLStyle_get_borderLeftColor(style
, &vDefault
);
1937 ok(hres
== S_OK
, "get_borderLeftColor: %08x\n", hres
);
1940 V_BSTR(&v
) = a2bstr("cyan");
1941 hres
= IHTMLStyle_put_borderLeftColor(style
, v
);
1942 ok(hres
== S_OK
, "put_borderLeftColor: %08x\n", hres
);
1945 hres
= IHTMLStyle_get_borderLeftColor(style
, &v
);
1946 ok(hres
== S_OK
, "get_borderLeftColor: %08x\n", hres
);
1947 ok(!strcmp_wa(V_BSTR(&v
), "cyan"), "expected cyan = %s\n", wine_dbgstr_w(V_BSTR(&v
)));
1950 hres
= IHTMLStyle_put_borderLeftColor(style
, vDefault
);
1951 ok(hres
== S_OK
, "put_borderLeftColor: %08x\n", hres
);
1954 hres
= IHTMLStyle_get_clip(style
, &str
);
1955 ok(hres
== S_OK
, "get_clip failed: %08x\n", hres
);
1956 ok(!str
, "clip = %s\n", wine_dbgstr_w(str
));
1958 str
= a2bstr("rect(0px 1px 500px 505px)");
1959 hres
= IHTMLStyle_put_clip(style
, str
);
1960 ok(hres
== S_OK
, "put_clip failed: %08x\n", hres
);
1963 hres
= IHTMLStyle_get_clip(style
, &str
);
1964 ok(hres
== S_OK
, "get_clip failed: %08x\n", hres
);
1965 ok(!strcmp_wa(str
, "rect(0px 1px 500px 505px)"), "clip = %s\n", wine_dbgstr_w(str
));
1969 hres
= IHTMLStyle_get_clear(style
, &str
);
1970 ok(hres
== S_OK
, "get_clear failed: %08x\n", hres
);
1971 ok(!str
, "clear = %s\n", wine_dbgstr_w(str
));
1973 str
= a2bstr("both");
1974 hres
= IHTMLStyle_put_clear(style
, str
);
1975 ok(hres
== S_OK
, "put_clear failed: %08x\n", hres
);
1978 hres
= IHTMLStyle_get_clear(style
, &str
);
1979 ok(hres
== S_OK
, "get_clear failed: %08x\n", hres
);
1980 ok(!strcmp_wa(str
, "both"), "clear = %s\n", wine_dbgstr_w(str
));
1983 /* pageBreakAfter */
1984 hres
= IHTMLStyle_get_pageBreakAfter(style
, &str
);
1985 ok(hres
== S_OK
, "get_pageBreakAfter failed: %08x\n", hres
);
1986 ok(!str
, "pageBreakAfter = %s\n", wine_dbgstr_w(str
));
1988 str
= a2bstr("always");
1989 hres
= IHTMLStyle_put_pageBreakAfter(style
, str
);
1990 ok(hres
== S_OK
, "put_pageBreakAfter failed: %08x\n", hres
);
1993 hres
= IHTMLStyle_get_pageBreakAfter(style
, &str
);
1994 ok(hres
== S_OK
, "get_pageBreakAfter failed: %08x\n", hres
);
1995 ok(!strcmp_wa(str
, "always"), "pageBreakAfter = %s\n", wine_dbgstr_w(str
));
1998 /* pageBreakBefore */
1999 hres
= IHTMLStyle_get_pageBreakBefore(style
, &str
);
2000 ok(hres
== S_OK
, "get_pageBreakBefore failed: %08x\n", hres
);
2001 ok(!str
, "pageBreakBefore = %s\n", wine_dbgstr_w(str
));
2003 str
= a2bstr("always");
2004 hres
= IHTMLStyle_put_pageBreakBefore(style
, str
);
2005 ok(hres
== S_OK
, "put_pageBreakBefore failed: %08x\n", hres
);
2008 hres
= IHTMLStyle_get_pageBreakBefore(style
, &str
);
2009 ok(hres
== S_OK
, "get_pageBreakBefore failed: %08x\n", hres
);
2010 ok(!strcmp_wa(str
, "always"), "pageBreakBefore = %s\n", wine_dbgstr_w(str
));
2013 test_style_remove_attribute(style
, "pageBreakBefore", VARIANT_TRUE
);
2014 test_style_remove_attribute(style
, "pageBreakBefore", VARIANT_FALSE
);
2016 hres
= IHTMLStyle_get_pageBreakBefore(style
, &str
);
2017 ok(hres
== S_OK
, "get_pageBreakBefore failed: %08x\n", hres
);
2018 ok(!str
, "pageBreakBefore = %s\n", wine_dbgstr_w(str
));
2020 hres
= IHTMLStyle_QueryInterface(style
, &IID_IHTMLStyle2
, (void**)&style2
);
2021 ok(hres
== S_OK
, "Could not get IHTMLStyle2 iface: %08x\n", hres
);
2022 if(SUCCEEDED(hres
)) {
2023 test_style2(style2
);
2024 IHTMLStyle2_Release(style2
);
2027 hres
= IHTMLStyle_QueryInterface(style
, &IID_IHTMLStyle3
, (void**)&style3
);
2028 ok(hres
== S_OK
, "Could not get IHTMLStyle3 iface: %08x\n", hres
);
2029 if(SUCCEEDED(hres
)) {
2030 test_style3(style3
);
2031 IHTMLStyle3_Release(style3
);
2034 hres
= IHTMLStyle_QueryInterface(style
, &IID_IHTMLStyle4
, (void**)&style4
);
2035 ok(hres
== S_OK
, "Could not get IHTMLStyle4 iface: %08x\n", hres
);
2036 if(SUCCEEDED(hres
)) {
2037 test_style4(style4
);
2038 IHTMLStyle4_Release(style4
);
2042 #define test_style_filter(a,b) _test_style_filter(__LINE__,a,b)
2043 static void _test_style_filter(unsigned line
, IHTMLStyle
*style
, const char *exval
)
2048 str
= (void*)0xdeadbeef;
2049 hres
= IHTMLStyle_get_filter(style
, &str
);
2050 ok_(__FILE__
,line
)(hres
== S_OK
, "get_filter failed: %08x\n", hres
);
2052 ok_(__FILE__
,line
)(str
&& !strcmp_wa(str
, exval
), "filter = %s, expected %s\n", wine_dbgstr_w(str
), exval
);
2054 ok_(__FILE__
,line
)(!str
, "str = %s, expected NULL\n", wine_dbgstr_w(str
));
2059 #define test_current_style_filter(a,b) _test_current_style_filter(__LINE__,a,b)
2060 static void _test_current_style_filter(unsigned line
, IHTMLCurrentStyle2
*style
, const char *exval
)
2065 str
= (void*)0xdeadbeef;
2066 hres
= IHTMLCurrentStyle2_get_filter(style
, &str
);
2067 ok_(__FILE__
,line
)(hres
== S_OK
, "get_filter failed: %08x\n", hres
);
2069 ok_(__FILE__
,line
)(str
&& !strcmp_wa(str
, exval
), "filter = %s, expected %s\n", wine_dbgstr_w(str
), exval
);
2071 ok_(__FILE__
,line
)(!str
, "str = %s, expected NULL\n", wine_dbgstr_w(str
));
2076 #define set_style_filter(a,b) _set_style_filter(__LINE__,a,b)
2077 static void _set_style_filter(unsigned line
, IHTMLStyle
*style
, const char *val
)
2079 BSTR str
= a2bstr(val
);
2082 hres
= IHTMLStyle_put_filter(style
, str
);
2083 ok_(__FILE__
,line
)(hres
== S_OK
, "put_filter failed: %08x\n", hres
);
2086 _test_style_filter(line
, style
, val
);
2089 static void test_style_filters(IHTMLElement
*elem
)
2091 IHTMLElement2
*elem2
= get_elem2_iface((IUnknown
*)elem
);
2092 IHTMLCurrentStyle2
*current_style2
;
2093 IHTMLCurrentStyle
*current_style
;
2097 hres
= IHTMLElement_get_style(elem
, &style
);
2098 ok(hres
== S_OK
, "get_style failed: %08x\n", hres
);
2100 hres
= IHTMLElement2_get_currentStyle(elem2
, ¤t_style
);
2101 ok(hres
== S_OK
, "get_style failed: %08x\n", hres
);
2103 hres
= IHTMLCurrentStyle_QueryInterface(current_style
, &IID_IHTMLCurrentStyle2
, (void**)¤t_style2
);
2104 IHTMLCurrentStyle_Release(current_style
);
2105 ok(hres
== S_OK
, "Could not get IHTMLCurrentStyle2 iface: %08x\n", hres
);
2107 test_style_filter(style
, NULL
);
2108 test_current_style_filter(current_style2
, NULL
);
2109 set_style_filter(style
, "alpha(opacity=50.0040)");
2110 test_current_style_filter(current_style2
, "alpha(opacity=50.0040)");
2111 set_style_filter(style
, "alpha(opacity=100)");
2113 IHTMLStyle_Release(style
);
2115 hres
= IHTMLElement_get_style(elem
, &style
);
2116 ok(hres
== S_OK
, "get_style failed: %08x\n", hres
);
2118 test_style_filter(style
, "alpha(opacity=100)");
2119 set_style_filter(style
, "xxx(a,b,c) alpha(opacity=100)");
2120 set_style_filter(style
, NULL
);
2121 set_style_filter(style
, "alpha(opacity=100)");
2122 test_style_remove_attribute(style
, "filter", VARIANT_TRUE
);
2123 test_style_remove_attribute(style
, "filter", VARIANT_FALSE
);
2124 test_style_filter(style
, NULL
);
2127 IHTMLCurrentStyle2_Release(current_style2
);
2128 IHTMLStyle_Release(style
);
2129 IHTMLElement2_Release(elem2
);
2132 static void test_current_style(IHTMLCurrentStyle
*current_style
)
2138 hres
= IHTMLCurrentStyle_get_display(current_style
, &str
);
2139 ok(hres
== S_OK
, "get_display failed: %08x\n", hres
);
2140 ok(!strcmp_wa(str
, "block"), "get_display returned %s\n", wine_dbgstr_w(str
));
2143 hres
= IHTMLCurrentStyle_get_position(current_style
, &str
);
2144 ok(hres
== S_OK
, "get_position failed: %08x\n", hres
);
2145 ok(!strcmp_wa(str
, "absolute"), "get_position returned %s\n", wine_dbgstr_w(str
));
2148 hres
= IHTMLCurrentStyle_get_fontFamily(current_style
, &str
);
2149 ok(hres
== S_OK
, "get_fontFamily failed: %08x\n", hres
);
2152 hres
= IHTMLCurrentStyle_get_fontStyle(current_style
, &str
);
2153 ok(hres
== S_OK
, "get_fontStyle failed: %08x\n", hres
);
2154 ok(!strcmp_wa(str
, "normal"), "get_fontStyle returned %s\n", wine_dbgstr_w(str
));
2157 hres
= IHTMLCurrentStyle_get_backgroundImage(current_style
, &str
);
2158 ok(hres
== S_OK
, "get_backgroundImage failed: %08x\n", hres
);
2159 ok(!strcmp_wa(str
, "none"), "get_backgroundImage returned %s\n", wine_dbgstr_w(str
));
2162 hres
= IHTMLCurrentStyle_get_fontVariant(current_style
, &str
);
2163 ok(hres
== S_OK
, "get_fontVariant failed: %08x\n", hres
);
2164 ok(!strcmp_wa(str
, "normal"), "get_fontVariant returned %s\n", wine_dbgstr_w(str
));
2167 hres
= IHTMLCurrentStyle_get_borderTopStyle(current_style
, &str
);
2168 ok(hres
== S_OK
, "get_borderTopStyle failed: %08x\n", hres
);
2169 ok(!strcmp_wa(str
, "none"), "get_borderTopStyle returned %s\n", wine_dbgstr_w(str
));
2172 hres
= IHTMLCurrentStyle_get_borderRightStyle(current_style
, &str
);
2173 ok(hres
== S_OK
, "get_borderRightStyle failed: %08x\n", hres
);
2174 ok(!strcmp_wa(str
, "none"), "get_borderRightStyle returned %s\n", wine_dbgstr_w(str
));
2177 hres
= IHTMLCurrentStyle_get_borderBottomStyle(current_style
, &str
);
2178 ok(hres
== S_OK
, "get_borderBottomStyle failed: %08x\n", hres
);
2179 ok(!strcmp_wa(str
, "none"), "get_borderBottomStyle returned %s\n", wine_dbgstr_w(str
));
2182 hres
= IHTMLCurrentStyle_get_borderLeftStyle(current_style
, &str
);
2183 ok(hres
== S_OK
, "get_borderLeftStyle failed: %08x\n", hres
);
2184 ok(!strcmp_wa(str
, "none"), "get_borderLeftStyle returned %s\n", wine_dbgstr_w(str
));
2187 hres
= IHTMLCurrentStyle_get_textAlign(current_style
, &str
);
2188 ok(hres
== S_OK
, "get_textAlign failed: %08x\n", hres
);
2189 ok(!strcmp_wa(str
, "center"), "get_textAlign returned %s\n", wine_dbgstr_w(str
));
2192 hres
= IHTMLCurrentStyle_get_textDecoration(current_style
, &str
);
2193 ok(hres
== S_OK
, "get_textDecoration failed: %08x\n", hres
);
2194 ok(!strcmp_wa(str
, "none"), "get_textDecoration returned %s\n", wine_dbgstr_w(str
));
2197 hres
= IHTMLCurrentStyle_get_cursor(current_style
, &str
);
2198 ok(hres
== S_OK
, "get_cursor failed: %08x\n", hres
);
2199 ok(!strcmp_wa(str
, "default"), "get_cursor returned %s\n", wine_dbgstr_w(str
));
2202 hres
= IHTMLCurrentStyle_get_backgroundRepeat(current_style
, &str
);
2203 ok(hres
== S_OK
, "get_backgroundRepeat failed: %08x\n", hres
);
2204 ok(!strcmp_wa(str
, "repeat"), "get_backgroundRepeat returned %s\n", wine_dbgstr_w(str
));
2207 hres
= IHTMLCurrentStyle_get_borderColor(current_style
, &str
);
2208 ok(hres
== S_OK
, "get_borderColor failed: %08x\n", hres
);
2211 hres
= IHTMLCurrentStyle_get_borderStyle(current_style
, &str
);
2212 ok(hres
== S_OK
, "get_borderStyle failed: %08x\n", hres
);
2215 hres
= IHTMLCurrentStyle_get_visibility(current_style
, &str
);
2216 ok(hres
== S_OK
, "get_visibility failed: %08x\n", hres
);
2219 hres
= IHTMLCurrentStyle_get_overflow(current_style
, &str
);
2220 ok(hres
== S_OK
, "get_overflow failed: %08x\n", hres
);
2223 hres
= IHTMLCurrentStyle_get_borderWidth(current_style
, &str
);
2224 ok(hres
== S_OK
, "get_borderWidth failed: %08x\n", hres
);
2227 hres
= IHTMLCurrentStyle_get_margin(current_style
, &str
);
2228 ok(hres
== S_OK
, "get_margin failed: %08x\n", hres
);
2231 hres
= IHTMLCurrentStyle_get_padding(current_style
, &str
);
2232 ok(hres
== S_OK
, "get_padding failed: %08x\n", hres
);
2235 hres
= IHTMLCurrentStyle_get_fontWeight(current_style
, &v
);
2236 ok(hres
== S_OK
, "get_fontWeight failed: %08x\n", hres
);
2237 ok(V_VT(&v
) == VT_I4
, "V_VT(v) = %d\n", V_VT(&v
));
2238 ok( V_I4(&v
) == 400, "expect 400 got (%d)\n", V_I4(&v
));
2241 hres
= IHTMLCurrentStyle_get_fontSize(current_style
, &v
);
2242 ok(hres
== S_OK
, "get_fontSize failed: %08x\n", hres
);
2243 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v) = %d\n", V_VT(&v
));
2246 hres
= IHTMLCurrentStyle_get_left(current_style
, &v
);
2247 ok(hres
== S_OK
, "get_left failed: %08x\n", hres
);
2248 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v) = %d\n", V_VT(&v
));
2251 hres
= IHTMLCurrentStyle_get_top(current_style
, &v
);
2252 ok(hres
== S_OK
, "get_top failed: %08x\n", hres
);
2253 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v) = %d\n", V_VT(&v
));
2256 hres
= IHTMLCurrentStyle_get_width(current_style
, &v
);
2257 ok(hres
== S_OK
, "get_width failed: %08x\n", hres
);
2258 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v) = %d\n", V_VT(&v
));
2261 hres
= IHTMLCurrentStyle_get_height(current_style
, &v
);
2262 ok(hres
== S_OK
, "get_height failed: %08x\n", hres
);
2263 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v) = %d\n", V_VT(&v
));
2266 hres
= IHTMLCurrentStyle_get_paddingLeft(current_style
, &v
);
2267 ok(hres
== S_OK
, "get_paddingLeft failed: %08x\n", hres
);
2268 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v) = %d\n", V_VT(&v
));
2271 hres
= IHTMLCurrentStyle_get_zIndex(current_style
, &v
);
2272 ok(hres
== S_OK
, "get_zIndex failed: %08x\n", hres
);
2273 ok(V_VT(&v
) == VT_I4
, "V_VT(v) = %d\n", V_VT(&v
));
2274 ok( V_I4(&v
) == 1, "expect 1 got (%d)\n", V_I4(&v
));
2277 hres
= IHTMLCurrentStyle_get_verticalAlign(current_style
, &v
);
2278 ok(hres
== S_OK
, "get_verticalAlign failed: %08x\n", hres
);
2279 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v) = %d\n", V_VT(&v
));
2280 ok(!strcmp_wa(V_BSTR(&v
), "100px"), "get_verticalAlign returned %s\n", wine_dbgstr_w(V_BSTR(&v
)));
2283 hres
= IHTMLCurrentStyle_get_marginRight(current_style
, &v
);
2284 ok(hres
== S_OK
, "get_marginRight failed: %08x\n", hres
);
2285 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v) = %d\n", V_VT(&v
));
2288 hres
= IHTMLCurrentStyle_get_marginLeft(current_style
, &v
);
2289 ok(hres
== S_OK
, "get_marginLeft failed: %08x\n", hres
);
2290 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v) = %d\n", V_VT(&v
));
2293 hres
= IHTMLCurrentStyle_get_borderLeftWidth(current_style
, &v
);
2294 ok(hres
== S_OK
, "get_borderLeftWidth failed: %08x\n", hres
);
2295 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v) = %d\n", V_VT(&v
));
2299 hres
= IHTMLCurrentStyle_get_borderRightWidth(current_style
, &v
);
2300 ok(hres
== S_OK
, "get_borderRightWidth failed: %08x\n", hres
);
2301 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v) = %d\n", V_VT(&v
));
2304 hres
= IHTMLCurrentStyle_get_borderBottomWidth(current_style
, &v
);
2305 ok(hres
== S_OK
, "get_borderBottomWidth failed: %08x\n", hres
);
2306 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v) = %d\n", V_VT(&v
));
2309 hres
= IHTMLCurrentStyle_get_borderTopWidth(current_style
, &v
);
2310 ok(hres
== S_OK
, "get_borderTopWidth failed: %08x\n", hres
);
2311 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v) = %d\n", V_VT(&v
));
2314 hres
= IHTMLCurrentStyle_get_color(current_style
, &v
);
2315 ok(hres
== S_OK
, "get_color failed: %08x\n", hres
);
2316 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v) = %d\n", V_VT(&v
));
2319 hres
= IHTMLCurrentStyle_get_backgroundColor(current_style
, &v
);
2320 ok(hres
== S_OK
, "get_backgroundColor failed: %08x\n", hres
);
2321 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v) = %d\n", V_VT(&v
));
2324 hres
= IHTMLCurrentStyle_get_borderLeftColor(current_style
, &v
);
2325 ok(hres
== S_OK
, "get_borderLeftColor failed: %08x\n", hres
);
2326 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v) = %d\n", V_VT(&v
));
2329 hres
= IHTMLCurrentStyle_get_borderTopColor(current_style
, &v
);
2330 ok(hres
== S_OK
, "get_borderTopColor failed: %08x\n", hres
);
2331 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v) = %d\n", V_VT(&v
));
2334 hres
= IHTMLCurrentStyle_get_borderRightColor(current_style
, &v
);
2335 ok(hres
== S_OK
, "get_borderRightColor failed: %08x\n", hres
);
2336 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v) = %d\n", V_VT(&v
));
2339 hres
= IHTMLCurrentStyle_get_borderBottomColor(current_style
, &v
);
2340 ok(hres
== S_OK
, "get_borderBottomColor failed: %08x\n", hres
);
2341 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v) = %d\n", V_VT(&v
));
2344 hres
= IHTMLCurrentStyle_get_paddingTop(current_style
, &v
);
2345 ok(hres
== S_OK
, "get_paddingTop failed: %08x\n", hres
);
2346 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v) = %d\n", V_VT(&v
));
2349 hres
= IHTMLCurrentStyle_get_paddingRight(current_style
, &v
);
2350 ok(hres
== S_OK
, "get_paddingRight failed: %08x\n", hres
);
2351 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v) = %d\n", V_VT(&v
));
2354 hres
= IHTMLCurrentStyle_get_paddingBottom(current_style
, &v
);
2355 ok(hres
== S_OK
, "get_paddingRight failed: %08x\n", hres
);
2356 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v) = %d\n", V_VT(&v
));
2359 hres
= IHTMLCurrentStyle_get_letterSpacing(current_style
, &v
);
2360 ok(hres
== S_OK
, "get_letterSpacing failed: %08x\n", hres
);
2361 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v) = %d\n", V_VT(&v
));
2364 hres
= IHTMLCurrentStyle_get_marginTop(current_style
, &v
);
2365 ok(hres
== S_OK
, "get_marginTop failed: %08x\n", hres
);
2366 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v) = %d\n", V_VT(&v
));
2369 hres
= IHTMLCurrentStyle_get_marginBottom(current_style
, &v
);
2370 ok(hres
== S_OK
, "get_marginBottom failed: %08x\n", hres
);
2371 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v) = %d\n", V_VT(&v
));
2374 hres
= IHTMLCurrentStyle_get_right(current_style
, &v
);
2375 ok(hres
== S_OK
, "get_Right failed: %08x\n", hres
);
2376 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v) = %d\n", V_VT(&v
));
2379 hres
= IHTMLCurrentStyle_get_bottom(current_style
, &v
);
2380 ok(hres
== S_OK
, "get_bottom failed: %08x\n", hres
);
2381 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v) = %d\n", V_VT(&v
));
2384 hres
= IHTMLCurrentStyle_get_lineHeight(current_style
, &v
);
2385 ok(hres
== S_OK
, "get_lineHeight failed: %08x\n", hres
);
2386 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v) = %d\n", V_VT(&v
));
2389 hres
= IHTMLCurrentStyle_get_textIndent(current_style
, &v
);
2390 ok(hres
== S_OK
, "get_textIndent failed: %08x\n", hres
);
2391 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v) = %d\n", V_VT(&v
));
2395 static const char basic_test_str
[] = "<html><body><div id=\"divid\"></div/</body></html>";
2397 static void basic_style_test(IHTMLDocument2
*doc
)
2399 IHTMLCurrentStyle
*cstyle
;
2404 hres
= IHTMLDocument2_get_body(doc
, &elem
);
2405 ok(hres
== S_OK
, "get_body failed: %08x\n", hres
);
2407 hres
= IHTMLElement_get_style(elem
, &style
);
2408 ok(hres
== S_OK
, "get_style failed: %08x\n", hres
);
2410 test_body_style(style
);
2412 cstyle
= get_current_style(elem
);
2413 test_current_style(cstyle
);
2414 IHTMLCurrentStyle_Release(cstyle
);
2415 IHTMLElement_Release(elem
);
2417 elem
= get_element_by_id(doc
, "divid");
2418 test_style_filters(elem
);
2420 test_set_csstext(style
);
2421 IHTMLStyle_Release(style
);
2422 IHTMLElement_Release(elem
);
2425 static const char runtimestyle_test_str
[] =
2426 "<html><head><style>body {text-decoration: auto}</style></head><body></body></html>";
2428 static void runtimestyle_test(IHTMLDocument2
*doc
)
2430 IHTMLStyle
*style
, *runtime_style
;
2431 IHTMLElement2
*elem2
;
2436 hres
= IHTMLDocument2_get_body(doc
, &elem
);
2437 ok(hres
== S_OK
, "get_body failed: %08x\n", hres
);
2439 elem2
= get_elem2_iface((IUnknown
*)elem
);
2441 hres
= IHTMLElement2_get_runtimeStyle(elem2
, &runtime_style
);
2442 ok(hres
== S_OK
, "get_runtimeStyle failed: %08x\n", hres
);
2444 hres
= IHTMLElement_get_style(elem
, &style
);
2445 ok(hres
== S_OK
, "get_style failed: %08x\n", hres
);
2447 test_text_decoration(style
, NULL
);
2448 test_text_decoration(runtime_style
, NULL
);
2449 set_text_decoration(style
, "underline");
2450 test_text_decoration(style
, "underline");
2452 hres
= IHTMLStyle_get_textDecoration(style
, &str
);
2453 ok(hres
== S_OK
, "get_textDecoration failed: %08x\n", hres
);
2454 ok(broken(!str
) || !strcmp_wa(str
, "underline"), "textDecoration = %s\n", wine_dbgstr_w(str
));
2457 set_text_decoration(runtime_style
, "blink");
2458 test_text_decoration(runtime_style
, "blink");
2460 hres
= IHTMLStyle_get_textDecoration(style
, &str
);
2461 ok(hres
== S_OK
, "get_textDecoration failed: %08x\n", hres
);
2463 ok(!strcmp_wa(str
, "underline"), "textDecoration = %s\n", wine_dbgstr_w(str
));
2466 IHTMLStyle_Release(runtime_style
);
2467 IHTMLStyle_Release(style
);
2468 IHTMLElement2_Release(elem2
);
2469 IHTMLElement_Release(elem
);
2472 static IHTMLDocument2
*notif_doc
;
2473 static BOOL doc_complete
;
2475 static IHTMLDocument2
*create_document(void)
2477 IHTMLDocument2
*doc
;
2478 IHTMLDocument5
*doc5
;
2481 hres
= CoCreateInstance(&CLSID_HTMLDocument
, NULL
, CLSCTX_INPROC_SERVER
|CLSCTX_INPROC_HANDLER
,
2482 &IID_IHTMLDocument2
, (void**)&doc
);
2483 ok(hres
== S_OK
, "CoCreateInstance failed: %08x\n", hres
);
2487 hres
= IHTMLDocument2_QueryInterface(doc
, &IID_IHTMLDocument5
, (void**)&doc5
);
2489 win_skip("Could not get IHTMLDocument5, probably too old IE\n");
2490 IHTMLDocument2_Release(doc
);
2494 IHTMLDocument5_Release(doc5
);
2498 static HRESULT WINAPI
PropertyNotifySink_QueryInterface(IPropertyNotifySink
*iface
,
2499 REFIID riid
, void**ppv
)
2501 if(IsEqualGUID(&IID_IPropertyNotifySink
, riid
)) {
2506 ok(0, "unexpected call\n");
2507 return E_NOINTERFACE
;
2510 static ULONG WINAPI
PropertyNotifySink_AddRef(IPropertyNotifySink
*iface
)
2515 static ULONG WINAPI
PropertyNotifySink_Release(IPropertyNotifySink
*iface
)
2520 static HRESULT WINAPI
PropertyNotifySink_OnChanged(IPropertyNotifySink
*iface
, DISPID dispID
)
2522 if(dispID
== DISPID_READYSTATE
){
2526 hres
= IHTMLDocument2_get_readyState(notif_doc
, &state
);
2527 ok(hres
== S_OK
, "get_readyState failed: %08x\n", hres
);
2529 if(!strcmp_wa(state
, "complete"))
2530 doc_complete
= TRUE
;
2532 SysFreeString(state
);
2538 static HRESULT WINAPI
PropertyNotifySink_OnRequestEdit(IPropertyNotifySink
*iface
, DISPID dispID
)
2540 ok(0, "unexpected call\n");
2544 static IPropertyNotifySinkVtbl PropertyNotifySinkVtbl
= {
2545 PropertyNotifySink_QueryInterface
,
2546 PropertyNotifySink_AddRef
,
2547 PropertyNotifySink_Release
,
2548 PropertyNotifySink_OnChanged
,
2549 PropertyNotifySink_OnRequestEdit
2552 static IPropertyNotifySink PropertyNotifySink
= { &PropertyNotifySinkVtbl
};
2554 static IHTMLDocument2
*create_doc_with_string(const char *str
)
2556 IPersistStreamInit
*init
;
2558 IHTMLDocument2
*doc
;
2562 notif_doc
= doc
= create_document();
2566 doc_complete
= FALSE
;
2568 mem
= GlobalAlloc(0, len
);
2569 memcpy(mem
, str
, len
);
2570 CreateStreamOnHGlobal(mem
, TRUE
, &stream
);
2572 IHTMLDocument2_QueryInterface(doc
, &IID_IPersistStreamInit
, (void**)&init
);
2574 IPersistStreamInit_Load(init
, stream
);
2575 IPersistStreamInit_Release(init
);
2576 IStream_Release(stream
);
2581 static void do_advise(IUnknown
*unk
, REFIID riid
, IUnknown
*unk_advise
)
2583 IConnectionPointContainer
*container
;
2584 IConnectionPoint
*cp
;
2588 hres
= IUnknown_QueryInterface(unk
, &IID_IConnectionPointContainer
, (void**)&container
);
2589 ok(hres
== S_OK
, "QueryInterface(IID_IConnectionPointContainer) failed: %08x\n", hres
);
2591 hres
= IConnectionPointContainer_FindConnectionPoint(container
, riid
, &cp
);
2592 IConnectionPointContainer_Release(container
);
2593 ok(hres
== S_OK
, "FindConnectionPoint failed: %08x\n", hres
);
2595 hres
= IConnectionPoint_Advise(cp
, unk_advise
, &cookie
);
2596 IConnectionPoint_Release(cp
);
2597 ok(hres
== S_OK
, "Advise failed: %08x\n", hres
);
2600 typedef void (*style_test_t
)(IHTMLDocument2
*);
2602 static void run_test(const char *str
, style_test_t test
)
2604 IHTMLDocument2
*doc
;
2608 doc
= create_doc_with_string(str
);
2612 do_advise((IUnknown
*)doc
, &IID_IPropertyNotifySink
, (IUnknown
*)&PropertyNotifySink
);
2614 while(!doc_complete
&& GetMessage(&msg
, NULL
, 0, 0)) {
2615 TranslateMessage(&msg
);
2616 DispatchMessage(&msg
);
2621 ref
= IHTMLDocument2_Release(doc
);
2622 ok(!ref
|| broken(ref
== 1), /* Vista */
2631 run_test(basic_test_str
, basic_style_test
);
2632 run_test(runtimestyle_test_str
, runtimestyle_test
);