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