mshtml: Added IHTMLMetaElement::get_content implementation.
[wine] / dlls / mshtml / tests / style.c
1 /*
2  * Copyright 2007-2011 Jacek Caban for CodeWeavers
3  *
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.
8  *
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.
13  *
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
17  */
18
19 #define COBJMACROS
20 #define CONST_VTABLE
21
22 #include <wine/test.h>
23 #include <stdarg.h>
24 #include <stdio.h>
25
26 #include "windef.h"
27 #include "winbase.h"
28 #include "ole2.h"
29 #include "mshtml.h"
30 #include "mshtmhst.h"
31 #include "docobj.h"
32
33 static int strcmp_wa(LPCWSTR strw, const char *stra)
34 {
35     CHAR buf[512];
36     WideCharToMultiByte(CP_ACP, 0, strw, -1, buf, sizeof(buf), NULL, NULL);
37     return lstrcmpA(stra, buf);
38 }
39
40 static BSTR a2bstr(const char *str)
41 {
42     BSTR ret;
43     int len;
44
45     if(!str)
46         return NULL;
47
48     len = MultiByteToWideChar(CP_ACP, 0, str, -1, NULL, 0);
49     ret = SysAllocStringLen(NULL, len);
50     MultiByteToWideChar(CP_ACP, 0, str, -1, ret, len);
51
52     return ret;
53 }
54
55 #define get_elem2_iface(u) _get_elem2_iface(__LINE__,u)
56 static IHTMLElement2 *_get_elem2_iface(unsigned line, IUnknown *unk)
57 {
58     IHTMLElement2 *elem;
59     HRESULT hres;
60
61     hres = IUnknown_QueryInterface(unk, &IID_IHTMLElement2, (void**)&elem);
62     ok_(__FILE__,line) (hres == S_OK, "Could not get IHTMLElement2: %08x\n", hres);
63     return elem;
64 }
65
66 static IHTMLElement *get_element_by_id(IHTMLDocument2 *doc, const char *id)
67 {
68     HRESULT hres;
69     IHTMLDocument3 *doc3;
70     IHTMLElement *result;
71     BSTR idW = a2bstr(id);
72
73     hres = IHTMLDocument2_QueryInterface(doc, &IID_IHTMLDocument3, (void**)&doc3);
74     ok(hres == S_OK, "QueryInterface(IID_IHTMLDocument3) failed: %08x\n", hres);
75
76     hres = IHTMLDocument3_getElementById(doc3, idW, &result);
77     ok(hres == S_OK, "getElementById failed: %08x\n", hres);
78     ok(result != NULL, "result == NULL\n");
79     SysFreeString(idW);
80
81     IHTMLDocument3_Release(doc3);
82     return result;
83 }
84
85 #define get_current_style(e) _get_current_style(__LINE__,e)
86 static IHTMLCurrentStyle *_get_current_style(unsigned line, IHTMLElement *elem)
87 {
88     IHTMLCurrentStyle *cstyle;
89     IHTMLElement2 *elem2;
90     HRESULT hres;
91
92     hres = IHTMLElement_QueryInterface(elem, &IID_IHTMLElement2, (void**)&elem2);
93     ok(hres == S_OK, "Could not get IHTMLElement2 iface: %08x\n", hres);
94
95     cstyle = NULL;
96     hres = IHTMLElement2_get_currentStyle(elem2, &cstyle);
97     ok(hres == S_OK, "get_currentStyle failed: %08x\n", hres);
98     ok(cstyle != NULL, "cstyle = %p\n", cstyle);
99
100     IHTMLElement2_Release(elem2);
101     return cstyle;
102 }
103
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)
106 {
107     HRESULT hres;
108     DISPID dispid;
109
110     hres = IHTMLStyle_GetIDsOfNames(pStyle, &IID_NULL, &Name, 1,
111                         LOCALE_USER_DEFAULT, &dispid);
112     ok_(__FILE__,line) (hres == S_OK, "GetIDsOfNames: %08x\n", hres);
113     if(hres == S_OK)
114     {
115         DISPPARAMS params = {NULL,NULL,0,0};
116         DISPID dispidNamed = DISPID_PROPERTYPUT;
117         VARIANT ret;
118         VARIANT vDefault;
119         VARIANTARG arg;
120
121         hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
122             DISPATCH_PROPERTYGET, &params, &vDefault, NULL, NULL);
123         ok_(__FILE__,line) (hres == S_OK, "get_default. ret: %08x\n", hres);
124
125         params.cArgs = 1;
126         params.cNamedArgs = 1;
127         params.rgdispidNamedArgs = &dispidNamed;
128         V_VT(&arg) = VT_BSTR;
129         V_BSTR(&arg) = a2bstr("none");
130         params.rgvarg = &arg;
131         hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
132             DISPATCH_PROPERTYPUT, &params, &ret, NULL, NULL);
133         ok_(__FILE__,line) (hres == S_OK, "none. ret: %08x\n", hres);
134         VariantClear(&arg);
135
136         V_VT(&arg) = VT_BSTR;
137         V_BSTR(&arg) = a2bstr("dotted");
138         hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
139             DISPATCH_PROPERTYPUT, &params, &ret, NULL, NULL);
140         ok_(__FILE__,line) (hres == S_OK, "dotted. ret: %08x\n", hres);
141         VariantClear(&arg);
142
143         V_VT(&arg) = VT_BSTR;
144         V_BSTR(&arg) = a2bstr("dashed");
145         hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
146         DISPATCH_PROPERTYPUT, &params, &ret, NULL, NULL);
147         ok_(__FILE__,line) (hres == S_OK, "dashed. ret: %08x\n", hres);
148         VariantClear(&arg);
149
150         V_VT(&arg) = VT_BSTR;
151         V_BSTR(&arg) = a2bstr("solid");
152         hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
153             DISPATCH_PROPERTYPUT, &params, &ret, NULL, NULL);
154         ok_(__FILE__,line) (hres == S_OK, "solid. ret: %08x\n", hres);
155         VariantClear(&arg);
156
157         V_VT(&arg) = VT_BSTR;
158         V_BSTR(&arg) = a2bstr("double");
159         hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
160             DISPATCH_PROPERTYPUT, &params, &ret, NULL, NULL);
161         ok_(__FILE__,line) (hres == S_OK, "double. ret: %08x\n", hres);
162         VariantClear(&arg);
163
164         V_VT(&arg) = VT_BSTR;
165         V_BSTR(&arg) = a2bstr("groove");
166         hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
167             DISPATCH_PROPERTYPUT, &params, &ret, NULL, NULL);
168         ok_(__FILE__,line) (hres == S_OK, "groove. ret: %08x\n", hres);
169         VariantClear(&arg);
170
171         V_VT(&arg) = VT_BSTR;
172         V_BSTR(&arg) = a2bstr("ridge");
173         hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
174             DISPATCH_PROPERTYPUT, &params, &ret, NULL, NULL);
175         ok_(__FILE__,line) (hres == S_OK, "ridge. ret: %08x\n", hres);
176         VariantClear(&arg);
177
178         V_VT(&arg) = VT_BSTR;
179         V_BSTR(&arg) = a2bstr("inset");
180         hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
181             DISPATCH_PROPERTYPUT, &params, &ret, NULL, NULL);
182         ok_(__FILE__,line) (hres == S_OK, "inset. ret: %08x\n", hres);
183         VariantClear(&arg);
184
185         V_VT(&arg) = VT_BSTR;
186         V_BSTR(&arg) = a2bstr("outset");
187         hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
188             DISPATCH_PROPERTYPUT, &params, &ret, NULL, NULL);
189         ok_(__FILE__,line) (hres == S_OK, "outset. ret: %08x\n", hres);
190         VariantClear(&arg);
191
192         V_VT(&arg) = VT_BSTR;
193         V_BSTR(&arg) = a2bstr("invalid");
194         hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
195             DISPATCH_PROPERTYPUT, &params, &ret, NULL, NULL);
196         ok_(__FILE__,line) (FAILED(hres), "invalid value passed.\n");
197         VariantClear(&arg);
198
199         params.rgvarg = &vDefault;
200         hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
201             DISPATCH_PROPERTYPUT, &params, &ret, NULL, NULL);
202         ok_(__FILE__,line) (hres == S_OK, "default. ret: %08x\n", hres);
203         VariantClear(&vDefault);
204     }
205 }
206
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)
209 {
210     BSTR text = (void*)0xdeadbeef;
211     HRESULT hres;
212
213     hres = IHTMLStyle_get_cssText(style, &text);
214     ok_(__FILE__,line)(hres == S_OK, "get_cssText failed: %08x\n", hres);
215     if(extext)
216         ok_(__FILE__,line)(!strcmp_wa(text, extext), "cssText = %s\n", wine_dbgstr_w(text));
217     else
218         ok_(__FILE__,line)(!text, "cssText = %s\n", wine_dbgstr_w(text));
219
220     SysFreeString(text);
221 }
222
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)
225 {
226     BSTR tmp;
227     HRESULT hres;
228
229     tmp = a2bstr(text);
230     hres = IHTMLStyle_put_cssText(style, tmp);
231     ok_(__FILE__,line)(hres == S_OK, "put_cssText failed: %08x\n", hres);
232     SysFreeString(tmp);
233 }
234
235 static void test_set_csstext(IHTMLStyle *style)
236 {
237     VARIANT v;
238     HRESULT hres;
239
240     test_style_set_csstext(style, "background-color: black;");
241
242     hres = IHTMLStyle_get_backgroundColor(style, &v);
243     ok(hres == S_OK, "get_backgroundColor: %08x\n", hres);
244     ok(V_VT(&v) == VT_BSTR, "type failed: %d\n", V_VT(&v));
245     ok(!strcmp_wa(V_BSTR(&v), "black"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
246     VariantClear(&v);
247 }
248
249 static void test_style2(IHTMLStyle2 *style2)
250 {
251     VARIANT v;
252     BSTR str;
253     HRESULT hres;
254
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");
259
260     str = a2bstr("absolute");
261     hres = IHTMLStyle2_put_position(style2, str);
262     ok(hres == S_OK, "put_position failed: %08x\n", hres);
263     SysFreeString(str);
264
265     str = NULL;
266     hres = IHTMLStyle2_get_position(style2, &str);
267     ok(hres == S_OK, "get_position failed: %08x\n", hres);
268     ok(!strcmp_wa(str, "absolute"), "get_position returned %s\n", wine_dbgstr_w(str));
269     SysFreeString(str);
270
271     /* Test right */
272     V_VT(&v) = VT_EMPTY;
273     hres = IHTMLStyle2_get_right(style2, &v);
274     ok(hres == S_OK, "get_top failed: %08x\n", hres);
275     ok(V_VT(&v) == VT_BSTR, "V_VT(right)=%d\n", V_VT(&v));
276     ok(!V_BSTR(&v), "V_BSTR(right) != NULL\n");
277     VariantClear(&v);
278
279     V_VT(&v) = VT_BSTR;
280     V_BSTR(&v) = a2bstr("3px");
281     hres = IHTMLStyle2_put_right(style2, v);
282     ok(hres == S_OK, "put_right failed: %08x\n", hres);
283     VariantClear(&v);
284
285     V_VT(&v) = VT_EMPTY;
286     hres = IHTMLStyle2_get_right(style2, &v);
287     ok(hres == S_OK, "get_right failed: %08x\n", hres);
288     ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
289     ok(!strcmp_wa(V_BSTR(&v), "3px"), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
290     VariantClear(&v);
291
292     /* direction */
293     str = (void*)0xdeadbeef;
294     hres = IHTMLStyle2_get_direction(style2, &str);
295     ok(hres == S_OK, "get_direction failed: %08x\n", hres);
296     ok(!str, "str = %s\n", wine_dbgstr_w(str));
297
298     str = a2bstr("ltr");
299     hres = IHTMLStyle2_put_direction(style2, str);
300     ok(hres == S_OK, "put_direction failed: %08x\n", hres);
301     SysFreeString(str);
302
303     str = NULL;
304     hres = IHTMLStyle2_get_direction(style2, &str);
305     ok(hres == S_OK, "get_direction failed: %08x\n", hres);
306     ok(!strcmp_wa(str, "ltr"), "str = %s\n", wine_dbgstr_w(str));
307     SysFreeString(str);
308 }
309
310 static void test_style3(IHTMLStyle3 *style3)
311 {
312     BSTR str;
313     HRESULT hres;
314
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");
319
320     str = a2bstr("break-word");
321     hres = IHTMLStyle3_put_wordWrap(style3, str);
322     ok(hres == S_OK, "put_wordWrap failed: %08x\n", hres);
323     SysFreeString(str);
324
325     str = NULL;
326     hres = IHTMLStyle3_get_wordWrap(style3, &str);
327     ok(hres == S_OK, "get_wordWrap failed: %08x\n", hres);
328     ok(!strcmp_wa(str, "break-word"), "get_wordWrap returned %s\n", wine_dbgstr_w(str));
329     SysFreeString(str);
330 }
331
332 static void test_style4(IHTMLStyle4 *style4)
333 {
334     HRESULT hres;
335     VARIANT v;
336     VARIANT vdefault;
337
338     hres = IHTMLStyle4_get_minHeight(style4, &vdefault);
339     ok(hres == S_OK, "get_minHeight failed: %08x\n", hres);
340
341     V_VT(&v) = VT_BSTR;
342     V_BSTR(&v) = a2bstr("10px");
343     hres = IHTMLStyle4_put_minHeight(style4, v);
344     ok(hres == S_OK, "put_minHeight failed: %08x\n", hres);
345     VariantClear(&v);
346
347     hres = IHTMLStyle4_get_minHeight(style4, &v);
348     ok(hres == S_OK, "get_minHeight failed: %08x\n", hres);
349     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
350     ok( !strcmp_wa(V_BSTR(&v), "10px"), "expect 10px got (%s)\n", wine_dbgstr_w(V_BSTR(&v)));
351     VariantClear(&v);
352
353     hres = IHTMLStyle4_put_minHeight(style4, vdefault);
354     ok(hres == S_OK, "put_minHeight failed: %08x\n", hres);
355     VariantClear(&vdefault);
356 }
357
358 static void test_body_style(IHTMLStyle *style)
359 {
360     IHTMLStyle2 *style2;
361     IHTMLStyle3 *style3;
362     IHTMLStyle4 *style4;
363     VARIANT_BOOL b;
364     VARIANT v;
365     BSTR str;
366     HRESULT hres;
367     float f;
368     BSTR sOverflowDefault;
369     BSTR sDefault;
370     VARIANT vDefault;
371
372     test_style_csstext(style, NULL);
373
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));
377
378     V_VT(&v) = VT_NULL;
379     hres = IHTMLStyle_get_marginRight(style, &v);
380     ok(hres == S_OK, "get_marginRight failed: %08x\n", hres);
381     ok(V_VT(&v) == VT_BSTR, "V_VT(marginRight) = %d\n", V_VT(&v));
382     ok(!V_BSTR(&v), "V_BSTR(marginRight) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
383
384     V_VT(&v) = VT_I4;
385     V_I4(&v) = 6;
386     hres = IHTMLStyle_put_marginRight(style, v);
387     ok(hres == S_OK, "put_marginRight failed: %08x\n", hres);
388
389     V_VT(&v) = VT_NULL;
390     hres = IHTMLStyle_get_marginRight(style, &v);
391     ok(hres == S_OK, "get_marginRight failed: %08x\n", hres);
392     ok(V_VT(&v) == VT_BSTR, "V_VT(marginRight) = %d\n", V_VT(&v));
393     ok(!strcmp_wa(V_BSTR(&v), "6px"), "V_BSTR(marginRight) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
394
395     V_VT(&v) = VT_NULL;
396     hres = IHTMLStyle_get_marginBottom(style, &v);
397     ok(hres == S_OK, "get_marginBottom failed: %08x\n", hres);
398     ok(V_VT(&v) == VT_BSTR, "V_VT(marginBottom) = %d\n", V_VT(&v));
399     ok(!V_BSTR(&v), "V_BSTR(marginBottom) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
400
401     V_VT(&v) = VT_I4;
402     V_I4(&v) = 6;
403     hres = IHTMLStyle_put_marginBottom(style, v);
404     ok(hres == S_OK, "put_marginBottom failed: %08x\n", hres);
405
406     V_VT(&v) = VT_NULL;
407     hres = IHTMLStyle_get_marginBottom(style, &v);
408     ok(hres == S_OK, "get_marginBottom failed: %08x\n", hres);
409     ok(V_VT(&v) == VT_BSTR, "V_VT(marginBottom) = %d\n", V_VT(&v));
410     ok(!strcmp_wa(V_BSTR(&v), "6px"), "V_BSTR(marginBottom) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
411
412     V_VT(&v) = VT_NULL;
413     hres = IHTMLStyle_get_marginLeft(style, &v);
414     ok(hres == S_OK, "get_marginLeft failed: %08x\n", hres);
415     ok(V_VT(&v) == VT_BSTR, "V_VT(marginLeft) = %d\n", V_VT(&v));
416     ok(!V_BSTR(&v), "V_BSTR(marginLeft) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
417
418     V_VT(&v) = VT_I4;
419     V_I4(&v) = 6;
420     hres = IHTMLStyle_put_marginLeft(style, v);
421     ok(hres == S_OK, "put_marginLeft failed: %08x\n", hres);
422
423     V_VT(&v) = VT_NULL;
424     hres = IHTMLStyle_get_marginLeft(style, &v);
425     ok(hres == S_OK, "get_marginLeft failed: %08x\n", hres);
426     ok(V_VT(&v) == VT_BSTR, "V_VT(marginLeft) = %d\n", V_VT(&v));
427     ok(!strcmp_wa(V_BSTR(&v), "6px"), "V_BSTR(marginLeft) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
428
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));
433
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));
438
439     hres = IHTMLStyle_get_fontWeight(style, &sDefault);
440     ok(hres == S_OK, "get_fontWeight failed: %08x\n", hres);
441
442     str = a2bstr("test");
443     hres = IHTMLStyle_put_fontWeight(style, str);
444     ok(hres == E_INVALIDARG, "put_fontWeight failed: %08x\n", hres);
445     SysFreeString(str);
446
447     str = a2bstr("bold");
448     hres = IHTMLStyle_put_fontWeight(style, str);
449     ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
450     SysFreeString(str);
451
452     str = a2bstr("bolder");
453     hres = IHTMLStyle_put_fontWeight(style, str);
454     ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
455     SysFreeString(str);
456
457     str = a2bstr("lighter");
458     hres = IHTMLStyle_put_fontWeight(style, str);
459     ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
460     SysFreeString(str);
461
462     str = a2bstr("100");
463     hres = IHTMLStyle_put_fontWeight(style, str);
464     ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
465     SysFreeString(str);
466
467     str = a2bstr("200");
468     hres = IHTMLStyle_put_fontWeight(style, str);
469     ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
470     SysFreeString(str);
471
472     str = a2bstr("300");
473     hres = IHTMLStyle_put_fontWeight(style, str);
474     ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
475     SysFreeString(str);
476
477     str = a2bstr("400");
478     hres = IHTMLStyle_put_fontWeight(style, str);
479     ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
480     SysFreeString(str);
481
482     str = a2bstr("500");
483     hres = IHTMLStyle_put_fontWeight(style, str);
484     ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
485     SysFreeString(str);
486
487     str = a2bstr("600");
488     hres = IHTMLStyle_put_fontWeight(style, str);
489     ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
490     SysFreeString(str);
491
492     str = a2bstr("700");
493     hres = IHTMLStyle_put_fontWeight(style, str);
494     ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
495     SysFreeString(str);
496
497     str = a2bstr("800");
498     hres = IHTMLStyle_put_fontWeight(style, str);
499     ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
500     SysFreeString(str);
501
502     str = a2bstr("900");
503     hres = IHTMLStyle_put_fontWeight(style, str);
504     ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
505     SysFreeString(str);
506
507     hres = IHTMLStyle_get_fontWeight(style, &str);
508     ok(hres == S_OK, "get_fontWeight failed: %08x\n", hres);
509     ok(!strcmp_wa(str, "900"), "str != style900\n");
510     SysFreeString(str);
511
512     hres = IHTMLStyle_put_fontWeight(style, sDefault);
513     ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
514     SysFreeString(sDefault);
515
516     /* font Variant */
517     hres = IHTMLStyle_get_fontVariant(style, NULL);
518     ok(hres == E_INVALIDARG, "get_fontVariant failed: %08x\n", hres);
519
520     hres = IHTMLStyle_get_fontVariant(style, &sDefault);
521     ok(hres == S_OK, "get_fontVariant failed: %08x\n", hres);
522
523     str = a2bstr("test");
524     hres = IHTMLStyle_put_fontVariant(style, str);
525     ok(hres == E_INVALIDARG, "fontVariant failed: %08x\n", hres);
526     SysFreeString(str);
527
528     str = a2bstr("small-caps");
529     hres = IHTMLStyle_put_fontVariant(style, str);
530     ok(hres == S_OK, "fontVariant failed: %08x\n", hres);
531     SysFreeString(str);
532
533     str = a2bstr("normal");
534     hres = IHTMLStyle_put_fontVariant(style, str);
535     ok(hres == S_OK, "fontVariant failed: %08x\n", hres);
536     SysFreeString(str);
537
538     hres = IHTMLStyle_put_fontVariant(style, sDefault);
539     ok(hres == S_OK, "fontVariant failed: %08x\n", hres);
540     SysFreeString(sDefault);
541
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));
546
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));
551
552     V_VT(&v) = VT_NULL;
553     hres = IHTMLStyle_get_fontSize(style, &v);
554     ok(hres == S_OK, "get_fontSize failed: %08x\n", hres);
555     ok(V_VT(&v) == VT_BSTR, "V_VT(fontSize) = %d\n", V_VT(&v));
556     ok(!V_BSTR(&v), "V_BSTR(fontSize) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
557
558     V_VT(&v) = VT_I4;
559     V_I4(&v) = 12;
560     hres = IHTMLStyle_put_fontSize(style, v);
561     ok(hres == S_OK, "put_fontSize failed: %08x\n", hres);
562
563     V_VT(&v) = VT_NULL;
564     hres = IHTMLStyle_get_fontSize(style, &v);
565     ok(hres == S_OK, "get_fontSize failed: %08x\n", hres);
566     ok(V_VT(&v) == VT_BSTR, "V_VT(fontSize) = %d\n", V_VT(&v));
567     ok(!strcmp_wa(V_BSTR(&v), "12px"), "V_BSTR(fontSize) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
568
569     V_VT(&v) = VT_NULL;
570     hres = IHTMLStyle_get_color(style, &v);
571     ok(hres == S_OK, "get_color failed: %08x\n", hres);
572     ok(V_VT(&v) == VT_BSTR, "V_VT(color) = %d\n", V_VT(&v));
573     ok(!V_BSTR(&v), "V_BSTR(color) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
574
575     V_VT(&v) = VT_I4;
576     V_I4(&v) = 0xfdfd;
577     hres = IHTMLStyle_put_color(style, v);
578     ok(hres == S_OK, "put_color failed: %08x\n", hres);
579
580     V_VT(&v) = VT_NULL;
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));
584     todo_wine
585     ok(!strcmp_wa(V_BSTR(&v), "#00fdfd"), "V_BSTR(color) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
586
587     b = 0xfefe;
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);
591
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);
595
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);
599
600     hres = IHTMLStyle_put_textDecorationUnderline(style, VARIANT_FALSE);
601     ok(hres == S_OK, "put_textDecorationUnderline failed: %08x\n", hres);
602
603     b = 0xfefe;
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);
607
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);
611
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);
615
616     hres = IHTMLStyle_put_textDecorationLineThrough(style, VARIANT_FALSE);
617     ok(hres == S_OK, "put_textDecorationLineThrough failed: %08x\n", hres);
618
619     b = 0xfefe;
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);
623
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);
627
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);
631
632     hres = IHTMLStyle_put_textDecorationNone(style, VARIANT_FALSE);
633     ok(hres == S_OK, "put_textDecorationNone failed: %08x\n", hres);
634
635     b = 0xfefe;
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);
639
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);
643
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);
647
648     hres = IHTMLStyle_put_textDecorationOverline(style, VARIANT_FALSE);
649     ok(hres == S_OK, "put_textDecorationOverline failed: %08x\n", hres);
650
651     b = 0xfefe;
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);
655
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);
659
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);
663
664     hres = IHTMLStyle_put_textDecorationBlink(style, VARIANT_FALSE);
665     ok(hres == S_OK, "textDecorationBlink failed: %08x\n", hres);
666
667     hres = IHTMLStyle_get_textDecoration(style, &sDefault);
668     ok(hres == S_OK, "get_textDecoration failed: %08x\n", hres);
669
670     str = a2bstr("invalid");
671     hres = IHTMLStyle_put_textDecoration(style, str);
672     ok(hres == E_INVALIDARG, "put_textDecoration failed: %08x\n", hres);
673     SysFreeString(str);
674
675     str = a2bstr("none");
676     hres = IHTMLStyle_put_textDecoration(style, str);
677     ok(hres == S_OK, "put_textDecoration failed: %08x\n", hres);
678     SysFreeString(str);
679
680     str = a2bstr("underline");
681     hres = IHTMLStyle_put_textDecoration(style, str);
682     ok(hres == S_OK, "put_textDecoration failed: %08x\n", hres);
683     SysFreeString(str);
684
685     str = a2bstr("overline");
686     hres = IHTMLStyle_put_textDecoration(style, str);
687     ok(hres == S_OK, "put_textDecoration failed: %08x\n", hres);
688     SysFreeString(str);
689
690     str = a2bstr("line-through");
691     hres = IHTMLStyle_put_textDecoration(style, str);
692     ok(hres == S_OK, "put_textDecoration failed: %08x\n", hres);
693     SysFreeString(str);
694
695     str = a2bstr("blink");
696     hres = IHTMLStyle_put_textDecoration(style, str);
697     ok(hres == S_OK, "put_textDecoration failed: %08x\n", hres);
698     SysFreeString(str);
699
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");
703     SysFreeString(str);
704
705     hres = IHTMLStyle_put_textDecoration(style, sDefault);
706     ok(hres == S_OK, "put_textDecoration failed: %08x\n", hres);
707     SysFreeString(sDefault);
708
709     hres = IHTMLStyle_get_posWidth(style, NULL);
710     ok(hres == E_POINTER, "get_posWidth failed: %08x\n", hres);
711
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);
715
716     V_VT(&v) = VT_EMPTY;
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));
721
722     hres = IHTMLStyle_put_posWidth(style, 2.2);
723     ok(hres == S_OK, "put_posWidth failed: %08x\n", hres);
724
725     hres = IHTMLStyle_get_posWidth(style, &f);
726     ok(hres == S_OK, "get_posWidth failed: %08x\n", hres);
727     ok(f == 2.0f ||
728        f == 2.2f, /* IE8 */
729        "f = %f\n", f);
730
731     V_VT(&v) = VT_BSTR;
732     V_BSTR(&v) = a2bstr("auto");
733     hres = IHTMLStyle_put_width(style, v);
734     ok(hres == S_OK, "put_width failed: %08x\n", hres);
735     VariantClear(&v);
736
737     V_VT(&v) = VT_EMPTY;
738     hres = IHTMLStyle_get_width(style, &v);
739     ok(hres == S_OK, "get_width failed: %08x\n", hres);
740     ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
741     ok(!strcmp_wa(V_BSTR(&v), "auto"), "V_BSTR(v)=%s\n", wine_dbgstr_w(V_BSTR(&v)));
742     VariantClear(&v);
743
744     V_VT(&v) = VT_I4;
745     V_I4(&v) = 100;
746     hres = IHTMLStyle_put_width(style, v);
747     ok(hres == S_OK, "put_width failed: %08x\n", hres);
748
749     V_VT(&v) = VT_EMPTY;
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)));
754     VariantClear(&v);
755
756     /* margin tests */
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));
761
762     str = a2bstr("1");
763     hres = IHTMLStyle_put_margin(style, str);
764     ok(hres == S_OK, "put_margin failed: %08x\n", hres);
765     SysFreeString(str);
766
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));
770     SysFreeString(str);
771
772     hres = IHTMLStyle_put_margin(style, NULL);
773     ok(hres == S_OK, "put_margin failed: %08x\n", hres);
774
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)));
780
781     V_VT(&v) = VT_BSTR;
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);
786
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)));
792     VariantClear(&v);
793
794     V_VT(&v) = VT_I4;
795     V_I4(&v) = 5;
796     hres = IHTMLStyle_put_marginTop(style, v);
797     ok(hres == S_OK, "put_marginTop failed: %08x\n", hres);
798
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)));
804     VariantClear(&v);
805
806     str = NULL;
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");
810     SysFreeString(str);
811
812     str = a2bstr("1px");
813     hres = IHTMLStyle_put_border(style, str);
814     ok(hres == S_OK, "put_border failed: %08x\n", hres);
815     SysFreeString(str);
816
817     V_VT(&v) = VT_EMPTY;
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");
822     VariantClear(&v);
823
824     /* Test posLeft */
825     hres = IHTMLStyle_get_posLeft(style, NULL);
826     ok(hres == E_POINTER, "get_posLeft failed: %08x\n", hres);
827
828     f = 1.0f;
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);
832
833     hres = IHTMLStyle_put_posLeft(style, 4.9f);
834     ok(hres == S_OK, "put_posLeft failed: %08x\n", hres);
835
836     hres = IHTMLStyle_get_posLeft(style, &f);
837     ok(hres == S_OK, "get_posLeft failed: %08x\n", hres);
838     ok(f == 4.0 ||
839        f == 4.9f, /* IE8 */
840        "expected 4.0 or 4.9 (IE8) got %f\n", f);
841
842     /* Ensure left is updated correctly. */
843     V_VT(&v) = VT_EMPTY;
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)));
850     VariantClear(&v);
851
852     /* Test left */
853     V_VT(&v) = VT_BSTR;
854     V_BSTR(&v) = a2bstr("3px");
855     hres = IHTMLStyle_put_left(style, v);
856     ok(hres == S_OK, "put_left failed: %08x\n", hres);
857     VariantClear(&v);
858
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);
862
863     V_VT(&v) = VT_EMPTY;
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)));
868     VariantClear(&v);
869
870     V_VT(&v) = VT_NULL;
871     hres = IHTMLStyle_put_left(style, v);
872     ok(hres == S_OK, "put_left failed: %08x\n", hres);
873
874     V_VT(&v) = VT_EMPTY;
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");
879     VariantClear(&v);
880
881     V_VT(&v) = VT_EMPTY;
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");
886     VariantClear(&v);
887
888     /* Test posTop */
889     hres = IHTMLStyle_get_posTop(style, NULL);
890     ok(hres == E_POINTER, "get_posTop failed: %08x\n", hres);
891
892     f = 1.0f;
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);
896
897     hres = IHTMLStyle_put_posTop(style, 4.9f);
898     ok(hres == S_OK, "put_posTop failed: %08x\n", hres);
899
900     hres = IHTMLStyle_get_posTop(style, &f);
901     ok(hres == S_OK, "get_posTop failed: %08x\n", hres);
902     ok(f == 4.0 ||
903        f == 4.9f, /* IE8 */
904        "expected 4.0 or 4.9 (IE8) got %f\n", f);
905
906     V_VT(&v) = VT_BSTR;
907     V_BSTR(&v) = a2bstr("3px");
908     hres = IHTMLStyle_put_top(style, v);
909     ok(hres == S_OK, "put_top failed: %08x\n", hres);
910     VariantClear(&v);
911
912     V_VT(&v) = VT_EMPTY;
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)));
917     VariantClear(&v);
918
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);
922
923     V_VT(&v) = VT_NULL;
924     hres = IHTMLStyle_put_top(style, v);
925     ok(hres == S_OK, "put_top failed: %08x\n", hres);
926
927     V_VT(&v) = VT_EMPTY;
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");
932     VariantClear(&v);
933
934     /* Test posHeight */
935     hres = IHTMLStyle_get_posHeight(style, NULL);
936     ok(hres == E_POINTER, "get_posHeight failed: %08x\n", hres);
937
938     V_VT(&v) = VT_EMPTY;
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");
943     VariantClear(&v);
944
945     f = 1.0f;
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);
949
950     hres = IHTMLStyle_put_posHeight(style, 4.9f);
951     ok(hres == S_OK, "put_posHeight failed: %08x\n", hres);
952
953     hres = IHTMLStyle_get_posHeight(style, &f);
954     ok(hres == S_OK, "get_posHeight failed: %08x\n", hres);
955     ok(f == 4.0 ||
956        f == 4.9f, /* IE8 */
957        "expected 4.0 or 4.9 (IE8) got %f\n", f);
958
959     V_VT(&v) = VT_BSTR;
960     V_BSTR(&v) = a2bstr("70px");
961     hres = IHTMLStyle_put_height(style, v);
962     ok(hres == S_OK, "put_height failed: %08x\n", hres);
963     VariantClear(&v);
964
965     V_VT(&v) = VT_EMPTY;
966     hres = IHTMLStyle_get_height(style, &v);
967     ok(hres == S_OK, "get_height failed: %08x\n", hres);
968     ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
969     ok(!strcmp_wa(V_BSTR(&v), "70px"), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
970     VariantClear(&v);
971
972     V_VT(&v) = VT_I4;
973     V_I4(&v) = 64;
974     hres = IHTMLStyle_put_height(style, v);
975     ok(hres == S_OK, "put_height failed: %08x\n", hres);
976
977     V_VT(&v) = VT_EMPTY;
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)));
982     VariantClear(&v);
983
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);
987
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");
992     SysFreeString(str);
993
994     str = a2bstr("default");
995     hres = IHTMLStyle_put_cursor(style, str);
996     ok(hres == S_OK, "put_cursor failed: %08x\n", hres);
997     SysFreeString(str);
998
999     str = NULL;
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));
1003     SysFreeString(str);
1004
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");
1010     VariantClear(&v);
1011
1012     V_VT(&v) = VT_BSTR;
1013     V_BSTR(&v) = a2bstr("middle");
1014     hres = IHTMLStyle_put_verticalAlign(style, v);
1015     ok(hres == S_OK, "put_vertivalAlign failed: %08x\n", hres);
1016     VariantClear(&v);
1017
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)));
1023     VariantClear(&v);
1024
1025     str = (void*)0xdeadbeef;
1026     hres = IHTMLStyle_get_textAlign(style, &str);
1027     ok(hres == S_OK, "get_textAlign failed: %08x\n", hres);
1028     ok(!str, "textAlign != NULL\n");
1029
1030     str = a2bstr("center");
1031     hres = IHTMLStyle_put_textAlign(style, str);
1032     ok(hres == S_OK, "put_textAlign failed: %08x\n", hres);
1033     SysFreeString(str);
1034
1035     str = NULL;
1036     hres = IHTMLStyle_get_textAlign(style, &str);
1037     ok(hres == S_OK, "get_textAlign failed: %08x\n", hres);
1038     ok(!strcmp_wa(str, "center"), "textAlign = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1039     SysFreeString(str);
1040
1041     str = (void*)0xdeadbeef;
1042     hres = IHTMLStyle_get_filter(style, &str);
1043     ok(hres == S_OK, "get_filter failed: %08x\n", hres);
1044     ok(!str, "filter != NULL\n");
1045
1046     str = a2bstr("alpha(opacity=100)");
1047     hres = IHTMLStyle_put_filter(style, str);
1048     ok(hres == S_OK, "put_filter failed: %08x\n", hres);
1049     SysFreeString(str);
1050
1051     V_VT(&v) = VT_EMPTY;
1052     hres = IHTMLStyle_get_zIndex(style, &v);
1053     ok(hres == S_OK, "get_zIndex failed: %08x\n", hres);
1054     ok(V_VT(&v) == VT_I4, "V_VT(v)=%d\n", V_VT(&v));
1055     ok(!V_I4(&v), "V_I4(v) != 0\n");
1056     VariantClear(&v);
1057
1058     V_VT(&v) = VT_BSTR;
1059     V_BSTR(&v) = a2bstr("1");
1060     hres = IHTMLStyle_put_zIndex(style, v);
1061     ok(hres == S_OK, "put_zIndex failed: %08x\n", hres);
1062     VariantClear(&v);
1063
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) == 1, "V_I4(v) = %d\n", V_I4(&v));
1069     VariantClear(&v);
1070
1071     /* fontStyle */
1072     hres = IHTMLStyle_get_fontStyle(style, &sDefault);
1073     ok(hres == S_OK, "get_fontStyle failed: %08x\n", hres);
1074
1075     str = a2bstr("test");
1076     hres = IHTMLStyle_put_fontStyle(style, str);
1077     ok(hres == E_INVALIDARG, "put_fontStyle failed: %08x\n", hres);
1078     SysFreeString(str);
1079
1080     str = a2bstr("italic");
1081     hres = IHTMLStyle_put_fontStyle(style, str);
1082     ok(hres == S_OK, "put_fontStyle failed: %08x\n", hres);
1083     SysFreeString(str);
1084
1085     str = a2bstr("oblique");
1086     hres = IHTMLStyle_put_fontStyle(style, str);
1087     ok(hres == S_OK, "put_fontStyle failed: %08x\n", hres);
1088     SysFreeString(str);
1089
1090     str = a2bstr("normal");
1091     hres = IHTMLStyle_put_fontStyle(style, str);
1092     ok(hres == S_OK, "put_fontStyle failed: %08x\n", hres);
1093     SysFreeString(str);
1094
1095     hres = IHTMLStyle_put_fontStyle(style, sDefault);
1096     ok(hres == S_OK, "put_fontStyle failed: %08x\n", hres);
1097     SysFreeString(sDefault);
1098
1099     /* overflow */
1100     hres = IHTMLStyle_get_overflow(style, NULL);
1101     ok(hres == E_INVALIDARG, "get_overflow failed: %08x\n", hres);
1102
1103     hres = IHTMLStyle_get_overflow(style, &sOverflowDefault);
1104     ok(hres == S_OK, "get_overflow failed: %08x\n", hres);
1105
1106     str = a2bstr("test");
1107     hres = IHTMLStyle_put_overflow(style, str);
1108     ok(hres == E_INVALIDARG, "put_overflow failed: %08x\n", hres);
1109     SysFreeString(str);
1110
1111     str = a2bstr("visible");
1112     hres = IHTMLStyle_put_overflow(style, str);
1113     ok(hres == S_OK, "put_overflow failed: %08x\n", hres);
1114     SysFreeString(str);
1115
1116     str = a2bstr("scroll");
1117     hres = IHTMLStyle_put_overflow(style, str);
1118     ok(hres == S_OK, "put_overflow failed: %08x\n", hres);
1119     SysFreeString(str);
1120
1121     str = a2bstr("hidden");
1122     hres = IHTMLStyle_put_overflow(style, str);
1123     ok(hres == S_OK, "put_overflow failed: %08x\n", hres);
1124     SysFreeString(str);
1125
1126     str = a2bstr("auto");
1127     hres = IHTMLStyle_put_overflow(style, str);
1128     ok(hres == S_OK, "put_overflow failed: %08x\n", hres);
1129     SysFreeString(str);
1130
1131     hres = IHTMLStyle_get_overflow(style, &str);
1132     ok(hres == S_OK, "get_overflow failed: %08x\n", hres);
1133     ok(!strcmp_wa(str, "auto"), "str=%s\n", wine_dbgstr_w(str));
1134     SysFreeString(str);
1135
1136     str = a2bstr("");
1137     hres = IHTMLStyle_put_overflow(style, str);
1138     ok(hres == S_OK, "put_overflow failed: %08x\n", hres);
1139     SysFreeString(str);
1140
1141     hres = IHTMLStyle_get_overflow(style, &str);
1142     ok(hres == S_OK, "get_overflow failed: %08x\n", hres);
1143     ok(!str, "str=%s\n", wine_dbgstr_w(str));
1144     SysFreeString(str);
1145
1146     /* restore overflow default */
1147     hres = IHTMLStyle_put_overflow(style, sOverflowDefault);
1148     ok(hres == S_OK, "put_overflow failed: %08x\n", hres);
1149     SysFreeString(sOverflowDefault);
1150
1151     /* Attribute Tests*/
1152     hres = IHTMLStyle_getAttribute(style, NULL, 1, &v);
1153     ok(hres == E_INVALIDARG, "getAttribute failed: %08x\n", hres);
1154
1155     str = a2bstr("position");
1156     hres = IHTMLStyle_getAttribute(style, str, 1, NULL);
1157     ok(hres == E_INVALIDARG, "getAttribute failed: %08x\n", hres);
1158
1159     hres = IHTMLStyle_getAttribute(style, str, 1, &v);
1160     ok(hres == S_OK, "getAttribute failed: %08x\n", hres);
1161     ok(V_VT(&v) == VT_BSTR, "type failed: %d\n", V_VT(&v));
1162     VariantClear(&v);
1163
1164     hres = IHTMLStyle_setAttribute(style, NULL, v, 1);
1165     ok(hres == E_INVALIDARG, "setAttribute failed: %08x\n", hres);
1166
1167     V_VT(&v) = VT_BSTR;
1168     V_BSTR(&v) = a2bstr("absolute");
1169     hres = IHTMLStyle_setAttribute(style, str, v, 1);
1170     ok(hres == S_OK, "setAttribute failed: %08x\n", hres);
1171     VariantClear(&v);
1172
1173     hres = IHTMLStyle_getAttribute(style, str, 1, &v);
1174     ok(hres == S_OK, "getAttribute failed: %08x\n", hres);
1175     ok(V_VT(&v) == VT_BSTR, "type failed: %d\n", V_VT(&v));
1176     ok(!strcmp_wa(V_BSTR(&v), "absolute"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
1177     VariantClear(&v);
1178
1179     V_VT(&v) = VT_BSTR;
1180     V_BSTR(&v) = NULL;
1181     hres = IHTMLStyle_setAttribute(style, str, v, 1);
1182     ok(hres == S_OK, "setAttribute failed: %08x\n", hres);
1183     VariantClear(&v);
1184
1185     SysFreeString(str);
1186
1187     str = a2bstr("borderLeftStyle");
1188     test_border_styles(style, str);
1189     SysFreeString(str);
1190
1191     str = a2bstr("borderbottomstyle");
1192     test_border_styles(style, str);
1193     SysFreeString(str);
1194
1195     str = a2bstr("borderrightstyle");
1196     test_border_styles(style, str);
1197     SysFreeString(str);
1198
1199     str = a2bstr("bordertopstyle");
1200     test_border_styles(style, str);
1201     SysFreeString(str);
1202
1203     hres = IHTMLStyle_get_borderStyle(style, &sDefault);
1204     ok(hres == S_OK, "get_borderStyle failed: %08x\n", hres);
1205
1206     str = a2bstr("none dotted dashed solid");
1207     hres = IHTMLStyle_put_borderStyle(style, str);
1208     ok(hres == S_OK, "put_borderStyle failed: %08x\n", hres);
1209     SysFreeString(str);
1210
1211     str = a2bstr("none dotted dashed solid");
1212     hres = IHTMLStyle_get_borderStyle(style, &str);
1213     ok(hres == S_OK, "get_borderStyle failed: %08x\n", hres);
1214     ok(!strcmp_wa(str, "none dotted dashed solid"),
1215         "expected (none dotted dashed solid) = (%s)\n", wine_dbgstr_w(V_BSTR(&v)));
1216     SysFreeString(str);
1217
1218     str = a2bstr("double groove ridge inset");
1219     hres = IHTMLStyle_put_borderStyle(style, str);
1220     ok(hres == S_OK, "put_borderStyle failed: %08x\n", hres);
1221     SysFreeString(str);
1222
1223     str = a2bstr("window-inset outset ridge inset");
1224     hres = IHTMLStyle_put_borderStyle(style, str);
1225     ok(hres == S_OK, "put_borderStyle failed: %08x\n", hres);
1226     SysFreeString(str);
1227
1228     str = a2bstr("window-inset");
1229     hres = IHTMLStyle_put_borderStyle(style, str);
1230     ok(hres == S_OK, "put_borderStyle failed: %08x\n", hres);
1231     SysFreeString(str);
1232
1233     str = a2bstr("none none none none none");
1234     hres = IHTMLStyle_put_borderStyle(style, str);
1235     ok(hres == S_OK, "put_borderStyle failed: %08x\n", hres);
1236     SysFreeString(str);
1237
1238     str = a2bstr("invalid none none none");
1239     hres = IHTMLStyle_put_borderStyle(style, str);
1240     ok(hres == E_INVALIDARG, "put_borderStyle failed: %08x\n", hres);
1241     SysFreeString(str);
1242
1243     str = a2bstr("none invalid none none");
1244     hres = IHTMLStyle_put_borderStyle(style, str);
1245     ok(hres == E_INVALIDARG, "put_borderStyle failed: %08x\n", hres);
1246     SysFreeString(str);
1247
1248     hres = IHTMLStyle_put_borderStyle(style, sDefault);
1249     ok(hres == S_OK, "put_borderStyle failed: %08x\n", hres);
1250     SysFreeString(sDefault);
1251
1252     /* backgoundColor */
1253     hres = IHTMLStyle_get_backgroundColor(style, &v);
1254     ok(hres == S_OK, "get_backgroundColor: %08x\n", hres);
1255     ok(V_VT(&v) == VT_BSTR, "type failed: %d\n", V_VT(&v));
1256     ok(!V_BSTR(&v), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
1257     VariantClear(&v);
1258
1259     V_VT(&v) = VT_BSTR;
1260     V_BSTR(&v) = a2bstr("red");
1261     hres = IHTMLStyle_put_backgroundColor(style, v);
1262     ok(hres == S_OK, "put_backgroundColor failed: %08x\n", hres);
1263     VariantClear(&v);
1264
1265     hres = IHTMLStyle_get_backgroundColor(style, &v);
1266     ok(hres == S_OK, "get_backgroundColor: %08x\n", hres);
1267     ok(V_VT(&v) == VT_BSTR, "type failed: %d\n", V_VT(&v));
1268     ok(!strcmp_wa(V_BSTR(&v), "red"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
1269     VariantClear(&v);
1270
1271     /* padding */
1272     hres = IHTMLStyle_get_padding(style, &str);
1273     ok(hres == S_OK, "get_padding failed: %08x\n", hres);
1274     ok(!str, "padding = %s\n", wine_dbgstr_w(str));
1275     SysFreeString(str);
1276
1277     hres = IHTMLStyle_get_paddingTop(style, &v);
1278     ok(hres == S_OK, "get_paddingTop: %08x\n", hres);
1279     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
1280     ok(!V_BSTR(&v), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1281
1282     V_VT(&v) = VT_I4;
1283     V_I4(&v) = 6;
1284     hres = IHTMLStyle_put_paddingTop(style, v);
1285     ok(hres == S_OK, "put_paddingTop failed: %08x\n", hres);
1286
1287     hres = IHTMLStyle_get_paddingTop(style, &v);
1288     ok(hres == S_OK, "get_paddingTop: %08x\n", hres);
1289     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
1290     ok(!strcmp_wa(V_BSTR(&v), "6px"), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1291     VariantClear(&v);
1292
1293     hres = IHTMLStyle_get_paddingRight(style, &v);
1294     ok(hres == S_OK, "get_paddingRight: %08x\n", hres);
1295     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
1296     ok(!V_BSTR(&v), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1297
1298     V_VT(&v) = VT_I4;
1299     V_I4(&v) = 6;
1300     hres = IHTMLStyle_put_paddingRight(style, v);
1301     ok(hres == S_OK, "put_paddingRight failed: %08x\n", hres);
1302
1303     hres = IHTMLStyle_get_paddingRight(style, &v);
1304     ok(hres == S_OK, "get_paddingRight: %08x\n", hres);
1305     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
1306     ok(!strcmp_wa(V_BSTR(&v), "6px"), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1307     VariantClear(&v);
1308
1309     hres = IHTMLStyle_get_paddingBottom(style, &v);
1310     ok(hres == S_OK, "get_paddingBottom: %08x\n", hres);
1311     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
1312     ok(!V_BSTR(&v), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1313
1314     V_VT(&v) = VT_I4;
1315     V_I4(&v) = 6;
1316     hres = IHTMLStyle_put_paddingBottom(style, v);
1317     ok(hres == S_OK, "put_paddingBottom failed: %08x\n", hres);
1318
1319     hres = IHTMLStyle_get_paddingBottom(style, &v);
1320     ok(hres == S_OK, "get_paddingBottom: %08x\n", hres);
1321     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
1322     ok(!strcmp_wa(V_BSTR(&v), "6px"), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1323     VariantClear(&v);
1324
1325     str = a2bstr("1");
1326     hres = IHTMLStyle_put_padding(style, str);
1327     ok(hres == S_OK, "put_padding failed: %08x\n", hres);
1328     SysFreeString(str);
1329
1330     hres = IHTMLStyle_get_padding(style, &str);
1331     ok(hres == S_OK, "get_padding failed: %08x\n", hres);
1332     ok(!strcmp_wa(str, "1px"), "padding = %s\n", wine_dbgstr_w(str));
1333     SysFreeString(str);
1334
1335     /* PaddingLeft */
1336     hres = IHTMLStyle_get_paddingLeft(style, &vDefault);
1337     ok(hres == S_OK, "get_paddingLeft: %08x\n", hres);
1338     ok(V_VT(&vDefault) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&vDefault));
1339     ok(!strcmp_wa(V_BSTR(&vDefault), "1px"), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&vDefault)));
1340
1341     V_VT(&v) = VT_BSTR;
1342     V_BSTR(&v) = a2bstr("10");
1343     hres = IHTMLStyle_put_paddingLeft(style, v);
1344     ok(hres == S_OK, "put_paddingLeft: %08x\n", hres);
1345     VariantClear(&v);
1346
1347     hres = IHTMLStyle_get_paddingLeft(style, &v);
1348     ok(hres == S_OK, "get_paddingLeft: %08x\n", hres);
1349     ok(!strcmp_wa(V_BSTR(&v), "10px"), "expecte 10 = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1350     VariantClear(&v);
1351
1352     hres = IHTMLStyle_put_paddingLeft(style, vDefault);
1353     ok(hres == S_OK, "put_paddingLeft: %08x\n", hres);
1354
1355     /* BackgroundRepeat */
1356     hres = IHTMLStyle_get_backgroundRepeat(style, &sDefault);
1357     ok(hres == S_OK, "get_backgroundRepeat failed: %08x\n", hres);
1358
1359     str = a2bstr("invalid");
1360     hres = IHTMLStyle_put_backgroundRepeat(style, str);
1361     ok(hres == E_INVALIDARG, "put_backgroundRepeat failed: %08x\n", hres);
1362     SysFreeString(str);
1363
1364     str = a2bstr("repeat");
1365     hres = IHTMLStyle_put_backgroundRepeat(style, str);
1366     ok(hres == S_OK, "put_backgroundRepeat failed: %08x\n", hres);
1367     SysFreeString(str);
1368
1369     str = a2bstr("no-repeat");
1370     hres = IHTMLStyle_put_backgroundRepeat(style, str);
1371     ok(hres == S_OK, "put_backgroundRepeat failed: %08x\n", hres);
1372     SysFreeString(str);
1373
1374     str = a2bstr("repeat-x");
1375     hres = IHTMLStyle_put_backgroundRepeat(style, str);
1376     ok(hres == S_OK, "put_backgroundRepeat failed: %08x\n", hres);
1377     SysFreeString(str);
1378
1379     str = a2bstr("repeat-y");
1380     hres = IHTMLStyle_put_backgroundRepeat(style, str);
1381     ok(hres == S_OK, "put_backgroundRepeat failed: %08x\n", hres);
1382     SysFreeString(str);
1383
1384     hres = IHTMLStyle_get_backgroundRepeat(style, &str);
1385     ok(hres == S_OK, "get_backgroundRepeat failed: %08x\n", hres);
1386     ok(!strcmp_wa(str, "repeat-y"), "str=%s\n", wine_dbgstr_w(str));
1387     SysFreeString(str);
1388
1389     hres = IHTMLStyle_put_backgroundRepeat(style, sDefault);
1390     ok(hres == S_OK, "put_backgroundRepeat failed: %08x\n", hres);
1391     SysFreeString(sDefault);
1392
1393     /* BorderColor */
1394     hres = IHTMLStyle_get_borderColor(style, &sDefault);
1395     ok(hres == S_OK, "get_borderColor failed: %08x\n", hres);
1396
1397     str = a2bstr("red green red blue");
1398     hres = IHTMLStyle_put_borderColor(style, str);
1399     ok(hres == S_OK, "put_borderColor failed: %08x\n", hres);
1400     SysFreeString(str);
1401
1402     hres = IHTMLStyle_get_borderColor(style, &str);
1403     ok(hres == S_OK, "get_borderColor failed: %08x\n", hres);
1404     ok(!strcmp_wa(str, "red green red blue"), "str=%s\n", wine_dbgstr_w(str));
1405     SysFreeString(str);
1406
1407     hres = IHTMLStyle_put_borderColor(style, sDefault);
1408     ok(hres == S_OK, "put_borderColor failed: %08x\n", hres);
1409     SysFreeString(sDefault);
1410
1411     /* BorderRight */
1412     hres = IHTMLStyle_get_borderRight(style, &sDefault);
1413     ok(hres == S_OK, "get_borderRight failed: %08x\n", hres);
1414
1415     str = a2bstr("thick dotted red");
1416     hres = IHTMLStyle_put_borderRight(style, str);
1417     ok(hres == S_OK, "put_borderRight failed: %08x\n", hres);
1418     SysFreeString(str);
1419
1420     /* IHTMLStyle_get_borderRight appears to have a bug where
1421         it returns the first letter of the color.  So we check
1422         each style individually.
1423      */
1424     V_BSTR(&v) = NULL;
1425     hres = IHTMLStyle_get_borderRightColor(style, &v);
1426     ok(hres == S_OK, "get_borderRightColor failed: %08x\n", hres);
1427     ok(!strcmp_wa(V_BSTR(&v), "red"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
1428     VariantClear(&v);
1429
1430     V_BSTR(&v) = NULL;
1431     hres = IHTMLStyle_get_borderRightWidth(style, &v);
1432     ok(hres == S_OK, "get_borderRightWidth failed: %08x\n", hres);
1433     ok(!strcmp_wa(V_BSTR(&v), "thick"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
1434     VariantClear(&v);
1435
1436     hres = IHTMLStyle_get_borderRightStyle(style, &str);
1437     ok(hres == S_OK, "get_borderRightStyle failed: %08x\n", hres);
1438     ok(!strcmp_wa(str, "dotted"), "str=%s\n", wine_dbgstr_w(str));
1439     SysFreeString(str);
1440
1441     hres = IHTMLStyle_put_borderRight(style, sDefault);
1442     ok(hres == S_OK, "put_borderRight failed: %08x\n", hres);
1443     SysFreeString(sDefault);
1444
1445     /* BorderTop */
1446     hres = IHTMLStyle_get_borderTop(style, &sDefault);
1447     ok(hres == S_OK, "get_borderTop failed: %08x\n", hres);
1448
1449     str = a2bstr("thick dotted red");
1450     hres = IHTMLStyle_put_borderTop(style, str);
1451     ok(hres == S_OK, "put_borderTop failed: %08x\n", hres);
1452     SysFreeString(str);
1453
1454     /* IHTMLStyle_get_borderTop appears to have a bug where
1455         it returns the first letter of the color.  So we check
1456         each style individually.
1457      */
1458     V_BSTR(&v) = NULL;
1459     hres = IHTMLStyle_get_borderTopColor(style, &v);
1460     ok(hres == S_OK, "get_borderTopColor failed: %08x\n", hres);
1461     ok(!strcmp_wa(V_BSTR(&v), "red"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
1462     VariantClear(&v);
1463
1464     V_BSTR(&v) = NULL;
1465     hres = IHTMLStyle_get_borderTopWidth(style, &v);
1466     ok(hres == S_OK, "get_borderTopWidth failed: %08x\n", hres);
1467     ok(!strcmp_wa(V_BSTR(&v), "thick"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
1468     VariantClear(&v);
1469
1470     hres = IHTMLStyle_get_borderTopStyle(style, &str);
1471     ok(hres == S_OK, "get_borderTopStyle failed: %08x\n", hres);
1472     ok(!strcmp_wa(str, "dotted"), "str=%s\n", wine_dbgstr_w(str));
1473     SysFreeString(str);
1474
1475     hres = IHTMLStyle_put_borderTop(style, sDefault);
1476     ok(hres == S_OK, "put_borderTop failed: %08x\n", hres);
1477     SysFreeString(sDefault);
1478
1479     /* BorderBottom */
1480     hres = IHTMLStyle_get_borderBottom(style, &sDefault);
1481     ok(hres == S_OK, "get_borderBottom failed: %08x\n", hres);
1482
1483     str = a2bstr("thick dotted red");
1484     hres = IHTMLStyle_put_borderBottom(style, str);
1485     ok(hres == S_OK, "put_borderBottom failed: %08x\n", hres);
1486     SysFreeString(str);
1487
1488     /* IHTMLStyle_get_borderBottom appears to have a bug where
1489         it returns the first letter of the color.  So we check
1490         each style individually.
1491      */
1492     V_BSTR(&v) = NULL;
1493     hres = IHTMLStyle_get_borderBottomColor(style, &v);
1494     ok(hres == S_OK, "get_borderBottomColor failed: %08x\n", hres);
1495     ok(!strcmp_wa(V_BSTR(&v), "red"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
1496     VariantClear(&v);
1497
1498     V_BSTR(&v) = NULL;
1499     hres = IHTMLStyle_get_borderBottomWidth(style, &v);
1500     ok(hres == S_OK, "get_borderBottomWidth failed: %08x\n", hres);
1501     ok(!strcmp_wa(V_BSTR(&v), "thick"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
1502     VariantClear(&v);
1503
1504     hres = IHTMLStyle_get_borderBottomStyle(style, &str);
1505     ok(hres == S_OK, "get_borderBottomStyle failed: %08x\n", hres);
1506     ok(!strcmp_wa(str, "dotted"), "str=%s\n", wine_dbgstr_w(str));
1507     SysFreeString(str);
1508
1509     hres = IHTMLStyle_put_borderBottom(style, sDefault);
1510     ok(hres == S_OK, "put_borderBottom failed: %08x\n", hres);
1511     SysFreeString(sDefault);
1512
1513     /* BorderLeft */
1514     hres = IHTMLStyle_get_borderLeft(style, &sDefault);
1515     ok(hres == S_OK, "get_borderLeft failed: %08x\n", hres);
1516
1517     str = a2bstr("thick dotted red");
1518     hres = IHTMLStyle_put_borderLeft(style, str);
1519     ok(hres == S_OK, "put_borderLeft failed: %08x\n", hres);
1520     SysFreeString(str);
1521
1522     /* IHTMLStyle_get_borderLeft appears to have a bug where
1523         it returns the first letter of the color.  So we check
1524         each style individually.
1525      */
1526     V_BSTR(&v) = NULL;
1527     hres = IHTMLStyle_get_borderLeftColor(style, &v);
1528     ok(hres == S_OK, "get_borderLeftColor failed: %08x\n", hres);
1529     ok(!strcmp_wa(V_BSTR(&v), "red"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
1530     VariantClear(&v);
1531
1532     V_BSTR(&v) = NULL;
1533     hres = IHTMLStyle_get_borderLeftWidth(style, &v);
1534     ok(hres == S_OK, "get_borderLeftWidth failed: %08x\n", hres);
1535     ok(!strcmp_wa(V_BSTR(&v), "thick"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
1536     VariantClear(&v);
1537
1538     hres = IHTMLStyle_get_borderLeftStyle(style, &str);
1539     ok(hres == S_OK, "get_borderLeftStyle failed: %08x\n", hres);
1540     ok(!strcmp_wa(str, "dotted"), "str=%s\n", wine_dbgstr_w(str));
1541     SysFreeString(str);
1542
1543     hres = IHTMLStyle_put_borderLeft(style, sDefault);
1544     ok(hres == S_OK, "put_borderLeft failed: %08x\n", hres);
1545     SysFreeString(sDefault);
1546
1547     /* backgroundPositionX */
1548     hres = IHTMLStyle_get_backgroundPositionX(style, &v);
1549     ok(hres == S_OK, "get_backgroundPositionX failed: %08x\n", hres);
1550     ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
1551     ok(!V_BSTR(&v), "backgroundPositionX = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1552     VariantClear(&v);
1553
1554     V_VT(&v) = VT_BSTR;
1555     V_BSTR(&v) = a2bstr("10px");
1556     hres = IHTMLStyle_put_backgroundPositionX(style, v);
1557     ok(hres == S_OK, "put_backgroundPositionX failed: %08x\n", hres);
1558     VariantClear(&v);
1559
1560     hres = IHTMLStyle_get_backgroundPositionX(style, &v);
1561     ok(hres == S_OK, "get_backgroundPositionX failed: %08x\n", hres);
1562     ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
1563     ok(!strcmp_wa(V_BSTR(&v), "10px"), "backgroundPositionX = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1564     VariantClear(&v);
1565
1566     /* backgroundPositionY */
1567     hres = IHTMLStyle_get_backgroundPositionY(style, &v);
1568     ok(hres == S_OK, "get_backgroundPositionY failed: %08x\n", hres);
1569     ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
1570     VariantClear(&v);
1571
1572     V_VT(&v) = VT_BSTR;
1573     V_BSTR(&v) = a2bstr("15px");
1574     hres = IHTMLStyle_put_backgroundPositionY(style, v);
1575     ok(hres == S_OK, "put_backgroundPositionY failed: %08x\n", hres);
1576     VariantClear(&v);
1577
1578     hres = IHTMLStyle_get_backgroundPositionY(style, &v);
1579     ok(hres == S_OK, "get_backgroundPositionY failed: %08x\n", hres);
1580     ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
1581     ok(!strcmp_wa(V_BSTR(&v), "15px"), "backgroundPositionY = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1582     VariantClear(&v);
1583
1584     /* backgroundPosition */
1585     str = NULL;
1586     hres = IHTMLStyle_get_backgroundPosition(style, &str);
1587     ok(hres == S_OK, "get_backgroundPosition failed: %08x\n", hres);
1588     ok(!strcmp_wa(str, "10px 15px"), "backgroundPosition = %s\n", wine_dbgstr_w(str));
1589     SysFreeString(str);
1590
1591     str = a2bstr("center 20%");
1592     hres = IHTMLStyle_put_backgroundPosition(style, str);
1593     ok(hres == S_OK, "put_backgroundPosition failed: %08x\n", hres);
1594     SysFreeString(str);
1595
1596     str = NULL;
1597     hres = IHTMLStyle_get_backgroundPosition(style, &str);
1598     ok(hres == S_OK, "get_backgroundPosition failed: %08x\n", hres);
1599     ok(!strcmp_wa(str, "center 20%"), "backgroundPosition = %s\n", wine_dbgstr_w(str));
1600     SysFreeString(str);
1601
1602     hres = IHTMLStyle_get_backgroundPositionX(style, &v);
1603     ok(hres == S_OK, "get_backgroundPositionX failed: %08x\n", hres);
1604     ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
1605     ok(!strcmp_wa(V_BSTR(&v), "center"), "backgroundPositionX = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1606     VariantClear(&v);
1607
1608     hres = IHTMLStyle_get_backgroundPositionY(style, &v);
1609     ok(hres == S_OK, "get_backgroundPositionY failed: %08x\n", hres);
1610     ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
1611     ok(!strcmp_wa(V_BSTR(&v), "20%"), "backgroundPositionY = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1612     VariantClear(&v);
1613
1614      /* borderTopWidth */
1615     hres = IHTMLStyle_get_borderTopWidth(style, &vDefault);
1616     ok(hres == S_OK, "get_borderTopWidth: %08x\n", hres);
1617
1618     V_VT(&v) = VT_BSTR;
1619     V_BSTR(&v) = a2bstr("10px");
1620     hres = IHTMLStyle_put_borderTopWidth(style, v);
1621     ok(hres == S_OK, "put_borderTopWidth: %08x\n", hres);
1622     VariantClear(&v);
1623
1624     hres = IHTMLStyle_get_borderTopWidth(style, &v);
1625     ok(hres == S_OK, "get_borderTopWidth: %08x\n", hres);
1626     ok(!strcmp_wa(V_BSTR(&v), "10px"), "expected 10px = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1627     VariantClear(&v);
1628
1629     hres = IHTMLStyle_put_borderTopWidth(style, vDefault);
1630     ok(hres == S_OK, "put_borderTopWidth: %08x\n", hres);
1631     VariantClear(&vDefault);
1632
1633     /* borderRightWidth */
1634     hres = IHTMLStyle_get_borderRightWidth(style, &vDefault);
1635     ok(hres == S_OK, "get_borderRightWidth: %08x\n", hres);
1636
1637     V_VT(&v) = VT_BSTR;
1638     V_BSTR(&v) = a2bstr("10");
1639     hres = IHTMLStyle_put_borderRightWidth(style, v);
1640     ok(hres == S_OK, "put_borderRightWidth: %08x\n", hres);
1641     VariantClear(&v);
1642
1643     hres = IHTMLStyle_get_borderRightWidth(style, &v);
1644     ok(hres == S_OK, "get_borderRightWidth: %08x\n", hres);
1645     ok(!strcmp_wa(V_BSTR(&v), "10px"), "expected 10px = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1646     VariantClear(&v);
1647
1648     hres = IHTMLStyle_put_borderRightWidth(style, vDefault);
1649     ok(hres == S_OK, "put_borderRightWidth: %08x\n", hres);
1650     VariantClear(&vDefault);
1651
1652     /* borderBottomWidth */
1653     hres = IHTMLStyle_get_borderBottomWidth(style, &vDefault);
1654     ok(hres == S_OK, "get_borderBottomWidth: %08x\n", hres);
1655
1656     V_VT(&v) = VT_BSTR;
1657     V_BSTR(&v) = a2bstr("10");
1658     hres = IHTMLStyle_put_borderBottomWidth(style, v);
1659     ok(hres == S_OK, "put_borderBottomWidth: %08x\n", hres);
1660     VariantClear(&v);
1661
1662     hres = IHTMLStyle_get_borderBottomWidth(style, &v);
1663     ok(hres == S_OK, "get_borderBottomWidth: %08x\n", hres);
1664     ok(!strcmp_wa(V_BSTR(&v), "10px"), "expected 10px = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1665     VariantClear(&v);
1666
1667     hres = IHTMLStyle_put_borderBottomWidth(style, vDefault);
1668     ok(hres == S_OK, "put_borderBottomWidth: %08x\n", hres);
1669     VariantClear(&vDefault);
1670
1671     /* borderLeftWidth */
1672     hres = IHTMLStyle_get_borderLeftWidth(style, &vDefault);
1673     ok(hres == S_OK, "get_borderLeftWidth: %08x\n", hres);
1674
1675     V_VT(&v) = VT_BSTR;
1676     V_BSTR(&v) = a2bstr("10");
1677     hres = IHTMLStyle_put_borderLeftWidth(style, v);
1678     ok(hres == S_OK, "put_borderLeftWidth: %08x\n", hres);
1679     VariantClear(&v);
1680
1681     hres = IHTMLStyle_get_borderLeftWidth(style, &v);
1682     ok(hres == S_OK, "get_borderLeftWidth: %08x\n", hres);
1683     ok(!strcmp_wa(V_BSTR(&v), "10px"), "expected 10px = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1684     VariantClear(&v);
1685
1686     hres = IHTMLStyle_put_borderLeftWidth(style, vDefault);
1687     ok(hres == S_OK, "put_borderLeftWidth: %08x\n", hres);
1688     VariantClear(&vDefault);
1689
1690     /* wordSpacing */
1691     hres = IHTMLStyle_get_wordSpacing(style, &vDefault);
1692     ok(hres == S_OK, "get_wordSpacing: %08x\n", hres);
1693
1694     V_VT(&v) = VT_BSTR;
1695     V_BSTR(&v) = a2bstr("10");
1696     hres = IHTMLStyle_put_wordSpacing(style, v);
1697     ok(hres == S_OK, "put_wordSpacing: %08x\n", hres);
1698     VariantClear(&v);
1699
1700     hres = IHTMLStyle_get_wordSpacing(style, &v);
1701     ok(hres == S_OK, "get_wordSpacing: %08x\n", hres);
1702     ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
1703     ok(!strcmp_wa(V_BSTR(&v), "10px"), "expected 10px = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1704     VariantClear(&v);
1705
1706     hres = IHTMLStyle_put_wordSpacing(style, vDefault);
1707     ok(hres == S_OK, "put_wordSpacing: %08x\n", hres);
1708     VariantClear(&vDefault);
1709
1710     /* letterSpacing */
1711     hres = IHTMLStyle_get_letterSpacing(style, &vDefault);
1712     ok(hres == S_OK, "get_letterSpacing: %08x\n", hres);
1713
1714     V_VT(&v) = VT_BSTR;
1715     V_BSTR(&v) = a2bstr("11");
1716     hres = IHTMLStyle_put_letterSpacing(style, v);
1717     ok(hres == S_OK, "put_letterSpacing: %08x\n", hres);
1718     VariantClear(&v);
1719
1720     hres = IHTMLStyle_get_letterSpacing(style, &v);
1721     ok(hres == S_OK, "get_letterSpacing: %08x\n", hres);
1722     ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
1723     ok(!strcmp_wa(V_BSTR(&v), "11px"), "expected 10px = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1724     VariantClear(&v);
1725
1726     hres = IHTMLStyle_put_letterSpacing(style, vDefault);
1727     ok(hres == S_OK, "put_letterSpacing: %08x\n", hres);
1728     VariantClear(&vDefault);
1729
1730     /* borderTopColor */
1731     hres = IHTMLStyle_get_borderTopColor(style, &vDefault);
1732     ok(hres == S_OK, "get_borderTopColor: %08x\n", hres);
1733
1734     V_VT(&v) = VT_BSTR;
1735     V_BSTR(&v) = a2bstr("red");
1736     hres = IHTMLStyle_put_borderTopColor(style, v);
1737     ok(hres == S_OK, "put_borderTopColor: %08x\n", hres);
1738     VariantClear(&v);
1739
1740     hres = IHTMLStyle_get_borderTopColor(style, &v);
1741     ok(hres == S_OK, "get_borderTopColor: %08x\n", hres);
1742     ok(!strcmp_wa(V_BSTR(&v), "red"), "expecte red = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1743     VariantClear(&v);
1744
1745     hres = IHTMLStyle_put_borderTopColor(style, vDefault);
1746     ok(hres == S_OK, "put_borderTopColor: %08x\n", hres);
1747
1748         /* borderRightColor */
1749     hres = IHTMLStyle_get_borderRightColor(style, &vDefault);
1750     ok(hres == S_OK, "get_borderRightColor: %08x\n", hres);
1751
1752     V_VT(&v) = VT_BSTR;
1753     V_BSTR(&v) = a2bstr("blue");
1754     hres = IHTMLStyle_put_borderRightColor(style, v);
1755     ok(hres == S_OK, "put_borderRightColor: %08x\n", hres);
1756     VariantClear(&v);
1757
1758     hres = IHTMLStyle_get_borderRightColor(style, &v);
1759     ok(hres == S_OK, "get_borderRightColor: %08x\n", hres);
1760     ok(!strcmp_wa(V_BSTR(&v), "blue"), "expected blue = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1761     VariantClear(&v);
1762
1763     hres = IHTMLStyle_put_borderRightColor(style, vDefault);
1764     ok(hres == S_OK, "putborderRightColorr: %08x\n", hres);
1765
1766     /* borderBottomColor */
1767     hres = IHTMLStyle_get_borderBottomColor(style, &vDefault);
1768     ok(hres == S_OK, "get_borderBottomColor: %08x\n", hres);
1769
1770     V_VT(&v) = VT_BSTR;
1771     V_BSTR(&v) = a2bstr("cyan");
1772     hres = IHTMLStyle_put_borderBottomColor(style, v);
1773     ok(hres == S_OK, "put_borderBottomColor: %08x\n", hres);
1774     VariantClear(&v);
1775
1776     hres = IHTMLStyle_get_borderBottomColor(style, &v);
1777     ok(hres == S_OK, "get_borderBottomColor: %08x\n", hres);
1778     ok(!strcmp_wa(V_BSTR(&v), "cyan"), "expected cyan = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1779     VariantClear(&v);
1780
1781     hres = IHTMLStyle_put_borderBottomColor(style, vDefault);
1782     ok(hres == S_OK, "put_borderBottomColor: %08x\n", hres);
1783
1784     /* borderLeftColor */
1785     hres = IHTMLStyle_get_borderLeftColor(style, &vDefault);
1786     ok(hres == S_OK, "get_borderLeftColor: %08x\n", hres);
1787
1788     V_VT(&v) = VT_BSTR;
1789     V_BSTR(&v) = a2bstr("cyan");
1790     hres = IHTMLStyle_put_borderLeftColor(style, v);
1791     ok(hres == S_OK, "put_borderLeftColor: %08x\n", hres);
1792     VariantClear(&v);
1793
1794     hres = IHTMLStyle_get_borderLeftColor(style, &v);
1795     ok(hres == S_OK, "get_borderLeftColor: %08x\n", hres);
1796     ok(!strcmp_wa(V_BSTR(&v), "cyan"), "expected cyan = %s\n", wine_dbgstr_w(V_BSTR(&v)));
1797     VariantClear(&v);
1798
1799     hres = IHTMLStyle_put_borderLeftColor(style, vDefault);
1800     ok(hres == S_OK, "put_borderLeftColor: %08x\n", hres);
1801
1802     /* clip */
1803     hres = IHTMLStyle_get_clip(style, &str);
1804     ok(hres == S_OK, "get_clip failed: %08x\n", hres);
1805     ok(!str, "clip = %s\n", wine_dbgstr_w(str));
1806
1807     str = a2bstr("rect(0px 1px 500px 505px)");
1808     hres = IHTMLStyle_put_clip(style, str);
1809     ok(hres == S_OK, "put_clip failed: %08x\n", hres);
1810     SysFreeString(str);
1811
1812     hres = IHTMLStyle_get_clip(style, &str);
1813     ok(hres == S_OK, "get_clip failed: %08x\n", hres);
1814     ok(!strcmp_wa(str, "rect(0px 1px 500px 505px)"), "clip = %s\n", wine_dbgstr_w(str));
1815     SysFreeString(str);
1816
1817     /* pageBreakAfter */
1818     hres = IHTMLStyle_get_pageBreakAfter(style, &str);
1819     ok(hres == S_OK, "get_pageBreakAfter failed: %08x\n", hres);
1820     ok(!str, "pageBreakAfter = %s\n", wine_dbgstr_w(str));
1821
1822     str = a2bstr("always");
1823     hres = IHTMLStyle_put_pageBreakAfter(style, str);
1824     ok(hres == S_OK, "put_pageBreakAfter failed: %08x\n", hres);
1825     SysFreeString(str);
1826
1827     hres = IHTMLStyle_get_pageBreakAfter(style, &str);
1828     ok(hres == S_OK, "get_pageBreakAfter failed: %08x\n", hres);
1829     ok(!strcmp_wa(str, "always"), "pageBreakAfter = %s\n", wine_dbgstr_w(str));
1830     SysFreeString(str);
1831
1832     /* pageBreakBefore */
1833     hres = IHTMLStyle_get_pageBreakBefore(style, &str);
1834     ok(hres == S_OK, "get_pageBreakBefore failed: %08x\n", hres);
1835     ok(!str, "pageBreakBefore = %s\n", wine_dbgstr_w(str));
1836
1837     str = a2bstr("always");
1838     hres = IHTMLStyle_put_pageBreakBefore(style, str);
1839     ok(hres == S_OK, "put_pageBreakBefore failed: %08x\n", hres);
1840     SysFreeString(str);
1841
1842     hres = IHTMLStyle_get_pageBreakBefore(style, &str);
1843     ok(hres == S_OK, "get_pageBreakBefore failed: %08x\n", hres);
1844     ok(!strcmp_wa(str, "always"), "pageBreakBefore = %s\n", wine_dbgstr_w(str));
1845     SysFreeString(str);
1846
1847     hres = IHTMLStyle_QueryInterface(style, &IID_IHTMLStyle2, (void**)&style2);
1848     ok(hres == S_OK, "Could not get IHTMLStyle2 iface: %08x\n", hres);
1849     if(SUCCEEDED(hres)) {
1850         test_style2(style2);
1851         IHTMLStyle2_Release(style2);
1852     }
1853
1854     hres = IHTMLStyle_QueryInterface(style, &IID_IHTMLStyle3, (void**)&style3);
1855     ok(hres == S_OK, "Could not get IHTMLStyle3 iface: %08x\n", hres);
1856     if(SUCCEEDED(hres)) {
1857         test_style3(style3);
1858         IHTMLStyle3_Release(style3);
1859     }
1860
1861     hres = IHTMLStyle_QueryInterface(style, &IID_IHTMLStyle4, (void**)&style4);
1862     ok(hres == S_OK, "Could not get IHTMLStyle4 iface: %08x\n", hres);
1863     if(SUCCEEDED(hres)) {
1864         test_style4(style4);
1865         IHTMLStyle4_Release(style4);
1866     }
1867 }
1868
1869 #define test_style_filter(a,b) _test_style_filter(__LINE__,a,b)
1870 static void _test_style_filter(unsigned line, IHTMLStyle *style, const char *exval)
1871 {
1872     BSTR str;
1873     HRESULT hres;
1874
1875     str = (void*)0xdeadbeef;
1876     hres = IHTMLStyle_get_filter(style, &str);
1877     ok_(__FILE__,line)(hres == S_OK, "get_filter failed: %08x\n", hres);
1878     if(exval)
1879         ok_(__FILE__,line)(str && !strcmp_wa(str, exval), "filter = %s, expected %s\n", wine_dbgstr_w(str), exval);
1880     else
1881         ok_(__FILE__,line)(!str, "str = %s, expected NULL\n", wine_dbgstr_w(str));
1882
1883     SysFreeString(str);
1884 }
1885
1886 #define test_current_style_filter(a,b) _test_current_style_filter(__LINE__,a,b)
1887 static void _test_current_style_filter(unsigned line, IHTMLCurrentStyle2 *style, const char *exval)
1888 {
1889     BSTR str;
1890     HRESULT hres;
1891
1892     str = (void*)0xdeadbeef;
1893     hres = IHTMLCurrentStyle2_get_filter(style, &str);
1894     ok_(__FILE__,line)(hres == S_OK, "get_filter failed: %08x\n", hres);
1895     if(exval)
1896         ok_(__FILE__,line)(str && !strcmp_wa(str, exval), "filter = %s, expected %s\n", wine_dbgstr_w(str), exval);
1897     else
1898         ok_(__FILE__,line)(!str, "str = %s, expected NULL\n", wine_dbgstr_w(str));
1899
1900     SysFreeString(str);
1901 }
1902
1903 #define set_style_filter(a,b) _set_style_filter(__LINE__,a,b)
1904 static void _set_style_filter(unsigned line, IHTMLStyle *style, const char *val)
1905 {
1906     BSTR str = a2bstr(val);
1907     HRESULT hres;
1908
1909     hres = IHTMLStyle_put_filter(style, str);
1910     ok_(__FILE__,line)(hres == S_OK, "put_filter failed: %08x\n", hres);
1911     SysFreeString(str);
1912
1913     _test_style_filter(line, style, val);
1914 }
1915
1916 static void test_style_filters(IHTMLElement *elem)
1917 {
1918     IHTMLElement2 *elem2 = get_elem2_iface((IUnknown*)elem);
1919     IHTMLCurrentStyle2 *current_style2;
1920     IHTMLCurrentStyle *current_style;
1921     IHTMLStyle *style;
1922     HRESULT hres;
1923
1924     hres = IHTMLElement_get_style(elem, &style);
1925     ok(hres == S_OK, "get_style failed: %08x\n", hres);
1926
1927     hres = IHTMLElement2_get_currentStyle(elem2, &current_style);
1928     ok(hres == S_OK, "get_style failed: %08x\n", hres);
1929
1930     hres = IHTMLCurrentStyle_QueryInterface(current_style, &IID_IHTMLCurrentStyle2, (void**)&current_style2);
1931     IHTMLCurrentStyle_Release(current_style);
1932     ok(hres == S_OK, "Could not get IHTMLCurrentStyle2 iface: %08x\n", hres);
1933
1934     test_style_filter(style, NULL);
1935     test_current_style_filter(current_style2, NULL);
1936     set_style_filter(style, "alpha(opacity=50.0040)");
1937     test_current_style_filter(current_style2, "alpha(opacity=50.0040)");
1938     set_style_filter(style, "alpha(opacity=100)");
1939
1940     IHTMLStyle_Release(style);
1941
1942     hres = IHTMLElement_get_style(elem, &style);
1943     ok(hres == S_OK, "get_style failed: %08x\n", hres);
1944
1945     test_style_filter(style, "alpha(opacity=100)");
1946     set_style_filter(style, "xxx(a,b,c) alpha(opacity=100)");
1947     set_style_filter(style, NULL);
1948
1949     IHTMLCurrentStyle2_Release(current_style2);
1950     IHTMLStyle_Release(style);
1951     IHTMLElement2_Release(elem2);
1952 }
1953
1954 static void test_current_style(IHTMLCurrentStyle *current_style)
1955 {
1956     BSTR str;
1957     HRESULT hres;
1958     VARIANT v;
1959
1960     hres = IHTMLCurrentStyle_get_display(current_style, &str);
1961     ok(hres == S_OK, "get_display failed: %08x\n", hres);
1962     ok(!strcmp_wa(str, "block"), "get_display returned %s\n", wine_dbgstr_w(str));
1963     SysFreeString(str);
1964
1965     hres = IHTMLCurrentStyle_get_position(current_style, &str);
1966     ok(hres == S_OK, "get_position failed: %08x\n", hres);
1967     ok(!strcmp_wa(str, "absolute"), "get_position returned %s\n", wine_dbgstr_w(str));
1968     SysFreeString(str);
1969
1970     hres = IHTMLCurrentStyle_get_fontFamily(current_style, &str);
1971     ok(hres == S_OK, "get_fontFamily failed: %08x\n", hres);
1972     SysFreeString(str);
1973
1974     hres = IHTMLCurrentStyle_get_fontStyle(current_style, &str);
1975     ok(hres == S_OK, "get_fontStyle failed: %08x\n", hres);
1976     ok(!strcmp_wa(str, "normal"), "get_fontStyle returned %s\n", wine_dbgstr_w(str));
1977     SysFreeString(str);
1978
1979     hres = IHTMLCurrentStyle_get_backgroundImage(current_style, &str);
1980     ok(hres == S_OK, "get_backgroundImage failed: %08x\n", hres);
1981     ok(!strcmp_wa(str, "none"), "get_backgroundImage returned %s\n", wine_dbgstr_w(str));
1982     SysFreeString(str);
1983
1984     hres = IHTMLCurrentStyle_get_fontVariant(current_style, &str);
1985     ok(hres == S_OK, "get_fontVariant failed: %08x\n", hres);
1986     ok(!strcmp_wa(str, "normal"), "get_fontVariant returned %s\n", wine_dbgstr_w(str));
1987     SysFreeString(str);
1988
1989     hres = IHTMLCurrentStyle_get_borderTopStyle(current_style, &str);
1990     ok(hres == S_OK, "get_borderTopStyle failed: %08x\n", hres);
1991     ok(!strcmp_wa(str, "none"), "get_borderTopStyle returned %s\n", wine_dbgstr_w(str));
1992     SysFreeString(str);
1993
1994     hres = IHTMLCurrentStyle_get_borderRightStyle(current_style, &str);
1995     ok(hres == S_OK, "get_borderRightStyle failed: %08x\n", hres);
1996     ok(!strcmp_wa(str, "none"), "get_borderRightStyle returned %s\n", wine_dbgstr_w(str));
1997     SysFreeString(str);
1998
1999     hres = IHTMLCurrentStyle_get_borderBottomStyle(current_style, &str);
2000     ok(hres == S_OK, "get_borderBottomStyle failed: %08x\n", hres);
2001     ok(!strcmp_wa(str, "none"), "get_borderBottomStyle returned %s\n", wine_dbgstr_w(str));
2002     SysFreeString(str);
2003
2004     hres = IHTMLCurrentStyle_get_borderLeftStyle(current_style, &str);
2005     ok(hres == S_OK, "get_borderLeftStyle failed: %08x\n", hres);
2006     ok(!strcmp_wa(str, "none"), "get_borderLeftStyle returned %s\n", wine_dbgstr_w(str));
2007     SysFreeString(str);
2008
2009     hres = IHTMLCurrentStyle_get_textAlign(current_style, &str);
2010     ok(hres == S_OK, "get_textAlign failed: %08x\n", hres);
2011     ok(!strcmp_wa(str, "center"), "get_textAlign returned %s\n", wine_dbgstr_w(str));
2012     SysFreeString(str);
2013
2014     hres = IHTMLCurrentStyle_get_textDecoration(current_style, &str);
2015     ok(hres == S_OK, "get_textDecoration failed: %08x\n", hres);
2016     ok(!strcmp_wa(str, "none"), "get_textDecoration returned %s\n", wine_dbgstr_w(str));
2017     SysFreeString(str);
2018
2019     hres = IHTMLCurrentStyle_get_cursor(current_style, &str);
2020     ok(hres == S_OK, "get_cursor failed: %08x\n", hres);
2021     ok(!strcmp_wa(str, "default"), "get_cursor returned %s\n", wine_dbgstr_w(str));
2022     SysFreeString(str);
2023
2024     hres = IHTMLCurrentStyle_get_backgroundRepeat(current_style, &str);
2025     ok(hres == S_OK, "get_backgroundRepeat failed: %08x\n", hres);
2026     ok(!strcmp_wa(str, "repeat"), "get_backgroundRepeat returned %s\n", wine_dbgstr_w(str));
2027     SysFreeString(str);
2028
2029     hres = IHTMLCurrentStyle_get_borderColor(current_style, &str);
2030     ok(hres == S_OK, "get_borderColor failed: %08x\n", hres);
2031     SysFreeString(str);
2032
2033     hres = IHTMLCurrentStyle_get_borderStyle(current_style, &str);
2034     ok(hres == S_OK, "get_borderStyle failed: %08x\n", hres);
2035     SysFreeString(str);
2036
2037     hres = IHTMLCurrentStyle_get_visibility(current_style, &str);
2038     ok(hres == S_OK, "get_visibility failed: %08x\n", hres);
2039     SysFreeString(str);
2040
2041     hres = IHTMLCurrentStyle_get_overflow(current_style, &str);
2042     ok(hres == S_OK, "get_overflow failed: %08x\n", hres);
2043     SysFreeString(str);
2044
2045     hres = IHTMLCurrentStyle_get_borderWidth(current_style, &str);
2046     ok(hres == S_OK, "get_borderWidth failed: %08x\n", hres);
2047     SysFreeString(str);
2048
2049     hres = IHTMLCurrentStyle_get_margin(current_style, &str);
2050     ok(hres == S_OK, "get_margin failed: %08x\n", hres);
2051     SysFreeString(str);
2052
2053     hres = IHTMLCurrentStyle_get_padding(current_style, &str);
2054     ok(hres == S_OK, "get_padding failed: %08x\n", hres);
2055     SysFreeString(str);
2056
2057     hres = IHTMLCurrentStyle_get_fontWeight(current_style, &v);
2058     ok(hres == S_OK, "get_fontWeight failed: %08x\n", hres);
2059     ok(V_VT(&v) == VT_I4, "V_VT(v) = %d\n", V_VT(&v));
2060     ok( V_I4(&v) == 400, "expect 400 got (%d)\n", V_I4(&v));
2061     VariantClear(&v);
2062
2063     hres = IHTMLCurrentStyle_get_fontSize(current_style, &v);
2064     ok(hres == S_OK, "get_fontSize failed: %08x\n", hres);
2065     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2066     VariantClear(&v);
2067
2068     hres = IHTMLCurrentStyle_get_left(current_style, &v);
2069     ok(hres == S_OK, "get_left failed: %08x\n", hres);
2070     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2071     VariantClear(&v);
2072
2073     hres = IHTMLCurrentStyle_get_top(current_style, &v);
2074     ok(hres == S_OK, "get_top failed: %08x\n", hres);
2075     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2076     VariantClear(&v);
2077
2078     hres = IHTMLCurrentStyle_get_width(current_style, &v);
2079     ok(hres == S_OK, "get_width failed: %08x\n", hres);
2080     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2081     VariantClear(&v);
2082
2083     hres = IHTMLCurrentStyle_get_height(current_style, &v);
2084     ok(hres == S_OK, "get_height failed: %08x\n", hres);
2085     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2086     VariantClear(&v);
2087
2088     hres = IHTMLCurrentStyle_get_paddingLeft(current_style, &v);
2089     ok(hres == S_OK, "get_paddingLeft failed: %08x\n", hres);
2090     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2091     VariantClear(&v);
2092
2093     hres = IHTMLCurrentStyle_get_zIndex(current_style, &v);
2094     ok(hres == S_OK, "get_zIndex failed: %08x\n", hres);
2095     ok(V_VT(&v) == VT_I4, "V_VT(v) = %d\n", V_VT(&v));
2096     ok( V_I4(&v) == 1, "expect 1 got (%d)\n", V_I4(&v));
2097     VariantClear(&v);
2098
2099     hres = IHTMLCurrentStyle_get_verticalAlign(current_style, &v);
2100     ok(hres == S_OK, "get_verticalAlign failed: %08x\n", hres);
2101     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2102     ok(!strcmp_wa(V_BSTR(&v), "middle"), "get_verticalAlign returned %s\n", wine_dbgstr_w(V_BSTR(&v)));
2103     VariantClear(&v);
2104
2105     hres = IHTMLCurrentStyle_get_marginRight(current_style, &v);
2106     ok(hres == S_OK, "get_marginRight failed: %08x\n", hres);
2107     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2108     VariantClear(&v);
2109
2110     hres = IHTMLCurrentStyle_get_marginLeft(current_style, &v);
2111     ok(hres == S_OK, "get_marginLeft failed: %08x\n", hres);
2112     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2113     VariantClear(&v);
2114
2115     hres = IHTMLCurrentStyle_get_borderLeftWidth(current_style, &v);
2116     ok(hres == S_OK, "get_borderLeftWidth failed: %08x\n", hres);
2117     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2118     VariantClear(&v);
2119
2120     V_BSTR(&v) = NULL;
2121     hres = IHTMLCurrentStyle_get_borderRightWidth(current_style, &v);
2122     ok(hres == S_OK, "get_borderRightWidth failed: %08x\n", hres);
2123     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2124     VariantClear(&v);
2125
2126     hres = IHTMLCurrentStyle_get_borderBottomWidth(current_style, &v);
2127     ok(hres == S_OK, "get_borderBottomWidth failed: %08x\n", hres);
2128     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2129     VariantClear(&v);
2130
2131     hres = IHTMLCurrentStyle_get_borderTopWidth(current_style, &v);
2132     ok(hres == S_OK, "get_borderTopWidth failed: %08x\n", hres);
2133     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2134     VariantClear(&v);
2135
2136     hres = IHTMLCurrentStyle_get_color(current_style, &v);
2137     ok(hres == S_OK, "get_color failed: %08x\n", hres);
2138     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2139     VariantClear(&v);
2140
2141     hres = IHTMLCurrentStyle_get_backgroundColor(current_style, &v);
2142     ok(hres == S_OK, "get_backgroundColor failed: %08x\n", hres);
2143     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2144     VariantClear(&v);
2145
2146     hres = IHTMLCurrentStyle_get_borderLeftColor(current_style, &v);
2147     ok(hres == S_OK, "get_borderLeftColor failed: %08x\n", hres);
2148     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2149     VariantClear(&v);
2150
2151     hres = IHTMLCurrentStyle_get_borderTopColor(current_style, &v);
2152     ok(hres == S_OK, "get_borderTopColor failed: %08x\n", hres);
2153     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2154     VariantClear(&v);
2155
2156     hres = IHTMLCurrentStyle_get_borderRightColor(current_style, &v);
2157     ok(hres == S_OK, "get_borderRightColor failed: %08x\n", hres);
2158     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2159     VariantClear(&v);
2160
2161     hres = IHTMLCurrentStyle_get_borderBottomColor(current_style, &v);
2162     ok(hres == S_OK, "get_borderBottomColor failed: %08x\n", hres);
2163     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2164     VariantClear(&v);
2165
2166     hres = IHTMLCurrentStyle_get_paddingTop(current_style, &v);
2167     ok(hres == S_OK, "get_paddingTop failed: %08x\n", hres);
2168     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2169     VariantClear(&v);
2170
2171     hres = IHTMLCurrentStyle_get_paddingRight(current_style, &v);
2172     ok(hres == S_OK, "get_paddingRight failed: %08x\n", hres);
2173     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2174     VariantClear(&v);
2175
2176     hres = IHTMLCurrentStyle_get_paddingBottom(current_style, &v);
2177     ok(hres == S_OK, "get_paddingRight failed: %08x\n", hres);
2178     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2179     VariantClear(&v);
2180
2181     hres = IHTMLCurrentStyle_get_letterSpacing(current_style, &v);
2182     ok(hres == S_OK, "get_letterSpacing failed: %08x\n", hres);
2183     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2184     VariantClear(&v);
2185
2186     hres = IHTMLCurrentStyle_get_marginTop(current_style, &v);
2187     ok(hres == S_OK, "get_marginTop failed: %08x\n", hres);
2188     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2189     VariantClear(&v);
2190
2191     hres = IHTMLCurrentStyle_get_marginBottom(current_style, &v);
2192     ok(hres == S_OK, "get_marginBottom failed: %08x\n", hres);
2193     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2194     VariantClear(&v);
2195
2196     hres = IHTMLCurrentStyle_get_right(current_style, &v);
2197     ok(hres == S_OK, "get_Right failed: %08x\n", hres);
2198     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2199     VariantClear(&v);
2200
2201     hres = IHTMLCurrentStyle_get_bottom(current_style, &v);
2202     ok(hres == S_OK, "get_bottom failed: %08x\n", hres);
2203     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2204     VariantClear(&v);
2205
2206     hres = IHTMLCurrentStyle_get_lineHeight(current_style, &v);
2207     ok(hres == S_OK, "get_lineHeight failed: %08x\n", hres);
2208     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2209     VariantClear(&v);
2210
2211     hres = IHTMLCurrentStyle_get_textIndent(current_style, &v);
2212     ok(hres == S_OK, "get_textIndent failed: %08x\n", hres);
2213     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
2214     VariantClear(&v);
2215 }
2216
2217 static const char basic_test_str[] = "<html><body><div id=\"divid\"></div/</body></html>";
2218
2219 static void basic_style_test(IHTMLDocument2 *doc)
2220 {
2221     IHTMLCurrentStyle *cstyle;
2222     IHTMLElement *elem;
2223     IHTMLStyle *style;
2224     HRESULT hres;
2225
2226     hres = IHTMLDocument2_get_body(doc, &elem);
2227     ok(hres == S_OK, "get_body failed: %08x\n", hres);
2228
2229     hres = IHTMLElement_get_style(elem, &style);
2230     ok(hres == S_OK, "get_style failed: %08x\n", hres);
2231
2232     test_body_style(style);
2233
2234     cstyle = get_current_style(elem);
2235     test_current_style(cstyle);
2236     IHTMLCurrentStyle_Release(cstyle);
2237     IHTMLElement_Release(elem);
2238
2239     elem = get_element_by_id(doc, "divid");
2240     test_style_filters(elem);
2241
2242     test_set_csstext(style);
2243     IHTMLStyle_Release(style);
2244     IHTMLElement_Release(elem);
2245 }
2246
2247 static IHTMLDocument2 *notif_doc;
2248 static BOOL doc_complete;
2249
2250 static IHTMLDocument2 *create_document(void)
2251 {
2252     IHTMLDocument2 *doc;
2253     IHTMLDocument5 *doc5;
2254     HRESULT hres;
2255
2256     hres = CoCreateInstance(&CLSID_HTMLDocument, NULL, CLSCTX_INPROC_SERVER|CLSCTX_INPROC_HANDLER,
2257             &IID_IHTMLDocument2, (void**)&doc);
2258     ok(hres == S_OK, "CoCreateInstance failed: %08x\n", hres);
2259     if(FAILED(hres))
2260         return NULL;
2261
2262     hres = IHTMLDocument2_QueryInterface(doc, &IID_IHTMLDocument5, (void**)&doc5);
2263     if(FAILED(hres)) {
2264         win_skip("Could not get IHTMLDocument5, probably too old IE\n");
2265         IHTMLDocument2_Release(doc);
2266         return NULL;
2267     }
2268
2269     IHTMLDocument5_Release(doc5);
2270     return doc;
2271 }
2272
2273 static HRESULT WINAPI PropertyNotifySink_QueryInterface(IPropertyNotifySink *iface,
2274         REFIID riid, void**ppv)
2275 {
2276     if(IsEqualGUID(&IID_IPropertyNotifySink, riid)) {
2277         *ppv = iface;
2278         return S_OK;
2279     }
2280
2281     ok(0, "unexpected call\n");
2282     return E_NOINTERFACE;
2283 }
2284
2285 static ULONG WINAPI PropertyNotifySink_AddRef(IPropertyNotifySink *iface)
2286 {
2287     return 2;
2288 }
2289
2290 static ULONG WINAPI PropertyNotifySink_Release(IPropertyNotifySink *iface)
2291 {
2292     return 1;
2293 }
2294
2295 static HRESULT WINAPI PropertyNotifySink_OnChanged(IPropertyNotifySink *iface, DISPID dispID)
2296 {
2297     if(dispID == DISPID_READYSTATE){
2298         BSTR state;
2299         HRESULT hres;
2300
2301         hres = IHTMLDocument2_get_readyState(notif_doc, &state);
2302         ok(hres == S_OK, "get_readyState failed: %08x\n", hres);
2303
2304         if(!strcmp_wa(state, "complete"))
2305             doc_complete = TRUE;
2306
2307         SysFreeString(state);
2308     }
2309
2310     return S_OK;
2311 }
2312
2313 static HRESULT WINAPI PropertyNotifySink_OnRequestEdit(IPropertyNotifySink *iface, DISPID dispID)
2314 {
2315     ok(0, "unexpected call\n");
2316     return E_NOTIMPL;
2317 }
2318
2319 static IPropertyNotifySinkVtbl PropertyNotifySinkVtbl = {
2320     PropertyNotifySink_QueryInterface,
2321     PropertyNotifySink_AddRef,
2322     PropertyNotifySink_Release,
2323     PropertyNotifySink_OnChanged,
2324     PropertyNotifySink_OnRequestEdit
2325 };
2326
2327 static IPropertyNotifySink PropertyNotifySink = { &PropertyNotifySinkVtbl };
2328
2329 static IHTMLDocument2 *create_doc_with_string(const char *str)
2330 {
2331     IPersistStreamInit *init;
2332     IStream *stream;
2333     IHTMLDocument2 *doc;
2334     HGLOBAL mem;
2335     SIZE_T len;
2336
2337     notif_doc = doc = create_document();
2338     if(!doc)
2339         return NULL;
2340
2341     doc_complete = FALSE;
2342     len = strlen(str);
2343     mem = GlobalAlloc(0, len);
2344     memcpy(mem, str, len);
2345     CreateStreamOnHGlobal(mem, TRUE, &stream);
2346
2347     IHTMLDocument2_QueryInterface(doc, &IID_IPersistStreamInit, (void**)&init);
2348
2349     IPersistStreamInit_Load(init, stream);
2350     IPersistStreamInit_Release(init);
2351     IStream_Release(stream);
2352
2353     return doc;
2354 }
2355
2356 static void do_advise(IUnknown *unk, REFIID riid, IUnknown *unk_advise)
2357 {
2358     IConnectionPointContainer *container;
2359     IConnectionPoint *cp;
2360     DWORD cookie;
2361     HRESULT hres;
2362
2363     hres = IUnknown_QueryInterface(unk, &IID_IConnectionPointContainer, (void**)&container);
2364     ok(hres == S_OK, "QueryInterface(IID_IConnectionPointContainer) failed: %08x\n", hres);
2365
2366     hres = IConnectionPointContainer_FindConnectionPoint(container, riid, &cp);
2367     IConnectionPointContainer_Release(container);
2368     ok(hres == S_OK, "FindConnectionPoint failed: %08x\n", hres);
2369
2370     hres = IConnectionPoint_Advise(cp, unk_advise, &cookie);
2371     IConnectionPoint_Release(cp);
2372     ok(hres == S_OK, "Advise failed: %08x\n", hres);
2373 }
2374
2375 typedef void (*style_test_t)(IHTMLDocument2*);
2376
2377 static void run_test(const char *str, style_test_t test)
2378 {
2379     IHTMLDocument2 *doc;
2380     ULONG ref;
2381     MSG msg;
2382
2383     doc = create_doc_with_string(str);
2384     if(!doc)
2385         return;
2386
2387     do_advise((IUnknown*)doc, &IID_IPropertyNotifySink, (IUnknown*)&PropertyNotifySink);
2388
2389     while(!doc_complete && GetMessage(&msg, NULL, 0, 0)) {
2390         TranslateMessage(&msg);
2391         DispatchMessage(&msg);
2392     }
2393
2394     test(doc);
2395
2396     ref = IHTMLDocument2_Release(doc);
2397     ok(!ref || broken(ref == 1), /* Vista */
2398        "ref = %d\n", ref);
2399 }
2400
2401
2402 START_TEST(style)
2403 {
2404     CoInitialize(NULL);
2405
2406     run_test(basic_test_str, basic_style_test);
2407
2408     CoUninitialize();
2409 }