mshtml: Implement IHTMLFrameBase::get_name.
[wine] / dlls / mshtml / tests / dom.c
1 /*
2  * Copyright 2007-2008 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 "mshtmcid.h"
31 #include "mshtmhst.h"
32 #include "docobj.h"
33 #include "dispex.h"
34 #include "mshtml_test.h"
35
36 static const char doc_blank[] = "<html></html>";
37 static const char doc_str1[] = "<html><body>test</body></html>";
38 static const char range_test_str[] =
39     "<html><body>test \na<font size=\"2\">bc\t123<br /> it's\r\n  \t</font>text<br /></body></html>";
40 static const char range_test2_str[] =
41     "<html><body>abc<hr />123<br /><hr />def</body></html>";
42 static const char elem_test_str[] =
43     "<html><head><title>test</title><style>.body { margin-right: 0px; }</style>"
44     "<body onload=\"Testing()\">text test<!-- a comment -->"
45     "<a id=\"a\" href=\"http://test\" name=\"x\">link</a>"
46     "<input id=\"in\" class=\"testclass\" tabIndex=\"2\" title=\"test title\" />"
47     "<select id=\"s\"><option id=\"x\" value=\"val1\">opt1</option><option id=\"y\">opt2</option></select>"
48     "<textarea id=\"X\">text text</textarea>"
49     "<table id=\"tbl\"><tbody><tr></tr><tr id=\"row2\"><td>td1 text</td><td>td2 text</td></tr></tbody></table>"
50     "<script id=\"sc\" type=\"text/javascript\"><!--\nfunction Testing() {}\n// -->\n</script>"
51     "<test />"
52     "<img id=\"imgid\"/>"
53     "<iframe src=\"about:blank\" id=\"ifr\"></iframe>"
54     "<form id=\"frm\"></form>"
55     "</body></html>";
56 static const char elem_test2_str[] =
57     "<html><head><title>test</title><style>.body { margin-right: 0px; }</style>"
58     "<body><div id=\"divid\"></div></body>"
59     "</html>";
60
61 static const char indent_test_str[] =
62     "<html><head><title>test</title></head><body>abc<br /><a href=\"about:blank\">123</a></body></html>";
63 static const char cond_comment_str[] =
64     "<html><head><title>test</title></head><body>"
65     "<!--[if gte IE 4]> <br> <![endif]-->"
66     "</body></html>";
67 static const char frameset_str[] =
68     "<html><head><title>frameset test</title></head><frameset rows=\"25, 25, *\">"
69     "<frame src=\"about:blank\" name=\"nm1\" id=\"fr1\"><frame src=\"about:blank\" name=\"nm2\" id=\"fr2\">"
70     "<frame src=\"about:blank\" id=\"fr3\">"
71     "</frameset></html>";
72
73 static WCHAR characterW[] = {'c','h','a','r','a','c','t','e','r',0};
74 static WCHAR texteditW[] = {'t','e','x','t','e','d','i','t',0};
75 static WCHAR wordW[] = {'w','o','r','d',0};
76
77 typedef enum {
78     ET_NONE,
79     ET_HTML,
80     ET_HEAD,
81     ET_TITLE,
82     ET_BODY,
83     ET_A,
84     ET_INPUT,
85     ET_SELECT,
86     ET_TEXTAREA,
87     ET_OPTION,
88     ET_STYLE,
89     ET_BLOCKQUOTE,
90     ET_P,
91     ET_BR,
92     ET_TABLE,
93     ET_TBODY,
94     ET_SCRIPT,
95     ET_TEST,
96     ET_TESTG,
97     ET_COMMENT,
98     ET_IMG,
99     ET_TR,
100     ET_TD,
101     ET_IFRAME,
102     ET_FORM
103 } elem_type_t;
104
105 static const IID * const none_iids[] = {
106     &IID_IUnknown,
107     NULL
108 };
109
110 static const IID * const doc_node_iids[] = {
111     &IID_IHTMLDOMNode,
112     &IID_IHTMLDOMNode2,
113     &IID_IHTMLDocument,
114     &IID_IHTMLDocument2,
115     &IID_IHTMLDocument3,
116     &IID_IHTMLDocument4,
117     &IID_IHTMLDocument5,
118     &IID_IDispatchEx,
119     &IID_IConnectionPointContainer,
120     &IID_IInternetHostSecurityManager,
121     NULL
122 };
123
124 static const IID * const doc_obj_iids[] = {
125     &IID_IHTMLDocument,
126     &IID_IHTMLDocument2,
127     &IID_IHTMLDocument3,
128     &IID_IHTMLDocument4,
129     &IID_IHTMLDocument5,
130     &IID_IDispatchEx,
131     &IID_IConnectionPointContainer,
132     &IID_ICustomDoc,
133     NULL
134 };
135
136 static const IID * const elem_iids[] = {
137     &IID_IHTMLDOMNode,
138     &IID_IHTMLDOMNode2,
139     &IID_IHTMLElement,
140     &IID_IHTMLElement2,
141     &IID_IHTMLElement3,
142     &IID_IDispatchEx,
143     &IID_IConnectionPointContainer,
144     NULL
145 };
146
147 static const IID * const body_iids[] = {
148     &IID_IHTMLDOMNode,
149     &IID_IHTMLDOMNode2,
150     &IID_IHTMLElement,
151     &IID_IHTMLElement2,
152     &IID_IHTMLElement3,
153     &IID_IHTMLTextContainer,
154     &IID_IHTMLBodyElement,
155     &IID_IDispatchEx,
156     &IID_IConnectionPointContainer,
157     NULL
158 };
159
160 static const IID * const anchor_iids[] = {
161     &IID_IHTMLDOMNode,
162     &IID_IHTMLDOMNode2,
163     &IID_IHTMLElement,
164     &IID_IHTMLElement2,
165     &IID_IHTMLElement3,
166     &IID_IHTMLAnchorElement,
167     &IID_IDispatchEx,
168     &IID_IConnectionPointContainer,
169     NULL
170 };
171
172 static const IID * const input_iids[] = {
173     &IID_IHTMLDOMNode,
174     &IID_IHTMLDOMNode2,
175     &IID_IHTMLElement,
176     &IID_IHTMLElement2,
177     &IID_IHTMLElement3,
178     &IID_IHTMLInputElement,
179     &IID_IHTMLInputTextElement,
180     &IID_IDispatchEx,
181     &IID_IConnectionPointContainer,
182     NULL
183 };
184
185 static const IID * const select_iids[] = {
186     &IID_IHTMLDOMNode,
187     &IID_IHTMLDOMNode2,
188     &IID_IHTMLElement,
189     &IID_IHTMLElement2,
190     &IID_IHTMLElement3,
191     &IID_IHTMLSelectElement,
192     &IID_IDispatchEx,
193     &IID_IConnectionPointContainer,
194     NULL
195 };
196
197 static const IID * const textarea_iids[] = {
198     &IID_IHTMLDOMNode,
199     &IID_IHTMLDOMNode2,
200     &IID_IHTMLElement,
201     &IID_IHTMLElement2,
202     &IID_IHTMLElement3,
203     &IID_IHTMLTextAreaElement,
204     &IID_IDispatchEx,
205     &IID_IConnectionPointContainer,
206     NULL
207 };
208
209 static const IID * const option_iids[] = {
210     &IID_IHTMLDOMNode,
211     &IID_IHTMLDOMNode2,
212     &IID_IHTMLElement,
213     &IID_IHTMLElement2,
214     &IID_IHTMLElement3,
215     &IID_IHTMLOptionElement,
216     &IID_IDispatchEx,
217     &IID_IConnectionPointContainer,
218     NULL
219 };
220
221 static const IID * const table_iids[] = {
222     &IID_IHTMLDOMNode,
223     &IID_IHTMLDOMNode2,
224     &IID_IHTMLElement,
225     &IID_IHTMLElement2,
226     &IID_IHTMLElement3,
227     &IID_IHTMLTable,
228     &IID_IDispatchEx,
229     &IID_IConnectionPointContainer,
230     NULL
231 };
232
233 static const IID * const script_iids[] = {
234     &IID_IHTMLDOMNode,
235     &IID_IHTMLDOMNode2,
236     &IID_IHTMLElement,
237     &IID_IHTMLElement2,
238     &IID_IHTMLElement3,
239     &IID_IHTMLScriptElement,
240     &IID_IDispatchEx,
241     &IID_IConnectionPointContainer,
242     NULL
243 };
244
245 static const IID * const text_iids[] = {
246     &IID_IHTMLDOMNode,
247     &IID_IHTMLDOMNode2,
248     &IID_IHTMLDOMTextNode,
249     NULL
250 };
251
252 static const IID * const location_iids[] = {
253     &IID_IDispatch,
254     &IID_IHTMLLocation,
255     NULL
256 };
257
258 static const IID * const window_iids[] = {
259     &IID_IDispatch,
260     &IID_IHTMLWindow2,
261     &IID_IHTMLWindow3,
262     &IID_IDispatchEx,
263     NULL
264 };
265
266 static const IID * const comment_iids[] = {
267     &IID_IHTMLDOMNode,
268     &IID_IHTMLDOMNode2,
269     &IID_IHTMLElement,
270     &IID_IHTMLElement2,
271     &IID_IHTMLElement3,
272     &IID_IHTMLCommentElement,
273     &IID_IDispatchEx,
274     &IID_IConnectionPointContainer,
275     NULL
276 };
277
278 static const IID * const img_iids[] = {
279     &IID_IHTMLDOMNode,
280     &IID_IHTMLDOMNode2,
281     &IID_IHTMLElement,
282     &IID_IHTMLElement2,
283     &IID_IHTMLElement3,
284     &IID_IDispatchEx,
285     &IID_IHTMLImgElement,
286     &IID_IConnectionPointContainer,
287     NULL
288 };
289
290 static const IID * const tr_iids[] = {
291     &IID_IHTMLDOMNode,
292     &IID_IHTMLDOMNode2,
293     &IID_IHTMLElement,
294     &IID_IHTMLElement2,
295     &IID_IHTMLElement3,
296     &IID_IDispatchEx,
297     &IID_IHTMLTableRow,
298     &IID_IConnectionPointContainer,
299     NULL
300 };
301
302 static const IID * const td_iids[] = {
303     &IID_IHTMLDOMNode,
304     &IID_IHTMLDOMNode2,
305     &IID_IHTMLElement,
306     &IID_IHTMLElement2,
307     &IID_IHTMLElement3,
308     &IID_IDispatchEx,
309     &IID_IConnectionPointContainer,
310     NULL
311 };
312
313 static const IID * const iframe_iids[] = {
314     &IID_IHTMLDOMNode,
315     &IID_IHTMLDOMNode2,
316     &IID_IHTMLElement,
317     &IID_IHTMLElement2,
318     &IID_IHTMLElement3,
319     &IID_IHTMLFrameBase,
320     &IID_IHTMLFrameBase2,
321     &IID_IDispatchEx,
322     &IID_IConnectionPointContainer,
323     NULL
324 };
325
326 static const IID * const form_iids[] = {
327     &IID_IHTMLDOMNode,
328     &IID_IHTMLDOMNode2,
329     &IID_IHTMLElement,
330     &IID_IHTMLElement2,
331     &IID_IHTMLElement3,
332     &IID_IHTMLFormElement,
333     &IID_IDispatchEx,
334     &IID_IConnectionPointContainer,
335     NULL
336 };
337
338 static const IID * const generic_iids[] = {
339     &IID_IHTMLDOMNode,
340     &IID_IHTMLDOMNode2,
341     &IID_IHTMLElement,
342     &IID_IHTMLElement2,
343     &IID_IHTMLElement3,
344     &IID_IHTMLGenericElement,
345     &IID_IDispatchEx,
346     &IID_IConnectionPointContainer,
347     NULL
348 };
349
350 static const IID * const style_iids[] = {
351     &IID_IUnknown,
352     &IID_IDispatch,
353     &IID_IDispatchEx,
354     &IID_IHTMLStyle,
355     &IID_IHTMLStyle2,
356     &IID_IHTMLStyle3,
357     &IID_IHTMLStyle4,
358     NULL
359 };
360
361 static const IID * const cstyle_iids[] = {
362     &IID_IUnknown,
363     &IID_IDispatch,
364     &IID_IDispatchEx,
365     &IID_IHTMLCurrentStyle,
366     NULL
367 };
368
369 static const IID * const img_factory_iids[] = {
370     &IID_IUnknown,
371     &IID_IDispatch,
372     &IID_IDispatchEx,
373     &IID_IHTMLImageElementFactory,
374     NULL
375 };
376
377 typedef struct {
378     const char *tag;
379     REFIID *iids;
380     const IID *dispiid;
381 } elem_type_info_t;
382
383 static const elem_type_info_t elem_type_infos[] = {
384     {"",          none_iids,        NULL},
385     {"HTML",      elem_iids,        NULL},
386     {"HEAD",      elem_iids,        NULL},
387     {"TITLE",     elem_iids,        NULL},
388     {"BODY",      body_iids,        &DIID_DispHTMLBody},
389     {"A",         anchor_iids,      &DIID_DispHTMLAnchorElement},
390     {"INPUT",     input_iids,       &DIID_DispHTMLInputElement},
391     {"SELECT",    select_iids,      &DIID_DispHTMLSelectElement},
392     {"TEXTAREA",  textarea_iids,    NULL},
393     {"OPTION",    option_iids,      &DIID_DispHTMLOptionElement},
394     {"STYLE",     elem_iids,        NULL},
395     {"BLOCKQUOTE",elem_iids,        NULL},
396     {"P",         elem_iids,        NULL},
397     {"BR",        elem_iids,        NULL},
398     {"TABLE",     table_iids,       &DIID_DispHTMLTable},
399     {"TBODY",     elem_iids,        NULL},
400     {"SCRIPT",    script_iids,      NULL},
401     {"TEST",      elem_iids,        &DIID_DispHTMLUnknownElement},
402     {"TEST",      generic_iids,     &DIID_DispHTMLGenericElement},
403     {"!",         comment_iids,     &DIID_DispHTMLCommentElement},
404     {"IMG",       img_iids,         &DIID_DispHTMLImg},
405     {"TR",        tr_iids,          &DIID_DispHTMLTableRow},
406     {"TD",        td_iids,          NULL},
407     {"IFRAME",    iframe_iids,      &DIID_DispHTMLIFrame},
408     {"FORM",      form_iids,        &DIID_DispHTMLFormElement}
409 };
410
411 static const char *dbgstr_guid(REFIID riid)
412 {
413     static char buf[50];
414
415     sprintf(buf, "{%08X-%04X-%04X-%02X%02X-%02X%02X%02X%02X%02X%02X}",
416             riid->Data1, riid->Data2, riid->Data3, riid->Data4[0],
417             riid->Data4[1], riid->Data4[2], riid->Data4[3], riid->Data4[4],
418             riid->Data4[5], riid->Data4[6], riid->Data4[7]);
419
420     return buf;
421 }
422
423 static int strcmp_wa(LPCWSTR strw, const char *stra)
424 {
425     CHAR buf[512];
426     WideCharToMultiByte(CP_ACP, 0, strw, -1, buf, sizeof(buf), NULL, NULL);
427     return lstrcmpA(stra, buf);
428 }
429
430 static BSTR a2bstr(const char *str)
431 {
432     BSTR ret;
433     int len;
434
435     len = MultiByteToWideChar(CP_ACP, 0, str, -1, NULL, 0);
436     ret = SysAllocStringLen(NULL, len);
437     MultiByteToWideChar(CP_ACP, 0, str, -1, ret, len);
438
439     return ret;
440 }
441
442 static BOOL iface_cmp(IUnknown *iface1, IUnknown *iface2)
443 {
444     IUnknown *unk1, *unk2;
445
446     if(iface1 == iface2)
447         return TRUE;
448
449     IUnknown_QueryInterface(iface1, &IID_IUnknown, (void**)&unk1);
450     IUnknown_Release(unk1);
451     IUnknown_QueryInterface(iface2, &IID_IUnknown, (void**)&unk2);
452     IUnknown_Release(unk2);
453
454     return unk1 == unk2;
455 }
456
457 static IHTMLDocument2 *create_document(void)
458 {
459     IHTMLDocument2 *doc;
460     IHTMLDocument5 *doc5;
461     HRESULT hres;
462
463     hres = CoCreateInstance(&CLSID_HTMLDocument, NULL, CLSCTX_INPROC_SERVER|CLSCTX_INPROC_HANDLER,
464             &IID_IHTMLDocument2, (void**)&doc);
465     ok(hres == S_OK, "CoCreateInstance failed: %08x\n", hres);
466     if(FAILED(hres))
467         return NULL;
468
469     hres = IHTMLDocument2_QueryInterface(doc, &IID_IHTMLDocument5, (void**)&doc5);
470     if(FAILED(hres)) {
471         win_skip("Could not get IHTMLDocument5, probably too old IE\n");
472         IHTMLDocument2_Release(doc);
473         return NULL;
474     }
475
476     IHTMLDocument5_Release(doc5);
477     return doc;
478 }
479
480 #define test_ifaces(i,ids) _test_ifaces(__LINE__,i,ids)
481 static void _test_ifaces(unsigned line, IUnknown *iface, REFIID *iids)
482 {
483     const IID * const *piid;
484     IUnknown *unk;
485     HRESULT hres;
486
487      for(piid = iids; *piid; piid++) {
488         hres = IDispatch_QueryInterface(iface, *piid, (void**)&unk);
489         ok_(__FILE__,line) (hres == S_OK, "Could not get %s interface: %08x\n", dbgstr_guid(*piid), hres);
490         if(SUCCEEDED(hres))
491             IUnknown_Release(unk);
492     }
493 }
494
495 #define test_get_dispid(u,id) _test_disp(__LINE__,u,id)
496 static BOOL _test_get_dispid(unsigned line, IUnknown *unk, IID *iid)
497 {
498     IDispatchEx *dispex;
499     ITypeInfo *typeinfo;
500     BOOL ret = FALSE;
501     UINT ticnt;
502     HRESULT hres;
503
504     hres = IUnknown_QueryInterface(unk, &IID_IDispatchEx, (void**)&dispex);
505     ok_(__FILE__,line) (hres == S_OK, "Could not get IDispatchEx: %08x\n", hres);
506     if(FAILED(hres))
507         return FALSE;
508
509     ticnt = 0xdeadbeef;
510     hres = IDispatchEx_GetTypeInfoCount(dispex, &ticnt);
511     ok_(__FILE__,line) (hres == S_OK, "GetTypeInfoCount failed: %08x\n", hres);
512     ok_(__FILE__,line) (ticnt == 1, "ticnt=%u\n", ticnt);
513
514     hres = IDispatchEx_GetTypeInfo(dispex, 0, 0, &typeinfo);
515     ok_(__FILE__,line) (hres == S_OK, "GetTypeInfo failed: %08x\n", hres);
516
517     if(SUCCEEDED(hres)) {
518         TYPEATTR *type_attr;
519
520         hres = ITypeInfo_GetTypeAttr(typeinfo, &type_attr);
521         ok_(__FILE__,line) (hres == S_OK, "GetTypeAttr failed: %08x\n", hres);
522         if(hres == S_OK) {
523             *iid = type_attr->guid;
524             ret = TRUE;
525         }
526
527         ITypeInfo_ReleaseTypeAttr(typeinfo, type_attr);
528         ITypeInfo_Release(typeinfo);
529     }
530
531     IDispatchEx_Release(dispex);
532     return ret;
533 }
534
535 #define test_disp_value(u) _test_disp_value(__LINE__,u,v)
536 static void _test_disp_value(unsigned line, IUnknown *unk, const char *val)
537 {
538     DISPPARAMS dp  = {NULL,NULL,0,0};
539     IDispatchEx *dispex;
540     EXCEPINFO ei;
541     VARIANT var;
542     HRESULT hres;
543
544     hres = IUnknown_QueryInterface(unk, &IID_IDispatchEx, (void**)&dispex);
545     ok_(__FILE__,line)(hres == S_OK, "Could not get IDispatchEx interface: %08x\n", hres);
546     if(FAILED(hres))
547         return;
548
549     hres = IDispatchEx_InvokeEx(dispex, DISPID_VALUE, 0, DISPATCH_PROPERTYGET, &dp, &var, &ei, NULL);
550     IDispatchEx_Release(dispex);
551     ok_(__FILE__,line)(hres == S_OK, "InvokeEx(DISPID_VALUE) returned: %08x\n", hres);
552
553     ok_(__FILE__,line)(V_VT(&var) == VT_BSTR, "V_VT(value) = %d\n", V_VT(&var));
554     ok_(__FILE__,line)(!strcmp_wa(V_BSTR(&var), val), "value = %s, expected %s\n", wine_dbgstr_w(V_BSTR(&var)), val);
555     VariantClear(&var);
556 }
557
558 #define test_disp(u,id,v) _test_disp(__LINE__,u,id,v)
559 static void _test_disp(unsigned line, IUnknown *unk, const IID *diid, const char *val)
560 {
561     IID iid;
562
563     if(_test_get_dispid(line, unk, &iid))
564         ok_(__FILE__,line) (IsEqualGUID(&iid, diid), "unexpected guid %s\n", dbgstr_guid(&iid));
565
566     if(val)
567         _test_disp_value(line, unk, val);
568 }
569
570 #define test_disp2(u,id,id2,v) _test_disp2(__LINE__,u,id,id2,v)
571 static void _test_disp2(unsigned line, IUnknown *unk, const IID *diid, const IID *diid2, const char *val)
572 {
573     IID iid;
574
575     if(_test_get_dispid(line, unk, &iid))
576         ok_(__FILE__,line) (IsEqualGUID(&iid, diid) || broken(IsEqualGUID(&iid, diid2)),
577                 "unexpected guid %s\n", dbgstr_guid(&iid));
578
579     if(val)
580         _test_disp_value(line, unk, val);
581 }
582
583 #define get_elem_iface(u) _get_elem_iface(__LINE__,u)
584 static IHTMLElement *_get_elem_iface(unsigned line, IUnknown *unk)
585 {
586     IHTMLElement *elem;
587     HRESULT hres;
588
589     hres = IUnknown_QueryInterface(unk, &IID_IHTMLElement, (void**)&elem);
590     ok_(__FILE__,line) (hres == S_OK, "Could not get IHTMLElement: %08x\n", hres);
591     return elem;
592 }
593
594 #define get_elem2_iface(u) _get_elem2_iface(__LINE__,u)
595 static IHTMLElement2 *_get_elem2_iface(unsigned line, IUnknown *unk)
596 {
597     IHTMLElement2 *elem;
598     HRESULT hres;
599
600     hres = IUnknown_QueryInterface(unk, &IID_IHTMLElement2, (void**)&elem);
601     ok_(__FILE__,line) (hres == S_OK, "Could not get IHTMLElement2: %08x\n", hres);
602     return elem;
603 }
604
605 #define get_elem3_iface(u) _get_elem3_iface(__LINE__,u)
606 static IHTMLElement3 *_get_elem3_iface(unsigned line, IUnknown *unk)
607 {
608     IHTMLElement3 *elem;
609     HRESULT hres;
610
611     hres = IUnknown_QueryInterface(unk, &IID_IHTMLElement3, (void**)&elem);
612     ok_(__FILE__,line) (hres == S_OK, "Could not get IHTMLElement3: %08x\n", hres);
613     return elem;
614 }
615
616 #define get_node_iface(u) _get_node_iface(__LINE__,u)
617 static IHTMLDOMNode *_get_node_iface(unsigned line, IUnknown *unk)
618 {
619     IHTMLDOMNode *node;
620     HRESULT hres;
621
622     hres = IUnknown_QueryInterface(unk, &IID_IHTMLDOMNode, (void**)&node);
623     ok_(__FILE__,line) (hres == S_OK, "Could not get IHTMLDOMNode: %08x\n", hres);
624     return node;
625 }
626
627 #define get_node2_iface(u) _get_node2_iface(__LINE__,u)
628 static IHTMLDOMNode2 *_get_node2_iface(unsigned line, IUnknown *unk)
629 {
630     IHTMLDOMNode2 *node;
631     HRESULT hres;
632
633     hres = IUnknown_QueryInterface(unk, &IID_IHTMLDOMNode2, (void**)&node);
634     ok_(__FILE__,line) (hres == S_OK, "Could not get IHTMLDOMNode2: %08x\n", hres);
635     return node;
636 }
637
638 #define get_img_iface(u) _get_img_iface(__LINE__,u)
639 static IHTMLImgElement *_get_img_iface(unsigned line, IUnknown *unk)
640 {
641     IHTMLImgElement *img;
642     HRESULT hres;
643
644     hres = IUnknown_QueryInterface(unk, &IID_IHTMLImgElement, (void**)&img);
645     ok_(__FILE__,line) (hres == S_OK, "Could not get IHTMLImgElement: %08x\n", hres);
646     return img;
647 }
648
649 #define get_anchor_iface(u) _get_anchor_iface(__LINE__,u)
650 static IHTMLAnchorElement *_get_anchor_iface(unsigned line, IUnknown *unk)
651 {
652     IHTMLAnchorElement *anchor;
653     HRESULT hres;
654
655     hres = IUnknown_QueryInterface(unk, &IID_IHTMLAnchorElement, (void**)&anchor);
656     ok_(__FILE__,line) (hres == S_OK, "Could not get IHTMLAnchorElement: %08x\n", hres);
657     return anchor;
658 }
659
660 #define test_node_name(u,n) _test_node_name(__LINE__,u,n)
661 static void _test_node_name(unsigned line, IUnknown *unk, const char *exname)
662 {
663     IHTMLDOMNode *node = _get_node_iface(line, unk);
664     BSTR name;
665     HRESULT hres;
666
667     hres = IHTMLDOMNode_get_nodeName(node, &name);
668     IHTMLDOMNode_Release(node);
669     ok_(__FILE__, line) (hres == S_OK, "get_nodeName failed: %08x\n", hres);
670     ok_(__FILE__, line) (!strcmp_wa(name, exname), "got name: %s, expected %s\n", wine_dbgstr_w(name), exname);
671
672     SysFreeString(name);
673 }
674
675 #define get_owner_doc(u) _get_owner_doc(__LINE__,u)
676 static IHTMLDocument2 *_get_owner_doc(unsigned line, IUnknown *unk)
677 {
678     IHTMLDOMNode2 *node = _get_node2_iface(line, unk);
679     IDispatch *disp = (void*)0xdeadbeef;
680     IHTMLDocument2 *doc = NULL;
681     HRESULT hres;
682
683     hres = IHTMLDOMNode2_get_ownerDocument(node, &disp);
684     IHTMLDOMNode2_Release(node);
685     ok_(__FILE__,line)(hres == S_OK, "get_ownerDocument failed: %08x\n", hres);
686
687     if(disp) {
688         hres = IDispatch_QueryInterface(disp, &IID_IHTMLDocument2, (void**)&doc);
689         IDispatch_Release(disp);
690         ok_(__FILE__,line)(hres == S_OK, "Could not get IHTMLDocument2 iface: %08x\n", hres);
691     }
692
693     return doc;
694 }
695
696 #define get_doc_window(d) _get_doc_window(__LINE__,d)
697 static IHTMLWindow2 *_get_doc_window(unsigned line, IHTMLDocument2 *doc)
698 {
699     IHTMLWindow2 *window;
700     HRESULT hres;
701
702     window = NULL;
703     hres = IHTMLDocument2_get_parentWindow(doc, &window);
704     ok_(__FILE__,line)(hres == S_OK, "get_parentWindow failed: %08x\n", hres);
705     ok_(__FILE__,line)(window != NULL, "window == NULL\n");
706
707     return window;
708 }
709
710 #define clone_node(n,d) _clone_node(__LINE__,n,d)
711 static IHTMLDOMNode *_clone_node(unsigned line, IUnknown *unk, VARIANT_BOOL deep)
712 {
713     IHTMLDOMNode *node = _get_node_iface(line, unk);
714     IHTMLDOMNode *ret = NULL;
715     HRESULT hres;
716
717     hres = IHTMLDOMNode_cloneNode(node, deep, &ret);
718     IHTMLDOMNode_Release(node);
719     ok_(__FILE__,line)(hres == S_OK, "cloneNode failed: %08x\n", hres);
720     ok_(__FILE__,line)(ret != NULL, "ret == NULL\n");
721
722     return ret;
723
724 }
725
726 #define test_elem_tag(u,n) _test_elem_tag(__LINE__,u,n)
727 static void _test_elem_tag(unsigned line, IUnknown *unk, const char *extag)
728 {
729     IHTMLElement *elem = _get_elem_iface(line, unk);
730     BSTR tag;
731     HRESULT hres;
732
733     hres = IHTMLElement_get_tagName(elem, &tag);
734     IHTMLElement_Release(elem);
735     ok_(__FILE__, line) (hres == S_OK, "get_tagName failed: %08x\n", hres);
736     ok_(__FILE__, line) (!strcmp_wa(tag, extag), "got tag: %s, expected %s\n", wine_dbgstr_w(tag), extag);
737
738     SysFreeString(tag);
739 }
740
741 #define test_elem_type(ifc,t) _test_elem_type(__LINE__,ifc,t)
742 static void _test_elem_type(unsigned line, IUnknown *unk, elem_type_t type)
743 {
744     _test_elem_tag(line, unk, elem_type_infos[type].tag);
745     _test_ifaces(line, unk, elem_type_infos[type].iids);
746
747     if(elem_type_infos[type].dispiid && type != ET_A)
748         _test_disp(line, unk, elem_type_infos[type].dispiid, "[object]");
749 }
750
751 #define get_node_type(n) _get_node_type(__LINE__,n)
752 static LONG _get_node_type(unsigned line, IUnknown *unk)
753 {
754     IHTMLDOMNode *node = _get_node_iface(line, unk);
755     LONG type = -1;
756     HRESULT hres;
757
758     hres = IHTMLDOMNode_get_nodeType(node, &type);
759     ok(hres == S_OK, "get_nodeType failed: %08x\n", hres);
760
761     IHTMLDOMNode_Release(node);
762
763     return type;
764 }
765
766 #define get_child_nodes(u) _get_child_nodes(__LINE__,u)
767 static IHTMLDOMChildrenCollection *_get_child_nodes(unsigned line, IUnknown *unk)
768 {
769     IHTMLDOMNode *node = _get_node_iface(line, unk);
770     IHTMLDOMChildrenCollection *col = NULL;
771     IDispatch *disp;
772     HRESULT hres;
773
774     hres = IHTMLDOMNode_get_childNodes(node, &disp);
775     IHTMLDOMNode_Release(node);
776     ok_(__FILE__,line) (hres == S_OK, "get_childNodes failed: %08x\n", hres);
777     if(FAILED(hres))
778         return NULL;
779
780     hres = IDispatch_QueryInterface(disp, &IID_IHTMLDOMChildrenCollection, (void**)&col);
781     IDispatch_Release(disp);
782     ok_(__FILE__,line) (hres == S_OK, "Could not get IHTMLDOMChildrenCollection: %08x\n", hres);
783
784     return col;
785 }
786
787 #define get_child_item(c,i) _get_child_item(__LINE__,c,i)
788 static IHTMLDOMNode *_get_child_item(unsigned line, IHTMLDOMChildrenCollection *col, LONG idx)
789 {
790     IHTMLDOMNode *node = NULL;
791     IDispatch *disp;
792     HRESULT hres;
793
794     hres = IHTMLDOMChildrenCollection_item(col, idx, &disp);
795     ok(hres == S_OK, "item failed: %08x\n", hres);
796
797     node = _get_node_iface(line, (IUnknown*)disp);
798     IDispatch_Release(disp);
799
800     return node;
801 }
802
803 #define test_elem_attr(e,n,v) _test_elem_attr(__LINE__,e,n,v)
804 static void _test_elem_attr(unsigned line, IHTMLElement *elem, const char *name, const char *exval)
805 {
806     VARIANT value;
807     BSTR tmp;
808     HRESULT hres;
809
810     VariantInit(&value);
811
812     tmp = a2bstr(name);
813     hres = IHTMLElement_getAttribute(elem, tmp, 0, &value);
814     SysFreeString(tmp);
815     ok_(__FILE__,line) (hres == S_OK, "getAttribute failed: %08x\n", hres);
816
817     if(exval) {
818         ok_(__FILE__,line) (V_VT(&value) == VT_BSTR, "vt=%d\n", V_VT(&value));
819         ok_(__FILE__,line) (!strcmp_wa(V_BSTR(&value), exval), "unexpected value %s\n", wine_dbgstr_w(V_BSTR(&value)));
820     }else {
821         ok_(__FILE__,line) (V_VT(&value) == VT_NULL, "vt=%d\n", V_VT(&value));
822     }
823
824     VariantClear(&value);
825 }
826
827 #define test_elem_offset(u) _test_elem_offset(__LINE__,u)
828 static void _test_elem_offset(unsigned line, IUnknown *unk)
829 {
830     IHTMLElement *elem = _get_elem_iface(line, unk);
831     LONG l;
832     HRESULT hres;
833
834     hres = IHTMLElement_get_offsetTop(elem, &l);
835     ok_(__FILE__,line) (hres == S_OK, "get_offsetTop failed: %08x\n", hres);
836
837     hres = IHTMLElement_get_offsetHeight(elem, &l);
838     ok_(__FILE__,line) (hres == S_OK, "get_offsetHeight failed: %08x\n", hres);
839
840     hres = IHTMLElement_get_offsetWidth(elem, &l);
841     ok_(__FILE__,line) (hres == S_OK, "get_offsetWidth failed: %08x\n", hres);
842
843     IHTMLElement_Release(elem);
844 }
845
846 #define get_doc_node(d) _get_doc_node(__LINE__,d)
847 static IHTMLDocument2 *_get_doc_node(unsigned line, IHTMLDocument2 *doc)
848 {
849     IHTMLWindow2 *window;
850     IHTMLDocument2 *ret;
851     HRESULT hres;
852
853     hres = IHTMLDocument2_get_parentWindow(doc, &window);
854     ok_(__FILE__,line)(hres == S_OK, "get_parentWindow failed: %08x\n", hres);
855
856     hres = IHTMLWindow2_get_document(window, &ret);
857     ok_(__FILE__,line)(hres == S_OK, "get_document failed: %08x\n", hres);
858     ok_(__FILE__,line)(ret != NULL, "document = NULL\n");
859
860     return ret;
861 }
862
863 #define test_window_name(d,e) _test_window_name(__LINE__,d,e)
864 static void _test_window_name(unsigned line, IHTMLWindow2 *window, const char *exname)
865 {
866     BSTR name;
867     HRESULT hres;
868
869     hres = IHTMLWindow2_get_name(window, &name);
870     ok_(__FILE__,line)(hres == S_OK, "get_name failed: %08x\n", hres);
871     if(exname)
872         ok_(__FILE__,line)(!strcmp_wa(name, exname), "name = %s\n", wine_dbgstr_w(name));
873     else
874         ok_(__FILE__,line)(!name, "name = %s\n", wine_dbgstr_w(name));
875 }
876
877 #define set_window_name(w,n) _set_window_name(__LINE__,w,n)
878 static void _set_window_name(unsigned line, IHTMLWindow2 *window, const char *name)
879 {
880     BSTR str;
881     HRESULT hres;
882
883     str = a2bstr(name);
884     hres = IHTMLWindow2_put_name(window, str);
885     SysFreeString(str);
886     ok_(__FILE__,line)(hres == S_OK, "put_name failed: %08x\n", hres);
887
888     _test_window_name(line, window, name);
889 }
890
891 #define test_window_length(w,l) _test_window_length(__LINE__,w,l)
892 static void _test_window_length(unsigned line, IHTMLWindow2 *window, LONG exlen)
893 {
894     LONG length = -1;
895     HRESULT hres;
896
897     hres = IHTMLWindow2_get_length(window, &length);
898     ok_(__FILE__,line)(hres == S_OK, "get_length failed: %08x\n", hres);
899     ok_(__FILE__,line)(length == exlen, "length = %d, expected %d\n", length, exlen);
900 }
901
902 #define get_frame_content_window(e) _get_frame_content_window(__LINE__,e)
903 static IHTMLWindow2 *_get_frame_content_window(unsigned line, IUnknown *elem)
904 {
905     IHTMLFrameBase2 *base2;
906     IHTMLWindow2 *window;
907     HRESULT hres;
908
909     hres = IUnknown_QueryInterface(elem, &IID_IHTMLFrameBase2, (void**)&base2);
910     ok(hres == S_OK, "Could not get IHTMFrameBase2 iface: %08x\n", hres);
911
912     window = NULL;
913     hres = IHTMLFrameBase2_get_contentWindow(base2, &window);
914     IHTMLFrameBase2_Release(base2);
915     ok(hres == S_OK, "get_contentWindow failed: %08x\n", hres);
916     ok(window != NULL, "contentWindow = NULL\n");
917
918     return window;
919 }
920
921 static void test_get_set_attr(IHTMLDocument2 *doc)
922 {
923     IHTMLElement *elem;
924     IHTMLDocument3 *doc3;
925     HRESULT hres;
926     BSTR bstr;
927     VARIANT val;
928
929     /* grab an element to test with */
930     hres = IHTMLDocument2_QueryInterface(doc, &IID_IHTMLDocument3, (void**)&doc3);
931     ok(hres == S_OK, "QueryInterface(IID_IHTMLDocument3) failed: %08x\n", hres);
932
933     hres = IHTMLDocument3_get_documentElement(doc3, &elem);
934     IHTMLDocument3_Release(doc3);
935     ok(hres == S_OK, "get_documentElement failed: %08x\n", hres);
936
937     /* get a non-present attribute */
938     bstr = a2bstr("notAnAttribute");
939     hres = IHTMLElement_getAttribute(elem, bstr, 0, &val);
940     ok(hres == S_OK, "getAttribute failed: %08x\n", hres);
941     ok(V_VT(&val) == VT_NULL, "variant type should have been VT_NULL (0x%x), was: 0x%x\n", VT_NULL, V_VT(&val));
942     VariantClear(&val);
943     SysFreeString(bstr);
944
945     /* get a present attribute */
946     bstr = a2bstr("scrollHeight");
947     hres = IHTMLElement_getAttribute(elem, bstr, 0, &val);
948     ok(hres == S_OK, "getAttribute failed: %08x\n", hres);
949     ok(V_VT(&val) == VT_I4, "variant type should have been VT_I4 (0x%x), was: 0x%x\n", VT_I4, V_VT(&val));
950     VariantClear(&val);
951     SysFreeString(bstr);
952
953     /* create a new BSTR attribute */
954     bstr = a2bstr("newAttribute");
955
956     V_VT(&val) = VT_BSTR;
957     V_BSTR(&val) = a2bstr("the value");
958     hres = IHTMLElement_setAttribute(elem, bstr, val, 0);
959     ok(hres == S_OK, "setAttribute failed: %08x\n", hres);
960     VariantClear(&val);
961
962     hres = IHTMLElement_getAttribute(elem, bstr, 0, &val);
963     ok(hres == S_OK, "getAttribute failed: %08x\n", hres);
964     ok(V_VT(&val) == VT_BSTR, "variant type should have been VT_BSTR (0x%x), was: 0x%x\n", VT_BSTR, V_VT(&val));
965     ok(strcmp_wa(V_BSTR(&val), "the value") == 0, "variant value should have been L\"the value\", was %s\n", wine_dbgstr_w(V_BSTR(&val)));
966     VariantClear(&val);
967
968     /* overwrite the attribute with a BOOL */
969     V_VT(&val) = VT_BOOL;
970     V_BOOL(&val) = VARIANT_TRUE;
971     hres = IHTMLElement_setAttribute(elem, bstr, val, 0);
972     ok(hres == S_OK, "setAttribute failed: %08x\n", hres);
973     VariantClear(&val);
974
975     hres = IHTMLElement_getAttribute(elem, bstr, 0, &val);
976     ok(hres == S_OK, "getAttribute failed: %08x\n", hres);
977     ok(V_VT(&val) == VT_BOOL, "variant type should have been VT_BOOL (0x%x), was: 0x%x\n", VT_BOOL, V_VT(&val));
978     ok(V_BOOL(&val) == VARIANT_TRUE, "variant value should have been VARIANT_TRUE (0x%x), was %d\n", VARIANT_TRUE, V_BOOL(&val));
979     VariantClear(&val);
980
981     SysFreeString(bstr);
982
983     /* case-insensitive */
984     bstr = a2bstr("newattribute");
985     hres = IHTMLElement_getAttribute(elem, bstr, 0, &val);
986     ok(hres == S_OK, "getAttribute failed: %08x\n", hres);
987     ok(V_VT(&val) == VT_BOOL, "variant type should have been VT_BOOL (0x%x), was: 0x%x\n", VT_BOOL, V_VT(&val));
988     ok(V_BOOL(&val) == VARIANT_TRUE, "variant value should have been VARIANT_TRUE (0x%x), was %d\n", VARIANT_TRUE, V_BOOL(&val));
989     VariantClear(&val);
990     SysFreeString(bstr);
991
992     IHTMLElement_Release(elem);
993 }
994
995 #define get_doc_elem(d) _get_doc_elem(__LINE__,d)
996 static IHTMLElement *_get_doc_elem(unsigned line, IHTMLDocument2 *doc)
997 {
998     IHTMLElement *elem;
999     IHTMLDocument3 *doc3;
1000     HRESULT hres;
1001
1002     hres = IHTMLDocument2_QueryInterface(doc, &IID_IHTMLDocument3, (void**)&doc3);
1003     ok_(__FILE__,line) (hres == S_OK, "Could not get IHTMLDocument3 interface: %08x\n", hres);
1004     hres = IHTMLDocument3_get_documentElement(doc3, &elem);
1005     ok_(__FILE__,line) (hres == S_OK, "get_documentElement failed: %08x\n", hres);
1006     IHTMLDocument3_Release(doc3);
1007
1008     return elem;
1009 }
1010
1011 #define test_anchor_href(a,h) _test_anchor_href(__LINE__,a,h)
1012 static void _test_anchor_href(unsigned line, IUnknown *unk, const char *exhref)
1013 {
1014     IHTMLAnchorElement *anchor = _get_anchor_iface(line, unk);
1015     BSTR str;
1016     HRESULT hres;
1017
1018     hres = IHTMLAnchorElement_get_href(anchor, &str);
1019     ok_(__FILE__,line)(hres == S_OK, "get_href failed: %08x\n", hres);
1020     ok_(__FILE__,line)(!strcmp_wa(str, exhref), "href = %s, expected %s\n", wine_dbgstr_w(str), exhref);
1021     SysFreeString(str);
1022
1023     _test_disp_value(line, unk, exhref);
1024 }
1025
1026 #define test_option_text(o,t) _test_option_text(__LINE__,o,t)
1027 static void _test_option_text(unsigned line, IHTMLOptionElement *option, const char *text)
1028 {
1029     BSTR bstr;
1030     HRESULT hres;
1031
1032     hres = IHTMLOptionElement_get_text(option, &bstr);
1033     ok_(__FILE__,line) (hres == S_OK, "get_text failed: %08x\n", hres);
1034     ok_(__FILE__,line) (!strcmp_wa(bstr, text), "text=%s\n", wine_dbgstr_w(bstr));
1035     SysFreeString(bstr);
1036 }
1037
1038 #define test_option_put_text(o,t) _test_option_put_text(__LINE__,o,t)
1039 static void _test_option_put_text(unsigned line, IHTMLOptionElement *option, const char *text)
1040 {
1041     BSTR bstr;
1042     HRESULT hres;
1043
1044     bstr = a2bstr(text);
1045     hres = IHTMLOptionElement_put_text(option, bstr);
1046     SysFreeString(bstr);
1047     ok(hres == S_OK, "put_text failed: %08x\n", hres);
1048
1049     _test_option_text(line, option, text);
1050 }
1051
1052 #define test_option_value(o,t) _test_option_value(__LINE__,o,t)
1053 static void _test_option_value(unsigned line, IHTMLOptionElement *option, const char *value)
1054 {
1055     BSTR bstr;
1056     HRESULT hres;
1057
1058     hres = IHTMLOptionElement_get_value(option, &bstr);
1059     ok_(__FILE__,line) (hres == S_OK, "get_value failed: %08x\n", hres);
1060     ok_(__FILE__,line) (!strcmp_wa(bstr, value), "value=%s\n", wine_dbgstr_w(bstr));
1061     SysFreeString(bstr);
1062 }
1063
1064 #define test_option_put_value(o,t) _test_option_put_value(__LINE__,o,t)
1065 static void _test_option_put_value(unsigned line, IHTMLOptionElement *option, const char *value)
1066 {
1067     BSTR bstr;
1068     HRESULT hres;
1069
1070     bstr = a2bstr(value);
1071     hres = IHTMLOptionElement_put_value(option, bstr);
1072     SysFreeString(bstr);
1073     ok(hres == S_OK, "put_value failed: %08x\n", hres);
1074
1075     _test_option_value(line, option, value);
1076 }
1077
1078 #define create_option_elem(d,t,v) _create_option_elem(__LINE__,d,t,v)
1079 static IHTMLOptionElement *_create_option_elem(unsigned line, IHTMLDocument2 *doc,
1080         const char *txt, const char *val)
1081 {
1082     IHTMLOptionElementFactory *factory;
1083     IHTMLOptionElement *option;
1084     IHTMLWindow2 *window;
1085     VARIANT text, value, empty;
1086     HRESULT hres;
1087
1088     hres = IHTMLDocument2_get_parentWindow(doc, &window);
1089     ok_(__FILE__,line) (hres == S_OK, "get_parentElement failed: %08x\n", hres);
1090
1091     hres = IHTMLWindow2_get_Option(window, &factory);
1092     IHTMLWindow2_Release(window);
1093     ok_(__FILE__,line) (hres == S_OK, "get_Option failed: %08x\n", hres);
1094
1095     V_VT(&text) = VT_BSTR;
1096     V_BSTR(&text) = a2bstr(txt);
1097     V_VT(&value) = VT_BSTR;
1098     V_BSTR(&value) = a2bstr(val);
1099     V_VT(&empty) = VT_EMPTY;
1100
1101     hres = IHTMLOptionElementFactory_create(factory, text, value, empty, empty, &option);
1102     ok_(__FILE__,line) (hres == S_OK, "create failed: %08x\n", hres);
1103
1104     IHTMLOptionElementFactory_Release(factory);
1105     VariantClear(&text);
1106     VariantClear(&value);
1107
1108     _test_option_text(line, option, txt);
1109     _test_option_value(line, option, val);
1110
1111     return option;
1112 }
1113
1114 #define test_img_width(o,w) _test_img_width(__LINE__,o,w)
1115 static void _test_img_width(unsigned line, IHTMLImgElement *img, const long exp)
1116 {
1117     LONG found = -1;
1118     HRESULT hres;
1119
1120     hres = IHTMLImgElement_get_width(img, &found);
1121     todo_wine ok_(__FILE__,line) (hres == S_OK, "get_width failed: %08x\n", hres);
1122     todo_wine ok_(__FILE__,line) (found == exp, "width=%d\n", found);
1123 }
1124
1125 #define test_img_put_width(o,w) _test_img_put_width(__LINE__,o,w)
1126 static void _test_img_put_width(unsigned line, IHTMLImgElement *img, const long width)
1127 {
1128     HRESULT hres;
1129
1130     hres = IHTMLImgElement_put_width(img, width);
1131     todo_wine ok(hres == S_OK, "put_width failed: %08x\n", hres);
1132
1133     _test_img_width(line, img, width);
1134 }
1135
1136 #define test_img_height(o,h) _test_img_height(__LINE__,o,h)
1137 static void _test_img_height(unsigned line, IHTMLImgElement *img, const long exp)
1138 {
1139     LONG found = -1;
1140     HRESULT hres;
1141
1142     hres = IHTMLImgElement_get_height(img, &found);
1143     todo_wine ok_(__FILE__,line) (hres == S_OK, "get_height failed: %08x\n", hres);
1144     todo_wine ok_(__FILE__,line) (found == exp, "height=%d\n", found);
1145 }
1146
1147 #define test_img_put_height(o,w) _test_img_put_height(__LINE__,o,w)
1148 static void _test_img_put_height(unsigned line, IHTMLImgElement *img, const long height)
1149 {
1150     HRESULT hres;
1151
1152     hres = IHTMLImgElement_put_height(img, height);
1153     todo_wine ok(hres == S_OK, "put_height failed: %08x\n", hres);
1154
1155     _test_img_height(line, img, height);
1156 }
1157
1158 #define create_img_elem(d,t,v) _create_img_elem(__LINE__,d,t,v)
1159 static IHTMLImgElement *_create_img_elem(unsigned line, IHTMLDocument2 *doc,
1160         LONG wdth, LONG hght)
1161 {
1162     IHTMLImageElementFactory *factory;
1163     IHTMLImgElement *img;
1164     IHTMLWindow2 *window;
1165     VARIANT width, height;
1166     char buf[16];
1167     HRESULT hres;
1168
1169     hres = IHTMLDocument2_get_parentWindow(doc, &window);
1170     ok_(__FILE__,line) (hres == S_OK, "get_parentElement failed: %08x\n", hres);
1171
1172     hres = IHTMLWindow2_get_Image(window, &factory);
1173     IHTMLWindow2_Release(window);
1174     ok_(__FILE__,line) (hres == S_OK, "get_Image failed: %08x\n", hres);
1175
1176     test_ifaces((IUnknown*)factory, img_factory_iids);
1177     test_disp((IUnknown*)factory, &IID_IHTMLImageElementFactory, "[object]");
1178
1179     if(wdth >= 0){
1180         snprintf(buf, 16, "%d", wdth);
1181         V_VT(&width) = VT_BSTR;
1182         V_BSTR(&width) = a2bstr(buf);
1183     }else{
1184         V_VT(&width) = VT_EMPTY;
1185         wdth = 0;
1186     }
1187
1188     if(hght >= 0){
1189         snprintf(buf, 16, "%d", hght);
1190         V_VT(&height) = VT_BSTR;
1191         V_BSTR(&height) = a2bstr(buf);
1192     }else{
1193         V_VT(&height) = VT_EMPTY;
1194         hght = 0;
1195     }
1196
1197     hres = IHTMLImageElementFactory_create(factory, width, height, &img);
1198     ok_(__FILE__,line) (hres == S_OK, "create failed: %08x\n", hres);
1199
1200     IHTMLImageElementFactory_Release(factory);
1201     VariantClear(&width);
1202     VariantClear(&height);
1203
1204     if(SUCCEEDED(hres)) {
1205         _test_img_width(line, img, wdth);
1206         _test_img_height(line, img, hght);
1207         return img;
1208     }
1209
1210     return NULL;
1211 }
1212
1213 #define test_select_length(s,l) _test_select_length(__LINE__,s,l)
1214 static void _test_select_length(unsigned line, IHTMLSelectElement *select, LONG length)
1215 {
1216     LONG len = 0xdeadbeef;
1217     HRESULT hres;
1218
1219     hres = IHTMLSelectElement_get_length(select, &len);
1220     ok_(__FILE__,line) (hres == S_OK, "get_length failed: %08x\n", hres);
1221     ok_(__FILE__,line) (len == length, "len=%d, expected %d\n", len, length);
1222 }
1223
1224 #define test_select_selidx(s,i) _test_select_selidx(__LINE__,s,i)
1225 static void _test_select_selidx(unsigned line, IHTMLSelectElement *select, LONG index)
1226 {
1227     LONG idx = 0xdeadbeef;
1228     HRESULT hres;
1229
1230     hres = IHTMLSelectElement_get_selectedIndex(select, &idx);
1231     ok_(__FILE__,line) (hres == S_OK, "get_selectedIndex failed: %08x\n", hres);
1232     ok_(__FILE__,line) (idx == index, "idx=%d, expected %d\n", idx, index);
1233 }
1234
1235 #define test_select_put_selidx(s,i) _test_select_put_selidx(__LINE__,s,i)
1236 static void _test_select_put_selidx(unsigned line, IHTMLSelectElement *select, LONG index)
1237 {
1238     HRESULT hres;
1239
1240     hres = IHTMLSelectElement_put_selectedIndex(select, index);
1241     ok_(__FILE__,line) (hres == S_OK, "get_selectedIndex failed: %08x\n", hres);
1242     _test_select_selidx(line, select, index);
1243 }
1244
1245 #define test_select_value(s,v) _test_select_value(__LINE__,s,v)
1246 static void _test_select_value(unsigned line, IHTMLSelectElement *select, const char *exval)
1247 {
1248     BSTR val;
1249     HRESULT hres;
1250
1251     hres = IHTMLSelectElement_get_value(select, &val);
1252     ok_(__FILE__,line) (hres == S_OK, "get_value failed: %08x\n", hres);
1253     if(exval)
1254         ok_(__FILE__,line) (!strcmp_wa(val, exval), "unexpected value %s\n", wine_dbgstr_w(val));
1255     else
1256         ok_(__FILE__,line) (val == NULL, "val=%s, expected NULL\n", wine_dbgstr_w(val));
1257 }
1258
1259 #define test_select_set_value(s,v) _test_select_set_value(__LINE__,s,v)
1260 static void _test_select_set_value(unsigned line, IHTMLSelectElement *select, const char *val)
1261 {
1262     BSTR bstr;
1263     HRESULT hres;
1264
1265     bstr = a2bstr(val);
1266     hres = IHTMLSelectElement_put_value(select, bstr);
1267     SysFreeString(bstr);
1268     ok_(__FILE__,line) (hres == S_OK, "put_value failed: %08x\n", hres);
1269 }
1270
1271 #define test_select_type(s,t) _test_select_type(__LINE__,s,t)
1272 static void _test_select_type(unsigned line, IHTMLSelectElement *select, const char *extype)
1273 {
1274     BSTR type;
1275     HRESULT hres;
1276
1277     hres = IHTMLSelectElement_get_type(select, &type);
1278     ok_(__FILE__,line) (hres == S_OK, "get_type failed: %08x\n", hres);
1279     ok_(__FILE__,line) (!strcmp_wa(type, extype), "type=%s, expected %s\n", wine_dbgstr_w(type), extype);
1280 }
1281
1282 #define test_range_text(r,t) _test_range_text(__LINE__,r,t)
1283 static void _test_range_text(unsigned line, IHTMLTxtRange *range, const char *extext)
1284 {
1285     BSTR text;
1286     HRESULT hres;
1287
1288     hres = IHTMLTxtRange_get_text(range, &text);
1289     ok_(__FILE__, line) (hres == S_OK, "get_text failed: %08x\n", hres);
1290
1291     if(extext) {
1292         ok_(__FILE__, line) (text != NULL, "text == NULL\n");
1293         ok_(__FILE__, line) (!strcmp_wa(text, extext), "text=%s, expected %s\n", wine_dbgstr_w(text), extext);
1294     }else {
1295         ok_(__FILE__, line) (text == NULL, "text=%s, expected NULL\n", wine_dbgstr_w(text));
1296     }
1297
1298     SysFreeString(text);
1299
1300 }
1301
1302 #define test_range_collapse(r,b) _test_range_collapse(__LINE__,r,b)
1303 static void _test_range_collapse(unsigned line, IHTMLTxtRange *range, BOOL b)
1304 {
1305     HRESULT hres;
1306
1307     hres = IHTMLTxtRange_collapse(range, b);
1308     ok_(__FILE__, line) (hres == S_OK, "collapse failed: %08x\n", hres);
1309     _test_range_text(line, range, NULL);
1310 }
1311
1312 #define test_range_expand(r,u,b,t) _test_range_expand(__LINE__,r,u,b,t)
1313 static void _test_range_expand(unsigned line, IHTMLTxtRange *range, LPWSTR unit,
1314         VARIANT_BOOL exb, const char *extext)
1315 {
1316     VARIANT_BOOL b = 0xe0e0;
1317     HRESULT hres;
1318
1319     hres = IHTMLTxtRange_expand(range, unit, &b);
1320     ok_(__FILE__,line) (hres == S_OK, "expand failed: %08x\n", hres);
1321     ok_(__FILE__,line) (b == exb, "b=%x, expected %x\n", b, exb);
1322     _test_range_text(line, range, extext);
1323 }
1324
1325 #define test_range_move(r,u,c,e) _test_range_move(__LINE__,r,u,c,e)
1326 static void _test_range_move(unsigned line, IHTMLTxtRange *range, LPWSTR unit, LONG cnt, LONG excnt)
1327 {
1328     LONG c = 0xdeadbeef;
1329     HRESULT hres;
1330
1331     hres = IHTMLTxtRange_move(range, unit, cnt, &c);
1332     ok_(__FILE__,line) (hres == S_OK, "move failed: %08x\n", hres);
1333     ok_(__FILE__,line) (c == excnt, "count=%d, expected %d\n", c, excnt);
1334     _test_range_text(line, range, NULL);
1335 }
1336
1337 #define test_range_movestart(r,u,c,e) _test_range_movestart(__LINE__,r,u,c,e)
1338 static void _test_range_movestart(unsigned line, IHTMLTxtRange *range,
1339         LPWSTR unit, LONG cnt, LONG excnt)
1340 {
1341     LONG c = 0xdeadbeef;
1342     HRESULT hres;
1343
1344     hres = IHTMLTxtRange_moveStart(range, unit, cnt, &c);
1345     ok_(__FILE__,line) (hres == S_OK, "move failed: %08x\n", hres);
1346     ok_(__FILE__,line) (c == excnt, "count=%d, expected %d\n", c, excnt);
1347 }
1348
1349 #define test_range_moveend(r,u,c,e) _test_range_moveend(__LINE__,r,u,c,e)
1350 static void _test_range_moveend(unsigned line, IHTMLTxtRange *range, LPWSTR unit, LONG cnt, LONG excnt)
1351 {
1352     LONG c = 0xdeadbeef;
1353     HRESULT hres;
1354
1355     hres = IHTMLTxtRange_moveEnd(range, unit, cnt, &c);
1356     ok_(__FILE__,line) (hres == S_OK, "move failed: %08x\n", hres);
1357     ok_(__FILE__,line) (c == excnt, "count=%d, expected %d\n", c, excnt);
1358 }
1359
1360 #define test_range_put_text(r,t) _test_range_put_text(__LINE__,r,t)
1361 static void _test_range_put_text(unsigned line, IHTMLTxtRange *range, const char *text)
1362 {
1363     HRESULT hres;
1364     BSTR bstr = a2bstr(text);
1365
1366     hres = IHTMLTxtRange_put_text(range, bstr);
1367     ok_(__FILE__,line) (hres == S_OK, "put_text failed: %08x\n", hres);
1368     SysFreeString(bstr);
1369     _test_range_text(line, range, NULL);
1370 }
1371
1372 #define test_range_inrange(r1,r2,b) _test_range_inrange(__LINE__,r1,r2,b)
1373 static void _test_range_inrange(unsigned line, IHTMLTxtRange *range1, IHTMLTxtRange *range2, VARIANT_BOOL exb)
1374 {
1375     VARIANT_BOOL b;
1376     HRESULT hres;
1377
1378     b = 0xe0e0;
1379     hres = IHTMLTxtRange_inRange(range1, range2, &b);
1380     ok_(__FILE__,line) (hres == S_OK, "(1->2) isEqual failed: %08x\n", hres);
1381     ok_(__FILE__,line) (b == exb, "(1->2) b=%x, expected %x\n", b, exb);
1382 }
1383
1384 #define test_range_isequal(r1,r2,b) _test_range_isequal(__LINE__,r1,r2,b)
1385 static void _test_range_isequal(unsigned line, IHTMLTxtRange *range1, IHTMLTxtRange *range2, VARIANT_BOOL exb)
1386 {
1387     VARIANT_BOOL b;
1388     HRESULT hres;
1389
1390     b = 0xe0e0;
1391     hres = IHTMLTxtRange_isEqual(range1, range2, &b);
1392     ok_(__FILE__,line) (hres == S_OK, "(1->2) isEqual failed: %08x\n", hres);
1393     ok_(__FILE__,line) (b == exb, "(1->2) b=%x, expected %x\n", b, exb);
1394
1395     b = 0xe0e0;
1396     hres = IHTMLTxtRange_isEqual(range2, range1, &b);
1397     ok_(__FILE__,line) (hres == S_OK, "(2->1) isEqual failed: %08x\n", hres);
1398     ok_(__FILE__,line) (b == exb, "(2->1) b=%x, expected %x\n", b, exb);
1399
1400     if(exb) {
1401         test_range_inrange(range1, range2, VARIANT_TRUE);
1402         test_range_inrange(range2, range1, VARIANT_TRUE);
1403     }
1404 }
1405
1406 #define test_range_parent(r,t) _test_range_parent(__LINE__,r,t)
1407 static void _test_range_parent(unsigned line, IHTMLTxtRange *range, elem_type_t type)
1408 {
1409     IHTMLElement *elem;
1410     HRESULT hres;
1411
1412     hres = IHTMLTxtRange_parentElement(range, &elem);
1413     ok_(__FILE__,line) (hres == S_OK, "parentElement failed: %08x\n", hres);
1414
1415     _test_elem_type(line, (IUnknown*)elem, type);
1416
1417     IHTMLElement_Release(elem);
1418 }
1419
1420 #define test_elem_collection(c,t,l) _test_elem_collection(__LINE__,c,t,l)
1421 static void _test_elem_collection(unsigned line, IUnknown *unk,
1422         const elem_type_t *elem_types, LONG exlen)
1423 {
1424     IHTMLElementCollection *col;
1425     LONG len;
1426     DWORD i;
1427     VARIANT name, index;
1428     IDispatch *disp, *disp2;
1429     HRESULT hres;
1430
1431     hres = IUnknown_QueryInterface(unk, &IID_IHTMLElementCollection, (void**)&col);
1432     ok_(__FILE__,line) (hres == S_OK, "Could not get IHTMLElementCollection: %08x\n", hres);
1433
1434     test_disp((IUnknown*)col, &DIID_DispHTMLElementCollection, "[object]");
1435
1436     hres = IHTMLElementCollection_get_length(col, &len);
1437     ok_(__FILE__,line) (hres == S_OK, "get_length failed: %08x\n", hres);
1438     ok_(__FILE__,line) (len == exlen, "len=%d, expected %d\n", len, exlen);
1439
1440     if(len > exlen)
1441         len = exlen;
1442
1443     V_VT(&index) = VT_EMPTY;
1444
1445     for(i=0; i<len; i++) {
1446         V_VT(&name) = VT_I4;
1447         V_I4(&name) = i;
1448         disp = (void*)0xdeadbeef;
1449         hres = IHTMLElementCollection_item(col, name, index, &disp);
1450         ok_(__FILE__,line) (hres == S_OK, "item(%d) failed: %08x\n", i, hres);
1451         ok_(__FILE__,line) (disp != NULL, "item returned NULL\n");
1452         if(FAILED(hres) || !disp)
1453             continue;
1454
1455         _test_elem_type(line, (IUnknown*)disp, elem_types[i]);
1456
1457         if(!i) {
1458             V_VT(&name) = VT_UINT;
1459             V_I4(&name) = 0;
1460             disp2 = (void*)0xdeadbeef;
1461             hres = IHTMLElementCollection_item(col, name, index, &disp2);
1462             ok_(__FILE__,line) (hres == S_OK, "item(%d) failed: %08x\n", i, hres);
1463             ok_(__FILE__,line) (iface_cmp((IUnknown*)disp, (IUnknown*)disp2), "disp != disp2\n");
1464             if(disp2)
1465                 IDispatch_Release(disp2);
1466         }
1467
1468         IDispatch_Release(disp);
1469     }
1470
1471     V_VT(&name) = VT_I4;
1472     V_I4(&name) = len;
1473     disp = (void*)0xdeadbeef;
1474     hres = IHTMLElementCollection_item(col, name, index, &disp);
1475     ok_(__FILE__,line) (hres == S_OK, "item failed: %08x\n", hres);
1476     ok_(__FILE__,line) (disp == NULL, "disp != NULL\n");
1477
1478     V_VT(&name) = VT_I4;
1479     V_I4(&name) = -1;
1480     disp = (void*)0xdeadbeef;
1481     hres = IHTMLElementCollection_item(col, name, index, &disp);
1482     ok_(__FILE__,line) (hres == E_INVALIDARG, "item failed: %08x, expected E_INVALIDARG\n", hres);
1483     ok_(__FILE__,line) (disp == NULL, "disp != NULL\n");
1484
1485     IHTMLElementCollection_Release(col);
1486 }
1487
1488 #define test_elem_all(c,t,l) _test_elem_all(__LINE__,c,t,l)
1489 static void _test_elem_all(unsigned line, IUnknown *unk, const elem_type_t *elem_types, LONG exlen)
1490 {
1491     IHTMLElement *elem = _get_elem_iface(line, unk);
1492     IDispatch *disp;
1493     HRESULT hres;
1494
1495     hres = IHTMLElement_get_all(elem, &disp);
1496     IHTMLElement_Release(elem);
1497     ok_(__FILE__,line)(hres == S_OK, "get_all failed: %08x\n", hres);
1498
1499     _test_elem_collection(line, (IUnknown*)disp, elem_types, exlen);
1500     IDispatch_Release(disp);
1501 }
1502
1503 #define test_elem_getelembytag(u,t,l) _test_elem_getelembytag(__LINE__,u,t,l)
1504 static void _test_elem_getelembytag(unsigned line, IUnknown *unk, elem_type_t type, LONG exlen)
1505 {
1506     IHTMLElement2 *elem = _get_elem2_iface(line, unk);
1507     IHTMLElementCollection *col = NULL;
1508     elem_type_t *types = NULL;
1509     BSTR tmp;
1510     int i;
1511     HRESULT hres;
1512
1513     tmp = a2bstr(elem_type_infos[type].tag);
1514     hres = IHTMLElement2_getElementsByTagName(elem, tmp, &col);
1515     SysFreeString(tmp);
1516     IHTMLElement2_Release(elem);
1517     ok_(__FILE__,line) (hres == S_OK, "getElementByTagName failed: %08x\n", hres);
1518     ok_(__FILE__,line) (col != NULL, "col == NULL\n");
1519
1520     if(exlen) {
1521         types = HeapAlloc(GetProcessHeap(), 0, exlen*sizeof(elem_type_t));
1522         for(i=0; i<exlen; i++)
1523             types[i] = type;
1524     }
1525
1526     _test_elem_collection(line, (IUnknown*)col, types, exlen);
1527
1528     HeapFree(GetProcessHeap(), 0, types);
1529 }
1530
1531 #define test_elem_innertext(e,t) _test_elem_innertext(__LINE__,e,t)
1532 static void _test_elem_innertext(unsigned line, IHTMLElement *elem, const char *extext)
1533 {
1534     BSTR text = NULL;
1535     HRESULT hres;
1536
1537     hres = IHTMLElement_get_innerText(elem, &text);
1538     ok_(__FILE__,line) (hres == S_OK, "get_innerText failed: %08x\n", hres);
1539     ok_(__FILE__,line) (!strcmp_wa(text, extext), "get_innerText returned %s expected %s\n",
1540                         wine_dbgstr_w(text), extext);
1541     SysFreeString(text);
1542 }
1543
1544 #define test_elem_set_innertext(e,t) _test_elem_set_innertext(__LINE__,e,t)
1545 static void _test_elem_set_innertext(unsigned line, IHTMLElement *elem, const char *text)
1546 {
1547     IHTMLDOMChildrenCollection *col;
1548     BSTR str;
1549     HRESULT hres;
1550
1551     str = a2bstr(text);
1552     hres = IHTMLElement_put_innerText(elem, str);
1553     ok_(__FILE__,line) (hres == S_OK, "put_innerText failed: %08x\n", hres);
1554     SysFreeString(str);
1555
1556     _test_elem_innertext(line, elem, text);
1557
1558
1559     col = _get_child_nodes(line, (IUnknown*)elem);
1560     ok(col != NULL, "col == NULL\n");
1561     if(col) {
1562         LONG length = 0, type;
1563         IHTMLDOMNode *node;
1564
1565         hres = IHTMLDOMChildrenCollection_get_length(col, &length);
1566         ok(hres == S_OK, "get_length failed: %08x\n", hres);
1567         ok(length == 1, "length = %d\n", length);
1568
1569         node = _get_child_item(line, col, 0);
1570         ok(node != NULL, "node == NULL\n");
1571         if(node) {
1572             type = _get_node_type(line, (IUnknown*)node);
1573             ok(type == 3, "type=%d\n", type);
1574             IHTMLDOMNode_Release(node);
1575         }
1576
1577         IHTMLDOMChildrenCollection_Release(col);
1578     }
1579
1580 }
1581
1582 #define test_elem_innerhtml(e,t) _test_elem_innerhtml(__LINE__,e,t)
1583 static void _test_elem_innerhtml(unsigned line, IUnknown *unk, const char *inner_html)
1584 {
1585     IHTMLElement *elem = _get_elem_iface(line, unk);
1586     BSTR html;
1587     HRESULT hres;
1588
1589     hres = IHTMLElement_get_innerHTML(elem, &html);
1590     ok_(__FILE__,line)(hres == S_OK, "get_innerHTML failed: %08x\n", hres);
1591     if(inner_html)
1592         ok_(__FILE__,line)(!strcmp_wa(html, inner_html), "unexpected innerHTML: %s\n", wine_dbgstr_w(html));
1593     else
1594         ok_(__FILE__,line)(!html, "innerHTML = %s\n", wine_dbgstr_w(html));
1595
1596     IHTMLElement_Release(elem);
1597     SysFreeString(html);
1598 }
1599
1600 #define test_elem_set_innerhtml(e,t) _test_elem_set_innerhtml(__LINE__,e,t)
1601 static void _test_elem_set_innerhtml(unsigned line, IUnknown *unk, const char *inner_html)
1602 {
1603     IHTMLElement *elem = _get_elem_iface(line, unk);
1604     BSTR html;
1605     HRESULT hres;
1606
1607     html = a2bstr(inner_html);
1608     hres = IHTMLElement_put_innerHTML(elem, html);
1609     ok_(__FILE__,line)(hres == S_OK, "put_innerHTML failed: %08x\n", hres);
1610
1611     IHTMLElement_Release(elem);
1612     SysFreeString(html);
1613 }
1614
1615 #define test_elem_set_outerhtml(e,t) _test_elem_set_outerhtml(__LINE__,e,t)
1616 static void _test_elem_set_outerhtml(unsigned line, IUnknown *unk, const char *outer_html)
1617 {
1618     IHTMLElement *elem = _get_elem_iface(line, unk);
1619     BSTR html;
1620     HRESULT hres;
1621
1622     html = a2bstr(outer_html);
1623     hres = IHTMLElement_put_outerHTML(elem, html);
1624     ok_(__FILE__,line)(hres == S_OK, "put_outerHTML failed: %08x\n", hres);
1625
1626     IHTMLElement_Release(elem);
1627     SysFreeString(html);
1628 }
1629
1630 #define get_first_child(n) _get_first_child(__LINE__,n)
1631 static IHTMLDOMNode *_get_first_child(unsigned line, IUnknown *unk)
1632 {
1633     IHTMLDOMNode *node = _get_node_iface(line, unk);
1634     IHTMLDOMNode *child = NULL;
1635     HRESULT hres;
1636
1637     hres = IHTMLDOMNode_get_firstChild(node, &child);
1638     IHTMLDOMNode_Release(node);
1639     ok_(__FILE__,line) (hres == S_OK, "get_firstChild failed: %08x\n", hres);
1640
1641     return child;
1642 }
1643
1644 #define test_node_has_child(u,b) _test_node_has_child(__LINE__,u,b)
1645 static void _test_node_has_child(unsigned line, IUnknown *unk, VARIANT_BOOL exb)
1646 {
1647     IHTMLDOMNode *node = _get_node_iface(line, unk);
1648     VARIANT_BOOL b = 0xdead;
1649     HRESULT hres;
1650
1651     hres = IHTMLDOMNode_hasChildNodes(node, &b);
1652     ok_(__FILE__,line) (hres == S_OK, "hasChildNodes failed: %08x\n", hres);
1653     ok_(__FILE__,line) (b == exb, "hasChildNodes=%x, expected %x\n", b, exb);
1654
1655     IHTMLDOMNode_Release(node);
1656 }
1657
1658 #define test_node_get_parent(u) _test_node_get_parent(__LINE__,u)
1659 static IHTMLDOMNode *_test_node_get_parent(unsigned line, IUnknown *unk)
1660 {
1661     IHTMLDOMNode *node = _get_node_iface(line, unk);
1662     IHTMLDOMNode *parent;
1663     HRESULT hres;
1664
1665     hres = IHTMLDOMNode_get_parentNode(node, &parent);
1666     IHTMLDOMNode_Release(node);
1667     ok_(__FILE__,line) (hres == S_OK, "get_parentNode failed: %08x\n", hres);
1668
1669     return parent;
1670 }
1671
1672 #define node_get_next(u) _node_get_next(__LINE__,u)
1673 static IHTMLDOMNode *_node_get_next(unsigned line, IUnknown *unk)
1674 {
1675     IHTMLDOMNode *node = _get_node_iface(line, unk);
1676     IHTMLDOMNode *next;
1677     HRESULT hres;
1678
1679     hres = IHTMLDOMNode_get_nextSibling(node, &next);
1680     IHTMLDOMNode_Release(node);
1681     ok_(__FILE__,line) (hres == S_OK, "get_nextSiblibg failed: %08x\n", hres);
1682
1683     return next;
1684 }
1685
1686 #define test_elem_get_parent(u) _test_elem_get_parent(__LINE__,u)
1687 static IHTMLElement *_test_elem_get_parent(unsigned line, IUnknown *unk)
1688 {
1689     IHTMLElement *elem = _get_elem_iface(line, unk);
1690     IHTMLElement *parent;
1691     HRESULT hres;
1692
1693     hres = IHTMLElement_get_parentElement(elem, &parent);
1694     IHTMLElement_Release(elem);
1695     ok_(__FILE__,line) (hres == S_OK, "get_parentElement failed: %08x\n", hres);
1696
1697     return parent;
1698 }
1699
1700 #define test_elem3_get_disabled(i,b) _test_elem3_get_disabled(__LINE__,i,b)
1701 static void _test_elem3_get_disabled(unsigned line, IUnknown *unk, VARIANT_BOOL exb)
1702 {
1703     IHTMLElement3 *elem3 = _get_elem3_iface(line, unk);
1704     VARIANT_BOOL disabled = 100;
1705     HRESULT hres;
1706
1707     if (!elem3) return;
1708     hres = IHTMLElement3_get_disabled(elem3, &disabled);
1709     ok_(__FILE__,line) (hres == S_OK, "get_disabled failed: %08x\n", hres);
1710     ok_(__FILE__,line) (disabled == exb, "disabled=%x, expected %x\n", disabled, exb);
1711     IHTMLElement3_Release(elem3);
1712 }
1713
1714 #define test_elem3_set_disabled(i,b) _test_elem3_set_disabled(__LINE__,i,b)
1715 static void _test_elem3_set_disabled(unsigned line, IUnknown *unk, VARIANT_BOOL b)
1716 {
1717     IHTMLElement3 *elem3 = _get_elem3_iface(line, unk);
1718     HRESULT hres;
1719
1720     if (!elem3) return;
1721     hres = IHTMLElement3_put_disabled(elem3, b);
1722     ok_(__FILE__,line) (hres == S_OK, "get_disabled failed: %08x\n", hres);
1723
1724     IHTMLElement3_Release(elem3);
1725     _test_elem3_get_disabled(line, unk, b);
1726 }
1727
1728 #define test_select_get_disabled(i,b) _test_select_get_disabled(__LINE__,i,b)
1729 static void _test_select_get_disabled(unsigned line, IHTMLSelectElement *select, VARIANT_BOOL exb)
1730 {
1731     VARIANT_BOOL disabled = 100;
1732     HRESULT hres;
1733
1734     hres = IHTMLSelectElement_get_disabled(select, &disabled);
1735     ok_(__FILE__,line) (hres == S_OK, "get_disabled failed: %08x\n", hres);
1736     ok_(__FILE__,line) (disabled == exb, "disabled=%x, expected %x\n", disabled, exb);
1737
1738     _test_elem3_get_disabled(line, (IUnknown*)select, exb);
1739 }
1740
1741 #define test_select_set_disabled(i,b) _test_select_set_disabled(__LINE__,i,b)
1742 static void _test_select_set_disabled(unsigned line, IHTMLSelectElement *select, VARIANT_BOOL b)
1743 {
1744     HRESULT hres;
1745
1746     hres = IHTMLSelectElement_put_disabled(select, b);
1747     ok_(__FILE__,line) (hres == S_OK, "get_disabled failed: %08x\n", hres);
1748
1749     _test_select_get_disabled(line, select, b);
1750 }
1751
1752 #define elem_get_scroll_height(u) _elem_get_scroll_height(__LINE__,u)
1753 static LONG _elem_get_scroll_height(unsigned line, IUnknown *unk)
1754 {
1755     IHTMLElement2 *elem = _get_elem2_iface(line, unk);
1756     IHTMLTextContainer *txtcont;
1757     LONG l = -1, l2 = -1;
1758     HRESULT hres;
1759
1760     hres = IHTMLElement2_get_scrollHeight(elem, &l);
1761     ok_(__FILE__,line) (hres == S_OK, "get_scrollHeight failed: %08x\n", hres);
1762     IHTMLElement2_Release(elem);
1763
1764     hres = IUnknown_QueryInterface(unk, &IID_IHTMLTextContainer, (void**)&txtcont);
1765     ok_(__FILE__,line) (hres == S_OK, "Could not get IHTMLTextContainer: %08x\n", hres);
1766
1767     hres = IHTMLTextContainer_get_scrollHeight(txtcont, &l2);
1768     IHTMLTextContainer_Release(txtcont);
1769     ok_(__FILE__,line) (hres == S_OK, "IHTMLTextContainer::get_scrollHeight failed: %d\n", l2);
1770     ok_(__FILE__,line) (l == l2, "unexpected height %d, expected %d\n", l2, l);
1771
1772     return l;
1773 }
1774
1775 #define elem_get_scroll_width(u) _elem_get_scroll_width(__LINE__,u)
1776 static LONG _elem_get_scroll_width(unsigned line, IUnknown *unk)
1777 {
1778     IHTMLElement2 *elem = _get_elem2_iface(line, unk);
1779     IHTMLTextContainer *txtcont;
1780     LONG l = -1, l2 = -1;
1781     HRESULT hres;
1782
1783     hres = IHTMLElement2_get_scrollWidth(elem, &l);
1784     ok_(__FILE__,line) (hres == S_OK, "get_scrollWidth failed: %08x\n", hres);
1785     IHTMLElement2_Release(elem);
1786
1787     hres = IUnknown_QueryInterface(unk, &IID_IHTMLTextContainer, (void**)&txtcont);
1788     ok_(__FILE__,line) (hres == S_OK, "Could not get IHTMLTextContainer: %08x\n", hres);
1789
1790     hres = IHTMLTextContainer_get_scrollWidth(txtcont, &l2);
1791     IHTMLTextContainer_Release(txtcont);
1792     ok_(__FILE__,line) (hres == S_OK, "IHTMLTextContainer::get_scrollWidth failed: %d\n", l2);
1793     ok_(__FILE__,line) (l == l2, "unexpected width %d, expected %d\n", l2, l);
1794
1795     return l;
1796 }
1797
1798 #define elem_get_scroll_top(u) _elem_get_scroll_top(__LINE__,u)
1799 static LONG _elem_get_scroll_top(unsigned line, IUnknown *unk)
1800 {
1801     IHTMLElement2 *elem = _get_elem2_iface(line, unk);
1802     IHTMLTextContainer *txtcont;
1803     LONG l = -1, l2 = -1;
1804     HRESULT hres;
1805
1806     hres = IHTMLElement2_get_scrollTop(elem, &l);
1807     ok_(__FILE__,line) (hres == S_OK, "get_scrollTop failed: %08x\n", hres);
1808     IHTMLElement2_Release(elem);
1809
1810     hres = IUnknown_QueryInterface(unk, &IID_IHTMLTextContainer, (void**)&txtcont);
1811     ok_(__FILE__,line) (hres == S_OK, "Could not get IHTMLTextContainer: %08x\n", hres);
1812
1813     hres = IHTMLTextContainer_get_scrollTop(txtcont, &l2);
1814     IHTMLTextContainer_Release(txtcont);
1815     ok_(__FILE__,line) (hres == S_OK, "IHTMLTextContainer::get_scrollTop failed: %d\n", l2);
1816     ok_(__FILE__,line) (l == l2, "unexpected top %d, expected %d\n", l2, l);
1817
1818     return l;
1819 }
1820
1821 #define elem_get_scroll_left(u) _elem_get_scroll_left(__LINE__,u)
1822 static void _elem_get_scroll_left(unsigned line, IUnknown *unk)
1823 {
1824     IHTMLElement2 *elem = _get_elem2_iface(line, unk);
1825     IHTMLTextContainer *txtcont;
1826     LONG l = -1, l2 = -1;
1827     HRESULT hres;
1828
1829     hres = IHTMLElement2_get_scrollLeft(elem, NULL);
1830     ok(hres == E_INVALIDARG, "expect E_INVALIDARG got 0x%08x\n", hres);
1831
1832     hres = IHTMLElement2_get_scrollLeft(elem, &l);
1833     ok(hres == S_OK, "get_scrollTop failed: %08x\n", hres);
1834     IHTMLElement2_Release(elem);
1835
1836     hres = IUnknown_QueryInterface(unk, &IID_IHTMLTextContainer, (void**)&txtcont);
1837     ok(hres == S_OK, "Could not get IHTMLTextContainer: %08x\n", hres);
1838
1839     hres = IHTMLTextContainer_get_scrollLeft(txtcont, &l2);
1840     IHTMLTextContainer_Release(txtcont);
1841     ok(hres == S_OK, "IHTMLTextContainer::get_scrollLeft failed: %d\n", l2);
1842     ok(l == l2, "unexpected left %d, expected %d\n", l2, l);
1843 }
1844
1845 #define test_img_src(i,s) _test_img_src(__LINE__,i,s)
1846 static void _test_img_src(unsigned line, IUnknown *unk, const char *exsrc)
1847 {
1848     IHTMLImgElement *img = _get_img_iface(line, unk);
1849     BSTR src;
1850     HRESULT hres;
1851
1852     hres = IHTMLImgElement_get_src(img, &src);
1853     IHTMLImgElement_Release(img);
1854     ok_(__FILE__,line) (hres == S_OK, "get_src failed: %08x\n", hres);
1855     ok_(__FILE__,line) (!strcmp_wa(src, exsrc), "get_src returned %s expected %s\n", wine_dbgstr_w(src), exsrc);
1856     SysFreeString(src);
1857 }
1858
1859 #define test_img_set_src(u,s) _test_img_set_src(__LINE__,u,s)
1860 static void _test_img_set_src(unsigned line, IUnknown *unk, const char *src)
1861 {
1862     IHTMLImgElement *img = _get_img_iface(line, unk);
1863     BSTR tmp;
1864     HRESULT hres;
1865
1866     tmp = a2bstr(src);
1867     hres = IHTMLImgElement_put_src(img, tmp);
1868     IHTMLImgElement_Release(img);
1869     SysFreeString(tmp);
1870     ok_(__FILE__,line) (hres == S_OK, "put_src failed: %08x\n", hres);
1871
1872     _test_img_src(line, unk, src);
1873 }
1874
1875 #define test_img_alt(u,a) _test_img_alt(__LINE__,u,a)
1876 static void _test_img_alt(unsigned line, IUnknown *unk, const char *exalt)
1877 {
1878     IHTMLImgElement *img = _get_img_iface(line, unk);
1879     BSTR alt;
1880     HRESULT hres;
1881
1882     hres = IHTMLImgElement_get_alt(img, &alt);
1883     ok_(__FILE__,line) (hres == S_OK, "get_alt failed: %08x\n", hres);
1884     if(exalt)
1885         ok_(__FILE__,line) (!strcmp_wa(alt, exalt), "inexopected alt %s\n", wine_dbgstr_w(alt));
1886     else
1887         ok_(__FILE__,line) (!alt, "alt != NULL\n");
1888     SysFreeString(alt);
1889 }
1890
1891 #define test_img_set_alt(u,a) _test_img_set_alt(__LINE__,u,a)
1892 static void _test_img_set_alt(unsigned line, IUnknown *unk, const char *alt)
1893 {
1894     IHTMLImgElement *img = _get_img_iface(line, unk);
1895     BSTR tmp;
1896     HRESULT hres;
1897
1898     tmp = a2bstr(alt);
1899     hres = IHTMLImgElement_put_alt(img, tmp);
1900     ok_(__FILE__,line) (hres == S_OK, "get_alt failed: %08x\n", hres);
1901     SysFreeString(tmp);
1902
1903     _test_img_alt(line, unk, alt);
1904 }
1905
1906 #define test_input_get_disabled(i,b) _test_input_get_disabled(__LINE__,i,b)
1907 static void _test_input_get_disabled(unsigned line, IHTMLInputElement *input, VARIANT_BOOL exb)
1908 {
1909     VARIANT_BOOL disabled = 100;
1910     HRESULT hres;
1911
1912     hres = IHTMLInputElement_get_disabled(input, &disabled);
1913     ok_(__FILE__,line) (hres == S_OK, "get_disabled failed: %08x\n", hres);
1914     ok_(__FILE__,line) (disabled == exb, "disabled=%x, expected %x\n", disabled, exb);
1915
1916     _test_elem3_get_disabled(line, (IUnknown*)input, exb);
1917 }
1918
1919 #define test_input_set_disabled(i,b) _test_input_set_disabled(__LINE__,i,b)
1920 static void _test_input_set_disabled(unsigned line, IHTMLInputElement *input, VARIANT_BOOL b)
1921 {
1922     HRESULT hres;
1923
1924     hres = IHTMLInputElement_put_disabled(input, b);
1925     ok_(__FILE__,line) (hres == S_OK, "get_disabled failed: %08x\n", hres);
1926
1927     _test_input_get_disabled(line, input, b);
1928 }
1929
1930 #define test_input_get_defaultchecked(i,b) _test_input_get_defaultchecked(__LINE__,i,b)
1931 static void _test_input_get_defaultchecked(unsigned line, IHTMLInputElement *input, VARIANT_BOOL exb)
1932 {
1933     VARIANT_BOOL checked = 100;
1934     HRESULT hres;
1935
1936     hres = IHTMLInputElement_get_defaultChecked(input, &checked);
1937     ok_(__FILE__,line) (hres == S_OK, "get_defaultChecked failed: %08x\n", hres);
1938     ok_(__FILE__,line) (checked == exb, "checked=%x, expected %x\n", checked, exb);
1939 }
1940
1941 #define test_input_set_defaultchecked(i,b) _test_input_set_defaultchecked(__LINE__,i,b)
1942 static void _test_input_set_defaultchecked(unsigned line, IHTMLInputElement *input, VARIANT_BOOL b)
1943 {
1944     HRESULT hres;
1945
1946     hres = IHTMLInputElement_put_defaultChecked(input, b);
1947     ok_(__FILE__,line) (hres == S_OK, "get_defaultChecked failed: %08x\n", hres);
1948
1949     _test_input_get_defaultchecked(line, input, b);
1950 }
1951
1952 #define test_input_get_checked(i,b) _test_input_get_checked(__LINE__,i,b)
1953 static void _test_input_get_checked(unsigned line, IHTMLInputElement *input, VARIANT_BOOL exb)
1954 {
1955     VARIANT_BOOL checked = 100;
1956     HRESULT hres;
1957
1958     hres = IHTMLInputElement_get_checked(input, &checked);
1959     ok_(__FILE__,line) (hres == S_OK, "get_checked failed: %08x\n", hres);
1960     ok_(__FILE__,line) (checked == exb, "checked=%x, expected %x\n", checked, exb);
1961 }
1962
1963 #define test_input_set_checked(i,b) _test_input_set_checked(__LINE__,i,b)
1964 static void _test_input_set_checked(unsigned line, IHTMLInputElement *input, VARIANT_BOOL b)
1965 {
1966     HRESULT hres;
1967
1968     hres = IHTMLInputElement_put_checked(input, b);
1969     ok_(__FILE__,line) (hres == S_OK, "get_checked failed: %08x\n", hres);
1970
1971     _test_input_get_checked(line, input, b);
1972 }
1973
1974 #define test_input_value(o,t) _test_input_value(__LINE__,o,t)
1975 static void _test_input_value(unsigned line, IUnknown *unk, const char *exval)
1976 {
1977     IHTMLInputElement *input;
1978     BSTR bstr;
1979     HRESULT hres;
1980
1981     hres = IUnknown_QueryInterface(unk, &IID_IHTMLInputElement, (void**)&input);
1982     ok_(__FILE__,line) (hres == S_OK, "Could not get IHTMLInputElement: %08x\n", hres);
1983     if(FAILED(hres))
1984         return;
1985
1986     hres = IHTMLInputElement_get_value(input, &bstr);
1987     ok_(__FILE__,line) (hres == S_OK, "get_value failed: %08x\n", hres);
1988     if(exval)
1989         ok_(__FILE__,line) (!strcmp_wa(bstr, exval), "value=%s\n", wine_dbgstr_w(bstr));
1990     else
1991         ok_(__FILE__,line) (!exval, "exval != NULL\n");
1992     SysFreeString(bstr);
1993     IHTMLInputElement_Release(input);
1994 }
1995
1996 #define test_input_put_value(o,v) _test_input_put_value(__LINE__,o,v)
1997 static void _test_input_put_value(unsigned line, IUnknown *unk, const char *val)
1998 {
1999     IHTMLInputElement *input;
2000     BSTR bstr;
2001     HRESULT hres;
2002
2003     hres = IUnknown_QueryInterface(unk, &IID_IHTMLInputElement, (void**)&input);
2004     ok_(__FILE__,line) (hres == S_OK, "Could not get IHTMLInputElement: %08x\n", hres);
2005     if(FAILED(hres))
2006         return;
2007
2008     bstr = a2bstr(val);
2009     hres = IHTMLInputElement_get_value(input, &bstr);
2010     ok_(__FILE__,line) (hres == S_OK, "get_value failed: %08x\n", hres);
2011     SysFreeString(bstr);
2012     IHTMLInputElement_Release(input);
2013 }
2014
2015 #define test_input_src(i,s) _test_input_src(__LINE__,i,s)
2016 static void _test_input_src(unsigned line, IHTMLInputElement *input, const char *exsrc)
2017 {
2018     BSTR src;
2019     HRESULT hres;
2020
2021     hres = IHTMLInputElement_get_src(input, &src);
2022     ok_(__FILE__,line) (hres == S_OK, "get_src failed: %08x\n", hres);
2023     if(exsrc)
2024         ok_(__FILE__,line) (!strcmp_wa(src, exsrc), "get_src returned %s expected %s\n", wine_dbgstr_w(src), exsrc);
2025     else
2026         ok_(__FILE__,line) (!src, "get_src returned %s expected NULL\n", wine_dbgstr_w(src));
2027     SysFreeString(src);
2028 }
2029
2030 #define test_input_set_src(u,s) _test_input_set_src(__LINE__,u,s)
2031 static void _test_input_set_src(unsigned line, IHTMLInputElement *input, const char *src)
2032 {
2033     BSTR tmp;
2034     HRESULT hres;
2035
2036     tmp = a2bstr(src);
2037     hres = IHTMLInputElement_put_src(input, tmp);
2038     SysFreeString(tmp);
2039     ok_(__FILE__,line) (hres == S_OK, "put_src failed: %08x\n", hres);
2040
2041     _test_input_src(line, input, src);
2042 }
2043
2044 #define test_elem_class(u,c) _test_elem_class(__LINE__,u,c)
2045 static void _test_elem_class(unsigned line, IUnknown *unk, const char *exclass)
2046 {
2047     IHTMLElement *elem = _get_elem_iface(line, unk);
2048     BSTR class = (void*)0xdeadbeef;
2049     HRESULT hres;
2050
2051     hres = IHTMLElement_get_className(elem, &class);
2052     IHTMLElement_Release(elem);
2053     ok_(__FILE__,line) (hres == S_OK, "get_className failed: %08x\n", hres);
2054     if(exclass)
2055         ok_(__FILE__,line) (!strcmp_wa(class, exclass), "unexpected className %s\n", wine_dbgstr_w(class));
2056     else
2057         ok_(__FILE__,line) (!class, "class != NULL\n");
2058     SysFreeString(class);
2059 }
2060
2061 #define test_elem_tabindex(u,i) _test_elem_tabindex(__LINE__,u,i)
2062 static void _test_elem_tabindex(unsigned line, IUnknown *unk, short exindex)
2063 {
2064     IHTMLElement2 *elem2 = _get_elem2_iface(line, unk);
2065     short index = -3;
2066     HRESULT hres;
2067
2068     hres = IHTMLElement2_get_tabIndex(elem2, &index);
2069     IHTMLElement2_Release(elem2);
2070     ok_(__FILE__,line) (hres == S_OK, "get_tabIndex failed: %08x\n", hres);
2071     ok_(__FILE__,line) (index == exindex, "unexpected index %d\n", index);
2072 }
2073
2074 #define test_elem_set_tabindex(u,i) _test_elem_set_tabindex(__LINE__,u,i)
2075 static void _test_elem_set_tabindex(unsigned line, IUnknown *unk, short index)
2076 {
2077     IHTMLElement2 *elem2 = _get_elem2_iface(line, unk);
2078     HRESULT hres;
2079
2080     hres = IHTMLElement2_put_tabIndex(elem2, index);
2081     IHTMLElement2_Release(elem2);
2082     ok_(__FILE__,line) (hres == S_OK, "get_tabIndex failed: %08x\n", hres);
2083
2084     _test_elem_tabindex(line, unk, index);
2085 }
2086
2087 #define test_elem_set_class(u,c) _test_elem_set_class(__LINE__,u,c)
2088 static void _test_elem_set_class(unsigned line, IUnknown *unk, const char *class)
2089 {
2090     IHTMLElement *elem = _get_elem_iface(line, unk);
2091     BSTR tmp;
2092     HRESULT hres;
2093
2094     tmp = class ? a2bstr(class) : NULL;
2095     hres = IHTMLElement_put_className(elem, tmp);
2096     IHTMLElement_Release(elem);
2097     ok_(__FILE__,line) (hres == S_OK, "put_className failed: %08x\n", hres);
2098     SysFreeString(tmp);
2099
2100     _test_elem_class(line, unk, class);
2101 }
2102
2103 #define test_elem_id(e,i) _test_elem_id(__LINE__,e,i)
2104 static void _test_elem_id(unsigned line, IUnknown *unk, const char *exid)
2105 {
2106     IHTMLElement *elem = _get_elem_iface(line, unk);
2107     BSTR id = (void*)0xdeadbeef;
2108     HRESULT hres;
2109
2110     hres = IHTMLElement_get_id(elem, &id);
2111     IHTMLElement_Release(elem);
2112     ok_(__FILE__,line) (hres == S_OK, "get_id failed: %08x\n", hres);
2113
2114     if(exid)
2115         ok_(__FILE__,line) (!strcmp_wa(id, exid), "unexpected id %s\n", wine_dbgstr_w(id));
2116     else
2117         ok_(__FILE__,line) (!id, "id=%s\n", wine_dbgstr_w(id));
2118
2119     SysFreeString(id);
2120 }
2121
2122 #define test_elem_put_id(u,i) _test_elem_put_id(__LINE__,u,i)
2123 static void _test_elem_put_id(unsigned line, IUnknown *unk, const char *new_id)
2124 {
2125     IHTMLElement *elem = _get_elem_iface(line, unk);
2126     BSTR tmp = a2bstr(new_id);
2127     HRESULT hres;
2128
2129     hres = IHTMLElement_put_id(elem, tmp);
2130     IHTMLElement_Release(elem);
2131     SysFreeString(tmp);
2132     ok_(__FILE__,line) (hres == S_OK, "put_id failed: %08x\n", hres);
2133
2134     _test_elem_id(line, unk, new_id);
2135 }
2136
2137 #define test_elem_title(u,t) _test_elem_title(__LINE__,u,t)
2138 static void _test_elem_title(unsigned line, IUnknown *unk, const char *extitle)
2139 {
2140     IHTMLElement *elem = _get_elem_iface(line, unk);
2141     BSTR title;
2142     HRESULT hres;
2143
2144     hres = IHTMLElement_get_title(elem, &title);
2145     IHTMLElement_Release(elem);
2146     ok_(__FILE__,line) (hres == S_OK, "get_title failed: %08x\n", hres);
2147     if(extitle)
2148         ok_(__FILE__,line) (!strcmp_wa(title, extitle), "unexpected title %s\n", wine_dbgstr_w(title));
2149     else
2150         ok_(__FILE__,line) (!title, "title=%s, expected NULL\n", wine_dbgstr_w(title));
2151
2152     SysFreeString(title);
2153 }
2154
2155 #define test_elem_set_title(u,t) _test_elem_set_title(__LINE__,u,t)
2156 static void _test_elem_set_title(unsigned line, IUnknown *unk, const char *title)
2157 {
2158     IHTMLElement *elem = _get_elem_iface(line, unk);
2159     BSTR tmp;
2160     HRESULT hres;
2161
2162     tmp = a2bstr(title);
2163     hres = IHTMLElement_put_title(elem, tmp);
2164     ok_(__FILE__,line) (hres == S_OK, "get_title failed: %08x\n", hres);
2165
2166     IHTMLElement_Release(elem);
2167     SysFreeString(tmp);
2168 }
2169
2170 #define test_node_get_value_str(u,e) _test_node_get_value_str(__LINE__,u,e)
2171 static void _test_node_get_value_str(unsigned line, IUnknown *unk, const char *exval)
2172 {
2173     IHTMLDOMNode *node = _get_node_iface(line, unk);
2174     VARIANT var;
2175     HRESULT hres;
2176
2177     hres = IHTMLDOMNode_get_nodeValue(node, &var);
2178     IHTMLDOMNode_Release(node);
2179     ok_(__FILE__,line) (hres == S_OK, "get_nodeValue failed: %08x, expected VT_BSTR\n", hres);
2180
2181     if(exval) {
2182         ok_(__FILE__,line) (V_VT(&var) == VT_BSTR, "vt=%d\n", V_VT(&var));
2183         ok_(__FILE__,line) (!strcmp_wa(V_BSTR(&var), exval), "unexpected value %s\n", wine_dbgstr_w(V_BSTR(&var)));
2184     }else {
2185         ok_(__FILE__,line) (V_VT(&var) == VT_NULL, "vt=%d, expected VT_NULL\n", V_VT(&var));
2186     }
2187
2188     VariantClear(&var);
2189 }
2190
2191 #define test_node_put_value_str(u,v) _test_node_put_value_str(__LINE__,u,v)
2192 static void _test_node_put_value_str(unsigned line, IUnknown *unk, const char *val)
2193 {
2194     IHTMLDOMNode *node = _get_node_iface(line, unk);
2195     VARIANT var;
2196     HRESULT hres;
2197
2198     V_VT(&var) = VT_BSTR;
2199     V_BSTR(&var) = a2bstr(val);
2200
2201     hres = IHTMLDOMNode_put_nodeValue(node, var);
2202     ok_(__FILE__,line) (hres == S_OK, "get_nodeValue failed: %08x, expected VT_BSTR\n", hres);
2203     IHTMLDOMNode_Release(node);
2204     VariantClear(&var);
2205 }
2206
2207 #define test_elem_client_size(u) _test_elem_client_size(__LINE__,u)
2208 static void _test_elem_client_size(unsigned line, IUnknown *unk)
2209 {
2210     IHTMLElement2 *elem = _get_elem2_iface(line, unk);
2211     LONG l;
2212     HRESULT hres;
2213
2214     hres = IHTMLElement2_get_clientWidth(elem, &l);
2215     ok_(__FILE__,line) (hres == S_OK, "get_clientWidth failed: %08x\n", hres);
2216     hres = IHTMLElement2_get_clientHeight(elem, &l);
2217     ok_(__FILE__,line) (hres == S_OK, "get_clientHeight failed: %08x\n", hres);
2218
2219     IHTMLElement2_Release(elem);
2220 }
2221
2222 #define test_elem_client_rect(u) _test_elem_client_rect(__LINE__,u)
2223 static void _test_elem_client_rect(unsigned line, IUnknown *unk)
2224 {
2225     IHTMLElement2 *elem = _get_elem2_iface(line, unk);
2226     LONG l;
2227     HRESULT hres;
2228
2229     hres = IHTMLElement2_get_clientLeft(elem, &l);
2230     ok_(__FILE__,line) (hres == S_OK, "get_clientLeft failed: %08x\n", hres);
2231     ok_(__FILE__,line) (!l, "clientLeft = %d\n", l);
2232
2233     hres = IHTMLElement2_get_clientTop(elem, &l);
2234     ok_(__FILE__,line) (hres == S_OK, "get_clientTop failed: %08x\n", hres);
2235     ok_(__FILE__,line) (!l, "clientTop = %d\n", l);
2236
2237     IHTMLElement2_Release(elem);
2238 }
2239
2240 #define get_elem_doc(e) _get_elem_doc(__LINE__,e)
2241 static IHTMLDocument2 *_get_elem_doc(unsigned line, IUnknown *unk)
2242 {
2243     IHTMLElement *elem = _get_elem_iface(line, unk);
2244     IHTMLDocument2 *doc;
2245     IDispatch *disp;
2246     HRESULT hres;
2247
2248     disp = NULL;
2249     hres = IHTMLElement_get_document(elem, &disp);
2250     ok(hres == S_OK, "get_document failed: %08x\n", hres);
2251     ok(disp != NULL, "disp == NULL\n");
2252
2253     hres = IDispatch_QueryInterface(disp, &IID_IHTMLDocument2, (void**)&doc);
2254     IDispatch_Release(disp);
2255     ok(hres == S_OK, "Could not get IHTMLDocument2 iface: %08x\n", hres);
2256
2257     return doc;
2258 }
2259
2260 #define get_window_doc(e) _get_window_doc(__LINE__,e)
2261 static IHTMLDocument2 *_get_window_doc(unsigned line, IHTMLWindow2 *window)
2262 {
2263     IHTMLDocument2 *doc;
2264     HRESULT hres;
2265
2266     doc = NULL;
2267     hres = IHTMLWindow2_get_document(window, &doc);
2268     ok(hres == S_OK, "get_document failed: %08x\n", hres);
2269     ok(doc != NULL, "disp == NULL\n");
2270
2271     return doc;
2272 }
2273
2274 #define test_create_elem(d,t) _test_create_elem(__LINE__,d,t)
2275 static IHTMLElement *_test_create_elem(unsigned line, IHTMLDocument2 *doc, const char *tag)
2276 {
2277     IHTMLElement *elem = NULL;
2278     BSTR tmp;
2279     HRESULT hres;
2280
2281     tmp = a2bstr(tag);
2282     hres = IHTMLDocument2_createElement(doc, tmp, &elem);
2283     ok_(__FILE__,line) (hres == S_OK, "createElement failed: %08x\n", hres);
2284     ok_(__FILE__,line) (elem != NULL, "elem == NULL\n");
2285
2286     return elem;
2287 }
2288
2289 #define test_create_text(d,t) _test_create_text(__LINE__,d,t)
2290 static IHTMLDOMNode *_test_create_text(unsigned line, IHTMLDocument2 *doc, const char *text)
2291 {
2292     IHTMLDocument3 *doc3;
2293     IHTMLDOMNode *node = NULL;
2294     BSTR tmp;
2295     HRESULT hres;
2296
2297     hres = IHTMLDocument2_QueryInterface(doc, &IID_IHTMLDocument3, (void**)&doc3);
2298     ok_(__FILE__,line) (hres == S_OK, "Could not get IHTMLDocument3: %08x\n", hres);
2299
2300     tmp = a2bstr(text);
2301     hres = IHTMLDocument3_createTextNode(doc3, tmp, &node);
2302     IHTMLDocument3_Release(doc3);
2303     ok_(__FILE__,line) (hres == S_OK, "createElement failed: %08x\n", hres);
2304     ok_(__FILE__,line) (node != NULL, "node == NULL\n");
2305
2306     return node;
2307 }
2308
2309 #define test_node_append_child(n,c) _test_node_append_child(__LINE__,n,c)
2310 static IHTMLDOMNode *_test_node_append_child(unsigned line, IUnknown *node_unk, IUnknown *child_unk)
2311 {
2312     IHTMLDOMNode *node = _get_node_iface(line, node_unk);
2313     IHTMLDOMNode *child = _get_node_iface(line, child_unk);
2314     IHTMLDOMNode *new_child = NULL;
2315     HRESULT hres;
2316
2317     hres = IHTMLDOMNode_appendChild(node, child, &new_child);
2318     ok_(__FILE__,line) (hres == S_OK, "appendChild failed: %08x\n", hres);
2319     ok_(__FILE__,line) (new_child != NULL, "new_child == NULL\n");
2320     /* TODO  ok_(__FILE__,line) (new_child != child, "new_child == child\n"); */
2321
2322     IHTMLDOMNode_Release(node);
2323     IHTMLDOMNode_Release(child);
2324
2325     return new_child;
2326 }
2327
2328 #define test_node_insertbefore(n,c,v) _test_node_insertbefore(__LINE__,n,c,v)
2329 static IHTMLDOMNode *_test_node_insertbefore(unsigned line, IUnknown *node_unk, IHTMLDOMNode *child, VARIANT *var)
2330 {
2331     IHTMLDOMNode *node = _get_node_iface(line, node_unk);
2332     IHTMLDOMNode *new_child = NULL;
2333     HRESULT hres;
2334
2335     hres = IHTMLDOMNode_insertBefore(node, child, *var, &new_child);
2336     ok_(__FILE__,line) (hres == S_OK, "insertBefore failed: %08x\n", hres);
2337     ok_(__FILE__,line) (new_child != NULL, "new_child == NULL\n");
2338     /* TODO  ok_(__FILE__,line) (new_child != child, "new_child == child\n"); */
2339
2340     IHTMLDOMNode_Release(node);
2341
2342     return new_child;
2343 }
2344
2345 #define test_node_remove_child(n,c) _test_node_remove_child(__LINE__,n,c)
2346 static void _test_node_remove_child(unsigned line, IUnknown *unk, IHTMLDOMNode *child)
2347 {
2348     IHTMLDOMNode *node = _get_node_iface(line, unk);
2349     IHTMLDOMNode *new_node = NULL;
2350     HRESULT hres;
2351
2352     hres = IHTMLDOMNode_removeChild(node, child, &new_node);
2353     ok_(__FILE__,line) (hres == S_OK, "removeChild failed: %08x\n", hres);
2354     ok_(__FILE__,line) (new_node != NULL, "new_node == NULL\n");
2355     /* TODO ok_(__FILE__,line) (new_node != child, "new_node == child\n"); */
2356
2357     IHTMLDOMNode_Release(node);
2358     IHTMLDOMNode_Release(new_node);
2359 }
2360
2361 #define test_doc_title(d,t) _test_doc_title(__LINE__,d,t)
2362 static void _test_doc_title(unsigned line, IHTMLDocument2 *doc, const char *extitle)
2363 {
2364     BSTR title = NULL;
2365     HRESULT hres;
2366
2367     hres = IHTMLDocument2_get_title(doc, &title);
2368     ok_(__FILE__,line) (hres == S_OK, "get_title failed: %08x\n", hres);
2369     ok_(__FILE__,line) (!strcmp_wa(title, extitle), "unexpected title %s\n", wine_dbgstr_w(title));
2370     SysFreeString(title);
2371 }
2372
2373 #define test_doc_set_title(d,t) _test_doc_set_title(__LINE__,d,t)
2374 static void _test_doc_set_title(unsigned line, IHTMLDocument2 *doc, const char *title)
2375 {
2376     BSTR tmp;
2377     HRESULT hres;
2378
2379     tmp = a2bstr(title);
2380     hres = IHTMLDocument2_put_title(doc, tmp);
2381     ok_(__FILE__,line) (hres == S_OK, "get_title failed: %08x\n", hres);
2382     SysFreeString(tmp);
2383 }
2384
2385 #define test_border_styles(p, n) _test_border_styles(__LINE__, p, n)
2386 static void _test_border_styles(unsigned line, IHTMLStyle *pStyle, BSTR Name)
2387 {
2388     HRESULT hres;
2389     DISPID dispid;
2390
2391     hres = IHTMLStyle_GetIDsOfNames(pStyle, &IID_NULL, &Name, 1,
2392                         LOCALE_USER_DEFAULT, &dispid);
2393     ok_(__FILE__,line) (hres == S_OK, "GetIDsOfNames: %08x\n", hres);
2394     if(hres == S_OK)
2395     {
2396         DISPPARAMS params = {NULL,NULL,0,0};
2397         DISPID dispidNamed = DISPID_PROPERTYPUT;
2398         VARIANT ret;
2399         VARIANT vDefault;
2400         VARIANTARG arg;
2401
2402         hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
2403             DISPATCH_PROPERTYGET, &params, &vDefault, NULL, NULL);
2404         ok_(__FILE__,line) (hres == S_OK, "get_default. ret: %08x\n", hres);
2405
2406         params.cArgs = 1;
2407         params.cNamedArgs = 1;
2408         params.rgdispidNamedArgs = &dispidNamed;
2409         V_VT(&arg) = VT_BSTR;
2410         V_BSTR(&arg) = a2bstr("none");
2411         params.rgvarg = &arg;
2412         hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
2413             DISPATCH_PROPERTYPUT, &params, &ret, NULL, NULL);
2414         ok_(__FILE__,line) (hres == S_OK, "none. ret: %08x\n", hres);
2415         VariantClear(&arg);
2416
2417         V_VT(&arg) = VT_BSTR;
2418         V_BSTR(&arg) = a2bstr("dotted");
2419         hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
2420             DISPATCH_PROPERTYPUT, &params, &ret, NULL, NULL);
2421         ok_(__FILE__,line) (hres == S_OK, "dotted. ret: %08x\n", hres);
2422         VariantClear(&arg);
2423
2424         V_VT(&arg) = VT_BSTR;
2425         V_BSTR(&arg) = a2bstr("dashed");
2426         hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
2427         DISPATCH_PROPERTYPUT, &params, &ret, NULL, NULL);
2428         ok_(__FILE__,line) (hres == S_OK, "dashed. ret: %08x\n", hres);
2429         VariantClear(&arg);
2430
2431         V_VT(&arg) = VT_BSTR;
2432         V_BSTR(&arg) = a2bstr("solid");
2433         hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
2434             DISPATCH_PROPERTYPUT, &params, &ret, NULL, NULL);
2435         ok_(__FILE__,line) (hres == S_OK, "solid. ret: %08x\n", hres);
2436         VariantClear(&arg);
2437
2438         V_VT(&arg) = VT_BSTR;
2439         V_BSTR(&arg) = a2bstr("double");
2440         hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
2441             DISPATCH_PROPERTYPUT, &params, &ret, NULL, NULL);
2442         ok_(__FILE__,line) (hres == S_OK, "double. ret: %08x\n", hres);
2443         VariantClear(&arg);
2444
2445         V_VT(&arg) = VT_BSTR;
2446         V_BSTR(&arg) = a2bstr("groove");
2447         hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
2448             DISPATCH_PROPERTYPUT, &params, &ret, NULL, NULL);
2449         ok_(__FILE__,line) (hres == S_OK, "groove. ret: %08x\n", hres);
2450         VariantClear(&arg);
2451
2452         V_VT(&arg) = VT_BSTR;
2453         V_BSTR(&arg) = a2bstr("ridge");
2454         hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
2455             DISPATCH_PROPERTYPUT, &params, &ret, NULL, NULL);
2456         ok_(__FILE__,line) (hres == S_OK, "ridge. ret: %08x\n", hres);
2457         VariantClear(&arg);
2458
2459         V_VT(&arg) = VT_BSTR;
2460         V_BSTR(&arg) = a2bstr("inset");
2461         hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
2462             DISPATCH_PROPERTYPUT, &params, &ret, NULL, NULL);
2463         ok_(__FILE__,line) (hres == S_OK, "inset. ret: %08x\n", hres);
2464         VariantClear(&arg);
2465
2466         V_VT(&arg) = VT_BSTR;
2467         V_BSTR(&arg) = a2bstr("outset");
2468         hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
2469             DISPATCH_PROPERTYPUT, &params, &ret, NULL, NULL);
2470         ok_(__FILE__,line) (hres == S_OK, "outset. ret: %08x\n", hres);
2471         VariantClear(&arg);
2472
2473         V_VT(&arg) = VT_BSTR;
2474         V_BSTR(&arg) = a2bstr("invalid");
2475         hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
2476             DISPATCH_PROPERTYPUT, &params, &ret, NULL, NULL);
2477         ok_(__FILE__,line) (FAILED(hres), "invalid value passed.\n");
2478         VariantClear(&arg);
2479
2480         params.rgvarg = &vDefault;
2481         hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
2482             DISPATCH_PROPERTYPUT, &params, &ret, NULL, NULL);
2483         ok_(__FILE__,line) (hres == S_OK, "default. ret: %08x\n", hres);
2484     }
2485 }
2486
2487 #define test_style_csstext(s,t) _test_style_csstext(__LINE__,s,t)
2488 static void _test_style_csstext(unsigned line, IHTMLStyle *style, const char *extext)
2489 {
2490     BSTR text = (void*)0xdeadbeef;
2491     HRESULT hres;
2492
2493     hres = IHTMLStyle_get_cssText(style, &text);
2494     ok_(__FILE__,line)(hres == S_OK, "get_cssText failed: %08x\n", hres);
2495     if(extext)
2496         ok_(__FILE__,line)(!strcmp_wa(text, extext), "cssText = %s\n", wine_dbgstr_w(text));
2497     else
2498         ok_(__FILE__,line)(!text, "cssText = %s\n", wine_dbgstr_w(text));
2499
2500     SysFreeString(text);
2501 }
2502
2503 #define test_style_set_csstext(s,t) _test_style_set_csstext(__LINE__,s,t)
2504 static void _test_style_set_csstext(unsigned line, IHTMLStyle *style, const char *text)
2505 {
2506     BSTR tmp;
2507     HRESULT hres;
2508
2509     tmp = a2bstr(text);
2510     hres = IHTMLStyle_put_cssText(style, tmp);
2511     ok_(__FILE__,line)(hres == S_OK, "put_cssText failed: %08x\n", hres);
2512     SysFreeString(tmp);
2513 }
2514
2515 static void test_elem_col_item(IHTMLElementCollection *col, const char *n,
2516         const elem_type_t *elem_types, LONG len)
2517 {
2518     IDispatch *disp;
2519     VARIANT name, index;
2520     DWORD i;
2521     HRESULT hres;
2522
2523     V_VT(&index) = VT_EMPTY;
2524     V_VT(&name) = VT_BSTR;
2525     V_BSTR(&name) = a2bstr(n);
2526
2527     hres = IHTMLElementCollection_item(col, name, index, &disp);
2528     ok(hres == S_OK, "item failed: %08x\n", hres);
2529
2530     test_elem_collection((IUnknown*)disp, elem_types, len);
2531     IDispatch_Release(disp);
2532     ok(hres == S_OK, "Could not get IHTMLElementCollection interface: %08x\n", hres);
2533     if(hres != S_OK)
2534         goto cleanup;
2535
2536     V_VT(&index) = VT_I4;
2537
2538     for(i=0; i<len; i++) {
2539         V_I4(&index) = i;
2540         disp = (void*)0xdeadbeef;
2541         hres = IHTMLElementCollection_item(col, name, index, &disp);
2542         ok(hres == S_OK, "item failed: %08x\n", hres);
2543         ok(disp != NULL, "disp == NULL\n");
2544         if(FAILED(hres) || !disp)
2545             continue;
2546
2547         test_elem_type((IUnknown*)disp, elem_types[i]);
2548
2549         IDispatch_Release(disp);
2550     }
2551
2552     V_I4(&index) = len;
2553     disp = (void*)0xdeadbeef;
2554     hres = IHTMLElementCollection_item(col, name, index, &disp);
2555     ok(hres == S_OK, "item failed: %08x\n", hres);
2556     ok(disp == NULL, "disp != NULL\n");
2557
2558     V_I4(&index) = -1;
2559     disp = (void*)0xdeadbeef;
2560     hres = IHTMLElementCollection_item(col, name, index, &disp);
2561     ok(hres == E_INVALIDARG, "item failed: %08x, expected E_INVALIDARG\n", hres);
2562     ok(disp == NULL, "disp != NULL\n");
2563
2564 cleanup:
2565     SysFreeString(V_BSTR(&name));
2566 }
2567
2568 static IHTMLElement *get_elem_by_id(IHTMLDocument2 *doc, const char *id, BOOL expect_success)
2569 {
2570     IHTMLElementCollection *col;
2571     IHTMLElement *elem;
2572     IDispatch *disp = (void*)0xdeadbeef;
2573     VARIANT name, index;
2574     HRESULT hres;
2575
2576     hres = IHTMLDocument2_get_all(doc, &col);
2577     ok(hres == S_OK, "get_all failed: %08x\n", hres);
2578     ok(col != NULL, "col == NULL\n");
2579     if(FAILED(hres) || !col)
2580         return NULL;
2581
2582     V_VT(&index) = VT_EMPTY;
2583     V_VT(&name) = VT_BSTR;
2584     V_BSTR(&name) = a2bstr(id);
2585
2586     hres = IHTMLElementCollection_item(col, name, index, &disp);
2587     IHTMLElementCollection_Release(col);
2588     SysFreeString(V_BSTR(&name));
2589     ok(hres == S_OK, "item failed: %08x\n", hres);
2590     if(!expect_success) {
2591         ok(disp == NULL, "disp != NULL\n");
2592         return NULL;
2593     }
2594
2595     ok(disp != NULL, "disp == NULL\n");
2596     if(!disp)
2597         return NULL;
2598
2599     elem = get_elem_iface((IUnknown*)disp);
2600     IDispatch_Release(disp);
2601
2602     return elem;
2603 }
2604
2605 static IHTMLElement *get_doc_elem_by_id(IHTMLDocument2 *doc, const char *id)
2606 {
2607     IHTMLDocument3 *doc3;
2608     IHTMLElement *elem;
2609     BSTR tmp;
2610     HRESULT hres;
2611
2612     hres = IHTMLDocument2_QueryInterface(doc, &IID_IHTMLDocument3, (void**)&doc3);
2613     ok(hres == S_OK, "Could not get IHTMLDocument3 iface: %08x\n", hres);
2614
2615     tmp = a2bstr(id);
2616     hres = IHTMLDocument3_getElementById(doc3, tmp, &elem);
2617     SysFreeString(tmp);
2618     ok(hres == S_OK, "getElementById(%s) failed: %08x\n", id, hres);
2619
2620     IHTMLDocument3_Release(doc3);
2621
2622     return elem;
2623 }
2624
2625 static void test_select_elem(IHTMLSelectElement *select)
2626 {
2627     test_select_type(select, "select-one");
2628     test_select_length(select, 2);
2629     test_select_selidx(select, 0);
2630     test_select_put_selidx(select, 1);
2631
2632     test_select_set_value(select, "val1");
2633     test_select_value(select, "val1");
2634
2635     test_select_get_disabled(select, VARIANT_FALSE);
2636     test_select_set_disabled(select, VARIANT_TRUE);
2637     test_select_set_disabled(select, VARIANT_FALSE);
2638 }
2639
2640 static void test_create_option_elem(IHTMLDocument2 *doc)
2641 {
2642     IHTMLOptionElement *option;
2643
2644     option = create_option_elem(doc, "test text", "test value");
2645
2646     test_option_put_text(option, "new text");
2647     test_option_put_value(option, "new value");
2648
2649     IHTMLOptionElement_Release(option);
2650 }
2651
2652 static void test_create_img_elem(IHTMLDocument2 *doc)
2653 {
2654     IHTMLImgElement *img;
2655
2656     img = create_img_elem(doc, 10, 15);
2657
2658     if(img){
2659         test_img_put_width(img, 5);
2660         test_img_put_height(img, 20);
2661
2662         IHTMLImgElement_Release(img);
2663         img = NULL;
2664     }
2665
2666     img = create_img_elem(doc, -1, -1);
2667
2668     if(img){
2669         test_img_put_width(img, 5);
2670         test_img_put_height(img, 20);
2671
2672         IHTMLImgElement_Release(img);
2673     }
2674 }
2675
2676 static IHTMLTxtRange *test_create_body_range(IHTMLDocument2 *doc)
2677 {
2678     IHTMLBodyElement *body;
2679     IHTMLTxtRange *range;
2680     IHTMLElement *elem;
2681     HRESULT hres;
2682
2683     hres = IHTMLDocument2_get_body(doc, &elem);
2684     ok(hres == S_OK, "get_body failed: %08x\n", hres);
2685
2686     hres = IHTMLElement_QueryInterface(elem, &IID_IHTMLBodyElement, (void**)&body);
2687     IHTMLElement_Release(elem);
2688
2689     hres = IHTMLBodyElement_createTextRange(body, &range);
2690     IHTMLBodyElement_Release(body);
2691     ok(hres == S_OK, "createTextRange failed: %08x\n", hres);
2692
2693     return range;
2694 }
2695
2696 static void test_txtrange(IHTMLDocument2 *doc)
2697 {
2698     IHTMLTxtRange *body_range, *range, *range2;
2699     IHTMLSelectionObject *selection;
2700     IDispatch *disp_range;
2701     HRESULT hres;
2702
2703     body_range = test_create_body_range(doc);
2704
2705     test_range_text(body_range, "test abc 123\r\nit's text");
2706
2707     hres = IHTMLTxtRange_duplicate(body_range, &range);
2708     ok(hres == S_OK, "duplicate failed: %08x\n", hres);
2709
2710     hres = IHTMLTxtRange_duplicate(body_range, &range2);
2711     ok(hres == S_OK, "duplicate failed: %08x\n", hres);
2712     test_range_isequal(range, range2, VARIANT_TRUE);
2713
2714     test_range_text(range, "test abc 123\r\nit's text");
2715     test_range_text(body_range, "test abc 123\r\nit's text");
2716
2717     test_range_collapse(range, TRUE);
2718     test_range_isequal(range, range2, VARIANT_FALSE);
2719     test_range_inrange(range, range2, VARIANT_FALSE);
2720     test_range_inrange(range2, range, VARIANT_TRUE);
2721     IHTMLTxtRange_Release(range2);
2722
2723     test_range_expand(range, wordW, VARIANT_TRUE, "test ");
2724     test_range_expand(range, wordW, VARIANT_FALSE, "test ");
2725     test_range_move(range, characterW, 2, 2);
2726     test_range_expand(range, wordW, VARIANT_TRUE, "test ");
2727
2728     test_range_collapse(range, FALSE);
2729     test_range_expand(range, wordW, VARIANT_TRUE, "abc ");
2730
2731     test_range_collapse(range, FALSE);
2732     test_range_expand(range, wordW, VARIANT_TRUE, "123");
2733     test_range_expand(range, wordW, VARIANT_FALSE, "123");
2734     test_range_move(range, characterW, 2, 2);
2735     test_range_expand(range, wordW, VARIANT_TRUE, "123");
2736     test_range_moveend(range, characterW, -5, -5);
2737     test_range_text(range, NULL);
2738     test_range_moveend(range, characterW, 3, 3);
2739     test_range_text(range, "c 1");
2740     test_range_expand(range, texteditW, VARIANT_TRUE, "test abc 123\r\nit's text");
2741     test_range_collapse(range, TRUE);
2742     test_range_move(range, characterW, 4, 4);
2743     test_range_moveend(range, characterW, 1, 1);
2744     test_range_text(range, " ");
2745     test_range_move(range, wordW, 1, 1);
2746     test_range_moveend(range, characterW, 2, 2);
2747     test_range_text(range, "ab");
2748
2749     IHTMLTxtRange_Release(range);
2750
2751     hres = IHTMLTxtRange_duplicate(body_range, &range);
2752     ok(hres == S_OK, "duplicate failed: %08x\n", hres);
2753
2754     test_range_text(range, "test abc 123\r\nit's text");
2755     test_range_move(range, characterW, 3, 3);
2756     test_range_moveend(range, characterW, 1, 1);
2757     test_range_text(range, "t");
2758     test_range_moveend(range, characterW, 3, 3);
2759     test_range_text(range, "t ab");
2760     test_range_moveend(range, characterW, -2, -2);
2761     test_range_text(range, "t ");
2762     test_range_move(range, characterW, 6, 6);
2763     test_range_moveend(range, characterW, 3, 3);
2764     test_range_text(range, "123");
2765     test_range_moveend(range, characterW, 2, 2);
2766     test_range_text(range, "123\r\ni");
2767
2768     IHTMLTxtRange_Release(range);
2769
2770     hres = IHTMLTxtRange_duplicate(body_range, &range);
2771     ok(hres == S_OK, "duplicate failed: %08x\n", hres);
2772
2773     test_range_move(range, wordW, 1, 1);
2774     test_range_moveend(range, characterW, 2, 2);
2775     test_range_text(range, "ab");
2776
2777     test_range_move(range, characterW, -2, -2);
2778     test_range_moveend(range, characterW, 2, 2);
2779     test_range_text(range, "t ");
2780
2781     test_range_move(range, wordW, 3, 3);
2782     test_range_move(range, wordW, -2, -2);
2783     test_range_moveend(range, characterW, 2, 2);
2784     test_range_text(range, "ab");
2785
2786     test_range_move(range, characterW, -6, -5);
2787     test_range_moveend(range, characterW, -1, 0);
2788     test_range_moveend(range, characterW, -6, 0);
2789     test_range_move(range, characterW, 2, 2);
2790     test_range_moveend(range, characterW, 2, 2);
2791     test_range_text(range, "st");
2792     test_range_moveend(range, characterW, -6, -4);
2793     test_range_moveend(range, characterW, 2, 2);
2794
2795     IHTMLTxtRange_Release(range);
2796
2797     hres = IHTMLTxtRange_duplicate(body_range, &range);
2798     ok(hres == S_OK, "duplicate failed: %08x\n", hres);
2799
2800     test_range_move(range, wordW, 2, 2);
2801     test_range_moveend(range, characterW, 2, 2);
2802     test_range_text(range, "12");
2803
2804     test_range_move(range, characterW, 15, 14);
2805     test_range_move(range, characterW, -2, -2);
2806     test_range_moveend(range, characterW, 3, 2);
2807     test_range_text(range, "t");
2808     test_range_moveend(range, characterW, -1, -1);
2809     test_range_text(range, "t");
2810     test_range_expand(range, wordW, VARIANT_TRUE, "text");
2811     test_range_move(range, characterW, -2, -2);
2812     test_range_moveend(range, characterW, 2, 2);
2813     test_range_text(range, "s ");
2814     test_range_move(range, characterW, 100, 7);
2815     test_range_move(range, wordW, 1, 0);
2816     test_range_move(range, characterW, -2, -2);
2817     test_range_moveend(range, characterW, 3, 2);
2818     test_range_text(range, "t");
2819
2820     IHTMLTxtRange_Release(range);
2821
2822     hres = IHTMLTxtRange_duplicate(body_range, &range);
2823     ok(hres == S_OK, "duplicate failed: %08x\n", hres);
2824
2825     test_range_collapse(range, TRUE);
2826     test_range_expand(range, wordW, VARIANT_TRUE, "test ");
2827     test_range_put_text(range, "word");
2828     test_range_text(body_range, "wordabc 123\r\nit's text");
2829     test_range_text(range, NULL);
2830     test_range_moveend(range, characterW, 3, 3);
2831     test_range_text(range, "abc");
2832     test_range_movestart(range, characterW, -2, -2);
2833     test_range_text(range, "rdabc");
2834     test_range_movestart(range, characterW, 3, 3);
2835     test_range_text(range, "bc");
2836     test_range_movestart(range, characterW, 4, 4);
2837     test_range_text(range, NULL);
2838     test_range_movestart(range, characterW, -3, -3);
2839     test_range_text(range, "c 1");
2840     test_range_movestart(range, characterW, -7, -6);
2841     test_range_text(range, "wordabc 1");
2842     test_range_movestart(range, characterW, 100, 22);
2843     test_range_text(range, NULL);
2844
2845     IHTMLTxtRange_Release(range);
2846     IHTMLTxtRange_Release(body_range);
2847
2848     hres = IHTMLDocument2_get_selection(doc, &selection);
2849     ok(hres == S_OK, "IHTMLDocument2_get_selection failed: %08x\n", hres);
2850
2851     hres = IHTMLSelectionObject_createRange(selection, &disp_range);
2852     ok(hres == S_OK, "IHTMLSelectionObject_createRange failed: %08x\n", hres);
2853     IHTMLSelectionObject_Release(selection);
2854
2855     hres = IDispatch_QueryInterface(disp_range, &IID_IHTMLTxtRange, (void **)&range);
2856     ok(hres == S_OK, "Could not get IID_IHTMLTxtRange interface: 0x%08x\n", hres);
2857     IDispatch_Release(disp_range);
2858
2859     test_range_text(range, NULL);
2860     test_range_moveend(range, characterW, 3, 3);
2861     test_range_text(range, "wor");
2862     test_range_parent(range, ET_BODY);
2863     test_range_expand(range, texteditW, VARIANT_TRUE, "wordabc 123\r\nit's text");
2864     test_range_expand(range, texteditW, VARIANT_TRUE, "wordabc 123\r\nit's text");
2865     test_range_move(range, characterW, 3, 3);
2866     test_range_expand(range, wordW, VARIANT_TRUE, "wordabc ");
2867     test_range_moveend(range, characterW, -4, -4);
2868     test_range_put_text(range, "abc def ");
2869     test_range_expand(range, texteditW, VARIANT_TRUE, "abc def abc 123\r\nit's text");
2870     test_range_move(range, wordW, 1, 1);
2871     test_range_movestart(range, characterW, -1, -1);
2872     test_range_text(range, " ");
2873     test_range_move(range, wordW, 1, 1);
2874     test_range_moveend(range, characterW, 3, 3);
2875     test_range_text(range, "def");
2876     test_range_put_text(range, "xyz");
2877     test_range_moveend(range, characterW, 1, 1);
2878     test_range_move(range, wordW, 1, 1);
2879     test_range_moveend(range, characterW, 2, 2);
2880     test_range_text(range, "ab");
2881
2882     IHTMLTxtRange_Release(range);
2883 }
2884
2885 static void test_txtrange2(IHTMLDocument2 *doc)
2886 {
2887     IHTMLTxtRange *range;
2888
2889     range = test_create_body_range(doc);
2890
2891     test_range_text(range, "abc\r\n\r\n123\r\n\r\n\r\ndef");
2892     test_range_move(range, characterW, 5, 5);
2893     test_range_moveend(range, characterW, 1, 1);
2894     test_range_text(range, "2");
2895     test_range_move(range, characterW, -3, -3);
2896     test_range_moveend(range, characterW, 3, 3);
2897     test_range_text(range, "c\r\n\r\n1");
2898     test_range_collapse(range, VARIANT_FALSE);
2899     test_range_moveend(range, characterW, 4, 4);
2900     test_range_text(range, "23");
2901     test_range_moveend(range, characterW, 1, 1);
2902     test_range_text(range, "23\r\n\r\n\r\nd");
2903     test_range_moveend(range, characterW, -1, -1);
2904     test_range_text(range, "23");
2905     test_range_moveend(range, characterW, -1, -1);
2906     test_range_text(range, "23");
2907     test_range_moveend(range, characterW, -2, -2);
2908     test_range_text(range, "2");
2909
2910     IHTMLTxtRange_Release(range);
2911 }
2912
2913 static void test_compatmode(IHTMLDocument2 *doc)
2914 {
2915     IHTMLDocument5 *doc5;
2916     BSTR mode;
2917     HRESULT hres;
2918
2919     hres = IHTMLDocument2_QueryInterface(doc, &IID_IHTMLDocument5, (void**)&doc5);
2920     ok(hres == S_OK, "Could not get IHTMLDocument5 interface: %08x\n", hres);
2921     if(FAILED(hres))
2922         return;
2923
2924     hres = IHTMLDocument5_get_compatMode(doc5, &mode);
2925     IHTMLDocument5_Release(doc5);
2926     ok(hres == S_OK, "get_compatMode failed: %08x\n", hres);
2927     ok(!strcmp_wa(mode, "BackCompat"), "compatMode=%s\n", wine_dbgstr_w(mode));
2928     SysFreeString(mode);
2929 }
2930
2931 static void test_location(IHTMLDocument2 *doc)
2932 {
2933     IHTMLLocation *location, *location2;
2934     IHTMLWindow2 *window;
2935     BSTR str;
2936     ULONG ref;
2937     HRESULT hres;
2938
2939     hres = IHTMLDocument2_get_location(doc, &location);
2940     ok(hres == S_OK, "get_location failed: %08x\n", hres);
2941
2942     hres = IHTMLDocument2_get_location(doc, &location2);
2943     ok(hres == S_OK, "get_location failed: %08x\n", hres);
2944
2945     ok(location == location2, "location != location2\n");
2946     IHTMLLocation_Release(location2);
2947
2948     hres = IHTMLDocument2_get_parentWindow(doc, &window);
2949     ok(hres == S_OK, "get_parentWindow failed: %08x\n", hres);
2950
2951     hres = IHTMLWindow2_get_location(window, &location2);
2952     ok(hres == S_OK, "get_location failed: %08x\n", hres);
2953     ok(location == location2, "location != location2\n");
2954     IHTMLLocation_Release(location2);
2955
2956     test_ifaces((IUnknown*)location, location_iids);
2957     test_disp2((IUnknown*)location, &DIID_DispHTMLLocation, &IID_IHTMLLocation, "about:blank");
2958
2959     hres = IHTMLLocation_get_pathname(location, &str);
2960     ok(hres == S_OK, "get_pathname failed: %08x\n", hres);
2961     ok(!strcmp_wa(str, "blank"), "unexpected pathname %s\n", wine_dbgstr_w(str));
2962
2963     hres = IHTMLLocation_get_href(location, NULL);
2964     ok(hres == E_POINTER, "get_href passed: %08x\n", hres);
2965
2966     hres = IHTMLLocation_get_href(location, &str);
2967     ok(hres == S_OK, "get_href failed: %08x\n", hres);
2968     ok(!strcmp_wa(str, "about:blank"), "unexpected href %s\n", wine_dbgstr_w(str));
2969
2970     ref = IHTMLLocation_Release(location);
2971     ok(!ref, "location chould be destroyed here\n");
2972 }
2973
2974 static void test_navigator(IHTMLDocument2 *doc)
2975 {
2976     IHTMLWindow2 *window;
2977     IOmNavigator *navigator, *navigator2;
2978     char buf[512];
2979     DWORD size;
2980     ULONG ref;
2981     BSTR bstr;
2982     HRESULT hres;
2983
2984     static const WCHAR v40[] = {'4','.','0'};
2985
2986     hres = IHTMLDocument2_get_parentWindow(doc, &window);
2987     ok(hres == S_OK, "parentWidnow failed: %08x\n", hres);
2988
2989     hres = IHTMLWindow2_get_navigator(window, &navigator);
2990     ok(hres == S_OK, "get_navigator failed: %08x\n", hres);
2991     ok(navigator != NULL, "navigator == NULL\n");
2992     test_disp2((IUnknown*)navigator, &DIID_DispHTMLNavigator, &IID_IOmNavigator, "[object]");
2993
2994     hres = IHTMLWindow2_get_navigator(window, &navigator2);
2995     ok(hres == S_OK, "get_navigator failed: %08x\n", hres);
2996     ok(navigator != navigator2, "navigator2 != navihgator\n");
2997
2998     IHTMLWindow2_Release(window);
2999     IOmNavigator_Release(navigator2);
3000
3001     hres = IOmNavigator_get_appCodeName(navigator, &bstr);
3002     ok(hres == S_OK, "get_appCodeName failed: %08x\n", hres);
3003     ok(!strcmp_wa(bstr, "Mozilla"), "Unexpected appCodeName %s\n", wine_dbgstr_w(bstr));
3004     SysFreeString(bstr);
3005
3006     bstr = NULL;
3007     hres = IOmNavigator_get_appName(navigator, &bstr);
3008     ok(hres == S_OK, "get_appName failed: %08x\n", hres);
3009     ok(!strcmp_wa(bstr, "Microsoft Internet Explorer"), "Unexpected appCodeName %s\n", wine_dbgstr_w(bstr));
3010     SysFreeString(bstr);
3011
3012     bstr = NULL;
3013     hres = IOmNavigator_get_platform(navigator, &bstr);
3014     ok(hres == S_OK, "get_platform failed: %08x\n", hres);
3015 #ifdef _WIN64
3016     ok(!strcmp_wa(bstr, "Win64"), "unexpected platform %s\n", wine_dbgstr_w(bstr));
3017 #else
3018     ok(!strcmp_wa(bstr, "Win32"), "unexpected platform %s\n", wine_dbgstr_w(bstr));
3019 #endif
3020     SysFreeString(bstr);
3021
3022     bstr = NULL;
3023     hres = IOmNavigator_get_appVersion(navigator, &bstr);
3024     ok(hres == S_OK, "get_appVersion failed: %08x\n", hres);
3025     ok(!memcmp(bstr, v40, sizeof(v40)), "appVersion is %s\n", wine_dbgstr_w(bstr));
3026     SysFreeString(bstr);
3027
3028     hres = IOmNavigator_toString(navigator, NULL);
3029     ok(hres == E_INVALIDARG, "toString failed: %08x\n", hres);
3030
3031     bstr = NULL;
3032     hres = IOmNavigator_toString(navigator, &bstr);
3033     ok(hres == S_OK, "toString failed: %08x\n", hres);
3034     ok(!strcmp_wa(bstr, "[object]"), "toString returned %s\n", wine_dbgstr_w(bstr));
3035     SysFreeString(bstr);
3036
3037     size = sizeof(buf);
3038     hres = ObtainUserAgentString(0, buf, &size);
3039     ok(hres == S_OK, "ObtainUserAgentString failed: %08x\n", hres);
3040
3041     bstr = NULL;
3042     hres = IOmNavigator_get_userAgent(navigator, &bstr);
3043     ok(hres == S_OK, "get_userAgent failed: %08x\n", hres);
3044     ok(!strcmp_wa(bstr, buf), "userAgent returned %s, expected \"%s\"\n", wine_dbgstr_w(bstr), buf);
3045     SysFreeString(bstr);
3046
3047     ref = IOmNavigator_Release(navigator);
3048     ok(!ref, "navigator should be destroyed here\n");
3049 }
3050
3051 static void test_screen(IHTMLWindow2 *window)
3052 {
3053     IHTMLScreen *screen, *screen2;
3054     IDispatchEx *dispex;
3055     LONG l, exl;
3056     HDC hdc;
3057     HRESULT hres;
3058
3059     static const WCHAR displayW[] = {'D','I','S','P','L','A','Y',0};
3060
3061     screen = NULL;
3062     hres = IHTMLWindow2_get_screen(window, &screen);
3063     ok(hres == S_OK, "get_screen failed: %08x\n", hres);
3064     ok(screen != NULL, "screen == NULL\n");
3065
3066     screen2 = NULL;
3067     hres = IHTMLWindow2_get_screen(window, &screen2);
3068     ok(hres == S_OK, "get_screen failed: %08x\n", hres);
3069     ok(screen2 != NULL, "screen == NULL\n");
3070     ok(iface_cmp((IUnknown*)screen2, (IUnknown*)screen), "screen2 != screen\n");
3071     IHTMLScreen_Release(screen2);
3072
3073     hres = IHTMLScreen_QueryInterface(screen, &IID_IDispatchEx, (void**)&dispex);
3074     ok(hres == S_OK || broken(hres == E_NOINTERFACE), "Could not get IDispatchEx interface: %08x\n", hres);
3075     if(SUCCEEDED(hres)) {
3076         test_disp((IUnknown*)screen, &DIID_DispHTMLScreen, "[object]");
3077         IDispatchEx_Release(dispex);
3078     }
3079
3080     hdc = CreateICW(displayW, NULL, NULL, NULL);
3081
3082     exl = GetDeviceCaps(hdc, HORZRES);
3083     l = 0xdeadbeef;
3084     hres = IHTMLScreen_get_width(screen, &l);
3085     ok(hres == S_OK, "get_width failed: %08x\n", hres);
3086     ok(l == exl, "width = %d, expected %d\n", l, exl);
3087
3088     exl = GetDeviceCaps(hdc, VERTRES);
3089     l = 0xdeadbeef;
3090     hres = IHTMLScreen_get_height(screen, &l);
3091     ok(hres == S_OK, "get_height failed: %08x\n", hres);
3092     ok(l == exl, "height = %d, expected %d\n", l, exl);
3093
3094     exl = GetDeviceCaps(hdc, BITSPIXEL);
3095     l = 0xdeadbeef;
3096     hres = IHTMLScreen_get_colorDepth(screen, &l);
3097     ok(hres == S_OK, "get_height failed: %08x\n", hres);
3098     ok(l == exl, "height = %d, expected %d\n", l, exl);
3099
3100     DeleteObject(hdc);
3101
3102     IHTMLScreen_Release(screen);
3103 }
3104
3105 static void test_current_style(IHTMLCurrentStyle *current_style)
3106 {
3107     BSTR str;
3108     HRESULT hres;
3109     VARIANT v;
3110
3111     test_disp((IUnknown*)current_style, &DIID_DispHTMLCurrentStyle, "[object]");
3112     test_ifaces((IUnknown*)current_style, cstyle_iids);
3113
3114     hres = IHTMLCurrentStyle_get_display(current_style, &str);
3115     ok(hres == S_OK, "get_display failed: %08x\n", hres);
3116     ok(!strcmp_wa(str, "block"), "get_display returned %s\n", wine_dbgstr_w(str));
3117     SysFreeString(str);
3118
3119     hres = IHTMLCurrentStyle_get_position(current_style, &str);
3120     ok(hres == S_OK, "get_position failed: %08x\n", hres);
3121     ok(!strcmp_wa(str, "absolute"), "get_position returned %s\n", wine_dbgstr_w(str));
3122     SysFreeString(str);
3123
3124     hres = IHTMLCurrentStyle_get_fontFamily(current_style, &str);
3125     ok(hres == S_OK, "get_fontFamily failed: %08x\n", hres);
3126     SysFreeString(str);
3127
3128     hres = IHTMLCurrentStyle_get_fontStyle(current_style, &str);
3129     ok(hres == S_OK, "get_fontStyle failed: %08x\n", hres);
3130     ok(!strcmp_wa(str, "normal"), "get_fontStyle returned %s\n", wine_dbgstr_w(str));
3131     SysFreeString(str);
3132
3133     hres = IHTMLCurrentStyle_get_backgroundImage(current_style, &str);
3134     ok(hres == S_OK, "get_backgroundImage failed: %08x\n", hres);
3135     ok(!strcmp_wa(str, "none"), "get_backgroundImage returned %s\n", wine_dbgstr_w(str));
3136     SysFreeString(str);
3137
3138     hres = IHTMLCurrentStyle_get_fontVariant(current_style, &str);
3139     ok(hres == S_OK, "get_fontVariant failed: %08x\n", hres);
3140     ok(!strcmp_wa(str, "normal"), "get_fontVariant returned %s\n", wine_dbgstr_w(str));
3141     SysFreeString(str);
3142
3143     hres = IHTMLCurrentStyle_get_borderTopStyle(current_style, &str);
3144     ok(hres == S_OK, "get_borderTopStyle failed: %08x\n", hres);
3145     ok(!strcmp_wa(str, "none"), "get_borderTopStyle returned %s\n", wine_dbgstr_w(str));
3146     SysFreeString(str);
3147
3148     hres = IHTMLCurrentStyle_get_borderRightStyle(current_style, &str);
3149     ok(hres == S_OK, "get_borderRightStyle failed: %08x\n", hres);
3150     ok(!strcmp_wa(str, "none"), "get_borderRightStyle returned %s\n", wine_dbgstr_w(str));
3151     SysFreeString(str);
3152
3153     hres = IHTMLCurrentStyle_get_borderBottomStyle(current_style, &str);
3154     ok(hres == S_OK, "get_borderBottomStyle failed: %08x\n", hres);
3155     ok(!strcmp_wa(str, "none"), "get_borderBottomStyle returned %s\n", wine_dbgstr_w(str));
3156     SysFreeString(str);
3157
3158     hres = IHTMLCurrentStyle_get_borderLeftStyle(current_style, &str);
3159     ok(hres == S_OK, "get_borderLeftStyle failed: %08x\n", hres);
3160     ok(!strcmp_wa(str, "none"), "get_borderLeftStyle returned %s\n", wine_dbgstr_w(str));
3161     SysFreeString(str);
3162
3163     hres = IHTMLCurrentStyle_get_textAlign(current_style, &str);
3164     ok(hres == S_OK, "get_textAlign failed: %08x\n", hres);
3165     ok(!strcmp_wa(str, "center"), "get_textAlign returned %s\n", wine_dbgstr_w(str));
3166     SysFreeString(str);
3167
3168     hres = IHTMLCurrentStyle_get_textDecoration(current_style, &str);
3169     ok(hres == S_OK, "get_textDecoration failed: %08x\n", hres);
3170     ok(!strcmp_wa(str, "none"), "get_textDecoration returned %s\n", wine_dbgstr_w(str));
3171     SysFreeString(str);
3172
3173     hres = IHTMLCurrentStyle_get_cursor(current_style, &str);
3174     ok(hres == S_OK, "get_cursor failed: %08x\n", hres);
3175     ok(!strcmp_wa(str, "default"), "get_cursor returned %s\n", wine_dbgstr_w(str));
3176     SysFreeString(str);
3177
3178     hres = IHTMLCurrentStyle_get_backgroundRepeat(current_style, &str);
3179     ok(hres == S_OK, "get_backgroundRepeat failed: %08x\n", hres);
3180     ok(!strcmp_wa(str, "repeat"), "get_backgroundRepeat returned %s\n", wine_dbgstr_w(str));
3181     SysFreeString(str);
3182
3183     hres = IHTMLCurrentStyle_get_borderColor(current_style, &str);
3184     ok(hres == S_OK, "get_borderColor failed: %08x\n", hres);
3185     SysFreeString(str);
3186
3187     hres = IHTMLCurrentStyle_get_borderStyle(current_style, &str);
3188     ok(hres == S_OK, "get_borderStyle failed: %08x\n", hres);
3189     SysFreeString(str);
3190
3191     hres = IHTMLCurrentStyle_get_visibility(current_style, &str);
3192     ok(hres == S_OK, "get_visibility failed: %08x\n", hres);
3193     SysFreeString(str);
3194
3195     hres = IHTMLCurrentStyle_get_overflow(current_style, &str);
3196     ok(hres == S_OK, "get_overflow failed: %08x\n", hres);
3197     SysFreeString(str);
3198
3199     hres = IHTMLCurrentStyle_get_borderWidth(current_style, &str);
3200     ok(hres == S_OK, "get_borderWidth failed: %08x\n", hres);
3201     SysFreeString(str);
3202
3203     hres = IHTMLCurrentStyle_get_margin(current_style, &str);
3204     ok(hres == S_OK, "get_margin failed: %08x\n", hres);
3205     SysFreeString(str);
3206
3207     hres = IHTMLCurrentStyle_get_fontWeight(current_style, &v);
3208     ok(hres == S_OK, "get_fontWeight failed: %08x\n", hres);
3209     ok(V_VT(&v) == VT_I4, "V_VT(v) = %d\n", V_VT(&v));
3210     ok( V_I4(&v) == 400, "expect 400 got (%d)\n", V_I4(&v));
3211     VariantClear(&v);
3212
3213     hres = IHTMLCurrentStyle_get_fontSize(current_style, &v);
3214     ok(hres == S_OK, "get_fontSize failed: %08x\n", hres);
3215     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
3216     VariantClear(&v);
3217
3218     hres = IHTMLCurrentStyle_get_left(current_style, &v);
3219     ok(hres == S_OK, "get_left failed: %08x\n", hres);
3220     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
3221     VariantClear(&v);
3222
3223     hres = IHTMLCurrentStyle_get_top(current_style, &v);
3224     ok(hres == S_OK, "get_top failed: %08x\n", hres);
3225     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
3226     VariantClear(&v);
3227
3228     hres = IHTMLCurrentStyle_get_width(current_style, &v);
3229     ok(hres == S_OK, "get_width failed: %08x\n", hres);
3230     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
3231     VariantClear(&v);
3232
3233     hres = IHTMLCurrentStyle_get_height(current_style, &v);
3234     ok(hres == S_OK, "get_height failed: %08x\n", hres);
3235     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
3236     VariantClear(&v);
3237
3238     hres = IHTMLCurrentStyle_get_paddingLeft(current_style, &v);
3239     ok(hres == S_OK, "get_paddingLeft failed: %08x\n", hres);
3240     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
3241     VariantClear(&v);
3242
3243     hres = IHTMLCurrentStyle_get_zIndex(current_style, &v);
3244     ok(hres == S_OK, "get_zIndex failed: %08x\n", hres);
3245     ok(V_VT(&v) == VT_I4, "V_VT(v) = %d\n", V_VT(&v));
3246     ok( V_I4(&v) == 1, "expect 1 got (%d)\n", V_I4(&v));
3247     VariantClear(&v);
3248
3249     hres = IHTMLCurrentStyle_get_verticalAlign(current_style, &v);
3250     ok(hres == S_OK, "get_verticalAlign failed: %08x\n", hres);
3251     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
3252     ok(!strcmp_wa(V_BSTR(&v), "middle"), "get_verticalAlign returned %s\n", wine_dbgstr_w(V_BSTR(&v)));
3253     VariantClear(&v);
3254
3255     hres = IHTMLCurrentStyle_get_marginRight(current_style, &v);
3256     ok(hres == S_OK, "get_marginRight failed: %08x\n", hres);
3257     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
3258     VariantClear(&v);
3259
3260     hres = IHTMLCurrentStyle_get_marginLeft(current_style, &v);
3261     ok(hres == S_OK, "get_marginLeft failed: %08x\n", hres);
3262     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
3263     VariantClear(&v);
3264
3265     hres = IHTMLCurrentStyle_get_borderLeftWidth(current_style, &v);
3266     ok(hres == S_OK, "get_borderLeftWidth failed: %08x\n", hres);
3267     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
3268     VariantClear(&v);
3269
3270     V_BSTR(&v) = NULL;
3271     hres = IHTMLCurrentStyle_get_borderRightWidth(current_style, &v);
3272     ok(hres == S_OK, "get_borderRightWidth failed: %08x\n", hres);
3273     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
3274     VariantClear(&v);
3275
3276     hres = IHTMLCurrentStyle_get_borderBottomWidth(current_style, &v);
3277     ok(hres == S_OK, "get_borderBottomWidth failed: %08x\n", hres);
3278     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
3279     VariantClear(&v);
3280
3281     hres = IHTMLCurrentStyle_get_borderTopWidth(current_style, &v);
3282     ok(hres == S_OK, "get_borderTopWidth failed: %08x\n", hres);
3283     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
3284     VariantClear(&v);
3285
3286     hres = IHTMLCurrentStyle_get_color(current_style, &v);
3287     ok(hres == S_OK, "get_color failed: %08x\n", hres);
3288     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
3289     VariantClear(&v);
3290
3291     hres = IHTMLCurrentStyle_get_backgroundColor(current_style, &v);
3292     ok(hres == S_OK, "get_backgroundColor failed: %08x\n", hres);
3293     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
3294     VariantClear(&v);
3295
3296     hres = IHTMLCurrentStyle_get_borderLeftColor(current_style, &v);
3297     ok(hres == S_OK, "get_borderLeftColor failed: %08x\n", hres);
3298     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
3299     VariantClear(&v);
3300
3301     hres = IHTMLCurrentStyle_get_borderTopColor(current_style, &v);
3302     ok(hres == S_OK, "get_borderTopColor failed: %08x\n", hres);
3303     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
3304     VariantClear(&v);
3305
3306     hres = IHTMLCurrentStyle_get_borderRightColor(current_style, &v);
3307     ok(hres == S_OK, "get_borderRightColor failed: %08x\n", hres);
3308     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
3309     VariantClear(&v);
3310
3311     hres = IHTMLCurrentStyle_get_borderBottomColor(current_style, &v);
3312     ok(hres == S_OK, "get_borderBottomColor failed: %08x\n", hres);
3313     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
3314     VariantClear(&v);
3315
3316     hres = IHTMLCurrentStyle_get_paddingTop(current_style, &v);
3317     ok(hres == S_OK, "get_paddingTop failed: %08x\n", hres);
3318     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
3319     VariantClear(&v);
3320
3321     hres = IHTMLCurrentStyle_get_paddingRight(current_style, &v);
3322     ok(hres == S_OK, "get_paddingRight failed: %08x\n", hres);
3323     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
3324     VariantClear(&v);
3325
3326     hres = IHTMLCurrentStyle_get_paddingBottom(current_style, &v);
3327     ok(hres == S_OK, "get_paddingRight failed: %08x\n", hres);
3328     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
3329     VariantClear(&v);
3330
3331     hres = IHTMLCurrentStyle_get_letterSpacing(current_style, &v);
3332     ok(hres == S_OK, "get_letterSpacing failed: %08x\n", hres);
3333     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
3334     VariantClear(&v);
3335
3336     hres = IHTMLCurrentStyle_get_marginTop(current_style, &v);
3337     ok(hres == S_OK, "get_marginTop failed: %08x\n", hres);
3338     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
3339     VariantClear(&v);
3340
3341     hres = IHTMLCurrentStyle_get_marginBottom(current_style, &v);
3342     ok(hres == S_OK, "get_marginBottom failed: %08x\n", hres);
3343     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
3344     VariantClear(&v);
3345
3346     hres = IHTMLCurrentStyle_get_right(current_style, &v);
3347     ok(hres == S_OK, "get_Right failed: %08x\n", hres);
3348     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
3349     VariantClear(&v);
3350
3351     hres = IHTMLCurrentStyle_get_bottom(current_style, &v);
3352     ok(hres == S_OK, "get_bottom failed: %08x\n", hres);
3353     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
3354     VariantClear(&v);
3355
3356     hres = IHTMLCurrentStyle_get_lineHeight(current_style, &v);
3357     ok(hres == S_OK, "get_lineHeight failed: %08x\n", hres);
3358     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
3359     VariantClear(&v);
3360
3361     hres = IHTMLCurrentStyle_get_textIndent(current_style, &v);
3362     ok(hres == S_OK, "get_textIndent failed: %08x\n", hres);
3363     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
3364     VariantClear(&v);
3365 }
3366
3367 static void test_style2(IHTMLStyle2 *style2)
3368 {
3369     BSTR str;
3370     HRESULT hres;
3371
3372     str = (void*)0xdeadbeef;
3373     hres = IHTMLStyle2_get_position(style2, &str);
3374     ok(hres == S_OK, "get_position failed: %08x\n", hres);
3375     ok(!str, "str != NULL\n");
3376
3377     str = a2bstr("absolute");
3378     hres = IHTMLStyle2_put_position(style2, str);
3379     ok(hres == S_OK, "put_position failed: %08x\n", hres);
3380     SysFreeString(str);
3381
3382     str = NULL;
3383     hres = IHTMLStyle2_get_position(style2, &str);
3384     ok(hres == S_OK, "get_position failed: %08x\n", hres);
3385     ok(!strcmp_wa(str, "absolute"), "get_position returned %s\n", wine_dbgstr_w(str));
3386     SysFreeString(str);
3387 }
3388
3389 static void test_style3(IHTMLStyle3 *style3)
3390 {
3391     BSTR str;
3392     HRESULT hres;
3393
3394     str = (void*)0xdeadbeef;
3395     hres = IHTMLStyle3_get_wordWrap(style3, &str);
3396     ok(hres == S_OK, "get_wordWrap failed: %08x\n", hres);
3397     ok(!str, "str != NULL\n");
3398
3399     str = a2bstr("break-word");
3400     hres = IHTMLStyle3_put_wordWrap(style3, str);
3401     ok(hres == S_OK, "put_wordWrap failed: %08x\n", hres);
3402     SysFreeString(str);
3403
3404     str = NULL;
3405     hres = IHTMLStyle3_get_wordWrap(style3, &str);
3406     ok(hres == S_OK, "get_wordWrap failed: %08x\n", hres);
3407     ok(!strcmp_wa(str, "break-word"), "get_wordWrap returned %s\n", wine_dbgstr_w(str));
3408     SysFreeString(str);
3409 }
3410
3411 static void test_style4(IHTMLStyle4 *style4)
3412 {
3413     HRESULT hres;
3414     VARIANT v;
3415     VARIANT vdefault;
3416
3417     hres = IHTMLStyle4_get_minHeight(style4, &vdefault);
3418     ok(hres == S_OK, "get_minHeight failed: %08x\n", hres);
3419
3420     V_VT(&v) = VT_BSTR;
3421     V_BSTR(&v) = a2bstr("10px");
3422     hres = IHTMLStyle4_put_minHeight(style4, v);
3423     ok(hres == S_OK, "put_minHeight failed: %08x\n", hres);
3424     VariantClear(&v);
3425
3426     hres = IHTMLStyle4_get_minHeight(style4, &v);
3427     ok(hres == S_OK, "get_minHeight failed: %08x\n", hres);
3428     ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
3429     ok( !strcmp_wa(V_BSTR(&v), "10px"), "expect 10px got (%s)\n", wine_dbgstr_w(V_BSTR(&v)));
3430
3431     hres = IHTMLStyle4_put_minHeight(style4, vdefault);
3432     ok(hres == S_OK, "put_minHeight failed: %08x\n", hres);
3433     VariantClear(&vdefault);
3434 }
3435
3436 static void test_default_style(IHTMLStyle *style)
3437 {
3438     IHTMLStyle2 *style2;
3439     IHTMLStyle3 *style3;
3440     IHTMLStyle4 *style4;
3441     VARIANT_BOOL b;
3442     VARIANT v;
3443     BSTR str;
3444     HRESULT hres;
3445     float f;
3446     BSTR sOverflowDefault;
3447     BSTR sDefault;
3448     VARIANT vDefault;
3449
3450     test_disp((IUnknown*)style, &DIID_DispHTMLStyle, "[object]");
3451     test_ifaces((IUnknown*)style, style_iids);
3452
3453     test_style_csstext(style, NULL);
3454
3455     hres = IHTMLStyle_get_position(style, &str);
3456     ok(hres == S_OK, "get_position failed: %08x\n", hres);
3457     ok(!str, "str=%s\n", wine_dbgstr_w(str));
3458
3459     V_VT(&v) = VT_NULL;
3460     hres = IHTMLStyle_get_marginRight(style, &v);
3461     ok(hres == S_OK, "get_marginRight failed: %08x\n", hres);
3462     ok(V_VT(&v) == VT_BSTR, "V_VT(marginRight) = %d\n", V_VT(&v));
3463     ok(!V_BSTR(&v), "V_BSTR(marginRight) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
3464
3465     V_VT(&v) = VT_NULL;
3466     hres = IHTMLStyle_get_marginLeft(style, &v);
3467     ok(hres == S_OK, "get_marginLeft failed: %08x\n", hres);
3468     ok(V_VT(&v) == VT_BSTR, "V_VT(marginLeft) = %d\n", V_VT(&v));
3469     ok(!V_BSTR(&v), "V_BSTR(marginLeft) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
3470
3471     str = (void*)0xdeadbeef;
3472     hres = IHTMLStyle_get_fontFamily(style, &str);
3473     ok(hres == S_OK, "get_fontFamily failed: %08x\n", hres);
3474     ok(!str, "fontFamily = %s\n", wine_dbgstr_w(str));
3475
3476     str = (void*)0xdeadbeef;
3477     hres = IHTMLStyle_get_fontWeight(style, &str);
3478     ok(hres == S_OK, "get_fontWeight failed: %08x\n", hres);
3479     ok(!str, "fontWeight = %s\n", wine_dbgstr_w(str));
3480
3481     hres = IHTMLStyle_get_fontWeight(style, &sDefault);
3482     ok(hres == S_OK, "get_fontWeight failed: %08x\n", hres);
3483
3484     str = a2bstr("test");
3485     hres = IHTMLStyle_put_fontWeight(style, str);
3486     ok(hres == E_INVALIDARG, "put_fontWeight failed: %08x\n", hres);
3487     SysFreeString(str);
3488
3489     str = a2bstr("bold");
3490     hres = IHTMLStyle_put_fontWeight(style, str);
3491     ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
3492     SysFreeString(str);
3493
3494     str = a2bstr("bolder");
3495     hres = IHTMLStyle_put_fontWeight(style, str);
3496     ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
3497     SysFreeString(str);
3498
3499     str = a2bstr("lighter");
3500     hres = IHTMLStyle_put_fontWeight(style, str);
3501     ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
3502     SysFreeString(str);
3503
3504     str = a2bstr("100");
3505     hres = IHTMLStyle_put_fontWeight(style, str);
3506     ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
3507     SysFreeString(str);
3508
3509     str = a2bstr("200");
3510     hres = IHTMLStyle_put_fontWeight(style, str);
3511     ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
3512     SysFreeString(str);
3513
3514     str = a2bstr("300");
3515     hres = IHTMLStyle_put_fontWeight(style, str);
3516     ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
3517     SysFreeString(str);
3518
3519     str = a2bstr("400");
3520     hres = IHTMLStyle_put_fontWeight(style, str);
3521     ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
3522     SysFreeString(str);
3523
3524     str = a2bstr("500");
3525     hres = IHTMLStyle_put_fontWeight(style, str);
3526     ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
3527     SysFreeString(str);
3528
3529     str = a2bstr("600");
3530     hres = IHTMLStyle_put_fontWeight(style, str);
3531     ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
3532     SysFreeString(str);
3533
3534     str = a2bstr("700");
3535     hres = IHTMLStyle_put_fontWeight(style, str);
3536     ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
3537     SysFreeString(str);
3538
3539     str = a2bstr("800");
3540     hres = IHTMLStyle_put_fontWeight(style, str);
3541     ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
3542     SysFreeString(str);
3543
3544     str = a2bstr("900");
3545     hres = IHTMLStyle_put_fontWeight(style, str);
3546     ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
3547     SysFreeString(str);
3548
3549     hres = IHTMLStyle_get_fontWeight(style, &str);
3550     ok(hres == S_OK, "get_fontWeight failed: %08x\n", hres);
3551     ok(!strcmp_wa(str, "900"), "str != style900\n");
3552     SysFreeString(str);
3553
3554     hres = IHTMLStyle_put_fontWeight(style, sDefault);
3555     ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
3556     SysFreeString(sDefault);
3557
3558     /* font Variant */
3559     hres = IHTMLStyle_get_fontVariant(style, NULL);
3560     ok(hres == E_INVALIDARG, "get_fontVariant failed: %08x\n", hres);
3561
3562     hres = IHTMLStyle_get_fontVariant(style, &sDefault);
3563     ok(hres == S_OK, "get_fontVariant failed: %08x\n", hres);
3564
3565     str = a2bstr("test");
3566     hres = IHTMLStyle_put_fontVariant(style, str);
3567     ok(hres == E_INVALIDARG, "fontVariant failed: %08x\n", hres);
3568     SysFreeString(str);
3569
3570     str = a2bstr("small-caps");
3571     hres = IHTMLStyle_put_fontVariant(style, str);
3572     ok(hres == S_OK, "fontVariant failed: %08x\n", hres);
3573     SysFreeString(str);
3574
3575     str = a2bstr("normal");
3576     hres = IHTMLStyle_put_fontVariant(style, str);
3577     ok(hres == S_OK, "fontVariant failed: %08x\n", hres);
3578     SysFreeString(str);
3579
3580     hres = IHTMLStyle_put_fontVariant(style, sDefault);
3581     ok(hres == S_OK, "fontVariant failed: %08x\n", hres);
3582     SysFreeString(sDefault);
3583
3584     str = (void*)0xdeadbeef;
3585     hres = IHTMLStyle_get_display(style, &str);
3586     ok(hres == S_OK, "get_display failed: %08x\n", hres);
3587     ok(!str, "display = %s\n", wine_dbgstr_w(str));
3588
3589     str = (void*)0xdeadbeef;
3590     hres = IHTMLStyle_get_visibility(style, &str);
3591     ok(hres == S_OK, "get_visibility failed: %08x\n", hres);
3592     ok(!str, "visibility = %s\n", wine_dbgstr_w(str));
3593
3594     V_VT(&v) = VT_NULL;
3595     hres = IHTMLStyle_get_fontSize(style, &v);
3596     ok(hres == S_OK, "get_fontSize failed: %08x\n", hres);
3597     ok(V_VT(&v) == VT_BSTR, "V_VT(fontSize) = %d\n", V_VT(&v));
3598     ok(!V_BSTR(&v), "V_BSTR(fontSize) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
3599
3600     V_VT(&v) = VT_NULL;
3601     hres = IHTMLStyle_get_color(style, &v);
3602     ok(hres == S_OK, "get_color failed: %08x\n", hres);
3603     ok(V_VT(&v) == VT_BSTR, "V_VT(color) = %d\n", V_VT(&v));
3604     ok(!V_BSTR(&v), "V_BSTR(color) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
3605
3606     b = 0xfefe;
3607     hres = IHTMLStyle_get_textDecorationUnderline(style, &b);
3608     ok(hres == S_OK, "get_textDecorationUnderline failed: %08x\n", hres);
3609     ok(b == VARIANT_FALSE, "textDecorationUnderline = %x\n", b);
3610
3611     hres = IHTMLStyle_put_textDecorationUnderline(style, VARIANT_TRUE);
3612     ok(hres == S_OK, "put_textDecorationUnderline failed: %08x\n", hres);
3613     ok(b == VARIANT_FALSE, "textDecorationUnderline = %x\n", b);
3614
3615     hres = IHTMLStyle_get_textDecorationUnderline(style, &b);
3616     ok(hres == S_OK, "get_textDecorationUnderline failed: %08x\n", hres);
3617     ok(b == VARIANT_TRUE, "textDecorationUnderline = %x\n", b);
3618
3619     hres = IHTMLStyle_put_textDecorationUnderline(style, VARIANT_FALSE);
3620     ok(hres == S_OK, "put_textDecorationUnderline failed: %08x\n", hres);
3621
3622     b = 0xfefe;
3623     hres = IHTMLStyle_get_textDecorationLineThrough(style, &b);
3624     ok(hres == S_OK, "get_textDecorationLineThrough failed: %08x\n", hres);
3625     ok(b == VARIANT_FALSE, "textDecorationLineThrough = %x\n", b);
3626
3627     hres = IHTMLStyle_put_textDecorationLineThrough(style, VARIANT_TRUE);
3628     ok(hres == S_OK, "put_textDecorationLineThrough failed: %08x\n", hres);
3629     ok(b == VARIANT_FALSE, "textDecorationLineThrough = %x\n", b);
3630
3631     hres = IHTMLStyle_get_textDecorationLineThrough(style, &b);
3632     ok(hres == S_OK, "get_textDecorationLineThrough failed: %08x\n", hres);
3633     ok(b == VARIANT_TRUE, "textDecorationLineThrough = %x\n", b);
3634
3635     hres = IHTMLStyle_put_textDecorationLineThrough(style, VARIANT_FALSE);
3636     ok(hres == S_OK, "put_textDecorationLineThrough failed: %08x\n", hres);
3637
3638     b = 0xfefe;
3639     hres = IHTMLStyle_get_textDecorationNone(style, &b);
3640     ok(hres == S_OK, "get_textDecorationNone failed: %08x\n", hres);
3641     ok(b == VARIANT_FALSE, "textDecorationNone = %x\n", b);
3642
3643     hres = IHTMLStyle_put_textDecorationNone(style, VARIANT_TRUE);
3644     ok(hres == S_OK, "put_textDecorationNone failed: %08x\n", hres);
3645     ok(b == VARIANT_FALSE, "textDecorationNone = %x\n", b);
3646
3647     hres = IHTMLStyle_get_textDecorationNone(style, &b);
3648     ok(hres == S_OK, "get_textDecorationNone failed: %08x\n", hres);
3649     ok(b == VARIANT_TRUE, "textDecorationNone = %x\n", b);
3650
3651     hres = IHTMLStyle_put_textDecorationNone(style, VARIANT_FALSE);
3652     ok(hres == S_OK, "put_textDecorationNone failed: %08x\n", hres);
3653
3654     b = 0xfefe;
3655     hres = IHTMLStyle_get_textDecorationOverline(style, &b);
3656     ok(hres == S_OK, "get_textDecorationOverline failed: %08x\n", hres);
3657     ok(b == VARIANT_FALSE, "textDecorationOverline = %x\n", b);
3658
3659     hres = IHTMLStyle_put_textDecorationOverline(style, VARIANT_TRUE);
3660     ok(hres == S_OK, "put_textDecorationOverline failed: %08x\n", hres);
3661     ok(b == VARIANT_FALSE, "textDecorationOverline = %x\n", b);
3662
3663     hres = IHTMLStyle_get_textDecorationOverline(style, &b);
3664     ok(hres == S_OK, "get_textDecorationOverline failed: %08x\n", hres);
3665     ok(b == VARIANT_TRUE, "textDecorationOverline = %x\n", b);
3666
3667     hres = IHTMLStyle_put_textDecorationOverline(style, VARIANT_FALSE);
3668     ok(hres == S_OK, "put_textDecorationOverline failed: %08x\n", hres);
3669
3670     b = 0xfefe;
3671     hres = IHTMLStyle_get_textDecorationBlink(style, &b);
3672     ok(hres == S_OK, "get_textDecorationBlink failed: %08x\n", hres);
3673     ok(b == VARIANT_FALSE, "textDecorationBlink = %x\n", b);
3674
3675     hres = IHTMLStyle_put_textDecorationBlink(style, VARIANT_TRUE);
3676     ok(hres == S_OK, "put_textDecorationBlink failed: %08x\n", hres);
3677     ok(b == VARIANT_FALSE, "textDecorationBlink = %x\n", b);
3678
3679     hres = IHTMLStyle_get_textDecorationBlink(style, &b);
3680     ok(hres == S_OK, "get_textDecorationBlink failed: %08x\n", hres);
3681     ok(b == VARIANT_TRUE, "textDecorationBlink = %x\n", b);
3682
3683     hres = IHTMLStyle_put_textDecorationBlink(style, VARIANT_FALSE);
3684     ok(hres == S_OK, "textDecorationBlink failed: %08x\n", hres);
3685
3686     hres = IHTMLStyle_get_textDecoration(style, &sDefault);
3687     ok(hres == S_OK, "get_textDecoration failed: %08x\n", hres);
3688
3689     str = a2bstr("invalid");
3690     hres = IHTMLStyle_put_textDecoration(style, str);
3691     ok(hres == E_INVALIDARG, "put_textDecoration failed: %08x\n", hres);
3692     SysFreeString(str);
3693
3694     str = a2bstr("none");
3695     hres = IHTMLStyle_put_textDecoration(style, str);
3696     ok(hres == S_OK, "put_textDecoration failed: %08x\n", hres);
3697     SysFreeString(str);
3698
3699     str = a2bstr("underline");
3700     hres = IHTMLStyle_put_textDecoration(style, str);
3701     ok(hres == S_OK, "put_textDecoration failed: %08x\n", hres);
3702     SysFreeString(str);
3703
3704     str = a2bstr("overline");
3705     hres = IHTMLStyle_put_textDecoration(style, str);
3706     ok(hres == S_OK, "put_textDecoration failed: %08x\n", hres);
3707     SysFreeString(str);
3708
3709     str = a2bstr("line-through");
3710     hres = IHTMLStyle_put_textDecoration(style, str);
3711     ok(hres == S_OK, "put_textDecoration failed: %08x\n", hres);
3712     SysFreeString(str);
3713
3714     str = a2bstr("blink");
3715     hres = IHTMLStyle_put_textDecoration(style, str);
3716     ok(hres == S_OK, "put_textDecoration failed: %08x\n", hres);
3717     SysFreeString(str);
3718
3719     hres = IHTMLStyle_get_textDecoration(style, &str);
3720     ok(hres == S_OK, "get_textDecoration failed: %08x\n", hres);
3721     ok(!strcmp_wa(str, "blink"), "str != blink\n");
3722     SysFreeString(str);
3723
3724     hres = IHTMLStyle_put_textDecoration(style, sDefault);
3725     ok(hres == S_OK, "put_textDecoration failed: %08x\n", hres);
3726     SysFreeString(sDefault);
3727
3728     hres = IHTMLStyle_get_posWidth(style, NULL);
3729     ok(hres == E_POINTER, "get_posWidth failed: %08x\n", hres);
3730
3731     hres = IHTMLStyle_get_posWidth(style, &f);
3732     ok(hres == S_OK, "get_posWidth failed: %08x\n", hres);
3733     ok(f == 0.0f, "f = %f\n", f);
3734
3735     V_VT(&v) = VT_EMPTY;
3736     hres = IHTMLStyle_get_width(style, &v);
3737     ok(hres == S_OK, "get_width failed: %08x\n", hres);
3738     ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
3739     ok(!V_BSTR(&v), "V_BSTR(v)=%p\n", V_BSTR(&v));
3740
3741     hres = IHTMLStyle_put_posWidth(style, 2.2);
3742     ok(hres == S_OK, "put_posWidth failed: %08x\n", hres);
3743
3744     hres = IHTMLStyle_get_posWidth(style, &f);
3745     ok(hres == S_OK, "get_posWidth failed: %08x\n", hres);
3746     ok(f == 2.0f ||
3747        f == 2.2f, /* IE8 */
3748        "f = %f\n", f);
3749
3750     V_VT(&v) = VT_BSTR;
3751     V_BSTR(&v) = a2bstr("auto");
3752     hres = IHTMLStyle_put_width(style, v);
3753     ok(hres == S_OK, "put_width failed: %08x\n", hres);
3754     VariantClear(&v);
3755
3756     V_VT(&v) = VT_EMPTY;
3757     hres = IHTMLStyle_get_width(style, &v);
3758     ok(hres == S_OK, "get_width failed: %08x\n", hres);
3759     ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
3760     ok(!strcmp_wa(V_BSTR(&v), "auto"), "V_BSTR(v)=%s\n", wine_dbgstr_w(V_BSTR(&v)));
3761     VariantClear(&v);
3762
3763     /* margin tests */
3764     str = (void*)0xdeadbeef;
3765     hres = IHTMLStyle_get_margin(style, &str);
3766     ok(hres == S_OK, "get_margin failed: %08x\n", hres);
3767     ok(!str, "margin = %s\n", wine_dbgstr_w(str));
3768
3769     str = a2bstr("1");
3770     hres = IHTMLStyle_put_margin(style, str);
3771     ok(hres == S_OK, "put_margin failed: %08x\n", hres);
3772     SysFreeString(str);
3773
3774     hres = IHTMLStyle_get_margin(style, &str);
3775     ok(hres == S_OK, "get_margin failed: %08x\n", hres);
3776     ok(!strcmp_wa(str, "1px"), "margin = %s\n", wine_dbgstr_w(str));
3777
3778     hres = IHTMLStyle_put_margin(style, NULL);
3779     ok(hres == S_OK, "put_margin failed: %08x\n", hres);
3780
3781     str = NULL;
3782     hres = IHTMLStyle_get_border(style, &str);
3783     ok(hres == S_OK, "get_border failed: %08x\n", hres);
3784     ok(!str || !*str, "str is not empty\n");
3785     SysFreeString(str);
3786
3787     str = a2bstr("1px");
3788     hres = IHTMLStyle_put_border(style, str);
3789     ok(hres == S_OK, "put_border failed: %08x\n", hres);
3790     SysFreeString(str);
3791
3792     V_VT(&v) = VT_EMPTY;
3793     hres = IHTMLStyle_get_left(style, &v);
3794     ok(hres == S_OK, "get_left failed: %08x\n", hres);
3795     ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
3796     ok(!V_BSTR(&v), "V_BSTR(v) != NULL\n");
3797     VariantClear(&v);
3798
3799     /* Test posLeft */
3800     hres = IHTMLStyle_get_posLeft(style, NULL);
3801     ok(hres == E_POINTER, "get_posLeft failed: %08x\n", hres);
3802
3803     f = 1.0f;
3804     hres = IHTMLStyle_get_posLeft(style, &f);
3805     ok(hres == S_OK, "get_posLeft failed: %08x\n", hres);
3806     ok(f == 0.0, "expected 0.0 got %f\n", f);
3807
3808     hres = IHTMLStyle_put_posLeft(style, 4.9f);
3809     ok(hres == S_OK, "put_posLeft failed: %08x\n", hres);
3810
3811     hres = IHTMLStyle_get_posLeft(style, &f);
3812     ok(hres == S_OK, "get_posLeft failed: %08x\n", hres);
3813     ok(f == 4.0 ||
3814        f == 4.9f, /* IE8 */
3815        "expected 4.0 or 4.9 (IE8) got %f\n", f);
3816
3817     /* Ensure left is updated correctly. */
3818     V_VT(&v) = VT_EMPTY;
3819     hres = IHTMLStyle_get_left(style, &v);
3820     ok(hres == S_OK, "get_left failed: %08x\n", hres);
3821     ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
3822     ok(!strcmp_wa(V_BSTR(&v), "4px") ||
3823        !strcmp_wa(V_BSTR(&v), "4.9px"), /* IE8 */
3824        "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
3825     VariantClear(&v);
3826
3827     /* Test left */
3828     V_VT(&v) = VT_BSTR;
3829     V_BSTR(&v) = a2bstr("3px");
3830     hres = IHTMLStyle_put_left(style, v);
3831     ok(hres == S_OK, "put_left failed: %08x\n", hres);
3832     VariantClear(&v);
3833
3834     hres = IHTMLStyle_get_posLeft(style, &f);
3835     ok(hres == S_OK, "get_posLeft failed: %08x\n", hres);
3836     ok(f == 3.0, "expected 3.0 got %f\n", f);
3837
3838     V_VT(&v) = VT_EMPTY;
3839     hres = IHTMLStyle_get_left(style, &v);
3840     ok(hres == S_OK, "get_left failed: %08x\n", hres);
3841     ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
3842     ok(!strcmp_wa(V_BSTR(&v), "3px"), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
3843     VariantClear(&v);
3844
3845     V_VT(&v) = VT_NULL;
3846     hres = IHTMLStyle_put_left(style, v);
3847     ok(hres == S_OK, "put_left failed: %08x\n", hres);
3848
3849     V_VT(&v) = VT_EMPTY;
3850     hres = IHTMLStyle_get_left(style, &v);
3851     ok(hres == S_OK, "get_left failed: %08x\n", hres);
3852     ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
3853     ok(!V_BSTR(&v), "V_BSTR(v) != NULL\n");
3854     VariantClear(&v);
3855
3856     V_VT(&v) = VT_EMPTY;
3857     hres = IHTMLStyle_get_top(style, &v);
3858     ok(hres == S_OK, "get_top failed: %08x\n", hres);
3859     ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
3860     ok(!V_BSTR(&v), "V_BSTR(v) != NULL\n");
3861     VariantClear(&v);
3862
3863     /* Test posTop */
3864     hres = IHTMLStyle_get_posTop(style, NULL);
3865     ok(hres == E_POINTER, "get_posTop failed: %08x\n", hres);
3866
3867     f = 1.0f;
3868     hres = IHTMLStyle_get_posTop(style, &f);
3869     ok(hres == S_OK, "get_posTop failed: %08x\n", hres);
3870     ok(f == 0.0, "expected 0.0 got %f\n", f);
3871
3872     hres = IHTMLStyle_put_posTop(style, 4.9f);
3873     ok(hres == S_OK, "put_posTop failed: %08x\n", hres);
3874
3875     hres = IHTMLStyle_get_posTop(style, &f);
3876     ok(hres == S_OK, "get_posTop failed: %08x\n", hres);
3877     ok(f == 4.0 ||
3878        f == 4.9f, /* IE8 */
3879        "expected 4.0 or 4.9 (IE8) got %f\n", f);
3880
3881     V_VT(&v) = VT_BSTR;
3882     V_BSTR(&v) = a2bstr("3px");
3883     hres = IHTMLStyle_put_top(style, v);
3884     ok(hres == S_OK, "put_top failed: %08x\n", hres);
3885     VariantClear(&v);
3886
3887     V_VT(&v) = VT_EMPTY;
3888     hres = IHTMLStyle_get_top(style, &v);
3889     ok(hres == S_OK, "get_top failed: %08x\n", hres);
3890     ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
3891     ok(!strcmp_wa(V_BSTR(&v), "3px"), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
3892     VariantClear(&v);
3893
3894     hres = IHTMLStyle_get_posTop(style, &f);
3895     ok(hres == S_OK, "get_posTop failed: %08x\n", hres);
3896     ok(f == 3.0, "expected 3.0 got %f\n", f);
3897
3898     V_VT(&v) = VT_NULL;
3899     hres = IHTMLStyle_put_top(style, v);
3900     ok(hres == S_OK, "put_top failed: %08x\n", hres);
3901
3902     V_VT(&v) = VT_EMPTY;
3903     hres = IHTMLStyle_get_top(style, &v);
3904     ok(hres == S_OK, "get_top failed: %08x\n", hres);
3905     ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
3906     ok(!V_BSTR(&v), "V_BSTR(v) != NULL\n");
3907     VariantClear(&v);
3908
3909     /* Test posHeight */
3910     hres = IHTMLStyle_get_posHeight(style, NULL);
3911     ok(hres == E_POINTER, "get_posHeight failed: %08x\n", hres);
3912
3913     V_VT(&v) = VT_EMPTY;
3914     hres = IHTMLStyle_get_height(style, &v);
3915     ok(hres == S_OK, "get_height failed: %08x\n", hres);
3916     ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
3917     ok(!V_BSTR(&v), "V_BSTR(v) != NULL\n");
3918     VariantClear(&v);
3919
3920     f = 1.0f;
3921     hres = IHTMLStyle_get_posHeight(style, &f);
3922     ok(hres == S_OK, "get_posHeight failed: %08x\n", hres);
3923     ok(f == 0.0, "expected 0.0 got %f\n", f);
3924
3925     hres = IHTMLStyle_put_posHeight(style, 4.9f);
3926     ok(hres == S_OK, "put_posHeight failed: %08x\n", hres);
3927
3928     hres = IHTMLStyle_get_posHeight(style, &f);
3929     ok(hres == S_OK, "get_posHeight failed: %08x\n", hres);
3930     ok(f == 4.0 ||
3931        f == 4.9f, /* IE8 */
3932        "expected 4.0 or 4.9 (IE8) got %f\n", f);
3933
3934     V_VT(&v) = VT_BSTR;
3935     V_BSTR(&v) = a2bstr("64px");
3936     hres = IHTMLStyle_put_height(style, v);
3937     ok(hres == S_OK, "put_height failed: %08x\n", hres);
3938     VariantClear(&v);
3939
3940     V_VT(&v) = VT_EMPTY;
3941     hres = IHTMLStyle_get_height(style, &v);
3942     ok(hres == S_OK, "get_height failed: %08x\n", hres);
3943     ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
3944     ok(!strcmp_wa(V_BSTR(&v), "64px"), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
3945     VariantClear(&v);
3946
3947     hres = IHTMLStyle_get_posHeight(style, &f);
3948     ok(hres == S_OK, "get_posHeight failed: %08x\n", hres);
3949     ok(f == 64.0, "expected 64.0 got %f\n", f);
3950
3951     str = (void*)0xdeadbeef;
3952     hres = IHTMLStyle_get_cursor(style, &str);
3953     ok(hres == S_OK, "get_cursor failed: %08x\n", hres);
3954     ok(!str, "get_cursor != NULL\n");
3955     SysFreeString(str);
3956
3957     str = a2bstr("default");
3958     hres = IHTMLStyle_put_cursor(style, str);
3959     ok(hres == S_OK, "put_cursor failed: %08x\n", hres);
3960     SysFreeString(str);
3961
3962     str = NULL;
3963     hres = IHTMLStyle_get_cursor(style, &str);
3964     ok(hres == S_OK, "get_cursor failed: %08x\n", hres);
3965     ok(!strcmp_wa(str, "default"), "get_cursor returned %s\n", wine_dbgstr_w(str));
3966     SysFreeString(str);
3967
3968     V_VT(&v) = VT_EMPTY;
3969     hres = IHTMLStyle_get_verticalAlign(style, &v);
3970     ok(hres == S_OK, "get_vertivalAlign failed: %08x\n", hres);
3971     ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
3972     ok(!V_BSTR(&v), "V_BSTR(v) != NULL\n");
3973     VariantClear(&v);
3974
3975     V_VT(&v) = VT_BSTR;
3976     V_BSTR(&v) = a2bstr("middle");
3977     hres = IHTMLStyle_put_verticalAlign(style, v);
3978     ok(hres == S_OK, "put_vertivalAlign failed: %08x\n", hres);
3979     VariantClear(&v);
3980
3981     V_VT(&v) = VT_EMPTY;
3982     hres = IHTMLStyle_get_verticalAlign(style, &v);
3983     ok(hres == S_OK, "get_verticalAlign failed: %08x\n", hres);
3984     ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
3985     ok(!strcmp_wa(V_BSTR(&v), "middle"), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
3986     VariantClear(&v);
3987
3988     str = (void*)0xdeadbeef;
3989     hres = IHTMLStyle_get_textAlign(style, &str);
3990     ok(hres == S_OK, "get_textAlign failed: %08x\n", hres);
3991     ok(!str, "textAlign != NULL\n");
3992
3993     str = a2bstr("center");
3994     hres = IHTMLStyle_put_textAlign(style, str);
3995     ok(hres == S_OK, "put_textAlign failed: %08x\n", hres);
3996     SysFreeString(str);
3997
3998     str = NULL;
3999     hres = IHTMLStyle_get_textAlign(style, &str);
4000     ok(hres == S_OK, "get_textAlign failed: %08x\n", hres);
4001     ok(!strcmp_wa(str, "center"), "textAlign = %s\n", wine_dbgstr_w(V_BSTR(&v)));
4002     SysFreeString(str);
4003
4004     str = (void*)0xdeadbeef;
4005     hres = IHTMLStyle_get_filter(style, &str);
4006     ok(hres == S_OK, "get_filter failed: %08x\n", hres);
4007     ok(!str, "filter != NULL\n");
4008
4009     str = a2bstr("alpha(opacity=100)");
4010     hres = IHTMLStyle_put_filter(style, str);
4011     ok(hres == S_OK, "put_filter failed: %08x\n", hres);
4012     SysFreeString(str);
4013
4014     V_VT(&v) = VT_EMPTY;
4015     hres = IHTMLStyle_get_zIndex(style, &v);
4016     ok(hres == S_OK, "get_zIndex failed: %08x\n", hres);
4017     ok(V_VT(&v) == VT_I4, "V_VT(v)=%d\n", V_VT(&v));
4018     ok(!V_I4(&v), "V_I4(v) != 0\n");
4019     VariantClear(&v);
4020
4021     V_VT(&v) = VT_BSTR;
4022     V_BSTR(&v) = a2bstr("1");
4023     hres = IHTMLStyle_put_zIndex(style, v);
4024     ok(hres == S_OK, "put_zIndex failed: %08x\n", hres);
4025     VariantClear(&v);
4026
4027     V_VT(&v) = VT_EMPTY;
4028     hres = IHTMLStyle_get_zIndex(style, &v);
4029     ok(hres == S_OK, "get_zIndex failed: %08x\n", hres);
4030     ok(V_VT(&v) == VT_I4, "V_VT(v)=%d\n", V_VT(&v));
4031     ok(V_I4(&v) == 1, "V_I4(v) = %d\n", V_I4(&v));
4032     VariantClear(&v);
4033
4034     /* fontStyle */
4035     hres = IHTMLStyle_get_fontStyle(style, &sDefault);
4036     ok(hres == S_OK, "get_fontStyle failed: %08x\n", hres);
4037
4038     str = a2bstr("test");
4039     hres = IHTMLStyle_put_fontStyle(style, str);
4040     ok(hres == E_INVALIDARG, "put_fontStyle failed: %08x\n", hres);
4041     SysFreeString(str);
4042
4043     str = a2bstr("italic");
4044     hres = IHTMLStyle_put_fontStyle(style, str);
4045     ok(hres == S_OK, "put_fontStyle failed: %08x\n", hres);
4046     SysFreeString(str);
4047
4048     str = a2bstr("oblique");
4049     hres = IHTMLStyle_put_fontStyle(style, str);
4050     ok(hres == S_OK, "put_fontStyle failed: %08x\n", hres);
4051     SysFreeString(str);
4052
4053     str = a2bstr("normal");
4054     hres = IHTMLStyle_put_fontStyle(style, str);
4055     ok(hres == S_OK, "put_fontStyle failed: %08x\n", hres);
4056     SysFreeString(str);
4057
4058     hres = IHTMLStyle_put_fontStyle(style, sDefault);
4059     ok(hres == S_OK, "put_fontStyle failed: %08x\n", hres);
4060     SysFreeString(sDefault);
4061
4062     /* overflow */
4063     hres = IHTMLStyle_get_overflow(style, NULL);
4064     ok(hres == E_INVALIDARG, "get_overflow failed: %08x\n", hres);
4065
4066     hres = IHTMLStyle_get_overflow(style, &sOverflowDefault);
4067     ok(hres == S_OK, "get_overflow failed: %08x\n", hres);
4068
4069     str = a2bstr("test");
4070     hres = IHTMLStyle_put_overflow(style, str);
4071     ok(hres == E_INVALIDARG, "put_overflow failed: %08x\n", hres);
4072     SysFreeString(str);
4073
4074     str = a2bstr("visible");
4075     hres = IHTMLStyle_put_overflow(style, str);
4076     ok(hres == S_OK, "put_overflow failed: %08x\n", hres);
4077     SysFreeString(str);
4078
4079     str = a2bstr("scroll");
4080     hres = IHTMLStyle_put_overflow(style, str);
4081     ok(hres == S_OK, "put_overflow failed: %08x\n", hres);
4082     SysFreeString(str);
4083
4084     str = a2bstr("hidden");
4085     hres = IHTMLStyle_put_overflow(style, str);
4086     ok(hres == S_OK, "put_overflow failed: %08x\n", hres);
4087     SysFreeString(str);
4088
4089     str = a2bstr("auto");
4090     hres = IHTMLStyle_put_overflow(style, str);
4091     ok(hres == S_OK, "put_overflow failed: %08x\n", hres);
4092     SysFreeString(str);
4093
4094     hres = IHTMLStyle_get_overflow(style, &str);
4095     ok(hres == S_OK, "get_overflow failed: %08x\n", hres);
4096     ok(!strcmp_wa(str, "auto"), "str=%s\n", wine_dbgstr_w(str));
4097     SysFreeString(str);
4098
4099     str = a2bstr("");
4100     hres = IHTMLStyle_put_overflow(style, str);
4101     ok(hres == S_OK, "put_overflow failed: %08x\n", hres);
4102     SysFreeString(str);
4103
4104     hres = IHTMLStyle_get_overflow(style, &str);
4105     ok(hres == S_OK, "get_overflow failed: %08x\n", hres);
4106     ok(!str, "str=%s\n", wine_dbgstr_w(str));
4107     SysFreeString(str);
4108
4109     /* restore overflow default */
4110     hres = IHTMLStyle_put_overflow(style, sOverflowDefault);
4111     ok(hres == S_OK, "put_overflow failed: %08x\n", hres);
4112     SysFreeString(sOverflowDefault);
4113
4114     /* Attribute Tests*/
4115     hres = IHTMLStyle_getAttribute(style, NULL, 1, &v);
4116     ok(hres == E_INVALIDARG, "getAttribute failed: %08x\n", hres);
4117
4118     str = a2bstr("position");
4119     hres = IHTMLStyle_getAttribute(style, str, 1, NULL);
4120     ok(hres == E_INVALIDARG, "getAttribute failed: %08x\n", hres);
4121
4122     hres = IHTMLStyle_getAttribute(style, str, 1, &v);
4123     ok(hres == S_OK, "getAttribute failed: %08x\n", hres);
4124     ok(V_VT(&v) == VT_BSTR, "type failed: %d\n", V_VT(&v));
4125     VariantClear(&v);
4126
4127     hres = IHTMLStyle_setAttribute(style, NULL, v, 1);
4128     ok(hres == E_INVALIDARG, "setAttribute failed: %08x\n", hres);
4129
4130     V_VT(&v) = VT_BSTR;
4131     V_BSTR(&v) = a2bstr("absolute");
4132     hres = IHTMLStyle_setAttribute(style, str, v, 1);
4133     ok(hres == S_OK, "setAttribute failed: %08x\n", hres);
4134     VariantClear(&v);
4135
4136     hres = IHTMLStyle_getAttribute(style, str, 1, &v);
4137     ok(hres == S_OK, "getAttribute failed: %08x\n", hres);
4138     ok(V_VT(&v) == VT_BSTR, "type failed: %d\n", V_VT(&v));
4139     ok(!strcmp_wa(V_BSTR(&v), "absolute"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
4140     VariantClear(&v);
4141
4142     V_VT(&v) = VT_BSTR;
4143     V_BSTR(&v) = NULL;
4144     hres = IHTMLStyle_setAttribute(style, str, v, 1);
4145     ok(hres == S_OK, "setAttribute failed: %08x\n", hres);
4146     VariantClear(&v);
4147
4148     SysFreeString(str);
4149
4150     str = a2bstr("borderLeftStyle");
4151     test_border_styles(style, str);
4152     SysFreeString(str);
4153
4154     str = a2bstr("borderbottomstyle");
4155     test_border_styles(style, str);
4156     SysFreeString(str);
4157
4158     str = a2bstr("borderrightstyle");
4159     test_border_styles(style, str);
4160     SysFreeString(str);
4161
4162     str = a2bstr("bordertopstyle");
4163     test_border_styles(style, str);
4164     SysFreeString(str);
4165
4166     hres = IHTMLStyle_get_borderStyle(style, &sDefault);
4167     ok(hres == S_OK, "get_borderStyle failed: %08x\n", hres);
4168
4169     str = a2bstr("none dotted dashed solid");
4170     hres = IHTMLStyle_put_borderStyle(style, str);
4171     ok(hres == S_OK, "put_borderStyle failed: %08x\n", hres);
4172     SysFreeString(str);
4173
4174     str = a2bstr("none dotted dashed solid");
4175     hres = IHTMLStyle_get_borderStyle(style, &str);
4176     ok(hres == S_OK, "get_borderStyle failed: %08x\n", hres);
4177     ok(!strcmp_wa(str, "none dotted dashed solid"),
4178         "expected (none dotted dashed solid) = (%s)\n", wine_dbgstr_w(V_BSTR(&v)));
4179     SysFreeString(str);
4180
4181     str = a2bstr("double groove ridge inset");
4182     hres = IHTMLStyle_put_borderStyle(style, str);
4183     ok(hres == S_OK, "put_borderStyle failed: %08x\n", hres);
4184     SysFreeString(str);
4185
4186     str = a2bstr("window-inset outset ridge inset");
4187     hres = IHTMLStyle_put_borderStyle(style, str);
4188     ok(hres == S_OK, "put_borderStyle failed: %08x\n", hres);
4189     SysFreeString(str);
4190
4191     str = a2bstr("window-inset");
4192     hres = IHTMLStyle_put_borderStyle(style, str);
4193     ok(hres == S_OK, "put_borderStyle failed: %08x\n", hres);
4194     SysFreeString(str);
4195
4196     str = a2bstr("none none none none none");
4197     hres = IHTMLStyle_put_borderStyle(style, str);
4198     ok(hres == S_OK, "put_borderStyle failed: %08x\n", hres);
4199     SysFreeString(str);
4200
4201     str = a2bstr("invalid none none none");
4202     hres = IHTMLStyle_put_borderStyle(style, str);
4203     ok(hres == E_INVALIDARG, "put_borderStyle failed: %08x\n", hres);
4204     SysFreeString(str);
4205
4206     str = a2bstr("none invalid none none");
4207     hres = IHTMLStyle_put_borderStyle(style, str);
4208     ok(hres == E_INVALIDARG, "put_borderStyle failed: %08x\n", hres);
4209     SysFreeString(str);
4210
4211     hres = IHTMLStyle_put_borderStyle(style, sDefault);
4212     ok(hres == S_OK, "put_borderStyle failed: %08x\n", hres);
4213     SysFreeString(sDefault);
4214
4215     /* backgoundColor */
4216     hres = IHTMLStyle_get_backgroundColor(style, &v);
4217     ok(hres == S_OK, "get_backgroundColor: %08x\n", hres);
4218     ok(V_VT(&v) == VT_BSTR, "type failed: %d\n", V_VT(&v));
4219     ok(!V_BSTR(&v), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
4220     VariantClear(&v);
4221
4222     /* PaddingLeft */
4223     hres = IHTMLStyle_get_paddingLeft(style, &vDefault);
4224     ok(hres == S_OK, "get_paddingLeft: %08x\n", hres);
4225
4226     V_VT(&v) = VT_BSTR;
4227     V_BSTR(&v) = a2bstr("10");
4228     hres = IHTMLStyle_put_paddingLeft(style, v);
4229     ok(hres == S_OK, "put_paddingLeft: %08x\n", hres);
4230     VariantClear(&v);
4231
4232     hres = IHTMLStyle_get_paddingLeft(style, &v);
4233     ok(hres == S_OK, "get_paddingLeft: %08x\n", hres);
4234     ok(!strcmp_wa(V_BSTR(&v), "10px"), "expecte 10 = %s\n", wine_dbgstr_w(V_BSTR(&v)));
4235
4236     hres = IHTMLStyle_put_paddingLeft(style, vDefault);
4237     ok(hres == S_OK, "put_paddingLeft: %08x\n", hres);
4238
4239     /* BackgroundRepeat */
4240     hres = IHTMLStyle_get_backgroundRepeat(style, &sDefault);
4241     ok(hres == S_OK, "get_backgroundRepeat failed: %08x\n", hres);
4242
4243     str = a2bstr("invalid");
4244     hres = IHTMLStyle_put_backgroundRepeat(style, str);
4245     ok(hres == E_INVALIDARG, "put_backgroundRepeat failed: %08x\n", hres);
4246     SysFreeString(str);
4247
4248     str = a2bstr("repeat");
4249     hres = IHTMLStyle_put_backgroundRepeat(style, str);
4250     ok(hres == S_OK, "put_backgroundRepeat failed: %08x\n", hres);
4251     SysFreeString(str);
4252
4253     str = a2bstr("no-repeat");
4254     hres = IHTMLStyle_put_backgroundRepeat(style, str);
4255     ok(hres == S_OK, "put_backgroundRepeat failed: %08x\n", hres);
4256     SysFreeString(str);
4257
4258     str = a2bstr("repeat-x");
4259     hres = IHTMLStyle_put_backgroundRepeat(style, str);
4260     ok(hres == S_OK, "put_backgroundRepeat failed: %08x\n", hres);
4261     SysFreeString(str);
4262
4263     str = a2bstr("repeat-y");
4264     hres = IHTMLStyle_put_backgroundRepeat(style, str);
4265     ok(hres == S_OK, "put_backgroundRepeat failed: %08x\n", hres);
4266     SysFreeString(str);
4267
4268     hres = IHTMLStyle_get_backgroundRepeat(style, &str);
4269     ok(hres == S_OK, "get_backgroundRepeat failed: %08x\n", hres);
4270     ok(!strcmp_wa(str, "repeat-y"), "str=%s\n", wine_dbgstr_w(str));
4271     SysFreeString(str);
4272
4273     hres = IHTMLStyle_put_backgroundRepeat(style, sDefault);
4274     ok(hres == S_OK, "put_backgroundRepeat failed: %08x\n", hres);
4275     SysFreeString(sDefault);
4276
4277     /* BorderColor */
4278     hres = IHTMLStyle_get_borderColor(style, &sDefault);
4279     ok(hres == S_OK, "get_borderColor failed: %08x\n", hres);
4280
4281     str = a2bstr("red green red blue");
4282     hres = IHTMLStyle_put_borderColor(style, str);
4283     ok(hres == S_OK, "put_borderColor failed: %08x\n", hres);
4284     SysFreeString(str);
4285
4286     hres = IHTMLStyle_get_borderColor(style, &str);
4287     ok(hres == S_OK, "get_borderColor failed: %08x\n", hres);
4288     ok(!strcmp_wa(str, "red green red blue"), "str=%s\n", wine_dbgstr_w(str));
4289     SysFreeString(str);
4290
4291     hres = IHTMLStyle_put_borderColor(style, sDefault);
4292     ok(hres == S_OK, "put_borderColor failed: %08x\n", hres);
4293     SysFreeString(sDefault);
4294
4295     /* BorderRight */
4296     hres = IHTMLStyle_get_borderRight(style, &sDefault);
4297     ok(hres == S_OK, "get_borderRight failed: %08x\n", hres);
4298
4299     str = a2bstr("thick dotted red");
4300     hres = IHTMLStyle_put_borderRight(style, str);
4301     ok(hres == S_OK, "put_borderRight failed: %08x\n", hres);
4302     SysFreeString(str);
4303
4304     /* IHTMLStyle_get_borderRight appears to have a bug where
4305         it returns the first letter of the color.  So we check
4306         each style individually.
4307      */
4308     V_BSTR(&v) = NULL;
4309     hres = IHTMLStyle_get_borderRightColor(style, &v);
4310     todo_wine ok(hres == S_OK, "get_borderRightColor failed: %08x\n", hres);
4311     todo_wine ok(!strcmp_wa(V_BSTR(&v), "red"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
4312     VariantClear(&v);
4313
4314     V_BSTR(&v) = NULL;
4315     hres = IHTMLStyle_get_borderRightWidth(style, &v);
4316     ok(hres == S_OK, "get_borderRightWidth failed: %08x\n", hres);
4317     ok(!strcmp_wa(V_BSTR(&v), "thick"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
4318     VariantClear(&v);
4319
4320     hres = IHTMLStyle_get_borderRightStyle(style, &str);
4321     ok(hres == S_OK, "get_borderRightStyle failed: %08x\n", hres);
4322     ok(!strcmp_wa(str, "dotted"), "str=%s\n", wine_dbgstr_w(str));
4323     SysFreeString(str);
4324
4325     hres = IHTMLStyle_put_borderRight(style, sDefault);
4326     ok(hres == S_OK, "put_borderRight failed: %08x\n", hres);
4327     SysFreeString(sDefault);
4328
4329     /* BorderTop */
4330     hres = IHTMLStyle_get_borderTop(style, &sDefault);
4331     ok(hres == S_OK, "get_borderTop failed: %08x\n", hres);
4332
4333     str = a2bstr("thick dotted red");
4334     hres = IHTMLStyle_put_borderTop(style, str);
4335     ok(hres == S_OK, "put_borderTop failed: %08x\n", hres);
4336     SysFreeString(str);
4337
4338     /* IHTMLStyle_get_borderTop appears to have a bug where
4339         it returns the first letter of the color.  So we check
4340         each style individually.
4341      */
4342     V_BSTR(&v) = NULL;
4343     hres = IHTMLStyle_get_borderTopColor(style, &v);
4344     todo_wine ok(hres == S_OK, "get_borderTopColor failed: %08x\n", hres);
4345     todo_wine ok(!strcmp_wa(V_BSTR(&v), "red"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
4346     VariantClear(&v);
4347
4348     V_BSTR(&v) = NULL;
4349     hres = IHTMLStyle_get_borderTopWidth(style, &v);
4350     ok(hres == S_OK, "get_borderTopWidth failed: %08x\n", hres);
4351     ok(!strcmp_wa(V_BSTR(&v), "thick"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
4352     VariantClear(&v);
4353
4354     hres = IHTMLStyle_get_borderTopStyle(style, &str);
4355     ok(hres == S_OK, "get_borderTopStyle failed: %08x\n", hres);
4356     ok(!strcmp_wa(str, "dotted"), "str=%s\n", wine_dbgstr_w(str));
4357     SysFreeString(str);
4358
4359     hres = IHTMLStyle_put_borderTop(style, sDefault);
4360     ok(hres == S_OK, "put_borderTop failed: %08x\n", hres);
4361     SysFreeString(sDefault);
4362
4363     /* BorderBottom */
4364     hres = IHTMLStyle_get_borderBottom(style, &sDefault);
4365     ok(hres == S_OK, "get_borderBottom failed: %08x\n", hres);
4366
4367     str = a2bstr("thick dotted red");
4368     hres = IHTMLStyle_put_borderBottom(style, str);
4369     ok(hres == S_OK, "put_borderBottom failed: %08x\n", hres);
4370     SysFreeString(str);
4371
4372     /* IHTMLStyle_get_borderBottom appears to have a bug where
4373         it returns the first letter of the color.  So we check
4374         each style individually.
4375      */
4376     V_BSTR(&v) = NULL;
4377     hres = IHTMLStyle_get_borderBottomColor(style, &v);
4378     todo_wine ok(hres == S_OK, "get_borderBottomColor failed: %08x\n", hres);
4379     todo_wine ok(!strcmp_wa(V_BSTR(&v), "red"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
4380     VariantClear(&v);
4381
4382     V_BSTR(&v) = NULL;
4383     hres = IHTMLStyle_get_borderBottomWidth(style, &v);
4384     ok(hres == S_OK, "get_borderBottomWidth failed: %08x\n", hres);
4385     ok(!strcmp_wa(V_BSTR(&v), "thick"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
4386     VariantClear(&v);
4387
4388     hres = IHTMLStyle_get_borderBottomStyle(style, &str);
4389     ok(hres == S_OK, "get_borderBottomStyle failed: %08x\n", hres);
4390     ok(!strcmp_wa(str, "dotted"), "str=%s\n", wine_dbgstr_w(str));
4391     SysFreeString(str);
4392
4393     hres = IHTMLStyle_put_borderBottom(style, sDefault);
4394     ok(hres == S_OK, "put_borderBottom failed: %08x\n", hres);
4395     SysFreeString(sDefault);
4396
4397     /* BorderLeft */
4398     hres = IHTMLStyle_get_borderLeft(style, &sDefault);
4399     ok(hres == S_OK, "get_borderLeft failed: %08x\n", hres);
4400
4401     str = a2bstr("thick dotted red");
4402     hres = IHTMLStyle_put_borderLeft(style, str);
4403     ok(hres == S_OK, "put_borderLeft failed: %08x\n", hres);
4404     SysFreeString(str);
4405
4406     /* IHTMLStyle_get_borderLeft appears to have a bug where
4407         it returns the first letter of the color.  So we check
4408         each style individually.
4409      */
4410     V_BSTR(&v) = NULL;
4411     hres = IHTMLStyle_get_borderLeftColor(style, &v);
4412     todo_wine ok(hres == S_OK, "get_borderLeftColor failed: %08x\n", hres);
4413     todo_wine ok(!strcmp_wa(V_BSTR(&v), "red"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
4414     VariantClear(&v);
4415
4416     V_BSTR(&v) = NULL;
4417     hres = IHTMLStyle_get_borderLeftWidth(style, &v);
4418     ok(hres == S_OK, "get_borderLeftWidth failed: %08x\n", hres);
4419     ok(!strcmp_wa(V_BSTR(&v), "thick"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
4420     VariantClear(&v);
4421
4422     hres = IHTMLStyle_get_borderLeftStyle(style, &str);
4423     ok(hres == S_OK, "get_borderLeftStyle failed: %08x\n", hres);
4424     ok(!strcmp_wa(str, "dotted"), "str=%s\n", wine_dbgstr_w(str));
4425     SysFreeString(str);
4426
4427     hres = IHTMLStyle_put_borderLeft(style, sDefault);
4428     ok(hres == S_OK, "put_borderLeft failed: %08x\n", hres);
4429     SysFreeString(sDefault);
4430
4431     /* backgroundPositionX */
4432     hres = IHTMLStyle_get_backgroundPositionX(style, &vDefault);
4433     ok(hres == S_OK, "get_backgroundPositionX failed: %08x\n", hres);
4434
4435     V_VT(&v) = VT_BSTR;
4436     V_BSTR(&v) = a2bstr("10px");
4437     hres = IHTMLStyle_put_backgroundPositionX(style, v);
4438     ok(hres == S_OK, "put_backgroundPositionX failed: %08x\n", hres);
4439     VariantClear(&v);
4440
4441     hres = IHTMLStyle_get_backgroundPositionX(style, &v);
4442     ok(hres == S_OK, "get_backgroundPositionX failed: %08x\n", hres);
4443     ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
4444     VariantClear(&v);
4445
4446     hres = IHTMLStyle_put_backgroundPositionX(style, vDefault);
4447     ok(hres == S_OK, "put_backgroundPositionX failed: %08x\n", hres);
4448     VariantClear(&vDefault);
4449
4450     /* backgroundPositionY */
4451     hres = IHTMLStyle_get_backgroundPositionY(style, &vDefault);
4452     ok(hres == S_OK, "get_backgroundPositionY failed: %08x\n", hres);
4453
4454     V_VT(&v) = VT_BSTR;
4455     V_BSTR(&v) = a2bstr("10px");
4456     hres = IHTMLStyle_put_backgroundPositionY(style, v);
4457     ok(hres == S_OK, "put_backgroundPositionY failed: %08x\n", hres);
4458     VariantClear(&v);
4459
4460     hres = IHTMLStyle_get_backgroundPositionY(style, &v);
4461     ok(hres == S_OK, "get_backgroundPositionY failed: %08x\n", hres);
4462     ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
4463     VariantClear(&v);
4464
4465     hres = IHTMLStyle_put_backgroundPositionY(style, vDefault);
4466     ok(hres == S_OK, "put_backgroundPositionY failed: %08x\n", hres);
4467     VariantClear(&vDefault);
4468
4469      /* borderTopWidth */
4470     hres = IHTMLStyle_get_borderTopWidth(style, &vDefault);
4471     ok(hres == S_OK, "get_borderTopWidth: %08x\n", hres);
4472
4473     V_VT(&v) = VT_BSTR;
4474     V_BSTR(&v) = a2bstr("10px");
4475     hres = IHTMLStyle_put_borderTopWidth(style, v);
4476     ok(hres == S_OK, "put_borderTopWidth: %08x\n", hres);
4477     VariantClear(&v);
4478
4479     hres = IHTMLStyle_get_borderTopWidth(style, &v);
4480     ok(hres == S_OK, "get_borderTopWidth: %08x\n", hres);
4481     ok(!strcmp_wa(V_BSTR(&v), "10px"), "expected 10px = %s\n", wine_dbgstr_w(V_BSTR(&v)));
4482     VariantClear(&v);
4483
4484     hres = IHTMLStyle_put_borderTopWidth(style, vDefault);
4485     ok(hres == S_OK, "put_borderTopWidth: %08x\n", hres);
4486     VariantClear(&vDefault);
4487
4488     /* borderRightWidth */
4489     hres = IHTMLStyle_get_borderRightWidth(style, &vDefault);
4490     ok(hres == S_OK, "get_borderRightWidth: %08x\n", hres);
4491
4492     V_VT(&v) = VT_BSTR;
4493     V_BSTR(&v) = a2bstr("10");
4494     hres = IHTMLStyle_put_borderRightWidth(style, v);
4495     ok(hres == S_OK, "put_borderRightWidth: %08x\n", hres);
4496     VariantClear(&v);
4497
4498     hres = IHTMLStyle_get_borderRightWidth(style, &v);
4499     ok(hres == S_OK, "get_borderRightWidth: %08x\n", hres);
4500     ok(!strcmp_wa(V_BSTR(&v), "10px"), "expected 10px = %s\n", wine_dbgstr_w(V_BSTR(&v)));
4501     VariantClear(&v);
4502
4503     hres = IHTMLStyle_put_borderRightWidth(style, vDefault);
4504     ok(hres == S_OK, "put_borderRightWidth: %08x\n", hres);
4505     VariantClear(&vDefault);
4506
4507     /* borderBottomWidth */
4508     hres = IHTMLStyle_get_borderBottomWidth(style, &vDefault);
4509     ok(hres == S_OK, "get_borderBottomWidth: %08x\n", hres);
4510
4511     V_VT(&v) = VT_BSTR;
4512     V_BSTR(&v) = a2bstr("10");
4513     hres = IHTMLStyle_put_borderBottomWidth(style, v);
4514     ok(hres == S_OK, "put_borderBottomWidth: %08x\n", hres);
4515     VariantClear(&v);
4516
4517     hres = IHTMLStyle_get_borderBottomWidth(style, &v);
4518     ok(hres == S_OK, "get_borderBottomWidth: %08x\n", hres);
4519     ok(!strcmp_wa(V_BSTR(&v), "10px"), "expected 10px = %s\n", wine_dbgstr_w(V_BSTR(&v)));
4520     VariantClear(&v);
4521
4522     hres = IHTMLStyle_put_borderBottomWidth(style, vDefault);
4523     ok(hres == S_OK, "put_borderBottomWidth: %08x\n", hres);
4524     VariantClear(&vDefault);
4525
4526     /* borderLeftWidth */
4527     hres = IHTMLStyle_get_borderLeftWidth(style, &vDefault);
4528     ok(hres == S_OK, "get_borderLeftWidth: %08x\n", hres);
4529
4530     V_VT(&v) = VT_BSTR;
4531     V_BSTR(&v) = a2bstr("10");
4532     hres = IHTMLStyle_put_borderLeftWidth(style, v);
4533     ok(hres == S_OK, "put_borderLeftWidth: %08x\n", hres);
4534     VariantClear(&v);
4535
4536     hres = IHTMLStyle_get_borderLeftWidth(style, &v);
4537     ok(hres == S_OK, "get_borderLeftWidth: %08x\n", hres);
4538     ok(!strcmp_wa(V_BSTR(&v), "10px"), "expected 10px = %s\n", wine_dbgstr_w(V_BSTR(&v)));
4539     VariantClear(&v);
4540
4541     hres = IHTMLStyle_put_borderLeftWidth(style, vDefault);
4542     ok(hres == S_OK, "put_borderLeftWidth: %08x\n", hres);
4543     VariantClear(&vDefault);
4544
4545     /* wordSpacing */
4546     hres = IHTMLStyle_get_wordSpacing(style, &vDefault);
4547     ok(hres == S_OK, "get_wordSpacing: %08x\n", hres);
4548
4549     V_VT(&v) = VT_BSTR;
4550     V_BSTR(&v) = a2bstr("10");
4551     hres = IHTMLStyle_put_wordSpacing(style, v);
4552     ok(hres == S_OK, "put_wordSpacing: %08x\n", hres);
4553     VariantClear(&v);
4554
4555     hres = IHTMLStyle_get_wordSpacing(style, &v);
4556     ok(hres == S_OK, "get_wordSpacing: %08x\n", hres);
4557     ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
4558     ok(!strcmp_wa(V_BSTR(&v), "10px"), "expected 10px = %s\n", wine_dbgstr_w(V_BSTR(&v)));
4559     VariantClear(&v);
4560
4561     hres = IHTMLStyle_put_wordSpacing(style, vDefault);
4562     ok(hres == S_OK, "put_wordSpacing: %08x\n", hres);
4563     VariantClear(&vDefault);
4564
4565     /* letterSpacing */
4566     hres = IHTMLStyle_get_letterSpacing(style, &vDefault);
4567     ok(hres == S_OK, "get_letterSpacing: %08x\n", hres);
4568
4569     V_VT(&v) = VT_BSTR;
4570     V_BSTR(&v) = a2bstr("11");
4571     hres = IHTMLStyle_put_letterSpacing(style, v);
4572     ok(hres == S_OK, "put_letterSpacing: %08x\n", hres);
4573     VariantClear(&v);
4574
4575     hres = IHTMLStyle_get_letterSpacing(style, &v);
4576     ok(hres == S_OK, "get_letterSpacing: %08x\n", hres);
4577     ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
4578     ok(!strcmp_wa(V_BSTR(&v), "11px"), "expected 10px = %s\n", wine_dbgstr_w(V_BSTR(&v)));
4579     VariantClear(&v);
4580
4581     hres = IHTMLStyle_put_letterSpacing(style, vDefault);
4582     ok(hres == S_OK, "put_letterSpacing: %08x\n", hres);
4583     VariantClear(&vDefault);
4584
4585     hres = IHTMLStyle_QueryInterface(style, &IID_IHTMLStyle2, (void**)&style2);
4586     ok(hres == S_OK, "Could not get IHTMLStyle2 iface: %08x\n", hres);
4587     if(SUCCEEDED(hres)) {
4588         test_style2(style2);
4589         IHTMLStyle2_Release(style2);
4590     }
4591
4592     hres = IHTMLStyle_QueryInterface(style, &IID_IHTMLStyle3, (void**)&style3);
4593     ok(hres == S_OK, "Could not get IHTMLStyle3 iface: %08x\n", hres);
4594     if(SUCCEEDED(hres)) {
4595         test_style3(style3);
4596         IHTMLStyle3_Release(style3);
4597     }
4598
4599     hres = IHTMLStyle_QueryInterface(style, &IID_IHTMLStyle4, (void**)&style4);
4600     ok(hres == S_OK, "Could not get IHTMLStyle4 iface: %08x\n", hres);
4601     if(SUCCEEDED(hres)) {
4602         test_style4(style4);
4603         IHTMLStyle4_Release(style4);
4604     }
4605 }
4606
4607 static void test_set_csstext(IHTMLStyle *style)
4608 {
4609     VARIANT v;
4610     HRESULT hres;
4611
4612     test_style_set_csstext(style, "background-color: black;");
4613
4614     hres = IHTMLStyle_get_backgroundColor(style, &v);
4615     ok(hres == S_OK, "get_backgroundColor: %08x\n", hres);
4616     ok(V_VT(&v) == VT_BSTR, "type failed: %d\n", V_VT(&v));
4617     ok(!strcmp_wa(V_BSTR(&v), "black"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
4618     VariantClear(&v);
4619 }
4620
4621 static void test_default_selection(IHTMLDocument2 *doc)
4622 {
4623     IHTMLSelectionObject *selection;
4624     IHTMLTxtRange *range;
4625     IDispatch *disp;
4626     BSTR str;
4627     HRESULT hres;
4628
4629     hres = IHTMLDocument2_get_selection(doc, &selection);
4630     ok(hres == S_OK, "get_selection failed: %08x\n", hres);
4631
4632     hres = IHTMLSelectionObject_get_type(selection, &str);
4633     ok(hres == S_OK, "get_type failed: %08x\n", hres);
4634     ok(!strcmp_wa(str, "None"), "type = %s\n", wine_dbgstr_w(str));
4635     SysFreeString(str);
4636
4637     hres = IHTMLSelectionObject_createRange(selection, &disp);
4638     IHTMLSelectionObject_Release(selection);
4639     ok(hres == S_OK, "createRange failed: %08x\n", hres);
4640
4641     hres = IDispatch_QueryInterface(disp, &IID_IHTMLTxtRange, (void**)&range);
4642     IDispatch_Release(disp);
4643     ok(hres == S_OK, "Could not get IHTMLTxtRange interface: %08x\n", hres);
4644
4645     test_range_text(range, NULL);
4646     IHTMLTxtRange_Release(range);
4647 }
4648
4649 static void test_doc_elem(IHTMLDocument2 *doc)
4650 {
4651     IHTMLDocument2 *doc_node, *owner_doc;
4652     IHTMLElement *elem;
4653     IHTMLDocument3 *doc3;
4654     HRESULT hres;
4655
4656     hres = IHTMLDocument2_QueryInterface(doc, &IID_IHTMLDocument3, (void**)&doc3);
4657     ok(hres == S_OK, "QueryInterface(IID_IHTMLDocument3) failed: %08x\n", hres);
4658
4659     hres = IHTMLDocument3_get_documentElement(doc3, &elem);
4660     IHTMLDocument3_Release(doc3);
4661     ok(hres == S_OK, "get_documentElement failed: %08x\n", hres);
4662
4663     test_node_name((IUnknown*)elem, "HTML");
4664     test_elem_tag((IUnknown*)elem, "HTML");
4665
4666     doc_node = get_doc_node(doc);
4667     owner_doc = get_owner_doc((IUnknown*)elem);
4668     ok(iface_cmp((IUnknown *)doc_node, (IUnknown *)owner_doc), "doc_node != owner_doc\n");
4669     IHTMLDocument2_Release(owner_doc);
4670
4671     owner_doc = get_owner_doc((IUnknown*)doc_node);
4672     ok(!owner_doc, "owner_doc = %p\n", owner_doc);
4673     IHTMLDocument2_Release(doc_node);
4674
4675     test_elem_client_rect((IUnknown*)elem);
4676
4677     IHTMLElement_Release(elem);
4678 }
4679
4680 static void test_default_body(IHTMLBodyElement *body)
4681 {
4682     LONG l;
4683     BSTR bstr;
4684     HRESULT hres;
4685     VARIANT v;
4686     WCHAR sBodyText[] = {'#','F','F','0','0','0','0',0};
4687     WCHAR sTextInvalid[] = {'I','n','v','a','l','i','d',0};
4688
4689     bstr = (void*)0xdeadbeef;
4690     hres = IHTMLBodyElement_get_background(body, &bstr);
4691     ok(hres == S_OK, "get_background failed: %08x\n", hres);
4692     ok(bstr == NULL, "bstr != NULL\n");
4693
4694     l = elem_get_scroll_height((IUnknown*)body);
4695     ok(l != -1, "scrollHeight == -1\n");
4696     l = elem_get_scroll_width((IUnknown*)body);
4697     ok(l != -1, "scrollWidth == -1\n");
4698     l = elem_get_scroll_top((IUnknown*)body);
4699     ok(!l, "scrollTop = %d\n", l);
4700     elem_get_scroll_left((IUnknown*)body);
4701
4702     /* get_text tests */
4703     hres = IHTMLBodyElement_get_text(body, &v);
4704     ok(hres == S_OK, "expect S_OK got 0x%08d\n", hres);
4705     ok(V_VT(&v) == VT_BSTR, "Expected VT_BSTR got %d\n", V_VT(&v));
4706     ok(bstr == NULL, "bstr != NULL\n");
4707
4708
4709     /* get_text - Invalid Text */
4710     V_VT(&v) = VT_BSTR;
4711     V_BSTR(&v) = SysAllocString(sTextInvalid);
4712     hres = IHTMLBodyElement_put_text(body, v);
4713     ok(hres == S_OK, "expect S_OK got 0x%08d\n", hres);
4714     VariantClear(&v);
4715
4716     V_VT(&v) = VT_NULL;
4717     hres = IHTMLBodyElement_get_text(body, &v);
4718     ok(hres == S_OK, "expect S_OK got 0x%08d\n", hres);
4719     ok(V_VT(&v) == VT_BSTR, "Expected VT_BSTR got %d\n", V_VT(&v));
4720     ok(!strcmp_wa(V_BSTR(&v), "#00a0d0"), "v != '#00a0d0'\n");
4721     VariantClear(&v);
4722
4723     /* get_text - Valid Text */
4724     V_VT(&v) = VT_BSTR;
4725     V_BSTR(&v) = SysAllocString(sBodyText);
4726     hres = IHTMLBodyElement_put_text(body, v);
4727     ok(hres == S_OK, "expect S_OK got 0x%08d\n", hres);
4728     VariantClear(&v);
4729
4730     V_VT(&v) = VT_NULL;
4731     hres = IHTMLBodyElement_get_text(body, &v);
4732     ok(hres == S_OK, "expect S_OK got 0x%08d\n", hres);
4733     ok(V_VT(&v) == VT_BSTR, "Expected VT_BSTR got %d\n", V_VT(&v));
4734     ok(!strcmp_wa(V_BSTR(&v), "#ff0000"), "v != '#ff0000'\n");
4735     VariantClear(&v);
4736 }
4737
4738 static void test_body_funs(IHTMLBodyElement *body)
4739 {
4740     static WCHAR sRed[] = {'r','e','d',0};
4741     VARIANT vbg;
4742     VARIANT vDefaultbg;
4743     HRESULT hres;
4744
4745     hres = IHTMLBodyElement_get_bgColor(body, &vDefaultbg);
4746     ok(hres == S_OK, "get_bgColor failed: %08x\n", hres);
4747     ok(V_VT(&vDefaultbg) == VT_BSTR, "bstr != NULL\n");
4748
4749     V_VT(&vbg) = VT_BSTR;
4750     V_BSTR(&vbg) = SysAllocString(sRed);
4751     hres = IHTMLBodyElement_put_bgColor(body, vbg);
4752     ok(hres == S_OK, "put_bgColor failed: %08x\n", hres);
4753     VariantClear(&vbg);
4754
4755     hres = IHTMLBodyElement_get_bgColor(body, &vbg);
4756     ok(hres == S_OK, "get_bgColor failed: %08x\n", hres);
4757     ok(V_VT(&vDefaultbg) == VT_BSTR, "V_VT(&vDefaultbg) != VT_BSTR\n");
4758     ok(!strcmp_wa(V_BSTR(&vbg), "#ff0000"), "Unexpected bgcolor %s\n", wine_dbgstr_w(V_BSTR(&vbg)));
4759     VariantClear(&vbg);
4760
4761     /* Restore Originial */
4762     hres = IHTMLBodyElement_put_bgColor(body, vDefaultbg);
4763     ok(hres == S_OK, "put_bgColor failed: %08x\n", hres);
4764     VariantClear(&vDefaultbg);
4765 }
4766
4767 static void test_window(IHTMLDocument2 *doc)
4768 {
4769     IHTMLWindow2 *window, *window2, *self;
4770     IHTMLDocument2 *doc2 = NULL;
4771     IDispatch *disp;
4772     IUnknown *unk;
4773     BSTR str;
4774     HRESULT hres;
4775
4776     hres = IHTMLDocument2_get_parentWindow(doc, &window);
4777     ok(hres == S_OK, "get_parentWindow failed: %08x\n", hres);
4778     test_ifaces((IUnknown*)window, window_iids);
4779     test_disp((IUnknown*)window, &DIID_DispHTMLWindow2, "[object]");
4780
4781     hres = IHTMLWindow2_get_document(window, &doc2);
4782     ok(hres == S_OK, "get_document failed: %08x\n", hres);
4783     ok(doc2 != NULL, "doc2 == NULL\n");
4784
4785     test_ifaces((IUnknown*)doc2, doc_node_iids);
4786     test_disp((IUnknown*)doc2, &DIID_DispHTMLDocument, "[object]");
4787
4788     test_ifaces((IUnknown*)doc, doc_obj_iids);
4789     test_disp((IUnknown*)doc2, &DIID_DispHTMLDocument, "[object]");
4790
4791     unk = (void*)0xdeadbeef;
4792     hres = IHTMLDocument2_QueryInterface(doc2, &IID_ICustomDoc, (void**)&unk);
4793     ok(hres == E_NOINTERFACE, "QueryInterface(IID_ICustomDoc) returned: %08x\n", hres);
4794     ok(!unk, "unk = %p\n", unk);
4795
4796     IHTMLDocument_Release(doc2);
4797
4798     hres = IHTMLWindow2_get_window(window, &window2);
4799     ok(hres == S_OK, "get_window failed: %08x\n", hres);
4800     ok(window2 != NULL, "window2 == NULL\n");
4801
4802     hres = IHTMLWindow2_get_self(window, &self);
4803     ok(hres == S_OK, "get_self failed: %08x\n", hres);
4804     ok(window2 != NULL, "self == NULL\n");
4805
4806     ok(self == window2, "self != window2\n");
4807
4808     IHTMLWindow2_Release(window2);
4809     IHTMLWindow2_Release(self);
4810
4811     disp = NULL;
4812     hres = IHTMLDocument2_get_Script(doc, &disp);
4813     ok(hres == S_OK, "get_Script failed: %08x\n", hres);
4814     ok(disp == (void*)window, "disp != window\n");
4815     IDispatch_Release(disp);
4816
4817     hres = IHTMLWindow2_toString(window, NULL);
4818     ok(hres == E_INVALIDARG, "toString failed: %08x\n", hres);
4819
4820     str = NULL;
4821     hres = IHTMLWindow2_toString(window, &str);
4822     ok(hres == S_OK, "toString failed: %08x\n", hres);
4823     ok(!strcmp_wa(str, "[object]"), "toString returned %s\n", wine_dbgstr_w(str));
4824     SysFreeString(str);
4825
4826     test_window_name(window, NULL);
4827     set_window_name(window, "test");
4828     test_window_length(window, 0);
4829     test_screen(window);
4830
4831     IHTMLWindow2_Release(window);
4832 }
4833
4834 static void test_defaults(IHTMLDocument2 *doc)
4835 {
4836     IHTMLStyleSheetsCollection *stylesheetcol;
4837     IHTMLCurrentStyle *cstyle;
4838     IHTMLBodyElement *body;
4839     IHTMLElement2 *elem2;
4840     IHTMLElement *elem;
4841     IHTMLStyle *style;
4842     LONG l;
4843     HRESULT hres;
4844     IHTMLElementCollection *collection;
4845
4846     hres = IHTMLDocument2_get_body(doc, &elem);
4847     ok(hres == S_OK, "get_body failed: %08x\n", hres);
4848
4849     hres = IHTMLDocument2_get_images(doc, NULL);
4850     ok(hres == E_INVALIDARG, "hres %08x\n", hres);
4851
4852     hres = IHTMLDocument2_get_images(doc, &collection);
4853     ok(hres == S_OK, "get_images failed: %08x\n", hres);
4854     if(hres == S_OK)
4855     {
4856         test_elem_collection((IUnknown*)collection, NULL, 0);
4857         IHTMLElementCollection_Release(collection);
4858     }
4859
4860     hres = IHTMLDocument2_get_applets(doc, NULL);
4861     ok(hres == E_INVALIDARG, "hres %08x\n", hres);
4862
4863     hres = IHTMLDocument2_get_applets(doc, &collection);
4864     ok(hres == S_OK, "get_applets failed: %08x\n", hres);
4865     if(hres == S_OK)
4866     {
4867         test_elem_collection((IUnknown*)collection, NULL, 0);
4868         IHTMLElementCollection_Release(collection);
4869     }
4870
4871     hres = IHTMLDocument2_get_links(doc, NULL);
4872     ok(hres == E_INVALIDARG, "hres %08x\n", hres);
4873
4874     hres = IHTMLDocument2_get_links(doc, &collection);
4875     ok(hres == S_OK, "get_links failed: %08x\n", hres);
4876     if(hres == S_OK)
4877     {
4878         test_elem_collection((IUnknown*)collection, NULL, 0);
4879         IHTMLElementCollection_Release(collection);
4880     }
4881
4882     hres = IHTMLDocument2_get_forms(doc, NULL);
4883     ok(hres == E_INVALIDARG, "hres %08x\n", hres);
4884
4885     hres = IHTMLDocument2_get_forms(doc, &collection);
4886     ok(hres == S_OK, "get_forms failed: %08x\n", hres);
4887     if(hres == S_OK)
4888     {
4889         test_elem_collection((IUnknown*)collection, NULL, 0);
4890         IHTMLElementCollection_Release(collection);
4891     }
4892
4893     hres = IHTMLDocument2_get_anchors(doc, NULL);
4894     ok(hres == E_INVALIDARG, "hres %08x\n", hres);
4895
4896     hres = IHTMLDocument2_get_anchors(doc, &collection);
4897     ok(hres == S_OK, "get_anchors failed: %08x\n", hres);
4898     if(hres == S_OK)
4899     {
4900         test_elem_collection((IUnknown*)collection, NULL, 0);
4901         IHTMLElementCollection_Release(collection);
4902     }
4903
4904     hres = IHTMLElement_QueryInterface(elem, &IID_IHTMLBodyElement, (void**)&body);
4905     ok(hres == S_OK, "Could not get IHTMBodyElement: %08x\n", hres);
4906     test_default_body(body);
4907     test_body_funs(body);
4908     IHTMLBodyElement_Release(body);
4909
4910     hres = IHTMLElement_get_style(elem, &style);
4911     ok(hres == S_OK, "get_style failed: %08x\n", hres);
4912
4913     test_default_style(style);
4914     test_window(doc);
4915     test_compatmode(doc);
4916     test_location(doc);
4917     test_navigator(doc);
4918
4919     elem2 = get_elem2_iface((IUnknown*)elem);
4920     hres = IHTMLElement2_get_currentStyle(elem2, &cstyle);
4921     ok(hres == S_OK, "get_currentStyle failed: %08x\n", hres);
4922     if(SUCCEEDED(hres)) {
4923         test_current_style(cstyle);
4924         IHTMLCurrentStyle_Release(cstyle);
4925     }
4926     IHTMLElement2_Release(elem2);
4927
4928     IHTMLElement_Release(elem);
4929
4930     test_set_csstext(style);
4931     IHTMLStyle_Release(style);
4932
4933     hres = IHTMLDocument2_get_styleSheets(doc, &stylesheetcol);
4934     ok(hres == S_OK, "get_styleSheets failed: %08x\n", hres);
4935
4936     l = 0xdeadbeef;
4937     hres = IHTMLStyleSheetsCollection_get_length(stylesheetcol, &l);
4938     ok(hres == S_OK, "get_length failed: %08x\n", hres);
4939     ok(l == 0, "length = %d\n", l);
4940
4941     IHTMLStyleSheetsCollection_Release(stylesheetcol);
4942
4943     test_default_selection(doc);
4944     test_doc_title(doc, "");
4945 }
4946
4947 static void test_tr_elem(IHTMLElement *elem)
4948 {
4949     IHTMLElementCollection *col;
4950     IHTMLTableRow *row;
4951     HRESULT hres;
4952
4953     static const elem_type_t cell_types[] = {ET_TD,ET_TD};
4954
4955     hres = IHTMLElement_QueryInterface(elem, &IID_IHTMLTableRow, (void**)&row);
4956     ok(hres == S_OK, "Could not get IHTMLTableRow iface: %08x\n", hres);
4957     if(FAILED(hres))
4958         return;
4959
4960     col = NULL;
4961     hres = IHTMLTableRow_get_cells(row, &col);
4962     ok(hres == S_OK, "get_cells failed: %08x\n", hres);
4963     ok(col != NULL, "get_cells returned NULL\n");
4964
4965     test_elem_collection((IUnknown*)col, cell_types, sizeof(cell_types)/sizeof(*cell_types));
4966     IHTMLElementCollection_Release(col);
4967
4968     IHTMLTable_Release(row);
4969 }
4970
4971 static void test_table_elem(IHTMLElement *elem)
4972 {
4973     IHTMLElementCollection *col;
4974     IHTMLTable *table;
4975     IHTMLDOMNode *node;
4976     HRESULT hres;
4977
4978     static const elem_type_t row_types[] = {ET_TR,ET_TR};
4979     static const elem_type_t all_types[] = {ET_TBODY,ET_TR,ET_TR,ET_TD,ET_TD};
4980
4981     hres = IHTMLElement_QueryInterface(elem, &IID_IHTMLTable, (void**)&table);
4982     ok(hres == S_OK, "Could not get IHTMLTable iface: %08x\n", hres);
4983     if(FAILED(hres))
4984         return;
4985
4986     col = NULL;
4987     hres = IHTMLTable_get_rows(table, &col);
4988     ok(hres == S_OK, "get_rows failed: %08x\n", hres);
4989     ok(col != NULL, "get_ros returned NULL\n");
4990
4991     test_elem_collection((IUnknown*)col, row_types, sizeof(row_types)/sizeof(*row_types));
4992     IHTMLElementCollection_Release(col);
4993
4994     test_elem_all((IUnknown*)table, all_types, sizeof(all_types)/sizeof(*all_types));
4995
4996     node = clone_node((IUnknown*)table, VARIANT_TRUE);
4997     test_elem_tag((IUnknown*)node, "TABLE");
4998     test_elem_all((IUnknown*)node, all_types, sizeof(all_types)/sizeof(*all_types));
4999     IHTMLDOMNode_Release(node);
5000
5001     node = clone_node((IUnknown*)table, VARIANT_FALSE);
5002     test_elem_tag((IUnknown*)node, "TABLE");
5003     test_elem_all((IUnknown*)node, NULL, 0);
5004     IHTMLDOMNode_Release(node);
5005
5006     IHTMLTable_Release(table);
5007 }
5008
5009 static void doc_write(IHTMLDocument2 *doc, BOOL ln, const char *text)
5010 {
5011     SAFEARRAYBOUND dim;
5012     SAFEARRAY *sa;
5013     VARIANT *var;
5014     BSTR str;
5015     HRESULT hres;
5016
5017     dim.lLbound = 0;
5018     dim.cElements = 1;
5019     sa = SafeArrayCreate(VT_VARIANT, 1, &dim);
5020     SafeArrayAccessData(sa, (void**)&var);
5021     V_VT(var) = VT_BSTR;
5022     V_BSTR(var) = str = a2bstr(text);
5023     SafeArrayUnaccessData(sa);
5024
5025     if(ln)
5026         hres = IHTMLDocument2_writeln(doc, sa);
5027     else
5028         hres = IHTMLDocument2_write(doc, sa);
5029     ok(hres == S_OK, "write failed: %08x\n", hres);
5030
5031     SysFreeString(str);
5032     SafeArrayDestroy(sa);
5033 }
5034
5035 static void test_frame_doc(IUnknown *frame_elem)
5036 {
5037     IHTMLDocument2 *window_doc, *elem_doc;
5038     IHTMLWindow2 *content_window;
5039
5040     content_window = get_frame_content_window(frame_elem);
5041     window_doc = get_window_doc(content_window);
5042     IHTMLWindow2_Release(content_window);
5043
5044     elem_doc = get_elem_doc(frame_elem);
5045     ok(iface_cmp((IUnknown*)window_doc, (IUnknown*)elem_doc), "content_doc != elem_doc\n");
5046
5047     IHTMLDocument2_Release(elem_doc);
5048     IHTMLDocument2_Release(window_doc);
5049 }
5050
5051 static void test_iframe_elem(IHTMLElement *elem)
5052 {
5053     IHTMLDocument2 *content_doc, *owner_doc;
5054     IHTMLElementCollection *col;
5055     IHTMLWindow2 *content_window;
5056     IDispatch *disp;
5057     VARIANT errv;
5058     BSTR str;
5059     HRESULT hres;
5060
5061     static const elem_type_t all_types[] = {
5062         ET_HTML,
5063         ET_HEAD,
5064         ET_TITLE,
5065         ET_BODY,
5066         ET_BR
5067     };
5068
5069     test_frame_doc((IUnknown*)elem);
5070
5071     content_window = get_frame_content_window((IUnknown*)elem);
5072     test_window_length(content_window, 0);
5073
5074     content_doc = get_window_doc(content_window);
5075     IHTMLWindow2_Release(content_window);
5076
5077     str = a2bstr("text/html");
5078     V_VT(&errv) = VT_ERROR;
5079     disp = NULL;
5080     hres = IHTMLDocument2_open(content_doc, str, errv, errv, errv, &disp);
5081     SysFreeString(str);
5082     ok(hres == S_OK, "open failed: %08x\n", hres);
5083     ok(disp != NULL, "disp == NULL\n");
5084     ok(iface_cmp((IUnknown*)disp, (IUnknown*)content_window), "disp != content_window\n");
5085     IDispatch_Release(disp);
5086
5087     doc_write(content_doc, FALSE, "<html><head><title>test</title></head><body><br /></body>");
5088     doc_write(content_doc, TRUE, "</html>");
5089
5090     hres = IHTMLDocument2_get_all(content_doc, &col);
5091     ok(hres == S_OK, "get_all failed: %08x\n", hres);
5092     test_elem_collection((IUnknown*)col, all_types, sizeof(all_types)/sizeof(all_types[0]));
5093     IHTMLElementCollection_Release(col);
5094
5095     hres = IHTMLDocument2_close(content_doc);
5096     ok(hres == S_OK, "close failed: %08x\n", hres);
5097
5098     owner_doc = get_owner_doc((IUnknown*)content_doc);
5099     ok(!owner_doc, "owner_doc = %p\n", owner_doc);
5100
5101     IHTMLDocument2_Release(content_doc);
5102 }
5103
5104 static void test_stylesheet(IDispatch *disp)
5105 {
5106     IHTMLStyleSheetRulesCollection *col = NULL;
5107     IHTMLStyleSheet *stylesheet;
5108     HRESULT hres;
5109
5110     hres = IDispatch_QueryInterface(disp, &IID_IHTMLStyleSheet, (void**)&stylesheet);
5111     ok(hres == S_OK, "Could not get IHTMLStyleSheet: %08x\n", hres);
5112
5113     hres = IHTMLStyleSheet_get_rules(stylesheet, &col);
5114     ok(hres == S_OK, "get_rules failed: %08x\n", hres);
5115     ok(col != NULL, "col == NULL\n");
5116
5117     IHTMLStyleSheetRulesCollection_Release(col);
5118     IHTMLStyleSheet_Release(stylesheet);
5119 }
5120
5121 static void test_stylesheets(IHTMLDocument2 *doc)
5122 {
5123     IHTMLStyleSheetsCollection *col = NULL;
5124     VARIANT idx, res;
5125     LONG len = 0;
5126     HRESULT hres;
5127
5128     hres = IHTMLDocument2_get_styleSheets(doc, &col);
5129     ok(hres == S_OK, "get_styleSheets failed: %08x\n", hres);
5130     ok(col != NULL, "col == NULL\n");
5131
5132     hres = IHTMLStyleSheetsCollection_get_length(col, &len);
5133     ok(hres == S_OK, "get_length failed: %08x\n", hres);
5134     ok(len == 1, "len=%d\n", len);
5135
5136     VariantInit(&res);
5137     V_VT(&idx) = VT_I4;
5138     V_I4(&idx) = 0;
5139
5140     hres = IHTMLStyleSheetsCollection_item(col, &idx, &res);
5141     ok(hres == S_OK, "item failed: %08x\n", hres);
5142     ok(V_VT(&res) == VT_DISPATCH, "V_VT(res) = %d\n", V_VT(&res));
5143     ok(V_DISPATCH(&res) != NULL, "V_DISPATCH(&res) == NULL\n");
5144     test_stylesheet(V_DISPATCH(&res));
5145     VariantClear(&res);
5146
5147     V_VT(&res) = VT_I4;
5148     V_VT(&idx) = VT_I4;
5149     V_I4(&idx) = 1;
5150
5151     hres = IHTMLStyleSheetsCollection_item(col, &idx, &res);
5152     ok(hres == E_INVALIDARG, "item failed: %08x, expected E_INVALIDARG\n", hres);
5153     ok(V_VT(&res) == VT_EMPTY, "V_VT(res) = %d\n", V_VT(&res));
5154     ok(V_DISPATCH(&res) != NULL, "V_DISPATCH(&res) == NULL\n");
5155     VariantClear(&res);
5156
5157     IHTMLStyleSheetsCollection_Release(col);
5158 }
5159
5160 static void test_child_col_disp(IHTMLDOMChildrenCollection *col)
5161 {
5162     IDispatchEx *dispex;
5163     IHTMLDOMNode *node;
5164     DISPPARAMS dp = {NULL, NULL, 0, 0};
5165     VARIANT var;
5166     EXCEPINFO ei;
5167     LONG type;
5168     DISPID id;
5169     BSTR bstr;
5170     HRESULT hres;
5171
5172     static const WCHAR w0[] = {'0',0};
5173     static const WCHAR w100[] = {'1','0','0',0};
5174
5175     hres = IHTMLDOMChildrenCollection_QueryInterface(col, &IID_IDispatchEx, (void**)&dispex);
5176     ok(hres == S_OK, "Could not get IDispatchEx: %08x\n", hres);
5177
5178     bstr = SysAllocString(w0);
5179     hres = IDispatchEx_GetDispID(dispex, bstr, fdexNameCaseSensitive, &id);
5180     ok(hres == S_OK, "GetDispID failed: %08x\n", hres);
5181     SysFreeString(bstr);
5182
5183     VariantInit(&var);
5184     hres = IDispatchEx_InvokeEx(dispex, id, LOCALE_NEUTRAL, INVOKE_PROPERTYGET, &dp, &var, &ei, NULL);
5185     ok(hres == S_OK, "InvokeEx failed: %08x\n", hres);
5186     ok(V_VT(&var) == VT_DISPATCH, "V_VT(var)=%d\n", V_VT(&var));
5187     ok(V_DISPATCH(&var) != NULL, "V_DISPATCH(var) == NULL\n");
5188     node = get_node_iface((IUnknown*)V_DISPATCH(&var));
5189     type = get_node_type((IUnknown*)node);
5190     ok(type == 3, "type=%d\n", type);
5191     IHTMLDOMNode_Release(node);
5192     VariantClear(&var);
5193
5194     bstr = SysAllocString(w100);
5195     hres = IDispatchEx_GetDispID(dispex, bstr, fdexNameCaseSensitive, &id);
5196     ok(hres == DISP_E_UNKNOWNNAME, "GetDispID failed: %08x, expected DISP_E_UNKNOWNNAME\n", hres);
5197     SysFreeString(bstr);
5198
5199     IDispatchEx_Release(dispex);
5200 }
5201
5202
5203
5204 static void test_elems(IHTMLDocument2 *doc)
5205 {
5206     IHTMLElementCollection *col;
5207     IHTMLDOMChildrenCollection *child_col;
5208     IHTMLElement *elem, *elem2, *elem3;
5209     IHTMLDOMNode *node, *node2;
5210     IHTMLWindow2 *window;
5211     IDispatch *disp;
5212     LONG type;
5213     HRESULT hres;
5214     IHTMLElementCollection *collection;
5215     IHTMLDocument3 *doc3;
5216     BSTR str;
5217
5218     static const elem_type_t all_types[] = {
5219         ET_HTML,
5220         ET_HEAD,
5221         ET_TITLE,
5222         ET_STYLE,
5223         ET_BODY,
5224         ET_COMMENT,
5225         ET_A,
5226         ET_INPUT,
5227         ET_SELECT,
5228         ET_OPTION,
5229         ET_OPTION,
5230         ET_TEXTAREA,
5231         ET_TABLE,
5232         ET_TBODY,
5233         ET_TR,
5234         ET_TR,
5235         ET_TD,
5236         ET_TD,
5237         ET_SCRIPT,
5238         ET_TEST,
5239         ET_IMG,
5240         ET_IFRAME,
5241         ET_FORM
5242     };
5243
5244     static const elem_type_t item_types[] = {
5245         ET_A,
5246         ET_OPTION,
5247         ET_TEXTAREA
5248     };
5249
5250     hres = IHTMLDocument2_get_all(doc, &col);
5251     ok(hres == S_OK, "get_all failed: %08x\n", hres);
5252     test_elem_collection((IUnknown*)col, all_types, sizeof(all_types)/sizeof(all_types[0]));
5253     test_elem_col_item(col, "x", item_types, sizeof(item_types)/sizeof(item_types[0]));
5254     IHTMLElementCollection_Release(col);
5255
5256     hres = IHTMLDocument2_get_images(doc, &collection);
5257     ok(hres == S_OK, "get_images failed: %08x\n", hres);
5258     if(hres == S_OK)
5259     {
5260         static const elem_type_t images_types[] = {ET_IMG};
5261         test_elem_collection((IUnknown*)collection, images_types, 1);
5262
5263         IHTMLElementCollection_Release(collection);
5264     }
5265
5266     hres = IHTMLDocument2_get_links(doc, &collection);
5267     ok(hres == S_OK, "get_links failed: %08x\n", hres);
5268     if(hres == S_OK)
5269     {
5270         static const elem_type_t images_types[] = {ET_A};
5271         test_elem_collection((IUnknown*)collection, images_types, 1);
5272
5273         IHTMLElementCollection_Release(collection);
5274     }
5275
5276     hres = IHTMLDocument2_get_anchors(doc, &collection);
5277     ok(hres == S_OK, "get_anchors failed: %08x\n", hres);
5278     if(hres == S_OK)
5279     {
5280         static const elem_type_t anchor_types[] = {ET_A};
5281         test_elem_collection((IUnknown*)collection, anchor_types, 1);
5282
5283         IHTMLElementCollection_Release(collection);
5284     }
5285
5286     elem = get_doc_elem(doc);
5287     test_elem_all((IUnknown*)elem, all_types+1, sizeof(all_types)/sizeof(all_types[0])-1);
5288     IHTMLElement_Release(elem);
5289
5290     get_elem_by_id(doc, "xxx", FALSE);
5291     elem = get_doc_elem_by_id(doc, "xxx");
5292     ok(!elem, "elem != NULL\n");
5293
5294     elem = get_doc_elem_by_id(doc, "s");
5295     ok(elem != NULL, "elem == NULL\n");
5296     if(elem) {
5297         test_elem_type((IUnknown*)elem, ET_SELECT);
5298         test_elem_attr(elem, "xxx", NULL);
5299         test_elem_attr(elem, "id", "s");
5300         test_elem_class((IUnknown*)elem, NULL);
5301         test_elem_set_class((IUnknown*)elem, "cl");
5302         test_elem_set_class((IUnknown*)elem, NULL);
5303         test_elem_tabindex((IUnknown*)elem, 0);
5304         test_elem_set_tabindex((IUnknown*)elem, 1);
5305
5306         node = test_node_get_parent((IUnknown*)elem);
5307         ok(node != NULL, "node == NULL\n");
5308         test_node_name((IUnknown*)node, "BODY");
5309         node2 = test_node_get_parent((IUnknown*)node);
5310         IHTMLDOMNode_Release(node);
5311         ok(node2 != NULL, "node == NULL\n");
5312         test_node_name((IUnknown*)node2, "HTML");
5313         node = test_node_get_parent((IUnknown*)node2);
5314         IHTMLDOMNode_Release(node2);
5315         ok(node != NULL, "node == NULL\n");
5316         if (node)
5317         {
5318             test_node_name((IUnknown*)node, "#document");
5319             type = get_node_type((IUnknown*)node);
5320             ok(type == 9, "type=%d, expected 9\n", type);
5321             node2 = test_node_get_parent((IUnknown*)node);
5322             IHTMLDOMNode_Release(node);
5323             ok(node2 == NULL, "node != NULL\n");
5324         }
5325
5326         elem2 = test_elem_get_parent((IUnknown*)elem);
5327         ok(elem2 != NULL, "elem2 == NULL\n");
5328         test_node_name((IUnknown*)elem2, "BODY");
5329         elem3 = test_elem_get_parent((IUnknown*)elem2);
5330         IHTMLElement_Release(elem2);
5331         ok(elem3 != NULL, "elem3 == NULL\n");
5332         test_node_name((IUnknown*)elem3, "HTML");
5333         elem2 = test_elem_get_parent((IUnknown*)elem3);
5334         IHTMLElement_Release(elem3);
5335         ok(elem2 == NULL, "elem2 != NULL\n");
5336
5337         test_elem_getelembytag((IUnknown*)elem, ET_OPTION, 2);
5338         test_elem_getelembytag((IUnknown*)elem, ET_SELECT, 0);
5339         test_elem_getelembytag((IUnknown*)elem, ET_HTML, 0);
5340
5341         test_elem_innertext(elem, "opt1opt2");
5342
5343         IHTMLElement_Release(elem);
5344     }
5345
5346     elem = get_elem_by_id(doc, "s", TRUE);
5347     if(elem) {
5348         IHTMLSelectElement *select;
5349         IHTMLDocument2 *doc_node, *elem_doc;
5350
5351         hres = IHTMLElement_QueryInterface(elem, &IID_IHTMLSelectElement, (void**)&select);
5352         ok(hres == S_OK, "Could not get IHTMLSelectElement interface: %08x\n", hres);
5353
5354         test_select_elem(select);
5355
5356         test_elem_title((IUnknown*)select, NULL);
5357         test_elem_set_title((IUnknown*)select, "Title");
5358         test_elem_title((IUnknown*)select, "Title");
5359         test_elem_offset((IUnknown*)select);
5360
5361         node = get_first_child((IUnknown*)select);
5362         ok(node != NULL, "node == NULL\n");
5363         if(node) {
5364             test_elem_type((IUnknown*)node, ET_OPTION);
5365             IHTMLDOMNode_Release(node);
5366         }
5367
5368         type = get_node_type((IUnknown*)select);
5369         ok(type == 1, "type=%d\n", type);
5370
5371         IHTMLSelectElement_Release(select);
5372
5373         elem_doc = get_elem_doc((IUnknown*)elem);
5374
5375         doc_node = get_doc_node(doc);
5376         ok(iface_cmp((IUnknown*)elem_doc, (IUnknown*)doc_node), "disp != doc\n");
5377         IHTMLDocument2_Release(doc_node);
5378         IHTMLDocument2_Release(elem_doc);
5379
5380         IHTMLElement_Release(elem);
5381     }
5382
5383     elem = get_elem_by_id(doc, "sc", TRUE);
5384     if(elem) {
5385         IHTMLScriptElement *script;
5386         BSTR type;
5387
5388         hres = IHTMLElement_QueryInterface(elem, &IID_IHTMLScriptElement, (void**)&script);
5389         ok(hres == S_OK, "Could not get IHTMLScriptElement interface: %08x\n", hres);
5390
5391         if(hres == S_OK)
5392         {
5393             VARIANT_BOOL vb;
5394
5395             hres = IHTMLScriptElement_get_type(script, &type);
5396             ok(hres == S_OK, "get_type failed: %08x\n", hres);
5397             ok(!strcmp_wa(type, "text/javascript"), "Unexpected type %s\n", wine_dbgstr_w(type));
5398             SysFreeString(type);
5399
5400             /* test defer */
5401             hres = IHTMLScriptElement_put_defer(script, VARIANT_TRUE);
5402             ok(hres == S_OK, "put_defer failed: %08x\n", hres);
5403
5404             hres = IHTMLScriptElement_get_defer(script, &vb);
5405             ok(hres == S_OK, "get_defer failed: %08x\n", hres);
5406             ok(vb == VARIANT_TRUE, "get_defer result is %08x\n", hres);
5407
5408             hres = IHTMLScriptElement_put_defer(script, VARIANT_FALSE);
5409             ok(hres == S_OK, "put_defer failed: %08x\n", hres);
5410         }
5411
5412         IHTMLScriptElement_Release(script);
5413     }
5414
5415     elem = get_elem_by_id(doc, "in", TRUE);
5416     if(elem) {
5417         IHTMLInputElement *input;
5418
5419         hres = IHTMLElement_QueryInterface(elem, &IID_IHTMLInputElement, (void**)&input);
5420         ok(hres == S_OK, "Could not get IHTMLInputElement: %08x\n", hres);
5421
5422         test_elem_id((IUnknown*)elem, "in");
5423         test_elem_put_id((IUnknown*)elem, "newin");
5424         test_input_get_disabled(input, VARIANT_FALSE);
5425         test_input_set_disabled(input, VARIANT_TRUE);
5426         test_input_set_disabled(input, VARIANT_FALSE);
5427         test_elem3_set_disabled((IUnknown*)input, VARIANT_TRUE);
5428         test_input_get_disabled(input, VARIANT_TRUE);
5429         test_elem3_set_disabled((IUnknown*)input, VARIANT_FALSE);
5430         test_input_get_disabled(input, VARIANT_FALSE);
5431         test_elem_client_size((IUnknown*)elem);
5432
5433         test_node_get_value_str((IUnknown*)elem, NULL);
5434         test_node_put_value_str((IUnknown*)elem, "test");
5435         test_node_get_value_str((IUnknown*)elem, NULL);
5436         test_input_value((IUnknown*)elem, NULL);
5437         test_input_put_value((IUnknown*)elem, "test");
5438         test_input_value((IUnknown*)elem, NULL);
5439         test_elem_class((IUnknown*)elem, "testclass");
5440         test_elem_tabindex((IUnknown*)elem, 2);
5441         test_elem_set_tabindex((IUnknown*)elem, 3);
5442         test_elem_title((IUnknown*)elem, "test title");
5443
5444         test_input_get_defaultchecked(input, VARIANT_FALSE);
5445         test_input_set_defaultchecked(input, VARIANT_TRUE);
5446         test_input_set_defaultchecked(input, VARIANT_FALSE);
5447
5448         test_input_get_checked(input, VARIANT_FALSE);
5449         test_input_set_checked(input, VARIANT_TRUE);
5450         test_input_set_checked(input, VARIANT_FALSE);
5451
5452         test_input_src(input, NULL);
5453         test_input_set_src(input, "about:blank");
5454
5455         IHTMLInputElement_Release(input);
5456         IHTMLElement_Release(elem);
5457     }
5458
5459     elem = get_elem_by_id(doc, "imgid", TRUE);
5460     if(elem) {
5461         test_img_src((IUnknown*)elem, "");
5462         test_img_set_src((IUnknown*)elem, "about:blank");
5463         test_img_alt((IUnknown*)elem, NULL);
5464         test_img_set_alt((IUnknown*)elem, "alt test");
5465         IHTMLElement_Release(elem);
5466     }
5467
5468     elem = get_doc_elem_by_id(doc, "tbl");
5469     ok(elem != NULL, "elem == NULL\n");
5470     if(elem) {
5471         test_table_elem(elem);
5472         IHTMLElement_Release(elem);
5473     }
5474
5475     elem = get_doc_elem_by_id(doc, "row2");
5476     ok(elem != NULL, "elem == NULL\n");
5477     if(elem) {
5478         test_tr_elem(elem);
5479         IHTMLElement_Release(elem);
5480     }
5481
5482     elem = get_doc_elem_by_id(doc, "ifr");
5483     ok(elem != NULL, "elem == NULL\n");
5484     if(elem) {
5485         test_iframe_elem(elem);
5486         IHTMLElement_Release(elem);
5487     }
5488
5489     elem = get_elem_by_id(doc, "a", TRUE);
5490     if(elem) {
5491         test_anchor_href((IUnknown*)elem, "http://test/");
5492         IHTMLElement_Release(elem);
5493     }
5494
5495     hres = IHTMLDocument2_get_body(doc, &elem);
5496     ok(hres == S_OK, "get_body failed: %08x\n", hres);
5497
5498     node = get_first_child((IUnknown*)elem);
5499     ok(node != NULL, "node == NULL\n");
5500     if(node) {
5501         test_ifaces((IUnknown*)node, text_iids);
5502         test_disp((IUnknown*)node, &DIID_DispHTMLDOMTextNode, "[object]");
5503
5504         node2 = get_first_child((IUnknown*)node);
5505         ok(!node2, "node2 != NULL\n");
5506
5507         type = get_node_type((IUnknown*)node);
5508         ok(type == 3, "type=%d\n", type);
5509
5510         test_node_get_value_str((IUnknown*)node, "text test");
5511         test_node_put_value_str((IUnknown*)elem, "test text");
5512         test_node_get_value_str((IUnknown*)node, "text test");
5513
5514         IHTMLDOMNode_Release(node);
5515     }
5516
5517     child_col = get_child_nodes((IUnknown*)elem);
5518     ok(child_col != NULL, "child_coll == NULL\n");
5519     if(child_col) {
5520         LONG length = 0;
5521
5522         test_disp((IUnknown*)child_col, &DIID_DispDOMChildrenCollection, "[object]");
5523
5524         hres = IHTMLDOMChildrenCollection_get_length(child_col, &length);
5525         ok(hres == S_OK, "get_length failed: %08x\n", hres);
5526         ok(length, "length=0\n");
5527
5528         node2 = NULL;
5529         node = get_child_item(child_col, 0);
5530         ok(node != NULL, "node == NULL\n");
5531         if(node) {
5532             type = get_node_type((IUnknown*)node);
5533             ok(type == 3, "type=%d\n", type);
5534             node2 = node_get_next((IUnknown*)node);
5535             IHTMLDOMNode_Release(node);
5536         }
5537
5538         node = get_child_item(child_col, 1);
5539         ok(node != NULL, "node == NULL\n");
5540         if(node) {
5541             type = get_node_type((IUnknown*)node);
5542             ok(type == 8, "type=%d\n", type);
5543
5544             test_elem_id((IUnknown*)node, NULL);
5545             ok(iface_cmp((IUnknown*)node2, (IUnknown*)node), "node2 != node\n");
5546             IHTMLDOMNode_Release(node2);
5547             IHTMLDOMNode_Release(node);
5548         }
5549
5550         hres = IHTMLDOMChildrenCollection_item(child_col, length - 1, NULL);
5551         ok(hres == E_POINTER, "item failed: %08x, expected E_POINTER\n", hres);
5552
5553         hres = IHTMLDOMChildrenCollection_item(child_col, length, NULL);
5554         ok(hres == E_POINTER, "item failed: %08x, expected E_POINTER\n", hres);
5555
5556         hres = IHTMLDOMChildrenCollection_item(child_col, 6000, &disp);
5557         ok(hres == E_INVALIDARG, "item failed: %08x, expected E_INVALIDARG\n", hres);
5558
5559         hres = IHTMLDOMChildrenCollection_item(child_col, length, &disp);
5560         ok(hres == E_INVALIDARG, "item failed: %08x, expected E_INVALIDARG\n", hres);
5561
5562         test_child_col_disp(child_col);
5563
5564         IHTMLDOMChildrenCollection_Release(child_col);
5565     }
5566
5567     test_elem3_get_disabled((IUnknown*)elem, VARIANT_FALSE);
5568     test_elem3_set_disabled((IUnknown*)elem, VARIANT_TRUE);
5569     test_elem3_set_disabled((IUnknown*)elem, VARIANT_FALSE);
5570
5571     IHTMLElement_Release(elem);
5572
5573     test_stylesheets(doc);
5574     test_create_option_elem(doc);
5575     test_create_img_elem(doc);
5576
5577     elem = get_doc_elem_by_id(doc, "tbl");
5578     ok(elem != NULL, "elem = NULL\n");
5579     test_elem_set_innertext(elem, "inner text");
5580     IHTMLElement_Release(elem);
5581
5582     test_doc_title(doc, "test");
5583     test_doc_set_title(doc, "test title");
5584     test_doc_title(doc, "test title");
5585
5586     disp = NULL;
5587     hres = IHTMLDocument2_get_Script(doc, &disp);
5588     ok(hres == S_OK, "get_Script failed: %08x\n", hres);
5589     if(hres == S_OK)
5590     {
5591         IDispatchEx *dispex;
5592         hres = IDispatch_QueryInterface(disp, &IID_IDispatchEx, (void**)&dispex);
5593         ok(hres == S_OK, "IDispatch_QueryInterface failed: %08x\n", hres);
5594         if(hres == S_OK)
5595         {
5596             DISPID pid = -1;
5597             BSTR str = a2bstr("Testing");
5598             hres = IDispatchEx_GetDispID(dispex, str, 1, &pid);
5599             ok(hres == S_OK, "GetDispID failed: %08x\n", hres);
5600             ok(pid != -1, "pid == -1\n");
5601             SysFreeString(str);
5602             IDispatchEx_Release(dispex);
5603         }
5604     }
5605     IDispatch_Release(disp);
5606
5607     hres = IHTMLDocument2_QueryInterface(doc, &IID_IHTMLDocument3, (void**)&doc3);
5608     ok(hres == S_OK, "Could not get IHTMLDocument3 iface: %08x\n", hres);
5609
5610     str = a2bstr("img");
5611     hres = IHTMLDocument3_getElementsByTagName(doc3, str, &col);
5612     ok(hres == S_OK, "getElementsByTagName(%s) failed: %08x\n", wine_dbgstr_w(str), hres);
5613     SysFreeString(str);
5614     if(hres == S_OK)
5615     {
5616         static const elem_type_t img_types[] = { ET_IMG };
5617
5618         test_elem_collection((IUnknown*)col, img_types, sizeof(img_types)/sizeof(img_types[0]));
5619         IHTMLElementCollection_Release(col);
5620     }
5621
5622     elem = get_doc_elem_by_id(doc, "y");
5623     test_elem_set_innerhtml((IUnknown*)elem, "inner html");
5624     test_elem_innerhtml((IUnknown*)elem, "inner html");
5625     test_elem_set_innerhtml((IUnknown*)elem, "");
5626     test_elem_innerhtml((IUnknown*)elem, NULL);
5627     node = node_get_next((IUnknown*)elem);
5628     ok(!node, "node = %p\n", node);
5629
5630     elem2 = get_doc_elem_by_id(doc, "x");
5631     test_elem_tag((IUnknown*)elem2, "A");
5632     node = node_get_next((IUnknown*)elem2);
5633     IHTMLDOMNode_Release(node);
5634     IHTMLElement_Release(elem2);
5635     IHTMLElement_Release(elem);
5636
5637     IHTMLDocument3_Release(doc3);
5638
5639     window = get_doc_window(doc);
5640     test_window_name(window, NULL);
5641     set_window_name(window, "test name");
5642     test_window_length(window, 1);
5643     IHTMLWindow2_Release(window);
5644 }
5645
5646 static void test_elems2(IHTMLDocument2 *doc)
5647 {
5648     IHTMLElement *elem, *elem2;
5649
5650     static const elem_type_t outer_types[] = {
5651         ET_BR,
5652         ET_A
5653     };
5654
5655     elem = get_doc_elem_by_id(doc, "divid");
5656
5657     test_elem_set_innerhtml((IUnknown*)elem, "<div id=\"innerid\"></div>");
5658     elem2 = get_doc_elem_by_id(doc, "innerid");
5659     ok(elem2 != NULL, "elem2 == NULL\n");
5660     test_elem_set_outerhtml((IUnknown*)elem2, "<br><a href=\"about:blank\" id=\"aid\">a</a>");
5661     test_elem_all((IUnknown*)elem, outer_types, sizeof(outer_types)/sizeof(*outer_types));
5662     IHTMLElement_Release(elem2);
5663
5664     elem2 = get_doc_elem_by_id(doc, "aid");
5665     ok(elem2 != NULL, "elem2 == NULL\n");
5666     test_elem_set_outerhtml((IUnknown*)elem2, "");
5667     test_elem_all((IUnknown*)elem, outer_types, 1);
5668     IHTMLElement_Release(elem2);
5669
5670     IHTMLElement_Release(elem);
5671 }
5672
5673 static void test_create_elems(IHTMLDocument2 *doc)
5674 {
5675     IHTMLElement *elem, *body, *elem2;
5676     IHTMLDOMNode *node, *node2, *node3, *comment;
5677     IHTMLDocument5 *doc5;
5678     IDispatch *disp;
5679     VARIANT var;
5680     LONG type;
5681     HRESULT hres;
5682     BSTR str;
5683
5684     static const elem_type_t types1[] = { ET_TESTG };
5685
5686     elem = test_create_elem(doc, "TEST");
5687     test_elem_tag((IUnknown*)elem, "TEST");
5688     type = get_node_type((IUnknown*)elem);
5689     ok(type == 1, "type=%d\n", type);
5690     test_ifaces((IUnknown*)elem, elem_iids);
5691     test_disp((IUnknown*)elem, &DIID_DispHTMLGenericElement, "[object]");
5692
5693     hres = IHTMLDocument2_get_body(doc, &body);
5694     ok(hres == S_OK, "get_body failed: %08x\n", hres);
5695     test_node_has_child((IUnknown*)body, VARIANT_FALSE);
5696
5697     node = test_node_append_child((IUnknown*)body, (IUnknown*)elem);
5698     test_node_has_child((IUnknown*)body, VARIANT_TRUE);
5699     elem2 = get_elem_iface((IUnknown*)node);
5700     IHTMLElement_Release(elem2);
5701
5702     hres = IHTMLElement_get_all(body, &disp);
5703     ok(hres == S_OK, "get_all failed: %08x\n", hres);
5704     test_elem_collection((IUnknown*)disp, types1, sizeof(types1)/sizeof(types1[0]));
5705     IDispatch_Release(disp);
5706
5707     test_node_remove_child((IUnknown*)body, node);
5708
5709     hres = IHTMLElement_get_all(body, &disp);
5710     ok(hres == S_OK, "get_all failed: %08x\n", hres);
5711     test_elem_collection((IUnknown*)disp, NULL, 0);
5712     IDispatch_Release(disp);
5713     test_node_has_child((IUnknown*)body, VARIANT_FALSE);
5714
5715     IHTMLElement_Release(elem);
5716     IHTMLDOMNode_Release(node);
5717
5718     node = test_create_text(doc, "test");
5719     test_ifaces((IUnknown*)node, text_iids);
5720     test_disp((IUnknown*)node, &DIID_DispHTMLDOMTextNode, "[object]");
5721
5722     V_VT(&var) = VT_NULL;
5723     node2 = test_node_insertbefore((IUnknown*)body, node, &var);
5724     IHTMLDOMNode_Release(node);
5725
5726     node = test_create_text(doc, "insert ");
5727
5728     V_VT(&var) = VT_DISPATCH;
5729     V_DISPATCH(&var) = (IDispatch*)node2;
5730     node3 = test_node_insertbefore((IUnknown*)body, node, &var);
5731     IHTMLDOMNode_Release(node);
5732     IHTMLDOMNode_Release(node2);
5733     IHTMLDOMNode_Release(node3);
5734
5735     test_elem_innertext(body, "insert test");
5736     test_elem_innerhtml((IUnknown*)body, "insert test");
5737
5738     hres = IHTMLDocument2_QueryInterface(doc, &IID_IHTMLDocument5, (void**)&doc5);
5739     if(hres == S_OK)
5740     {
5741         str = a2bstr("testing");
5742         hres = IHTMLDocument5_createComment(doc5, str, &comment);
5743         SysFreeString(str);
5744         ok(hres == S_OK, "createComment failed: %08x\n", hres);
5745         if(hres == S_OK)
5746         {
5747             type = get_node_type((IUnknown*)comment);
5748             ok(type == 8, "type=%d, expected 8\n", type);
5749
5750             test_node_get_value_str((IUnknown*)comment, "testing");
5751
5752             IHTMLDOMNode_Release(comment);
5753         }
5754
5755         IHTMLDocument5_Release(doc5);
5756     }
5757
5758     IHTMLElement_Release(body);
5759 }
5760
5761 static void test_exec(IUnknown *unk, const GUID *grpid, DWORD cmdid, VARIANT *in, VARIANT *out)
5762 {
5763     IOleCommandTarget *cmdtrg;
5764     HRESULT hres;
5765
5766     hres = IHTMLTxtRange_QueryInterface(unk, &IID_IOleCommandTarget, (void**)&cmdtrg);
5767     ok(hres == S_OK, "Could not get IOleCommandTarget interface: %08x\n", hres);
5768
5769     hres = IOleCommandTarget_Exec(cmdtrg, grpid, cmdid, 0, in, out);
5770     ok(hres == S_OK, "Exec failed: %08x\n", hres);
5771
5772     IOleCommandTarget_Release(cmdtrg);
5773 }
5774
5775 static void test_indent(IHTMLDocument2 *doc)
5776 {
5777     IHTMLElementCollection *col;
5778     IHTMLTxtRange *range;
5779     HRESULT hres;
5780
5781     static const elem_type_t all_types[] = {
5782         ET_HTML,
5783         ET_HEAD,
5784         ET_TITLE,
5785         ET_BODY,
5786         ET_BR,
5787         ET_A,
5788     };
5789
5790     static const elem_type_t indent_types[] = {
5791         ET_HTML,
5792         ET_HEAD,
5793         ET_TITLE,
5794         ET_BODY,
5795         ET_BLOCKQUOTE,
5796         ET_P,
5797         ET_BR,
5798         ET_A,
5799     };
5800
5801     hres = IHTMLDocument2_get_all(doc, &col);
5802     ok(hres == S_OK, "get_all failed: %08x\n", hres);
5803     test_elem_collection((IUnknown*)col, all_types, sizeof(all_types)/sizeof(all_types[0]));
5804     IHTMLElementCollection_Release(col);
5805
5806     range = test_create_body_range(doc);
5807     test_exec((IUnknown*)range, &CGID_MSHTML, IDM_INDENT, NULL, NULL);
5808     IHTMLTxtRange_Release(range);
5809
5810     hres = IHTMLDocument2_get_all(doc, &col);
5811     ok(hres == S_OK, "get_all failed: %08x\n", hres);
5812     test_elem_collection((IUnknown*)col, indent_types, sizeof(indent_types)/sizeof(indent_types[0]));
5813     IHTMLElementCollection_Release(col);
5814 }
5815
5816 static void test_cond_comment(IHTMLDocument2 *doc)
5817 {
5818     IHTMLElementCollection *col;
5819     HRESULT hres;
5820
5821     static const elem_type_t all_types[] = {
5822         ET_HTML,
5823         ET_HEAD,
5824         ET_TITLE,
5825         ET_BODY,
5826         ET_BR
5827     };
5828
5829     hres = IHTMLDocument2_get_all(doc, &col);
5830     ok(hres == S_OK, "get_all failed: %08x\n", hres);
5831     test_elem_collection((IUnknown*)col, all_types, sizeof(all_types)/sizeof(all_types[0]));
5832     IHTMLElementCollection_Release(col);
5833 }
5834
5835 static void test_frame(IDispatch *disp, const char *exp_id)
5836 {
5837     IHTMLWindow2 *frame2, *parent, *top;
5838     IHTMLDocument2 *parent_doc, *top_doc;
5839     IHTMLWindow4 *frame;
5840     IHTMLFrameBase *frame_elem;
5841     HRESULT hres;
5842
5843     hres = IDispatch_QueryInterface(disp, &IID_IHTMLWindow4, (void**)&frame);
5844     ok(hres == S_OK, "Could not get IHTMLWindow4 interface: 0x%08x\n", hres);
5845     if(FAILED(hres))
5846         return;
5847
5848     hres = IHTMLWindow4_get_frameElement(frame, &frame_elem);
5849     ok(hres == S_OK, "IHTMLWindow4_get_frameElement failed: 0x%08x\n", hres);
5850     IHTMLWindow4_Release(frame);
5851     if(FAILED(hres))
5852         return;
5853
5854     test_frame_doc((IUnknown*)frame_elem);
5855     test_elem_id((IUnknown*)frame_elem, exp_id);
5856     IHTMLElement_Release(frame_elem);
5857
5858     hres = IDispatch_QueryInterface(disp, &IID_IHTMLWindow2, (void**)&frame2);
5859     ok(hres == S_OK, "Could not get IHTMLWindow2 interface: 0x%08x\n", hres);
5860     if(FAILED(hres))
5861         return;
5862
5863     hres = IHTMLWindow2_get_parent(frame2, &parent);
5864     ok(hres == S_OK, "IHTMLWindow2_get_parent failed: 0x%08x\n", hres);
5865     if(FAILED(hres)){
5866         IHTMLWindow2_Release(frame2);
5867         return;
5868     }
5869
5870     hres = IHTMLWindow2_get_document(parent, &parent_doc);
5871     ok(hres == S_OK, "IHTMLWindow2_get_document failed: 0x%08x\n", hres);
5872     IHTMLWindow2_Release(parent);
5873     if(FAILED(hres)){
5874         IHTMLWindow2_Release(frame2);
5875         return;
5876     }
5877
5878     test_doc_title(parent_doc, "frameset test");
5879     IHTMLDocument2_Release(parent_doc);
5880
5881     /* test get_top */
5882     hres = IHTMLWindow2_get_top(frame2, &top);
5883     ok(hres == S_OK, "IHTMLWindow2_get_top failed: 0x%08x\n", hres);
5884     IHTMLWindow2_Release(frame2);
5885     if(FAILED(hres))
5886         return;
5887
5888     hres = IHTMLWindow2_get_document(top, &top_doc);
5889     ok(hres == S_OK, "IHTMLWindow2_get_document failed: 0x%08x\n", hres);
5890     IHTMLWindow2_Release(top);
5891     if(FAILED(hres))
5892         return;
5893
5894     test_doc_title(top_doc, "frameset test");
5895     IHTMLDocument2_Release(top_doc);
5896 }
5897
5898 static void test_frameset(IHTMLDocument2 *doc)
5899 {
5900     IHTMLWindow2 *window;
5901     IHTMLFramesCollection2 *frames;
5902     IHTMLElement *elem;
5903     IHTMLFrameBase *fbase;
5904     LONG length;
5905     VARIANT index_var, result_var;
5906     BSTR str;
5907     HRESULT hres;
5908
5909     window = get_doc_window(doc);
5910
5911     /* test using IHTMLFramesCollection object */
5912
5913     hres = IHTMLWindow2_get_frames(window, &frames);
5914     ok(hres == S_OK, "IHTMLWindow2_get_frames failed: 0x%08x\n", hres);
5915     IHTMLWindow2_Release(window);
5916     if(FAILED(hres))
5917         return;
5918
5919     /* test result length */
5920     hres = IHTMLFramesCollection2_get_length(frames, &length);
5921     ok(hres == S_OK, "IHTMLFramesCollection2_get_length failed: 0x%08x\n", hres);
5922     ok(length == 3, "IHTMLFramesCollection2_get_length should have been 3, was: %d\n", length);
5923
5924     /* test first frame */
5925     V_VT(&index_var) = VT_I4;
5926     V_I4(&index_var) = 0;
5927     hres = IHTMLFramesCollection2_item(frames, &index_var, &result_var);
5928     ok(hres == S_OK, "IHTMLFramesCollection2_item failed: 0x%08x\n", hres);
5929     if(SUCCEEDED(hres)) {
5930         ok(V_VT(&result_var) == VT_DISPATCH, "result type should have been VT_DISPATCH, was: 0x%x\n", V_VT(&result_var));
5931         test_frame((IDispatch*)V_DISPATCH(&result_var), "fr1");
5932     }
5933     VariantClear(&result_var);
5934
5935     /* test second frame */
5936     V_I4(&index_var) = 1;
5937     hres = IHTMLFramesCollection2_item(frames, &index_var, &result_var);
5938     ok(hres == S_OK, "IHTMLFramesCollection2_item failed: 0x%08x\n", hres);
5939     if(SUCCEEDED(hres)) {
5940         ok(V_VT(&result_var) == VT_DISPATCH, "result type should have been VT_DISPATCH, was: 0x%x\n", V_VT(&result_var));
5941         test_frame((IDispatch*)V_DISPATCH(&result_var), "fr2");
5942     }
5943     VariantClear(&result_var);
5944
5945     /* fail on next frame */
5946     V_I4(&index_var) = 3;
5947     hres = IHTMLFramesCollection2_item(frames, &index_var, &result_var);
5948     ok(hres == DISP_E_MEMBERNOTFOUND, "IHTMLFramesCollection2_item should have"
5949            "failed with DISP_E_MEMBERNOTFOUND, instead: 0x%08x\n", hres);
5950     VariantClear(&result_var);
5951
5952     /* string argument (element id lookup) */
5953     V_VT(&index_var) = VT_BSTR;
5954     V_BSTR(&index_var) = a2bstr("fr1");
5955     hres = IHTMLFramesCollection2_item(frames, &index_var, &result_var);
5956     ok(hres == S_OK, "IHTMLFramesCollection2_item failed: 0x%08x\n", hres);
5957     if(SUCCEEDED(hres)) {
5958         ok(V_VT(&result_var) == VT_DISPATCH, "result type should have been VT_DISPATCH, was: 0x%x\n", V_VT(&result_var));
5959         test_frame(V_DISPATCH(&result_var), "fr1");
5960     }
5961     VariantClear(&result_var);
5962     VariantClear(&index_var);
5963
5964     /* invalid argument */
5965     V_VT(&index_var) = VT_BOOL;
5966     V_BOOL(&index_var) = VARIANT_TRUE;
5967     hres = IHTMLFramesCollection2_item(frames, &index_var, &result_var);
5968     ok(hres == E_INVALIDARG, "IHTMLFramesCollection2_item should have"
5969            "failed with E_INVALIDARG, instead: 0x%08x\n", hres);
5970     VariantClear(&result_var);
5971
5972     IHTMLFramesCollection2_Release(frames);
5973
5974     /* test using IHTMLWindow2 inheritance */
5975
5976     /* test result length */
5977     hres = IHTMLWindow2_get_length(window, &length);
5978     ok(hres == S_OK, "IHTMLWindow2_get_length failed: 0x%08x\n", hres);
5979     ok(length == 3, "IHTMLWindow2_get_length should have been 3, was: %d\n", length);
5980
5981     /* test first frame */
5982     V_VT(&index_var) = VT_I4;
5983     V_I4(&index_var) = 0;
5984     hres = IHTMLWindow2_item(window, &index_var, &result_var);
5985     ok(hres == S_OK, "IHTMLWindow2_item failed: 0x%08x\n", hres);
5986     if(SUCCEEDED(hres)) {
5987         ok(V_VT(&result_var) == VT_DISPATCH, "result type should have been VT_DISPATCH, was: 0x%x\n", V_VT(&result_var));
5988         test_frame((IDispatch*)V_DISPATCH(&result_var), "fr1");
5989     }
5990     VariantClear(&result_var);
5991
5992     /* test second frame */
5993     V_I4(&index_var) = 1;
5994     hres = IHTMLWindow2_item(window, &index_var, &result_var);
5995     ok(hres == S_OK, "IHTMLWindow2_item failed: 0x%08x\n", hres);
5996     if(SUCCEEDED(hres)) {
5997         ok(V_VT(&result_var) == VT_DISPATCH, "result type should have been VT_DISPATCH, was: 0x%x\n", V_VT(&result_var));
5998         test_frame((IDispatch*)V_DISPATCH(&result_var), "fr2");
5999     }
6000     VariantClear(&result_var);
6001
6002     /* fail on next frame */
6003     V_I4(&index_var) = 3;
6004     hres = IHTMLWindow2_item(window, &index_var, &result_var);
6005     ok(hres == DISP_E_MEMBERNOTFOUND, "IHTMLWindow2_item should have"
6006            "failed with DISP_E_MEMBERNOTFOUND, instead: 0x%08x\n", hres);
6007     VariantClear(&result_var);
6008
6009     /* string argument (element id lookup) */
6010     V_VT(&index_var) = VT_BSTR;
6011     V_BSTR(&index_var) = a2bstr("fr2");
6012     hres = IHTMLWindow2_item(window, &index_var, &result_var);
6013     ok(hres == S_OK, "IHTMLWindow2_item failed: 0x%08x\n", hres);
6014     if(SUCCEEDED(hres)) {
6015         ok(V_VT(&result_var) == VT_DISPATCH, "result type should have been VT_DISPATCH, was: 0x%x\n", V_VT(&result_var));
6016         test_frame((IDispatch*)V_DISPATCH(&result_var), "fr2");
6017     }
6018     VariantClear(&result_var);
6019     VariantClear(&index_var);
6020
6021     /* invalid argument */
6022     V_VT(&index_var) = VT_BOOL;
6023     V_BOOL(&index_var) = VARIANT_TRUE;
6024     hres = IHTMLWindow2_item(window, &index_var, &result_var);
6025     ok(hres == E_INVALIDARG, "IHTMLWindow2_item should have"
6026            "failed with E_INVALIDARG, instead: 0x%08x\n", hres);
6027     VariantClear(&result_var);
6028
6029     /* getElementById with node name attributes */
6030     elem = get_doc_elem_by_id(doc, "nm1");
6031     test_elem_id((IUnknown*)elem, "fr1");
6032
6033     /* get/put scrolling */
6034     hres = IHTMLElement_QueryInterface(elem, &IID_IHTMLFrameBase, (void**)&fbase);
6035     ok(hres == S_OK, "Could not get IHTMLFrameBase interface: 0x%08x\n", hres);
6036
6037     hres = IHTMLFrameBase_get_scrolling(fbase, &str);
6038     ok(hres == S_OK, "IHTMLFrameBase_get_scrolling failed: 0x%08x\n", hres);
6039     ok(!strcmp_wa(str, "auto"), "get_scrolling should have given 'auto', gave: %s\n", wine_dbgstr_w(str));
6040     SysFreeString(str);
6041
6042     str = a2bstr("no");
6043     hres = IHTMLFrameBase_put_scrolling(fbase, str);
6044     ok(hres == S_OK, "IHTMLFrameBase_put_scrolling failed: 0x%08x\n", hres);
6045     SysFreeString(str);
6046
6047     hres = IHTMLFrameBase_get_scrolling(fbase, &str);
6048     ok(hres == S_OK, "IHTMLFrameBase_get_scrolling failed: 0x%08x\n", hres);
6049     ok(!strcmp_wa(str, "no"), "get_scrolling should have given 'no', gave: %s\n", wine_dbgstr_w(str));
6050     SysFreeString(str);
6051
6052     str = a2bstr("junk");
6053     hres = IHTMLFrameBase_put_scrolling(fbase, str);
6054     ok(hres == E_INVALIDARG, "IHTMLFrameBase_put_scrolling should have failed "
6055             "with E_INVALIDARG, instead: 0x%08x\n", hres);
6056     SysFreeString(str);
6057
6058     hres = IHTMLFrameBase_get_scrolling(fbase, &str);
6059     ok(hres == S_OK, "IHTMLFrameBase_get_scrolling failed: 0x%08x\n", hres);
6060     ok(!strcmp_wa(str, "no"), "get_scrolling should have given 'no', gave: %s\n", wine_dbgstr_w(str));
6061     SysFreeString(str);
6062
6063     /* get_name */
6064     hres = IHTMLFrameBase_get_name(fbase, &str);
6065     ok(hres == S_OK, "IHTMLFrameBase_get_name failed: 0x%08x\n", hres);
6066     ok(!strcmp_wa(str, "nm1"), "get_name should have given 'nm1', gave: %s\n", wine_dbgstr_w(str));
6067     SysFreeString(str);
6068
6069     IHTMLFrameBase_Release(fbase);
6070     IHTMLElement_Release(elem);
6071
6072     /* get_name with no name attr */
6073     elem = get_doc_elem_by_id(doc, "fr3");
6074     hres = IHTMLElement_QueryInterface(elem, &IID_IHTMLFrameBase, (void**)&fbase);
6075     ok(hres == S_OK, "Could not get IHTMLFrameBase interface: 0x%08x\n", hres);
6076
6077     hres = IHTMLFrameBase_get_name(fbase, &str);
6078     ok(hres == S_OK, "IHTMLFrameBase_get_name failed: 0x%08x\n", hres);
6079     ok(str == NULL, "get_name should have given 'null', gave: %s\n", wine_dbgstr_w(str));
6080     SysFreeString(str);
6081
6082     IHTMLFrameBase_Release(fbase);
6083     IHTMLElement_Release(elem);
6084 }
6085
6086 static IHTMLDocument2 *notif_doc;
6087 static BOOL doc_complete;
6088
6089 static HRESULT WINAPI PropertyNotifySink_QueryInterface(IPropertyNotifySink *iface,
6090         REFIID riid, void**ppv)
6091 {
6092     if(IsEqualGUID(&IID_IPropertyNotifySink, riid)) {
6093         *ppv = iface;
6094         return S_OK;
6095     }
6096
6097     ok(0, "unexpected call\n");
6098     return E_NOINTERFACE;
6099 }
6100
6101 static ULONG WINAPI PropertyNotifySink_AddRef(IPropertyNotifySink *iface)
6102 {
6103     return 2;
6104 }
6105
6106 static ULONG WINAPI PropertyNotifySink_Release(IPropertyNotifySink *iface)
6107 {
6108     return 1;
6109 }
6110
6111 static HRESULT WINAPI PropertyNotifySink_OnChanged(IPropertyNotifySink *iface, DISPID dispID)
6112 {
6113     if(dispID == DISPID_READYSTATE){
6114         BSTR state;
6115         HRESULT hres;
6116
6117         hres = IHTMLDocument2_get_readyState(notif_doc, &state);
6118         ok(hres == S_OK, "get_readyState failed: %08x\n", hres);
6119
6120         if(!strcmp_wa(state, "complete"))
6121             doc_complete = TRUE;
6122
6123         SysFreeString(state);
6124     }
6125
6126     return S_OK;
6127 }
6128
6129 static HRESULT WINAPI PropertyNotifySink_OnRequestEdit(IPropertyNotifySink *iface, DISPID dispID)
6130 {
6131     ok(0, "unexpected call\n");
6132     return E_NOTIMPL;
6133 }
6134
6135 static IPropertyNotifySinkVtbl PropertyNotifySinkVtbl = {
6136     PropertyNotifySink_QueryInterface,
6137     PropertyNotifySink_AddRef,
6138     PropertyNotifySink_Release,
6139     PropertyNotifySink_OnChanged,
6140     PropertyNotifySink_OnRequestEdit
6141 };
6142
6143 static IPropertyNotifySink PropertyNotifySink = { &PropertyNotifySinkVtbl };
6144
6145 static IHTMLDocument2 *create_doc_with_string(const char *str)
6146 {
6147     IPersistStreamInit *init;
6148     IStream *stream;
6149     IHTMLDocument2 *doc;
6150     HGLOBAL mem;
6151     SIZE_T len;
6152
6153     notif_doc = doc = create_document();
6154     if(!doc)
6155         return NULL;
6156
6157     doc_complete = FALSE;
6158     len = strlen(str);
6159     mem = GlobalAlloc(0, len);
6160     memcpy(mem, str, len);
6161     CreateStreamOnHGlobal(mem, TRUE, &stream);
6162
6163     IHTMLDocument2_QueryInterface(doc, &IID_IPersistStreamInit, (void**)&init);
6164
6165     IPersistStreamInit_Load(init, stream);
6166     IPersistStreamInit_Release(init);
6167     IStream_Release(stream);
6168
6169     return doc;
6170 }
6171
6172 static void do_advise(IUnknown *unk, REFIID riid, IUnknown *unk_advise)
6173 {
6174     IConnectionPointContainer *container;
6175     IConnectionPoint *cp;
6176     DWORD cookie;
6177     HRESULT hres;
6178
6179     hres = IUnknown_QueryInterface(unk, &IID_IConnectionPointContainer, (void**)&container);
6180     ok(hres == S_OK, "QueryInterface(IID_IConnectionPointContainer) failed: %08x\n", hres);
6181
6182     hres = IConnectionPointContainer_FindConnectionPoint(container, riid, &cp);
6183     IConnectionPointContainer_Release(container);
6184     ok(hres == S_OK, "FindConnectionPoint failed: %08x\n", hres);
6185
6186     hres = IConnectionPoint_Advise(cp, unk_advise, &cookie);
6187     IConnectionPoint_Release(cp);
6188     ok(hres == S_OK, "Advise failed: %08x\n", hres);
6189 }
6190
6191 typedef void (*domtest_t)(IHTMLDocument2*);
6192
6193 static void run_domtest(const char *str, domtest_t test)
6194 {
6195     IHTMLDocument2 *doc;
6196     ULONG ref;
6197     MSG msg;
6198
6199     doc = create_doc_with_string(str);
6200     if(!doc)
6201         return;
6202
6203     do_advise((IUnknown*)doc, &IID_IPropertyNotifySink, (IUnknown*)&PropertyNotifySink);
6204
6205     while(!doc_complete && GetMessage(&msg, NULL, 0, 0)) {
6206         TranslateMessage(&msg);
6207         DispatchMessage(&msg);
6208     }
6209
6210     test(doc);
6211
6212     ref = IHTMLDocument2_Release(doc);
6213     ok(!ref ||
6214        ref == 1, /* Vista */
6215        "ref = %d\n", ref);
6216 }
6217
6218 START_TEST(dom)
6219 {
6220     CoInitialize(NULL);
6221
6222     run_domtest(doc_str1, test_doc_elem);
6223     run_domtest(doc_str1, test_get_set_attr);
6224     run_domtest(range_test_str, test_txtrange);
6225     run_domtest(range_test2_str, test_txtrange2);
6226     if (winetest_interactive || ! is_ie_hardened()) {
6227         run_domtest(elem_test_str, test_elems);
6228     }else {
6229         skip("IE running in Enhanced Security Configuration\n");
6230     }
6231     run_domtest(elem_test2_str, test_elems2);
6232     run_domtest(doc_blank, test_create_elems);
6233     run_domtest(doc_blank, test_defaults);
6234     run_domtest(indent_test_str, test_indent);
6235     run_domtest(cond_comment_str, test_cond_comment);
6236     run_domtest(frameset_str, test_frameset);
6237
6238     CoUninitialize();
6239 }