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