2 * Copyright 2007 Jacek Caban for CodeWeavers
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 #include <wine/test.h>
35 static const char doc_blank
[] = "<html></html>";
36 static const char doc_str1
[] = "<html><body>test</body></html>";
37 static const char range_test_str
[] =
38 "<html><body>test \na<font size=\"2\">bc\t123<br /> it's\r\n \t</font>text<br /></body></html>";
39 static const char range_test2_str
[] =
40 "<html><body>abc<hr />123<br /><hr />def</body></html>";
41 static const char elem_test_str
[] =
42 "<html><head><title>test</title><style>.body { margin-right: 0px; }</style>"
43 "<body>text test<!-- a comment -->"
44 "<a href=\"http://test\" name=\"x\">link</a>"
45 "<input id=\"in\" class=\"testclass\" tabIndex=\"2\" title=\"test title\" />"
46 "<select id=\"s\"><option id=\"x\" value=\"val1\">opt1</option><option id=\"y\">opt2</option></select>"
47 "<textarea id=\"X\">text text</textarea>"
48 "<table><tbody></tbody></table>"
49 "<script id=\"sc\" type=\"text/javascript\"></script>"
53 static const char indent_test_str
[] =
54 "<html><head><title>test</title></head><body>abc<br /><a href=\"about:blank\">123</a></body></html>";
56 static const WCHAR noneW
[] = {'N','o','n','e',0};
58 static WCHAR characterW
[] = {'c','h','a','r','a','c','t','e','r',0};
59 static WCHAR texteditW
[] = {'t','e','x','t','e','d','i','t',0};
60 static WCHAR wordW
[] = {'w','o','r','d',0};
62 static const WCHAR text_javascriptW
[] = {'t','e','x','t','/','j','a','v','a','s','c','r','i','p','t',0};
64 static const WCHAR idW
[] = {'i','d',0};
90 static REFIID
const none_iids
[] = {
95 static REFIID
const elem_iids
[] = {
101 &IID_IConnectionPointContainer
,
105 static REFIID
const body_iids
[] = {
110 &IID_IHTMLTextContainer
,
111 &IID_IHTMLBodyElement
,
113 &IID_IConnectionPointContainer
,
117 static REFIID
const anchor_iids
[] = {
122 &IID_IHTMLAnchorElement
,
124 &IID_IConnectionPointContainer
,
128 static REFIID
const input_iids
[] = {
133 &IID_IHTMLInputElement
,
134 &IID_IHTMLInputTextElement
,
136 &IID_IConnectionPointContainer
,
140 static REFIID
const select_iids
[] = {
145 &IID_IHTMLSelectElement
,
147 &IID_IConnectionPointContainer
,
151 static REFIID
const textarea_iids
[] = {
156 &IID_IHTMLTextAreaElement
,
158 &IID_IConnectionPointContainer
,
162 static REFIID
const option_iids
[] = {
167 &IID_IHTMLOptionElement
,
169 &IID_IConnectionPointContainer
,
173 static REFIID
const table_iids
[] = {
180 &IID_IConnectionPointContainer
,
184 static REFIID
const script_iids
[] = {
189 &IID_IHTMLScriptElement
,
191 &IID_IConnectionPointContainer
,
195 static REFIID
const text_iids
[] = {
198 &IID_IHTMLDOMTextNode
,
202 static REFIID
const location_iids
[] = {
208 static REFIID
const window_iids
[] = {
216 static REFIID
const comment_iids
[] = {
221 &IID_IHTMLCommentElement
,
223 &IID_IConnectionPointContainer
,
227 static REFIID
const img_iids
[] = {
233 &IID_IHTMLImgElement
,
234 &IID_IConnectionPointContainer
,
238 static REFIID
const generic_iids
[] = {
243 &IID_IHTMLGenericElement
,
245 &IID_IConnectionPointContainer
,
255 static const elem_type_info_t elem_type_infos
[] = {
256 {"", none_iids
, NULL
},
257 {"HTML", elem_iids
, NULL
},
258 {"HEAD", elem_iids
, NULL
},
259 {"TITLE", elem_iids
, NULL
},
260 {"BODY", body_iids
, NULL
},
261 {"A", anchor_iids
, NULL
},
262 {"INPUT", input_iids
, &DIID_DispHTMLInputElement
},
263 {"SELECT", select_iids
, &DIID_DispHTMLSelectElement
},
264 {"TEXTAREA", textarea_iids
, NULL
},
265 {"OPTION", option_iids
, &DIID_DispHTMLOptionElement
},
266 {"STYLE", elem_iids
, NULL
},
267 {"BLOCKQUOTE",elem_iids
, NULL
},
268 {"P", elem_iids
, NULL
},
269 {"BR", elem_iids
, NULL
},
270 {"TABLE", table_iids
, NULL
},
271 {"TBODY", elem_iids
, NULL
},
272 {"SCRIPT", script_iids
, NULL
},
273 {"TEST", elem_iids
, &DIID_DispHTMLUnknownElement
},
274 {"TEST", generic_iids
, &DIID_DispHTMLGenericElement
},
275 {"!", comment_iids
, &DIID_DispHTMLCommentElement
},
276 {"IMG", img_iids
, &DIID_DispHTMLImg
}
279 static const char *dbgstr_w(LPCWSTR str
)
281 static char buf
[512];
284 WideCharToMultiByte(CP_ACP
, 0, str
, -1, buf
, sizeof(buf
), NULL
, NULL
);
288 static const char *dbgstr_guid(REFIID riid
)
292 sprintf(buf
, "{%08X-%04X-%04X-%02X%02X-%02X%02X%02X%02X%02X%02X}",
293 riid
->Data1
, riid
->Data2
, riid
->Data3
, riid
->Data4
[0],
294 riid
->Data4
[1], riid
->Data4
[2], riid
->Data4
[3], riid
->Data4
[4],
295 riid
->Data4
[5], riid
->Data4
[6], riid
->Data4
[7]);
300 static int strcmp_wa(LPCWSTR strw
, const char *stra
)
303 MultiByteToWideChar(CP_ACP
, 0, stra
, -1, buf
, sizeof(buf
)/sizeof(WCHAR
));
304 return lstrcmpW(strw
, buf
);
307 static BSTR
a2bstr(const char *str
)
312 len
= MultiByteToWideChar(CP_ACP
, 0, str
, -1, NULL
, 0);
313 ret
= SysAllocStringLen(NULL
, len
);
314 MultiByteToWideChar(CP_ACP
, 0, str
, -1, ret
, len
);
319 static IHTMLDocument2
*create_document(void)
324 hres
= CoCreateInstance(&CLSID_HTMLDocument
, NULL
, CLSCTX_INPROC_SERVER
|CLSCTX_INPROC_HANDLER
,
325 &IID_IHTMLDocument2
, (void**)&doc
);
326 ok(hres
== S_OK
, "CoCreateInstance failed: %08x\n", hres
);
331 #define test_ifaces(i,ids) _test_ifaces(__LINE__,i,ids)
332 static void _test_ifaces(unsigned line
, IUnknown
*iface
, REFIID
*iids
)
334 const IID
* const *piid
;
338 for(piid
= iids
; *piid
; piid
++) {
339 hres
= IDispatch_QueryInterface(iface
, *piid
, (void**)&unk
);
340 ok_(__FILE__
,line
) (hres
== S_OK
, "Could not get %s interface: %08x\n", dbgstr_guid(*piid
), hres
);
342 IUnknown_Release(unk
);
346 #define test_disp(u,id) _test_disp(__LINE__,u,id)
347 static void _test_disp(unsigned line
, IUnknown
*unk
, const IID
*diid
)
354 hres
= IUnknown_QueryInterface(unk
, &IID_IDispatchEx
, (void**)&dispex
);
355 ok_(__FILE__
,line
) (hres
== S_OK
, "Could not get IDispatch: %08x\n", hres
);
360 hres
= IDispatchEx_GetTypeInfoCount(dispex
, &ticnt
);
361 ok_(__FILE__
,line
) (hres
== S_OK
, "GetTypeInfoCount failed: %08x\n", hres
);
362 ok_(__FILE__
,line
) (ticnt
== 1, "ticnt=%u\n", ticnt
);
364 hres
= IDispatchEx_GetTypeInfo(dispex
, 0, 0, &typeinfo
);
365 ok_(__FILE__
,line
) (hres
== S_OK
, "GetTypeInfo failed: %08x\n", hres
);
367 if(SUCCEEDED(hres
)) {
370 hres
= ITypeInfo_GetTypeAttr(typeinfo
, &type_attr
);
371 ok_(__FILE__
,line
) (hres
== S_OK
, "GetTypeAttr failed: %08x\n", hres
);
372 ok_(__FILE__
,line
) (IsEqualGUID(&type_attr
->guid
, diid
), "unexpected guid %s\n", dbgstr_guid(&type_attr
->guid
));
374 ITypeInfo_ReleaseTypeAttr(typeinfo
, type_attr
);
375 ITypeInfo_Release(typeinfo
);
378 IDispatchEx_Release(dispex
);
381 #define get_elem_iface(u) _get_elem_iface(__LINE__,u)
382 static IHTMLElement
*_get_elem_iface(unsigned line
, IUnknown
*unk
)
387 hres
= IUnknown_QueryInterface(unk
, &IID_IHTMLElement
, (void**)&elem
);
388 ok_(__FILE__
,line
) (hres
== S_OK
, "Coule not get IHTMLElement: %08x\n", hres
);
392 #define get_elem2_iface(u) _get_elem2_iface(__LINE__,u)
393 static IHTMLElement2
*_get_elem2_iface(unsigned line
, IUnknown
*unk
)
398 hres
= IUnknown_QueryInterface(unk
, &IID_IHTMLElement2
, (void**)&elem
);
399 ok_(__FILE__
,line
) (hres
== S_OK
, "Coule not get IHTMLElement2: %08x\n", hres
);
403 #define get_node_iface(u) _get_node_iface(__LINE__,u)
404 static IHTMLDOMNode
*_get_node_iface(unsigned line
, IUnknown
*unk
)
409 hres
= IUnknown_QueryInterface(unk
, &IID_IHTMLDOMNode
, (void**)&node
);
410 ok_(__FILE__
,line
) (hres
== S_OK
, "Coule not get IHTMLDOMNode: %08x\n", hres
);
414 #define get_img_iface(u) _get_img_iface(__LINE__,u)
415 static IHTMLImgElement
*_get_img_iface(unsigned line
, IUnknown
*unk
)
417 IHTMLImgElement
*img
;
420 hres
= IUnknown_QueryInterface(unk
, &IID_IHTMLImgElement
, (void**)&img
);
421 ok_(__FILE__
,line
) (hres
== S_OK
, "Could not get IHTMLImgElement: %08x\n", hres
);
425 #define test_node_name(u,n) _test_node_name(__LINE__,u,n)
426 static void _test_node_name(unsigned line
, IUnknown
*unk
, const char *exname
)
428 IHTMLDOMNode
*node
= _get_node_iface(line
, unk
);
432 hres
= IHTMLDOMNode_get_nodeName(node
, &name
);
433 IHTMLDOMNode_Release(node
);
434 ok_(__FILE__
, line
) (hres
== S_OK
, "get_nodeName failed: %08x\n", hres
);
435 ok_(__FILE__
, line
) (!strcmp_wa(name
, exname
), "got name: %s, expected %s\n", dbgstr_w(name
), exname
);
440 #define test_elem_tag(u,n) _test_elem_tag(__LINE__,u,n)
441 static void _test_elem_tag(unsigned line
, IUnknown
*unk
, const char *extag
)
443 IHTMLElement
*elem
= _get_elem_iface(line
, unk
);
447 hres
= IHTMLElement_get_tagName(elem
, &tag
);
448 IHTMLElement_Release(elem
);
449 ok_(__FILE__
, line
) (hres
== S_OK
, "get_tagName failed: %08x\n", hres
);
450 ok_(__FILE__
, line
) (!strcmp_wa(tag
, extag
), "got tag: %s, expected %s\n", dbgstr_w(tag
), extag
);
455 #define test_elem_type(ifc,t) _test_elem_type(__LINE__,ifc,t)
456 static void _test_elem_type(unsigned line
, IUnknown
*unk
, elem_type_t type
)
458 _test_elem_tag(line
, unk
, elem_type_infos
[type
].tag
);
459 _test_ifaces(line
, unk
, elem_type_infos
[type
].iids
);
461 if(elem_type_infos
[type
].dispiid
)
462 _test_disp(line
, unk
, elem_type_infos
[type
].dispiid
);
465 #define test_elem_attr(e,n,v) _test_elem_attr(__LINE__,e,n,v)
466 static void _test_elem_attr(unsigned line
, IHTMLElement
*elem
, LPCWSTR name
, LPCWSTR exval
)
474 tmp
= SysAllocString(name
);
475 hres
= IHTMLElement_getAttribute(elem
, tmp
, 0, &value
);
477 ok_(__FILE__
,line
) (hres
== S_OK
, "getAttribute failed: %08x\n", hres
);
480 ok_(__FILE__
,line
) (V_VT(&value
) == VT_BSTR
, "vt=%d\n", V_VT(&value
));
481 ok_(__FILE__
,line
) (!lstrcmpW(exval
, V_BSTR(&value
)), "unexpected value %s\n", dbgstr_w(V_BSTR(&value
)));
483 ok_(__FILE__
,line
) (V_VT(&value
) == VT_NULL
, "vt=%d\n", V_VT(&value
));
486 VariantClear(&value
);
489 #define test_elem_offset(u) _test_elem_offset(__LINE__,u)
490 static void _test_elem_offset(unsigned line
, IUnknown
*unk
)
492 IHTMLElement
*elem
= _get_elem_iface(line
, unk
);
496 hres
= IHTMLElement_get_offsetTop(elem
, &l
);
497 ok_(__FILE__
,line
) (hres
== S_OK
, "get_offsetTop failed: %08x\n", hres
);
499 hres
= IHTMLElement_get_offsetHeight(elem
, &l
);
500 ok_(__FILE__
,line
) (hres
== S_OK
, "get_offsetHeight failed: %08x\n", hres
);
502 IHTMLElement_Release(elem
);
505 static void test_doc_elem(IHTMLDocument2
*doc
)
508 IHTMLDocument3
*doc3
;
511 hres
= IHTMLDocument2_QueryInterface(doc
, &IID_IHTMLDocument3
, (void**)&doc3
);
512 ok(hres
== S_OK
, "QueryInterface(IID_IHTMLDocument3) failed: %08x\n", hres
);
514 hres
= IHTMLDocument3_get_documentElement(doc3
, &elem
);
515 IHTMLDocument3_Release(doc3
);
516 ok(hres
== S_OK
, "get_documentElement failed: %08x\n", hres
);
518 test_node_name((IUnknown
*)elem
, "HTML");
519 test_elem_tag((IUnknown
*)elem
, "HTML");
521 IHTMLElement_Release(elem
);
524 #define get_doc_elem(d) _get_doc_elem(__LINE__,d)
525 static IHTMLElement
*_get_doc_elem(unsigned line
, IHTMLDocument2
*doc
)
528 IHTMLDocument3
*doc3
;
531 hres
= IHTMLDocument2_QueryInterface(doc
, &IID_IHTMLDocument3
, (void**)&doc3
);
532 ok_(__FILE__
,line
) (hres
== S_OK
, "Could not get IHTMLDocument3 interface: %08x\n", hres
);
533 hres
= IHTMLDocument3_get_documentElement(doc3
, &elem
);
534 ok_(__FILE__
,line
) (hres
== S_OK
, "get_documentElement failed: %08x\n", hres
);
535 IHTMLDocument3_Release(doc3
);
540 #define test_option_text(o,t) _test_option_text(__LINE__,o,t)
541 static void _test_option_text(unsigned line
, IHTMLOptionElement
*option
, const char *text
)
546 hres
= IHTMLOptionElement_get_text(option
, &bstr
);
547 ok_(__FILE__
,line
) (hres
== S_OK
, "get_text failed: %08x\n", hres
);
548 ok_(__FILE__
,line
) (!strcmp_wa(bstr
, text
), "text=%s\n", dbgstr_w(bstr
));
552 #define test_option_put_text(o,t) _test_option_put_text(__LINE__,o,t)
553 static void _test_option_put_text(unsigned line
, IHTMLOptionElement
*option
, const char *text
)
559 hres
= IHTMLOptionElement_put_text(option
, bstr
);
561 ok(hres
== S_OK
, "put_text failed: %08x\n", hres
);
563 _test_option_text(line
, option
, text
);
566 #define test_option_value(o,t) _test_option_value(__LINE__,o,t)
567 static void _test_option_value(unsigned line
, IHTMLOptionElement
*option
, const char *value
)
572 hres
= IHTMLOptionElement_get_value(option
, &bstr
);
573 ok_(__FILE__
,line
) (hres
== S_OK
, "get_value failed: %08x\n", hres
);
574 ok_(__FILE__
,line
) (!strcmp_wa(bstr
, value
), "value=%s\n", dbgstr_w(bstr
));
578 #define test_option_put_value(o,t) _test_option_put_value(__LINE__,o,t)
579 static void _test_option_put_value(unsigned line
, IHTMLOptionElement
*option
, const char *value
)
584 bstr
= a2bstr(value
);
585 hres
= IHTMLOptionElement_put_value(option
, bstr
);
587 ok(hres
== S_OK
, "put_value failed: %08x\n", hres
);
589 _test_option_value(line
, option
, value
);
592 #define create_option_elem(d,t,v) _create_option_elem(__LINE__,d,t,v)
593 static IHTMLOptionElement
*_create_option_elem(unsigned line
, IHTMLDocument2
*doc
,
594 const char *txt
, const char *val
)
596 IHTMLOptionElementFactory
*factory
;
597 IHTMLOptionElement
*option
;
598 IHTMLWindow2
*window
;
599 VARIANT text
, value
, empty
;
602 hres
= IHTMLDocument2_get_parentWindow(doc
, &window
);
603 ok_(__FILE__
,line
) (hres
== S_OK
, "get_parentElement failed: %08x\n", hres
);
605 hres
= IHTMLWindow2_get_Option(window
, &factory
);
606 IHTMLWindow2_Release(window
);
607 ok_(__FILE__
,line
) (hres
== S_OK
, "get_Option failed: %08x\n", hres
);
609 V_VT(&text
) = VT_BSTR
;
610 V_BSTR(&text
) = a2bstr(txt
);
611 V_VT(&value
) = VT_BSTR
;
612 V_BSTR(&value
) = a2bstr(val
);
613 V_VT(&empty
) = VT_EMPTY
;
615 hres
= IHTMLOptionElementFactory_create(factory
, text
, value
, empty
, empty
, &option
);
616 ok_(__FILE__
,line
) (hres
== S_OK
, "create failed: %08x\n", hres
);
618 IHTMLOptionElementFactory_Release(factory
);
620 VariantClear(&value
);
622 _test_option_text(line
, option
, txt
);
623 _test_option_value(line
, option
, val
);
628 #define test_select_length(s,l) _test_select_length(__LINE__,s,l)
629 static void _test_select_length(unsigned line
, IHTMLSelectElement
*select
, long length
)
631 long len
= 0xdeadbeef;
634 hres
= IHTMLSelectElement_get_length(select
, &len
);
635 ok_(__FILE__
,line
) (hres
== S_OK
, "get_length failed: %08x\n", hres
);
636 ok_(__FILE__
,line
) (len
== length
, "len=%ld, expected %ld\n", len
, length
);
639 #define test_select_selidx(s,i) _test_select_selidx(__LINE__,s,i)
640 static void _test_select_selidx(unsigned line
, IHTMLSelectElement
*select
, long index
)
642 long idx
= 0xdeadbeef;
645 hres
= IHTMLSelectElement_get_selectedIndex(select
, &idx
);
646 ok_(__FILE__
,line
) (hres
== S_OK
, "get_selectedIndex failed: %08x\n", hres
);
647 ok_(__FILE__
,line
) (idx
== index
, "idx=%ld, expected %ld\n", idx
, index
);
650 #define test_select_put_selidx(s,i) _test_select_put_selidx(__LINE__,s,i)
651 static void _test_select_put_selidx(unsigned line
, IHTMLSelectElement
*select
, long index
)
655 hres
= IHTMLSelectElement_put_selectedIndex(select
, index
);
656 ok_(__FILE__
,line
) (hres
== S_OK
, "get_selectedIndex failed: %08x\n", hres
);
657 _test_select_selidx(line
, select
, index
);
660 #define test_select_value(s,v) _test_select_value(__LINE__,s,v)
661 static void _test_select_value(unsigned line
, IHTMLSelectElement
*select
, const char *exval
)
666 hres
= IHTMLSelectElement_get_value(select
, &val
);
667 ok_(__FILE__
,line
) (hres
== S_OK
, "get_value failed: %08x\n", hres
);
669 ok_(__FILE__
,line
) (!strcmp_wa(val
, exval
), "unexpected value %s\n", dbgstr_w(val
));
671 ok_(__FILE__
,line
) (val
== NULL
, "val=%s, expected NULL\n", dbgstr_w(val
));
674 #define test_select_set_value(s,v) _test_select_set_value(__LINE__,s,v)
675 static void _test_select_set_value(unsigned line
, IHTMLSelectElement
*select
, const char *val
)
681 hres
= IHTMLSelectElement_put_value(select
, bstr
);
683 ok_(__FILE__
,line
) (hres
== S_OK
, "put_value failed: %08x\n", hres
);
686 #define test_select_type(s,t) _test_select_type(__LINE__,s,t)
687 static void _test_select_type(unsigned line
, IHTMLSelectElement
*select
, const char *extype
)
692 hres
= IHTMLSelectElement_get_type(select
, &type
);
693 ok_(__FILE__
,line
) (hres
== S_OK
, "get_type failed: %08x\n", hres
);
694 ok_(__FILE__
,line
) (!strcmp_wa(type
, extype
), "type=%s, expected %s\n", dbgstr_w(type
), extype
);
697 #define test_range_text(r,t) _test_range_text(__LINE__,r,t)
698 static void _test_range_text(unsigned line
, IHTMLTxtRange
*range
, const char *extext
)
703 hres
= IHTMLTxtRange_get_text(range
, &text
);
704 ok_(__FILE__
, line
) (hres
== S_OK
, "get_text failed: %08x\n", hres
);
707 ok_(__FILE__
, line
) (text
!= NULL
, "text == NULL\n");
708 ok_(__FILE__
, line
) (!strcmp_wa(text
, extext
), "text=\"%s\", expected \"%s\"\n", dbgstr_w(text
), extext
);
710 ok_(__FILE__
, line
) (text
== NULL
, "text=\"%s\", expected NULL\n", dbgstr_w(text
));
717 #define test_range_collapse(r,b) _test_range_collapse(__LINE__,r,b)
718 static void _test_range_collapse(unsigned line
, IHTMLTxtRange
*range
, BOOL b
)
722 hres
= IHTMLTxtRange_collapse(range
, b
);
723 ok_(__FILE__
, line
) (hres
== S_OK
, "collapse failed: %08x\n", hres
);
724 _test_range_text(line
, range
, NULL
);
727 #define test_range_expand(r,u,b,t) _test_range_expand(__LINE__,r,u,b,t)
728 static void _test_range_expand(unsigned line
, IHTMLTxtRange
*range
, LPWSTR unit
,
729 VARIANT_BOOL exb
, const char *extext
)
731 VARIANT_BOOL b
= 0xe0e0;
734 hres
= IHTMLTxtRange_expand(range
, unit
, &b
);
735 ok_(__FILE__
,line
) (hres
== S_OK
, "expand failed: %08x\n", hres
);
736 ok_(__FILE__
,line
) (b
== exb
, "b=%x, expected %x\n", b
, exb
);
737 _test_range_text(line
, range
, extext
);
740 #define test_range_move(r,u,c,e) _test_range_move(__LINE__,r,u,c,e)
741 static void _test_range_move(unsigned line
, IHTMLTxtRange
*range
, LPWSTR unit
, long cnt
, long excnt
)
746 hres
= IHTMLTxtRange_move(range
, unit
, cnt
, &c
);
747 ok_(__FILE__
,line
) (hres
== S_OK
, "move failed: %08x\n", hres
);
748 ok_(__FILE__
,line
) (c
== excnt
, "count=%ld, expected %ld\n", c
, excnt
);
749 _test_range_text(line
, range
, NULL
);
752 #define test_range_movestart(r,u,c,e) _test_range_movestart(__LINE__,r,u,c,e)
753 static void _test_range_movestart(unsigned line
, IHTMLTxtRange
*range
,
754 LPWSTR unit
, long cnt
, long excnt
)
759 hres
= IHTMLTxtRange_moveStart(range
, unit
, cnt
, &c
);
760 ok_(__FILE__
,line
) (hres
== S_OK
, "move failed: %08x\n", hres
);
761 ok_(__FILE__
,line
) (c
== excnt
, "count=%ld, expected %ld\n", c
, excnt
);
764 #define test_range_moveend(r,u,c,e) _test_range_moveend(__LINE__,r,u,c,e)
765 static void _test_range_moveend(unsigned line
, IHTMLTxtRange
*range
, LPWSTR unit
, long cnt
, long excnt
)
770 hres
= IHTMLTxtRange_moveEnd(range
, unit
, cnt
, &c
);
771 ok_(__FILE__
,line
) (hres
== S_OK
, "move failed: %08x\n", hres
);
772 ok_(__FILE__
,line
) (c
== excnt
, "count=%ld, expected %ld\n", c
, excnt
);
775 #define test_range_put_text(r,t) _test_range_put_text(__LINE__,r,t)
776 static void _test_range_put_text(unsigned line
, IHTMLTxtRange
*range
, const char *text
)
779 BSTR bstr
= a2bstr(text
);
781 hres
= IHTMLTxtRange_put_text(range
, bstr
);
782 ok_(__FILE__
,line
) (hres
== S_OK
, "put_text failed: %08x\n", hres
);
784 _test_range_text(line
, range
, NULL
);
787 #define test_range_inrange(r1,r2,b) _test_range_inrange(__LINE__,r1,r2,b)
788 static void _test_range_inrange(unsigned line
, IHTMLTxtRange
*range1
, IHTMLTxtRange
*range2
, VARIANT_BOOL exb
)
794 hres
= IHTMLTxtRange_inRange(range1
, range2
, &b
);
795 ok_(__FILE__
,line
) (hres
== S_OK
, "(1->2) isEqual failed: %08x\n", hres
);
796 ok_(__FILE__
,line
) (b
== exb
, "(1->2) b=%x, expected %x\n", b
, exb
);
799 #define test_range_isequal(r1,r2,b) _test_range_isequal(__LINE__,r1,r2,b)
800 static void _test_range_isequal(unsigned line
, IHTMLTxtRange
*range1
, IHTMLTxtRange
*range2
, VARIANT_BOOL exb
)
806 hres
= IHTMLTxtRange_isEqual(range1
, range2
, &b
);
807 ok_(__FILE__
,line
) (hres
== S_OK
, "(1->2) isEqual failed: %08x\n", hres
);
808 ok_(__FILE__
,line
) (b
== exb
, "(1->2) b=%x, expected %x\n", b
, exb
);
811 hres
= IHTMLTxtRange_isEqual(range2
, range1
, &b
);
812 ok_(__FILE__
,line
) (hres
== S_OK
, "(2->1) isEqual failed: %08x\n", hres
);
813 ok_(__FILE__
,line
) (b
== exb
, "(2->1) b=%x, expected %x\n", b
, exb
);
816 test_range_inrange(range1
, range2
, VARIANT_TRUE
);
817 test_range_inrange(range2
, range1
, VARIANT_TRUE
);
821 #define test_range_parent(r,t) _test_range_parent(__LINE__,r,t)
822 static void _test_range_parent(unsigned line
, IHTMLTxtRange
*range
, elem_type_t type
)
827 hres
= IHTMLTxtRange_parentElement(range
, &elem
);
828 ok_(__FILE__
,line
) (hres
== S_OK
, "parentElement failed: %08x\n", hres
);
830 _test_elem_type(line
, (IUnknown
*)elem
, type
);
832 IHTMLElement_Release(elem
);
835 #define test_elem_collection(c,t,l) _test_elem_collection(__LINE__,c,t,l)
836 static void _test_elem_collection(unsigned line
, IUnknown
*unk
,
837 const elem_type_t
*elem_types
, long exlen
)
839 IHTMLElementCollection
*col
;
846 hres
= IUnknown_QueryInterface(unk
, &IID_IHTMLElementCollection
, (void**)&col
);
847 ok_(__FILE__
,line
) (hres
== S_OK
, "Could not get IHTMLElementCollection: %08x\n", hres
);
849 test_disp((IUnknown
*)col
, &DIID_DispHTMLElementCollection
);
851 hres
= IHTMLElementCollection_get_length(col
, &len
);
852 ok_(__FILE__
,line
) (hres
== S_OK
, "get_length failed: %08x\n", hres
);
853 ok_(__FILE__
,line
) (len
== exlen
, "len=%ld, expected %ld\n", len
, exlen
);
858 V_VT(&index
) = VT_EMPTY
;
861 for(i
=0; i
<len
; i
++) {
863 disp
= (void*)0xdeadbeef;
864 hres
= IHTMLElementCollection_item(col
, name
, index
, &disp
);
865 ok_(__FILE__
,line
) (hres
== S_OK
, "item(%d) failed: %08x\n", i
, hres
);
866 ok_(__FILE__
,line
) (disp
!= NULL
, "item returned NULL\n");
867 if(FAILED(hres
) || !disp
)
870 _test_elem_type(line
, (IUnknown
*)disp
, elem_types
[i
]);
871 IDispatch_Release(disp
);
875 disp
= (void*)0xdeadbeef;
876 hres
= IHTMLElementCollection_item(col
, name
, index
, &disp
);
877 ok_(__FILE__
,line
) (hres
== S_OK
, "item failed: %08x\n", hres
);
878 ok_(__FILE__
,line
) (disp
== NULL
, "disp != NULL\n");
881 disp
= (void*)0xdeadbeef;
882 hres
= IHTMLElementCollection_item(col
, name
, index
, &disp
);
883 ok_(__FILE__
,line
) (hres
== E_INVALIDARG
, "item failed: %08x, expected E_INVALIDARG\n", hres
);
884 ok_(__FILE__
,line
) (disp
== NULL
, "disp != NULL\n");
886 IHTMLElementCollection_Release(col
);
889 #define test_elem_getelembytag(u,t,l) _test_elem_getelembytag(__LINE__,u,t,l)
890 static void _test_elem_getelembytag(unsigned line
, IUnknown
*unk
, elem_type_t type
, long exlen
)
892 IHTMLElement2
*elem
= _get_elem2_iface(line
, unk
);
893 IHTMLElementCollection
*col
= NULL
;
894 elem_type_t
*types
= NULL
;
899 tmp
= a2bstr(elem_type_infos
[type
].tag
);
900 hres
= IHTMLElement2_getElementsByTagName(elem
, tmp
, &col
);
902 IHTMLElement2_Release(elem
);
903 ok_(__FILE__
,line
) (hres
== S_OK
, "getElementByTagName failed: %08x\n", hres
);
904 ok_(__FILE__
,line
) (col
!= NULL
, "col == NULL\n");
907 types
= HeapAlloc(GetProcessHeap(), 0, exlen
*sizeof(elem_type_t
));
908 for(i
=0; i
<exlen
; i
++)
912 _test_elem_collection(line
, (IUnknown
*)col
, types
, exlen
);
914 HeapFree(GetProcessHeap(), 0, types
);
917 #define get_first_child(n) _get_first_child(__LINE__,n)
918 static IHTMLDOMNode
*_get_first_child(unsigned line
, IUnknown
*unk
)
920 IHTMLDOMNode
*node
= _get_node_iface(line
, unk
);
921 IHTMLDOMNode
*child
= NULL
;
924 hres
= IHTMLDOMNode_get_firstChild(node
, &child
);
925 IHTMLDOMNode_Release(node
);
926 ok_(__FILE__
,line
) (hres
== S_OK
, "get_firstChild failed: %08x\n", hres
);
931 #define test_node_has_child(u,b) _test_node_has_child(__LINE__,u,b)
932 static void _test_node_has_child(unsigned line
, IUnknown
*unk
, VARIANT_BOOL exb
)
934 IHTMLDOMNode
*node
= _get_node_iface(line
, unk
);
935 VARIANT_BOOL b
= 0xdead;
938 hres
= IHTMLDOMNode_hasChildNodes(node
, &b
);
939 ok_(__FILE__
,line
) (hres
== S_OK
, "hasChildNodes failed: %08x\n", hres
);
940 ok_(__FILE__
,line
) (b
== exb
, "hasChildNodes=%x, expected %x\n", b
, exb
);
942 IHTMLDOMNode_Release(node
);
945 #define test_node_get_parent(u) _test_node_get_parent(__LINE__,u)
946 static IHTMLDOMNode
*_test_node_get_parent(unsigned line
, IUnknown
*unk
)
948 IHTMLDOMNode
*node
= _get_node_iface(line
, unk
);
949 IHTMLDOMNode
*parent
;
952 hres
= IHTMLDOMNode_get_parentNode(node
, &parent
);
953 IHTMLDOMNode_Release(node
);
954 ok_(__FILE__
,line
) (hres
== S_OK
, "get_parentNode failed: %08x\n", hres
);
959 #define get_node_type(n) _get_node_type(__LINE__,n)
960 static long _get_node_type(unsigned line
, IUnknown
*unk
)
962 IHTMLDOMNode
*node
= _get_node_iface(line
, unk
);
966 hres
= IHTMLDOMNode_get_nodeType(node
, &type
);
967 ok(hres
== S_OK
, "get_nodeType failed: %08x\n", hres
);
969 IHTMLDOMNode_Release(node
);
974 #define elem_get_scroll_height(u) _elem_get_scroll_height(__LINE__,u)
975 static long _elem_get_scroll_height(unsigned line
, IUnknown
*unk
)
977 IHTMLElement2
*elem
= _get_elem2_iface(line
, unk
);
978 IHTMLTextContainer
*txtcont
;
979 long l
= -1, l2
= -1;
982 hres
= IHTMLElement2_get_scrollHeight(elem
, &l
);
983 ok_(__FILE__
,line
) (hres
== S_OK
, "get_scrollHeight failed: %08x\n", hres
);
984 IHTMLElement2_Release(elem
);
986 hres
= IUnknown_QueryInterface(unk
, &IID_IHTMLTextContainer
, (void**)&txtcont
);
987 ok_(__FILE__
,line
) (hres
== S_OK
, "Could not get IHTMLTextContainer: %08x\n", hres
);
989 hres
= IHTMLTextContainer_get_scrollHeight(txtcont
, &l2
);
990 IHTMLTextContainer_Release(txtcont
);
991 ok_(__FILE__
,line
) (hres
== S_OK
, "IHTMLTextContainer::get_scrollHeight failed: %ld\n", l2
);
992 ok_(__FILE__
,line
) (l
== l2
, "unexpected height %ld, expected %ld\n", l2
, l
);
997 #define elem_get_scroll_width(u) _elem_get_scroll_width(__LINE__,u)
998 static long _elem_get_scroll_width(unsigned line
, IUnknown
*unk
)
1000 IHTMLElement2
*elem
= _get_elem2_iface(line
, unk
);
1001 IHTMLTextContainer
*txtcont
;
1002 long l
= -1, l2
= -1;
1005 hres
= IHTMLElement2_get_scrollWidth(elem
, &l
);
1006 ok_(__FILE__
,line
) (hres
== S_OK
, "get_scrollWidth failed: %08x\n", hres
);
1007 IHTMLElement2_Release(elem
);
1009 hres
= IUnknown_QueryInterface(unk
, &IID_IHTMLTextContainer
, (void**)&txtcont
);
1010 ok_(__FILE__
,line
) (hres
== S_OK
, "Could not get IHTMLTextContainer: %08x\n", hres
);
1012 hres
= IHTMLTextContainer_get_scrollWidth(txtcont
, &l2
);
1013 IHTMLTextContainer_Release(txtcont
);
1014 ok_(__FILE__
,line
) (hres
== S_OK
, "IHTMLTextContainer::get_scrollWidth failed: %ld\n", l2
);
1015 ok_(__FILE__
,line
) (l
== l2
, "unexpected width %ld, expected %ld\n", l2
, l
);
1020 #define elem_get_scroll_top(u) _elem_get_scroll_top(__LINE__,u)
1021 static long _elem_get_scroll_top(unsigned line
, IUnknown
*unk
)
1023 IHTMLElement2
*elem
= _get_elem2_iface(line
, unk
);
1024 IHTMLTextContainer
*txtcont
;
1025 long l
= -1, l2
= -1;
1028 hres
= IHTMLElement2_get_scrollTop(elem
, &l
);
1029 ok_(__FILE__
,line
) (hres
== S_OK
, "get_scrollTop failed: %08x\n", hres
);
1030 IHTMLElement2_Release(elem
);
1032 hres
= IUnknown_QueryInterface(unk
, &IID_IHTMLTextContainer
, (void**)&txtcont
);
1033 ok_(__FILE__
,line
) (hres
== S_OK
, "Could not get IHTMLTextContainer: %08x\n", hres
);
1035 hres
= IHTMLTextContainer_get_scrollTop(txtcont
, &l2
);
1036 IHTMLTextContainer_Release(txtcont
);
1037 ok_(__FILE__
,line
) (hres
== S_OK
, "IHTMLTextContainer::get_scrollTop failed: %ld\n", l2
);
1038 ok_(__FILE__
,line
) (l
== l2
, "unexpected top %ld, expected %ld\n", l2
, l
);
1043 #define test_img_set_src(u,s) _test_img_set_src(__LINE__,u,s)
1044 static void _test_img_set_src(unsigned line
, IUnknown
*unk
, const char *src
)
1046 IHTMLImgElement
*img
= _get_img_iface(line
, unk
);
1051 hres
= IHTMLImgElement_put_src(img
, tmp
);
1052 IHTMLImgElement_Release(img
);
1054 ok_(__FILE__
,line
) (hres
== S_OK
, "put_src failed: %08x\n", hres
);
1057 #define test_img_alt(u,a) _test_img_alt(__LINE__,u,a)
1058 static void _test_img_alt(unsigned line
, IUnknown
*unk
, const char *exalt
)
1060 IHTMLImgElement
*img
= _get_img_iface(line
, unk
);
1064 hres
= IHTMLImgElement_get_alt(img
, &alt
);
1065 ok_(__FILE__
,line
) (hres
== S_OK
, "get_alt failed: %08x\n", hres
);
1067 ok_(__FILE__
,line
) (!strcmp_wa(alt
, exalt
), "inexopected alt %s\n", dbgstr_w(alt
));
1069 ok_(__FILE__
,line
) (!alt
, "alt != NULL\n");
1073 #define test_img_set_alt(u,a) _test_img_set_alt(__LINE__,u,a)
1074 static void _test_img_set_alt(unsigned line
, IUnknown
*unk
, const char *alt
)
1076 IHTMLImgElement
*img
= _get_img_iface(line
, unk
);
1081 hres
= IHTMLImgElement_put_alt(img
, tmp
);
1082 ok_(__FILE__
,line
) (hres
== S_OK
, "get_alt failed: %08x\n", hres
);
1085 _test_img_alt(line
, unk
, alt
);
1088 #define test_input_get_disabled(i,b) _test_input_get_disabled(__LINE__,i,b)
1089 static void _test_input_get_disabled(unsigned line
, IHTMLInputElement
*input
, VARIANT_BOOL exb
)
1091 VARIANT_BOOL disabled
= 100;
1094 hres
= IHTMLInputElement_get_disabled(input
, &disabled
);
1095 ok_(__FILE__
,line
) (hres
== S_OK
, "get_disabled failed: %08x\n", hres
);
1096 ok_(__FILE__
,line
) (disabled
== exb
, "disabled=%x, expected %x\n", disabled
, exb
);
1099 #define test_input_set_disabled(i,b) _test_input_set_disabled(__LINE__,i,b)
1100 static void _test_input_set_disabled(unsigned line
, IHTMLInputElement
*input
, VARIANT_BOOL b
)
1104 hres
= IHTMLInputElement_put_disabled(input
, b
);
1105 ok_(__FILE__
,line
) (hres
== S_OK
, "get_disabled failed: %08x\n", hres
);
1107 _test_input_get_disabled(line
, input
, b
);
1110 #define test_input_value(o,t) _test_input_value(__LINE__,o,t)
1111 static void _test_input_value(unsigned line
, IUnknown
*unk
, const char *exval
)
1113 IHTMLInputElement
*input
;
1117 hres
= IUnknown_QueryInterface(unk
, &IID_IHTMLInputElement
, (void**)&input
);
1118 ok_(__FILE__
,line
) (hres
== S_OK
, "Could not get IHTMLInputElement: %08x\n", hres
);
1122 hres
= IHTMLInputElement_get_value(input
, &bstr
);
1123 ok_(__FILE__
,line
) (hres
== S_OK
, "get_value failed: %08x\n", hres
);
1125 ok_(__FILE__
,line
) (!strcmp_wa(bstr
, exval
), "value=%s\n", dbgstr_w(bstr
));
1127 ok_(__FILE__
,line
) (!exval
, "exval != NULL\n");
1128 SysFreeString(bstr
);
1129 IHTMLInputElement_Release(input
);
1132 #define test_input_put_value(o,v) _test_input_put_value(__LINE__,o,v)
1133 static void _test_input_put_value(unsigned line
, IUnknown
*unk
, const char *val
)
1135 IHTMLInputElement
*input
;
1139 hres
= IUnknown_QueryInterface(unk
, &IID_IHTMLInputElement
, (void**)&input
);
1140 ok_(__FILE__
,line
) (hres
== S_OK
, "Could not get IHTMLInputElement: %08x\n", hres
);
1145 hres
= IHTMLInputElement_get_value(input
, &bstr
);
1146 ok_(__FILE__
,line
) (hres
== S_OK
, "get_value failed: %08x\n", hres
);
1147 SysFreeString(bstr
);
1148 IHTMLInputElement_Release(input
);
1151 #define get_child_nodes(u) _get_child_nodes(__LINE__,u)
1152 static IHTMLDOMChildrenCollection
*_get_child_nodes(unsigned line
, IUnknown
*unk
)
1154 IHTMLDOMNode
*node
= _get_node_iface(line
, unk
);
1155 IHTMLDOMChildrenCollection
*col
= NULL
;
1159 hres
= IHTMLDOMNode_get_childNodes(node
, &disp
);
1160 IHTMLDOMNode_Release(node
);
1161 ok_(__FILE__
,line
) (hres
== S_OK
, "get_childNodes failed: %08x\n", hres
);
1165 hres
= IDispatch_QueryInterface(disp
, &IID_IHTMLDOMChildrenCollection
, (void**)&col
);
1166 IDispatch_Release(disp
);
1167 ok_(__FILE__
,line
) (hres
== S_OK
, "Could not get IHTMLDOMChildrenCollection: %08x\n", hres
);
1172 #define test_elem_class(u,c) _test_elem_class(__LINE__,u,c)
1173 static void _test_elem_class(unsigned line
, IUnknown
*unk
, const char *exclass
)
1175 IHTMLElement
*elem
= _get_elem_iface(line
, unk
);
1176 BSTR
class = (void*)0xdeadbeef;
1179 hres
= IHTMLElement_get_className(elem
, &class);
1180 IHTMLElement_Release(elem
);
1181 ok_(__FILE__
,line
) (hres
== S_OK
, "get_className failed: %08x\n", hres
);
1183 ok_(__FILE__
,line
) (!strcmp_wa(class, exclass
), "unexpected className %s\n", dbgstr_w(class));
1185 ok_(__FILE__
,line
) (!class, "class != NULL\n");
1186 SysFreeString(class);
1189 #define test_elem_tabindex(u,i) _test_elem_tabindex(__LINE__,u,i)
1190 static void _test_elem_tabindex(unsigned line
, IUnknown
*unk
, short exindex
)
1192 IHTMLElement2
*elem2
= _get_elem2_iface(line
, unk
);
1196 hres
= IHTMLElement2_get_tabIndex(elem2
, &index
);
1197 IHTMLElement2_Release(elem2
);
1198 ok_(__FILE__
,line
) (hres
== S_OK
, "get_tabIndex failed: %08x\n", hres
);
1199 ok_(__FILE__
,line
) (index
== exindex
, "unexpected index %d\n", index
);
1202 #define test_elem_set_tabindex(u,i) _test_elem_set_tabindex(__LINE__,u,i)
1203 static void _test_elem_set_tabindex(unsigned line
, IUnknown
*unk
, short index
)
1205 IHTMLElement2
*elem2
= _get_elem2_iface(line
, unk
);
1208 hres
= IHTMLElement2_put_tabIndex(elem2
, index
);
1209 IHTMLElement2_Release(elem2
);
1210 ok_(__FILE__
,line
) (hres
== S_OK
, "get_tabIndex failed: %08x\n", hres
);
1212 _test_elem_tabindex(line
, unk
, index
);
1215 #define test_elem_set_class(u,c) _test_elem_set_class(__LINE__,u,c)
1216 static void _test_elem_set_class(unsigned line
, IUnknown
*unk
, const char *class)
1218 IHTMLElement
*elem
= _get_elem_iface(line
, unk
);
1222 tmp
= class ? a2bstr(class) : NULL
;
1223 hres
= IHTMLElement_put_className(elem
, tmp
);
1224 IHTMLElement_Release(elem
);
1225 ok_(__FILE__
,line
) (hres
== S_OK
, "put_className failed: %08x\n", hres
);
1228 _test_elem_class(line
, unk
, class);
1231 #define get_child_item(c,i) _get_child_item(__LINE__,c,i)
1232 static IHTMLDOMNode
*_get_child_item(unsigned line
, IHTMLDOMChildrenCollection
*col
, long idx
)
1234 IHTMLDOMNode
*node
= NULL
;
1238 hres
= IHTMLDOMChildrenCollection_item(col
, idx
, &disp
);
1239 ok(hres
== S_OK
, "item failed: %08x\n", hres
);
1241 node
= _get_node_iface(line
, (IUnknown
*)disp
);
1242 IDispatch_Release(disp
);
1247 #define test_elem_id(e,i) _test_elem_id(__LINE__,e,i)
1248 static void _test_elem_id(unsigned line
, IUnknown
*unk
, const char *exid
)
1250 IHTMLElement
*elem
= _get_elem_iface(line
, unk
);
1251 BSTR id
= (void*)0xdeadbeef;
1254 hres
= IHTMLElement_get_id(elem
, &id
);
1255 IHTMLElement_Release(elem
);
1256 ok_(__FILE__
,line
) (hres
== S_OK
, "get_id failed: %08x\n", hres
);
1259 ok_(__FILE__
,line
) (!strcmp_wa(id
, exid
), "unexpected id %s\n", dbgstr_w(id
));
1261 ok_(__FILE__
,line
) (!id
, "id=%s\n", dbgstr_w(id
));
1266 #define test_elem_put_id(u,i) _test_elem_put_id(__LINE__,u,i)
1267 static void _test_elem_put_id(unsigned line
, IUnknown
*unk
, const char *new_id
)
1269 IHTMLElement
*elem
= _get_elem_iface(line
, unk
);
1270 BSTR tmp
= a2bstr(new_id
);
1273 hres
= IHTMLElement_put_id(elem
, tmp
);
1274 IHTMLElement_Release(elem
);
1276 ok_(__FILE__
,line
) (hres
== S_OK
, "put_id failed: %08x\n", hres
);
1278 _test_elem_id(line
, unk
, new_id
);
1281 #define test_elem_title(u,t) _test_elem_title(__LINE__,u,t)
1282 static void _test_elem_title(unsigned line
, IUnknown
*unk
, const char *extitle
)
1284 IHTMLElement
*elem
= _get_elem_iface(line
, unk
);
1288 hres
= IHTMLElement_get_title(elem
, &title
);
1289 IHTMLElement_Release(elem
);
1290 ok_(__FILE__
,line
) (hres
== S_OK
, "get_title failed: %08x\n", hres
);
1292 ok_(__FILE__
,line
) (!strcmp_wa(title
, extitle
), "unexpected title %s\n", dbgstr_w(title
));
1294 ok_(__FILE__
,line
) (!title
, "title=%s, expected NULL\n", dbgstr_w(title
));
1296 SysFreeString(title
);
1299 #define test_elem_set_title(u,t) _test_elem_set_title(__LINE__,u,t)
1300 static void _test_elem_set_title(unsigned line
, IUnknown
*unk
, const char *title
)
1302 IHTMLElement
*elem
= _get_elem_iface(line
, unk
);
1306 tmp
= a2bstr(title
);
1307 hres
= IHTMLElement_put_title(elem
, tmp
);
1308 ok_(__FILE__
,line
) (hres
== S_OK
, "get_title failed: %08x\n", hres
);
1310 IHTMLElement_Release(elem
);
1314 #define test_node_get_value_str(u,e) _test_node_get_value_str(__LINE__,u,e)
1315 static void _test_node_get_value_str(unsigned line
, IUnknown
*unk
, const char *exval
)
1317 IHTMLDOMNode
*node
= _get_node_iface(line
, unk
);
1321 hres
= IHTMLDOMNode_get_nodeValue(node
, &var
);
1322 IHTMLDOMNode_Release(node
);
1323 ok_(__FILE__
,line
) (hres
== S_OK
, "get_nodeValue failed: %08x, expected VT_BSTR\n", hres
);
1326 ok_(__FILE__
,line
) (V_VT(&var
) == VT_BSTR
, "vt=%d\n", V_VT(&var
));
1327 ok_(__FILE__
,line
) (!strcmp_wa(V_BSTR(&var
), exval
), "unexpected value %s\n", dbgstr_w(V_BSTR(&var
)));
1329 ok_(__FILE__
,line
) (V_VT(&var
) == VT_NULL
, "vt=%d, expected VT_NULL\n", V_VT(&var
));
1335 #define test_node_put_value_str(u,v) _test_node_put_value_str(__LINE__,u,v)
1336 static void _test_node_put_value_str(unsigned line
, IUnknown
*unk
, const char *val
)
1338 IHTMLDOMNode
*node
= _get_node_iface(line
, unk
);
1342 V_VT(&var
) = VT_BSTR
;
1343 V_BSTR(&var
) = a2bstr(val
);
1345 hres
= IHTMLDOMNode_put_nodeValue(node
, var
);
1346 ok_(__FILE__
,line
) (hres
== S_OK
, "get_nodeValue failed: %08x, expected VT_BSTR\n", hres
);
1347 IHTMLDOMNode_Release(node
);
1351 #define test_elem_client_size(u) _test_elem_client_size(__LINE__,u)
1352 static void _test_elem_client_size(unsigned line
, IUnknown
*unk
)
1354 IHTMLElement2
*elem
= _get_elem2_iface(line
, unk
);
1358 hres
= IHTMLElement2_get_clientWidth(elem
, &l
);
1359 ok_(__FILE__
,line
) (hres
== S_OK
, "get_clientWidth failed: %08x\n", hres
);
1360 hres
= IHTMLElement2_get_clientHeight(elem
, &l
);
1361 ok_(__FILE__
,line
) (hres
== S_OK
, "get_clientHeight failed: %08x\n", hres
);
1363 IHTMLElement2_Release(elem
);
1366 #define test_create_elem(d,t) _test_create_elem(__LINE__,d,t)
1367 static IHTMLElement
*_test_create_elem(unsigned line
, IHTMLDocument2
*doc
, const char *tag
)
1369 IHTMLElement
*elem
= NULL
;
1374 hres
= IHTMLDocument2_createElement(doc
, tmp
, &elem
);
1375 ok_(__FILE__
,line
) (hres
== S_OK
, "createElement failed: %08x\n", hres
);
1376 ok_(__FILE__
,line
) (elem
!= NULL
, "elem == NULL\n");
1381 #define test_create_text(d,t) _test_create_text(__LINE__,d,t)
1382 static IHTMLDOMNode
*_test_create_text(unsigned line
, IHTMLDocument2
*doc
, const char *text
)
1384 IHTMLDocument3
*doc3
;
1385 IHTMLDOMNode
*node
= NULL
;
1389 hres
= IHTMLDocument2_QueryInterface(doc
, &IID_IHTMLDocument3
, (void**)&doc3
);
1390 ok_(__FILE__
,line
) (hres
== S_OK
, "Could not get IHTMLDocument3: %08x\n", hres
);
1393 hres
= IHTMLDocument3_createTextNode(doc3
, tmp
, &node
);
1394 IHTMLDocument3_Release(doc3
);
1395 ok_(__FILE__
,line
) (hres
== S_OK
, "createElement failed: %08x\n", hres
);
1396 ok_(__FILE__
,line
) (node
!= NULL
, "node == NULL\n");
1401 #define test_node_append_child(n,c) _test_node_append_child(__LINE__,n,c)
1402 static IHTMLDOMNode
*_test_node_append_child(unsigned line
, IUnknown
*node_unk
, IUnknown
*child_unk
)
1404 IHTMLDOMNode
*node
= _get_node_iface(line
, node_unk
);
1405 IHTMLDOMNode
*child
= _get_node_iface(line
, child_unk
);
1406 IHTMLDOMNode
*new_child
= NULL
;
1409 hres
= IHTMLDOMNode_appendChild(node
, child
, &new_child
);
1410 ok_(__FILE__
,line
) (hres
== S_OK
, "appendChild failed: %08x\n", hres
);
1411 ok_(__FILE__
,line
) (new_child
!= NULL
, "new_child == NULL\n");
1412 /* TODO ok_(__FILE__,line) (new_child != child, "new_child == child\n"); */
1414 IHTMLDOMNode_Release(node
);
1415 IHTMLDOMNode_Release(child
);
1420 #define test_node_remove_child(n,c) _test_node_remove_child(__LINE__,n,c)
1421 static void _test_node_remove_child(unsigned line
, IUnknown
*unk
, IHTMLDOMNode
*child
)
1423 IHTMLDOMNode
*node
= _get_node_iface(line
, unk
);
1424 IHTMLDOMNode
*new_node
= NULL
;
1427 hres
= IHTMLDOMNode_removeChild(node
, child
, &new_node
);
1428 ok_(__FILE__
,line
) (hres
== S_OK
, "appendChild failed: %08x\n", hres
);
1429 ok_(__FILE__
,line
) (new_node
!= NULL
, "new_node == NULL\n");
1430 /* TODO ok_(__FILE__,line) (new_node != child, "new_node == child\n"); */
1432 IHTMLDOMNode_Release(node
);
1433 IHTMLDOMNode_Release(new_node
);
1436 #define test_doc_title(d,t) _test_doc_title(__LINE__,d,t)
1437 static void _test_doc_title(unsigned line
, IHTMLDocument2
*doc
, const char *extitle
)
1442 hres
= IHTMLDocument2_get_title(doc
, &title
);
1443 ok_(__FILE__
,line
) (hres
== S_OK
, "get_title failed: %08x\n", hres
);
1444 ok_(__FILE__
,line
) (!strcmp_wa(title
, extitle
), "unexpected title %s\n", dbgstr_w(title
));
1445 SysFreeString(title
);
1448 #define test_doc_set_title(d,t) _test_doc_set_title(__LINE__,d,t)
1449 static void _test_doc_set_title(unsigned line
, IHTMLDocument2
*doc
, const char *title
)
1454 tmp
= a2bstr(title
);
1455 hres
= IHTMLDocument2_put_title(doc
, tmp
);
1456 ok_(__FILE__
,line
) (hres
== S_OK
, "get_title failed: %08x\n", hres
);
1460 static void test_elem_col_item(IHTMLElementCollection
*col
, LPCWSTR n
,
1461 const elem_type_t
*elem_types
, long len
)
1464 VARIANT name
, index
;
1468 V_VT(&index
) = VT_EMPTY
;
1469 V_VT(&name
) = VT_BSTR
;
1470 V_BSTR(&name
) = SysAllocString(n
);
1472 hres
= IHTMLElementCollection_item(col
, name
, index
, &disp
);
1473 ok(hres
== S_OK
, "item failed: %08x\n", hres
);
1475 test_elem_collection((IUnknown
*)disp
, elem_types
, len
);
1476 IDispatch_Release(disp
);
1477 ok(hres
== S_OK
, "Could not get IHTMLElementCollection interface: %08x\n", hres
);
1481 V_VT(&index
) = VT_I4
;
1483 for(i
=0; i
<len
; i
++) {
1485 disp
= (void*)0xdeadbeef;
1486 hres
= IHTMLElementCollection_item(col
, name
, index
, &disp
);
1487 ok(hres
== S_OK
, "item failed: %08x\n", hres
);
1488 ok(disp
!= NULL
, "disp == NULL\n");
1489 if(FAILED(hres
) || !disp
)
1492 test_elem_type((IUnknown
*)disp
, elem_types
[i
]);
1494 IDispatch_Release(disp
);
1498 disp
= (void*)0xdeadbeef;
1499 hres
= IHTMLElementCollection_item(col
, name
, index
, &disp
);
1500 ok(hres
== S_OK
, "item failed: %08x\n", hres
);
1501 ok(disp
== NULL
, "disp != NULL\n");
1504 disp
= (void*)0xdeadbeef;
1505 hres
= IHTMLElementCollection_item(col
, name
, index
, &disp
);
1506 ok(hres
== E_INVALIDARG
, "item failed: %08x, expected E_INVALIDARG\n", hres
);
1507 ok(disp
== NULL
, "disp != NULL\n");
1510 SysFreeString(V_BSTR(&name
));
1513 static IHTMLElement
*get_elem_by_id(IHTMLDocument2
*doc
, LPCWSTR id
, BOOL expect_success
)
1515 IHTMLElementCollection
*col
;
1517 IDispatch
*disp
= (void*)0xdeadbeef;
1518 VARIANT name
, index
;
1521 hres
= IHTMLDocument2_get_all(doc
, &col
);
1522 ok(hres
== S_OK
, "get_all failed: %08x\n", hres
);
1523 ok(col
!= NULL
, "col == NULL\n");
1524 if(FAILED(hres
) || !col
)
1527 V_VT(&index
) = VT_EMPTY
;
1528 V_VT(&name
) = VT_BSTR
;
1529 V_BSTR(&name
) = SysAllocString(id
);
1531 hres
= IHTMLElementCollection_item(col
, name
, index
, &disp
);
1532 IHTMLElementCollection_Release(col
);
1533 SysFreeString(V_BSTR(&name
));
1534 ok(hres
== S_OK
, "item failed: %08x\n", hres
);
1535 if(!expect_success
) {
1536 ok(disp
== NULL
, "disp != NULL\n");
1540 ok(disp
!= NULL
, "disp == NULL\n");
1544 elem
= get_elem_iface((IUnknown
*)disp
);
1545 IDispatch_Release(disp
);
1550 static IHTMLElement
*get_doc_elem_by_id(IHTMLDocument2
*doc
, LPCWSTR id
)
1552 IHTMLDocument3
*doc3
;
1557 hres
= IHTMLDocument2_QueryInterface(doc
, &IID_IHTMLDocument3
, (void**)&doc3
);
1558 ok(hres
== S_OK
, "Could not get IHTMLDocument3 iface: %08x\n", hres
);
1560 tmp
= SysAllocString(id
);
1561 hres
= IHTMLDocument3_getElementById(doc3
, tmp
, &elem
);
1563 ok(hres
== S_OK
, "getElementById(%s) failed: %08x\n", dbgstr_w(id
), hres
);
1565 IHTMLDocument3_Release(doc3
);
1570 static void test_select_elem(IHTMLSelectElement
*select
)
1572 test_select_type(select
, "select-one");
1573 test_select_length(select
, 2);
1574 test_select_selidx(select
, 0);
1575 test_select_put_selidx(select
, 1);
1577 test_select_set_value(select
, "val1");
1578 test_select_value(select
, "val1");
1581 static void test_create_option_elem(IHTMLDocument2
*doc
)
1583 IHTMLOptionElement
*option
;
1585 option
= create_option_elem(doc
, "test text", "test value");
1587 test_option_put_text(option
, "new text");
1588 test_option_put_value(option
, "new value");
1590 IHTMLOptionElement_Release(option
);
1593 static IHTMLTxtRange
*test_create_body_range(IHTMLDocument2
*doc
)
1595 IHTMLBodyElement
*body
;
1596 IHTMLTxtRange
*range
;
1600 hres
= IHTMLDocument2_get_body(doc
, &elem
);
1601 ok(hres
== S_OK
, "get_body failed: %08x\n", hres
);
1603 hres
= IHTMLElement_QueryInterface(elem
, &IID_IHTMLBodyElement
, (void**)&body
);
1604 IHTMLElement_Release(elem
);
1606 hres
= IHTMLBodyElement_createTextRange(body
, &range
);
1607 IHTMLBodyElement_Release(body
);
1608 ok(hres
== S_OK
, "createTextRange failed: %08x\n", hres
);
1613 static void test_txtrange(IHTMLDocument2
*doc
)
1615 IHTMLTxtRange
*body_range
, *range
, *range2
;
1616 IHTMLSelectionObject
*selection
;
1617 IDispatch
*disp_range
;
1620 body_range
= test_create_body_range(doc
);
1622 test_range_text(body_range
, "test abc 123\r\nit's text");
1624 hres
= IHTMLTxtRange_duplicate(body_range
, &range
);
1625 ok(hres
== S_OK
, "duplicate failed: %08x\n", hres
);
1627 hres
= IHTMLTxtRange_duplicate(body_range
, &range2
);
1628 ok(hres
== S_OK
, "duplicate failed: %08x\n", hres
);
1629 test_range_isequal(range
, range2
, VARIANT_TRUE
);
1631 test_range_text(range
, "test abc 123\r\nit's text");
1632 test_range_text(body_range
, "test abc 123\r\nit's text");
1634 test_range_collapse(range
, TRUE
);
1635 test_range_isequal(range
, range2
, VARIANT_FALSE
);
1636 test_range_inrange(range
, range2
, VARIANT_FALSE
);
1637 test_range_inrange(range2
, range
, VARIANT_TRUE
);
1638 IHTMLTxtRange_Release(range2
);
1640 test_range_expand(range
, wordW
, VARIANT_TRUE
, "test ");
1641 test_range_expand(range
, wordW
, VARIANT_FALSE
, "test ");
1642 test_range_move(range
, characterW
, 2, 2);
1643 test_range_expand(range
, wordW
, VARIANT_TRUE
, "test ");
1645 test_range_collapse(range
, FALSE
);
1646 test_range_expand(range
, wordW
, VARIANT_TRUE
, "abc ");
1648 test_range_collapse(range
, FALSE
);
1649 test_range_expand(range
, wordW
, VARIANT_TRUE
, "123");
1650 test_range_expand(range
, wordW
, VARIANT_FALSE
, "123");
1651 test_range_move(range
, characterW
, 2, 2);
1652 test_range_expand(range
, wordW
, VARIANT_TRUE
, "123");
1653 test_range_moveend(range
, characterW
, -5, -5);
1654 test_range_text(range
, NULL
);
1655 test_range_moveend(range
, characterW
, 3, 3);
1656 test_range_text(range
, "c 1");
1657 test_range_expand(range
, texteditW
, VARIANT_TRUE
, "test abc 123\r\nit's text");
1658 test_range_collapse(range
, TRUE
);
1659 test_range_move(range
, characterW
, 4, 4);
1660 test_range_moveend(range
, characterW
, 1, 1);
1661 test_range_text(range
, " ");
1662 test_range_move(range
, wordW
, 1, 1);
1663 test_range_moveend(range
, characterW
, 2, 2);
1664 test_range_text(range
, "ab");
1666 IHTMLTxtRange_Release(range
);
1668 hres
= IHTMLTxtRange_duplicate(body_range
, &range
);
1669 ok(hres
== S_OK
, "duplicate failed: %08x\n", hres
);
1671 test_range_text(range
, "test abc 123\r\nit's text");
1672 test_range_move(range
, characterW
, 3, 3);
1673 test_range_moveend(range
, characterW
, 1, 1);
1674 test_range_text(range
, "t");
1675 test_range_moveend(range
, characterW
, 3, 3);
1676 test_range_text(range
, "t ab");
1677 test_range_moveend(range
, characterW
, -2, -2);
1678 test_range_text(range
, "t ");
1679 test_range_move(range
, characterW
, 6, 6);
1680 test_range_moveend(range
, characterW
, 3, 3);
1681 test_range_text(range
, "123");
1682 test_range_moveend(range
, characterW
, 2, 2);
1683 test_range_text(range
, "123\r\ni");
1685 IHTMLTxtRange_Release(range
);
1687 hres
= IHTMLTxtRange_duplicate(body_range
, &range
);
1688 ok(hres
== S_OK
, "duplicate failed: %08x\n", hres
);
1690 test_range_move(range
, wordW
, 1, 1);
1691 test_range_moveend(range
, characterW
, 2, 2);
1692 test_range_text(range
, "ab");
1694 test_range_move(range
, characterW
, -2, -2);
1695 test_range_moveend(range
, characterW
, 2, 2);
1696 test_range_text(range
, "t ");
1698 test_range_move(range
, wordW
, 3, 3);
1699 test_range_move(range
, wordW
, -2, -2);
1700 test_range_moveend(range
, characterW
, 2, 2);
1701 test_range_text(range
, "ab");
1703 test_range_move(range
, characterW
, -6, -5);
1704 test_range_moveend(range
, characterW
, -1, 0);
1705 test_range_moveend(range
, characterW
, -6, 0);
1706 test_range_move(range
, characterW
, 2, 2);
1707 test_range_moveend(range
, characterW
, 2, 2);
1708 test_range_text(range
, "st");
1709 test_range_moveend(range
, characterW
, -6, -4);
1710 test_range_moveend(range
, characterW
, 2, 2);
1712 IHTMLTxtRange_Release(range
);
1714 hres
= IHTMLTxtRange_duplicate(body_range
, &range
);
1715 ok(hres
== S_OK
, "duplicate failed: %08x\n", hres
);
1717 test_range_move(range
, wordW
, 2, 2);
1718 test_range_moveend(range
, characterW
, 2, 2);
1719 test_range_text(range
, "12");
1721 test_range_move(range
, characterW
, 15, 14);
1722 test_range_move(range
, characterW
, -2, -2);
1723 test_range_moveend(range
, characterW
, 3, 2);
1724 test_range_text(range
, "t");
1725 test_range_moveend(range
, characterW
, -1, -1);
1726 test_range_text(range
, "t");
1727 test_range_expand(range
, wordW
, VARIANT_TRUE
, "text");
1728 test_range_move(range
, characterW
, -2, -2);
1729 test_range_moveend(range
, characterW
, 2, 2);
1730 test_range_text(range
, "s ");
1731 test_range_move(range
, characterW
, 100, 7);
1732 test_range_move(range
, wordW
, 1, 0);
1733 test_range_move(range
, characterW
, -2, -2);
1734 test_range_moveend(range
, characterW
, 3, 2);
1735 test_range_text(range
, "t");
1737 IHTMLTxtRange_Release(range
);
1739 hres
= IHTMLTxtRange_duplicate(body_range
, &range
);
1740 ok(hres
== S_OK
, "duplicate failed: %08x\n", hres
);
1742 test_range_collapse(range
, TRUE
);
1743 test_range_expand(range
, wordW
, VARIANT_TRUE
, "test ");
1744 test_range_put_text(range
, "word");
1745 test_range_text(body_range
, "wordabc 123\r\nit's text");
1746 test_range_text(range
, NULL
);
1747 test_range_moveend(range
, characterW
, 3, 3);
1748 test_range_text(range
, "abc");
1749 test_range_movestart(range
, characterW
, -2, -2);
1750 test_range_text(range
, "rdabc");
1751 test_range_movestart(range
, characterW
, 3, 3);
1752 test_range_text(range
, "bc");
1753 test_range_movestart(range
, characterW
, 4, 4);
1754 test_range_text(range
, NULL
);
1755 test_range_movestart(range
, characterW
, -3, -3);
1756 test_range_text(range
, "c 1");
1757 test_range_movestart(range
, characterW
, -7, -6);
1758 test_range_text(range
, "wordabc 1");
1759 test_range_movestart(range
, characterW
, 100, 22);
1760 test_range_text(range
, NULL
);
1762 IHTMLTxtRange_Release(range
);
1763 IHTMLTxtRange_Release(body_range
);
1765 hres
= IHTMLDocument2_get_selection(doc
, &selection
);
1766 ok(hres
== S_OK
, "IHTMLDocument2_get_selection failed: %08x\n", hres
);
1768 hres
= IHTMLSelectionObject_createRange(selection
, &disp_range
);
1769 ok(hres
== S_OK
, "IHTMLSelectionObject_createRange failed: %08x\n", hres
);
1770 IHTMLSelectionObject_Release(selection
);
1772 hres
= IDispatch_QueryInterface(disp_range
, &IID_IHTMLTxtRange
, (void **)&range
);
1773 ok(hres
== S_OK
, "Could not get IID_IHTMLTxtRange interface: 0x%08x\n", hres
);
1774 IDispatch_Release(disp_range
);
1776 test_range_text(range
, NULL
);
1777 test_range_moveend(range
, characterW
, 3, 3);
1778 test_range_text(range
, "wor");
1779 test_range_parent(range
, ET_BODY
);
1780 test_range_expand(range
, texteditW
, VARIANT_TRUE
, "wordabc 123\r\nit's text");
1781 test_range_expand(range
, texteditW
, VARIANT_TRUE
, "wordabc 123\r\nit's text");
1782 test_range_move(range
, characterW
, 3, 3);
1783 test_range_expand(range
, wordW
, VARIANT_TRUE
, "wordabc ");
1784 test_range_moveend(range
, characterW
, -4, -4);
1785 test_range_put_text(range
, "abc def ");
1786 test_range_expand(range
, texteditW
, VARIANT_TRUE
, "abc def abc 123\r\nit's text");
1787 test_range_move(range
, wordW
, 1, 1);
1788 test_range_movestart(range
, characterW
, -1, -1);
1789 test_range_text(range
, " ");
1790 test_range_move(range
, wordW
, 1, 1);
1791 test_range_moveend(range
, characterW
, 3, 3);
1792 test_range_text(range
, "def");
1793 test_range_put_text(range
, "xyz");
1794 test_range_moveend(range
, characterW
, 1, 1);
1795 test_range_move(range
, wordW
, 1, 1);
1796 test_range_moveend(range
, characterW
, 2, 2);
1797 test_range_text(range
, "ab");
1799 IHTMLTxtRange_Release(range
);
1802 static void test_txtrange2(IHTMLDocument2
*doc
)
1804 IHTMLTxtRange
*range
;
1806 range
= test_create_body_range(doc
);
1808 test_range_text(range
, "abc\r\n\r\n123\r\n\r\n\r\ndef");
1809 test_range_move(range
, characterW
, 5, 5);
1810 test_range_moveend(range
, characterW
, 1, 1);
1811 test_range_text(range
, "2");
1812 test_range_move(range
, characterW
, -3, -3);
1813 test_range_moveend(range
, characterW
, 3, 3);
1814 test_range_text(range
, "c\r\n\r\n1");
1815 test_range_collapse(range
, VARIANT_FALSE
);
1816 test_range_moveend(range
, characterW
, 4, 4);
1817 test_range_text(range
, "23");
1818 test_range_moveend(range
, characterW
, 1, 1);
1819 test_range_text(range
, "23\r\n\r\n\r\nd");
1820 test_range_moveend(range
, characterW
, -1, -1);
1821 test_range_text(range
, "23");
1822 test_range_moveend(range
, characterW
, -1, -1);
1823 test_range_text(range
, "23");
1824 test_range_moveend(range
, characterW
, -2, -2);
1825 test_range_text(range
, "2");
1827 IHTMLTxtRange_Release(range
);
1830 static void test_compatmode(IHTMLDocument2
*doc
)
1832 IHTMLDocument5
*doc5
;
1836 hres
= IHTMLDocument2_QueryInterface(doc
, &IID_IHTMLDocument5
, (void**)&doc5
);
1837 ok(hres
== S_OK
, "Could not get IHTMLDocument5 interface: %08x\n", hres
);
1841 hres
= IHTMLDocument5_get_compatMode(doc5
, &mode
);
1842 IHTMLDocument5_Release(doc5
);
1843 ok(hres
== S_OK
, "get_compatMode failed: %08x\n", hres
);
1844 ok(!strcmp_wa(mode
, "BackCompat"), "compatMode=%s\n", dbgstr_w(mode
));
1845 SysFreeString(mode
);
1848 static void test_location(IHTMLDocument2
*doc
)
1850 IHTMLLocation
*location
, *location2
;
1854 hres
= IHTMLDocument2_get_location(doc
, &location
);
1855 ok(hres
== S_OK
, "get_location failed: %08x\n", hres
);
1857 hres
= IHTMLDocument2_get_location(doc
, &location2
);
1858 ok(hres
== S_OK
, "get_location failed: %08x\n", hres
);
1860 ok(location
== location2
, "location != location2\n");
1862 test_ifaces((IUnknown
*)location
, location_iids
);
1864 IHTMLLocation_Release(location2
);
1865 ref
= IHTMLLocation_Release(location
);
1866 ok(!ref
, "location chould be destroyed here\n");
1869 static void test_navigator(IHTMLDocument2
*doc
)
1871 IHTMLWindow2
*window
;
1872 IOmNavigator
*navigator
, *navigator2
;
1877 hres
= IHTMLDocument2_get_parentWindow(doc
, &window
);
1878 ok(hres
== S_OK
, "parentWidnow failed: %08x\n", hres
);
1880 hres
= IHTMLWindow2_get_navigator(window
, &navigator
);
1881 ok(hres
== S_OK
, "get_navigator failed: %08x\n", hres
);
1882 ok(navigator
!= NULL
, "navigator == NULL\n");
1883 test_disp((IUnknown
*)navigator
, &IID_IOmNavigator
);
1885 hres
= IHTMLWindow2_get_navigator(window
, &navigator2
);
1886 ok(hres
== S_OK
, "get_navigator failed: %08x\n", hres
);
1887 ok(navigator
!= navigator2
, "navigator2 != navihgator\n");
1889 IHTMLWindow2_Release(window
);
1890 IOmNavigator_Release(navigator2
);
1892 hres
= IOmNavigator_get_appCodeName(navigator
, &bstr
);
1893 ok(hres
== S_OK
, "get_appCodeName failed: %08x\n", hres
);
1894 ok(!strcmp_wa(bstr
, "Mozilla"), "Unexpected appCodeName %s\n", dbgstr_w(bstr
));
1895 SysFreeString(bstr
);
1898 hres
= IOmNavigator_get_platform(navigator
, &bstr
);
1899 ok(hres
== S_OK
, "get_appMinorVersion failed: %08x\n", hres
);
1900 ok(!strcmp_wa(bstr
, "Win32"), "unexpected platform %s\n", dbgstr_w(bstr
));
1901 SysFreeString(bstr
);
1903 ref
= IOmNavigator_Release(navigator
);
1904 ok(!ref
, "navigator should be destroyed here\n");
1907 static void test_default_style(IHTMLStyle
*style
)
1914 test_disp((IUnknown
*)style
, &DIID_DispHTMLStyle
);
1916 str
= (void*)0xdeadbeef;
1917 hres
= IHTMLStyle_get_fontFamily(style
, &str
);
1918 ok(hres
== S_OK
, "get_fontFamily failed: %08x\n", hres
);
1919 ok(!str
, "fontFamily = %s\n", dbgstr_w(str
));
1921 str
= (void*)0xdeadbeef;
1922 hres
= IHTMLStyle_get_fontWeight(style
, &str
);
1923 ok(hres
== S_OK
, "get_fontWeight failed: %08x\n", hres
);
1924 ok(!str
, "fontWeight = %s\n", dbgstr_w(str
));
1926 str
= (void*)0xdeadbeef;
1927 hres
= IHTMLStyle_get_display(style
, &str
);
1928 ok(hres
== S_OK
, "get_display failed: %08x\n", hres
);
1929 ok(!str
, "display = %s\n", dbgstr_w(str
));
1931 str
= (void*)0xdeadbeef;
1932 hres
= IHTMLStyle_get_visibility(style
, &str
);
1933 ok(hres
== S_OK
, "get_visibility failed: %08x\n", hres
);
1934 ok(!str
, "visibility = %s\n", dbgstr_w(str
));
1937 hres
= IHTMLStyle_get_fontSize(style
, &v
);
1938 ok(hres
== S_OK
, "get_fontSize failed: %08x\n", hres
);
1939 ok(V_VT(&v
) == VT_BSTR
, "V_VT(fontSize) = %d\n", V_VT(&v
));
1940 ok(!V_BSTR(&v
), "V_BSTR(fontSize) = %s\n", dbgstr_w(V_BSTR(&v
)));
1943 hres
= IHTMLStyle_get_color(style
, &v
);
1944 ok(hres
== S_OK
, "get_color failed: %08x\n", hres
);
1945 ok(V_VT(&v
) == VT_BSTR
, "V_VT(color) = %d\n", V_VT(&v
));
1946 ok(!V_BSTR(&v
), "V_BSTR(color) = %s\n", dbgstr_w(V_BSTR(&v
)));
1949 hres
= IHTMLStyle_get_textDecorationUnderline(style
, &b
);
1950 ok(hres
== S_OK
, "get_textDecorationUnderline failed: %08x\n", hres
);
1951 ok(b
== VARIANT_FALSE
, "textDecorationUnderline = %x\n", b
);
1954 hres
= IHTMLStyle_get_textDecorationLineThrough(style
, &b
);
1955 ok(hres
== S_OK
, "get_textDecorationLineThrough failed: %08x\n", hres
);
1956 ok(b
== VARIANT_FALSE
, "textDecorationLineThrough = %x\n", b
);
1958 V_VT(&v
) = VT_EMPTY
;
1959 hres
= IHTMLStyle_get_width(style
, &v
);
1960 ok(hres
== S_OK
, "get_width failed: %08x\n", hres
);
1961 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v)=%d\n", V_VT(&v
));
1962 ok(!V_BSTR(&v
), "V_BSTR(v)=%p\n", V_BSTR(&v
));
1965 V_BSTR(&v
) = a2bstr("auto");
1966 hres
= IHTMLStyle_put_width(style
, v
);
1967 ok(hres
== S_OK
, "put_width failed: %08x\n", hres
);
1970 V_VT(&v
) = VT_EMPTY
;
1971 hres
= IHTMLStyle_get_width(style
, &v
);
1972 ok(hres
== S_OK
, "get_width failed: %08x\n", hres
);
1973 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v)=%d\n", V_VT(&v
));
1974 ok(!strcmp_wa(V_BSTR(&v
), "auto"), "V_BSTR(v)=%s\n", dbgstr_w(V_BSTR(&v
)));
1978 static void test_default_selection(IHTMLDocument2
*doc
)
1980 IHTMLSelectionObject
*selection
;
1981 IHTMLTxtRange
*range
;
1986 hres
= IHTMLDocument2_get_selection(doc
, &selection
);
1987 ok(hres
== S_OK
, "get_selection failed: %08x\n", hres
);
1989 hres
= IHTMLSelectionObject_get_type(selection
, &str
);
1990 ok(hres
== S_OK
, "get_type failed: %08x\n", hres
);
1991 ok(!lstrcmpW(str
, noneW
), "type = %s\n", dbgstr_w(str
));
1994 hres
= IHTMLSelectionObject_createRange(selection
, &disp
);
1995 IHTMLSelectionObject_Release(selection
);
1996 ok(hres
== S_OK
, "createRange failed: %08x\n", hres
);
1998 hres
= IDispatch_QueryInterface(disp
, &IID_IHTMLTxtRange
, (void**)&range
);
1999 IDispatch_Release(disp
);
2000 ok(hres
== S_OK
, "Could not get IHTMLTxtRange interface: %08x\n", hres
);
2002 test_range_text(range
, NULL
);
2003 IHTMLTxtRange_Release(range
);
2006 static void test_default_body(IHTMLBodyElement
*body
)
2012 bstr
= (void*)0xdeadbeef;
2013 hres
= IHTMLBodyElement_get_background(body
, &bstr
);
2014 ok(hres
== S_OK
, "get_background failed: %08x\n", hres
);
2015 ok(bstr
== NULL
, "bstr != NULL\n");
2017 l
= elem_get_scroll_height((IUnknown
*)body
);
2018 ok(l
!= -1, "scrollHeight == -1\n");
2019 l
= elem_get_scroll_width((IUnknown
*)body
);
2020 ok(l
!= -1, "scrollWidth == -1\n");
2021 l
= elem_get_scroll_top((IUnknown
*)body
);
2022 ok(!l
, "scrollWidth = %ld\n", l
);
2025 static void test_window(IHTMLDocument2
*doc
)
2027 IHTMLWindow2
*window
, *window2
, *self
;
2028 IHTMLDocument2
*doc2
= NULL
;
2031 hres
= IHTMLDocument2_get_parentWindow(doc
, &window
);
2032 ok(hres
== S_OK
, "get_parentElement failed: %08x\n", hres
);
2033 test_ifaces((IUnknown
*)window
, window_iids
);
2034 test_disp((IUnknown
*)window
, &DIID_DispHTMLWindow2
);
2036 hres
= IHTMLWindow2_get_document(window
, &doc2
);
2037 ok(hres
== S_OK
, "get_document failed: %08x\n", hres
);
2038 ok(doc2
!= NULL
, "doc2 == NULL\n");
2040 IHTMLDocument_Release(doc2
);
2042 hres
= IHTMLWindow2_get_window(window
, &window2
);
2043 ok(hres
== S_OK
, "get_window failed: %08x\n", hres
);
2044 ok(window2
!= NULL
, "window2 == NULL\n");
2046 hres
= IHTMLWindow2_get_self(window
, &self
);
2047 ok(hres
== S_OK
, "get_window failed: %08x\n", hres
);
2048 ok(window2
!= NULL
, "self == NULL\n");
2050 ok(self
== window2
, "self != window2\n");
2052 IHTMLWindow2_Release(window2
);
2053 IHTMLWindow2_Release(self
);
2055 IHTMLWindow2_Release(window
);
2058 static void test_defaults(IHTMLDocument2
*doc
)
2060 IHTMLStyleSheetsCollection
*stylesheetcol
;
2061 IHTMLBodyElement
*body
;
2067 hres
= IHTMLDocument2_get_body(doc
, &elem
);
2068 ok(hres
== S_OK
, "get_body failed: %08x\n", hres
);
2070 hres
= IHTMLElement_QueryInterface(elem
, &IID_IHTMLBodyElement
, (void**)&body
);
2071 ok(hres
== S_OK
, "Could not get IHTMBodyElement: %08x\n", hres
);
2072 test_default_body(body
);
2073 IHTMLBodyElement_Release(body
);
2075 hres
= IHTMLElement_get_style(elem
, &style
);
2076 IHTMLElement_Release(elem
);
2077 ok(hres
== S_OK
, "get_style failed: %08x\n", hres
);
2079 test_default_style(style
);
2081 test_compatmode(doc
);
2083 test_navigator(doc
);
2085 IHTMLStyle_Release(style
);
2087 hres
= IHTMLDocument2_get_styleSheets(doc
, &stylesheetcol
);
2088 ok(hres
== S_OK
, "get_styleSheets failed: %08x\n", hres
);
2091 hres
= IHTMLStyleSheetsCollection_get_length(stylesheetcol
, &l
);
2092 ok(hres
== S_OK
, "get_length failed: %08x\n", hres
);
2093 ok(l
== 0, "length = %ld\n", l
);
2095 IHTMLStyleSheetsCollection_Release(stylesheetcol
);
2097 test_default_selection(doc
);
2098 test_doc_title(doc
, "");
2101 static void test_stylesheet(IDispatch
*disp
)
2103 IHTMLStyleSheetRulesCollection
*col
= NULL
;
2104 IHTMLStyleSheet
*stylesheet
;
2107 hres
= IDispatch_QueryInterface(disp
, &IID_IHTMLStyleSheet
, (void**)&stylesheet
);
2108 ok(hres
== S_OK
, "Could not get IHTMLStyleSheet: %08x\n", hres
);
2110 hres
= IHTMLStyleSheet_get_rules(stylesheet
, &col
);
2111 ok(hres
== S_OK
, "get_rules failed: %08x\n", hres
);
2112 ok(col
!= NULL
, "col == NULL\n");
2114 IHTMLStyleSheetRulesCollection_Release(col
);
2115 IHTMLStyleSheet_Release(stylesheet
);
2118 static void test_stylesheets(IHTMLDocument2
*doc
)
2120 IHTMLStyleSheetsCollection
*col
= NULL
;
2125 hres
= IHTMLDocument2_get_styleSheets(doc
, &col
);
2126 ok(hres
== S_OK
, "get_styleSheets failed: %08x\n", hres
);
2127 ok(col
!= NULL
, "col == NULL\n");
2129 hres
= IHTMLStyleSheetsCollection_get_length(col
, &len
);
2130 ok(hres
== S_OK
, "get_length failed: %08x\n", hres
);
2131 ok(len
== 1, "len=%ld\n", len
);
2137 hres
= IHTMLStyleSheetsCollection_item(col
, &idx
, &res
);
2138 ok(hres
== S_OK
, "item failed: %08x\n", hres
);
2139 ok(V_VT(&res
) == VT_DISPATCH
, "V_VT(res) = %d\n", V_VT(&res
));
2140 ok(V_DISPATCH(&res
) != NULL
, "V_DISPATCH(&res) == NULL\n");
2141 test_stylesheet(V_DISPATCH(&res
));
2148 hres
= IHTMLStyleSheetsCollection_item(col
, &idx
, &res
);
2149 ok(hres
== E_INVALIDARG
, "item failed: %08x, expected E_INVALIDARG\n", hres
);
2150 ok(V_VT(&res
) == VT_EMPTY
, "V_VT(res) = %d\n", V_VT(&res
));
2151 ok(V_DISPATCH(&res
) != NULL
, "V_DISPATCH(&res) == NULL\n");
2154 IHTMLStyleSheetsCollection_Release(col
);
2157 static void test_child_col_disp(IHTMLDOMChildrenCollection
*col
)
2159 IDispatchEx
*dispex
;
2161 DISPPARAMS dp
= {NULL
, NULL
, 0, 0};
2169 static const WCHAR w0
[] = {'0',0};
2170 static const WCHAR w100
[] = {'1','0','0',0};
2172 hres
= IHTMLDOMChildrenCollection_QueryInterface(col
, &IID_IDispatchEx
, (void**)&dispex
);
2173 ok(hres
== S_OK
, "Could not get IDispatchEx: %08x\n", hres
);
2175 bstr
= SysAllocString(w0
);
2176 hres
= IDispatchEx_GetDispID(dispex
, bstr
, fdexNameCaseSensitive
, &id
);
2177 ok(hres
== S_OK
, "GetDispID failed: %08x\n", hres
);
2178 SysFreeString(bstr
);
2181 hres
= IDispatchEx_InvokeEx(dispex
, id
, LOCALE_NEUTRAL
, INVOKE_PROPERTYGET
, &dp
, &var
, &ei
, NULL
);
2182 ok(hres
== S_OK
, "InvokeEx failed: %08x\n", hres
);
2183 ok(V_VT(&var
) == VT_DISPATCH
, "V_VT(var)=%d\n", V_VT(&var
));
2184 ok(V_DISPATCH(&var
) != NULL
, "V_DISPATCH(var) == NULL\n");
2185 node
= get_node_iface((IUnknown
*)V_DISPATCH(&var
));
2186 type
= get_node_type((IUnknown
*)node
);
2187 ok(type
== 3, "type=%ld\n", type
);
2188 IHTMLDOMNode_Release(node
);
2191 bstr
= SysAllocString(w100
);
2192 hres
= IDispatchEx_GetDispID(dispex
, bstr
, fdexNameCaseSensitive
, &id
);
2193 ok(hres
== DISP_E_UNKNOWNNAME
, "GetDispID failed: %08x, expected DISP_E_UNKNOWNNAME\n", hres
);
2194 SysFreeString(bstr
);
2196 IDispatchEx_Release(dispex
);
2201 static void test_elems(IHTMLDocument2
*doc
)
2203 IHTMLElementCollection
*col
;
2204 IHTMLDOMChildrenCollection
*child_col
;
2206 IHTMLDOMNode
*node
, *node2
;
2211 static const WCHAR imgidW
[] = {'i','m','g','i','d',0};
2212 static const WCHAR inW
[] = {'i','n',0};
2213 static const WCHAR xW
[] = {'x',0};
2214 static const WCHAR sW
[] = {'s',0};
2215 static const WCHAR scW
[] = {'s','c',0};
2216 static const WCHAR xxxW
[] = {'x','x','x',0};
2218 static const elem_type_t all_types
[] = {
2238 static const elem_type_t item_types
[] = {
2244 hres
= IHTMLDocument2_get_all(doc
, &col
);
2245 ok(hres
== S_OK
, "get_all failed: %08x\n", hres
);
2246 test_elem_collection((IUnknown
*)col
, all_types
, sizeof(all_types
)/sizeof(all_types
[0]));
2247 test_elem_col_item(col
, xW
, item_types
, sizeof(item_types
)/sizeof(item_types
[0]));
2248 IHTMLElementCollection_Release(col
);
2250 elem
= get_doc_elem(doc
);
2251 ok(hres
== S_OK
, "get_documentElement failed: %08x\n", hres
);
2252 hres
= IHTMLElement_get_all(elem
, &disp
);
2253 IHTMLElement_Release(elem
);
2254 ok(hres
== S_OK
, "get_all failed: %08x\n", hres
);
2256 hres
= IDispatch_QueryInterface(disp
, &IID_IHTMLElementCollection
, (void**)&col
);
2257 IDispatch_Release(disp
);
2258 ok(hres
== S_OK
, "Could not get IHTMLElementCollection: %08x\n", hres
);
2259 test_elem_collection((IUnknown
*)col
, all_types
+1, sizeof(all_types
)/sizeof(all_types
[0])-1);
2260 IHTMLElementCollection_Release(col
);
2262 get_elem_by_id(doc
, xxxW
, FALSE
);
2263 elem
= get_doc_elem_by_id(doc
, xxxW
);
2264 ok(!elem
, "elem != NULL\n");
2266 elem
= get_doc_elem_by_id(doc
, sW
);
2267 ok(elem
!= NULL
, "elem == NULL\n");
2269 test_elem_type((IUnknown
*)elem
, ET_SELECT
);
2270 test_elem_attr(elem
, xxxW
, NULL
);
2271 test_elem_attr(elem
, idW
, sW
);
2272 test_elem_class((IUnknown
*)elem
, NULL
);
2273 test_elem_set_class((IUnknown
*)elem
, "cl");
2274 test_elem_set_class((IUnknown
*)elem
, NULL
);
2275 test_elem_tabindex((IUnknown
*)elem
, 0);
2276 test_elem_set_tabindex((IUnknown
*)elem
, 1);
2278 node
= test_node_get_parent((IUnknown
*)elem
);
2279 ok(node
!= NULL
, "node == NULL\n");
2280 test_node_name((IUnknown
*)node
, "BODY");
2281 node2
= test_node_get_parent((IUnknown
*)node
);
2282 IHTMLDOMNode_Release(node
);
2283 ok(node2
!= NULL
, "node == NULL\n");
2284 test_node_name((IUnknown
*)node2
, "HTML");
2285 node
= test_node_get_parent((IUnknown
*)node2
);
2286 IHTMLDOMNode_Release(node2
);
2287 ok(node
!= NULL
, "node == NULL\n");
2288 test_node_name((IUnknown
*)node
, "#document");
2289 type
= get_node_type((IUnknown
*)node
);
2290 ok(type
== 9, "type=%ld, expected 9\n", type
);
2291 node2
= test_node_get_parent((IUnknown
*)node
);
2292 IHTMLDOMNode_Release(node
);
2293 ok(node2
== NULL
, "node != NULL\n");
2295 test_elem_getelembytag((IUnknown
*)elem
, ET_OPTION
, 2);
2296 test_elem_getelembytag((IUnknown
*)elem
, ET_SELECT
, 0);
2297 test_elem_getelembytag((IUnknown
*)elem
, ET_HTML
, 0);
2299 IHTMLElement_Release(elem
);
2302 elem
= get_elem_by_id(doc
, sW
, TRUE
);
2304 IHTMLSelectElement
*select
;
2306 hres
= IHTMLElement_QueryInterface(elem
, &IID_IHTMLSelectElement
, (void**)&select
);
2307 ok(hres
== S_OK
, "Could not get IHTMLSelectElement interface: %08x\n", hres
);
2309 test_select_elem(select
);
2311 test_elem_title((IUnknown
*)select
, NULL
);
2312 test_elem_set_title((IUnknown
*)select
, "Title");
2313 test_elem_title((IUnknown
*)select
, "Title");
2314 test_elem_offset((IUnknown
*)select
);
2316 node
= get_first_child((IUnknown
*)select
);
2317 ok(node
!= NULL
, "node == NULL\n");
2319 test_elem_type((IUnknown
*)node
, ET_OPTION
);
2320 IHTMLDOMNode_Release(node
);
2323 type
= get_node_type((IUnknown
*)select
);
2324 ok(type
== 1, "type=%ld\n", type
);
2326 IHTMLSelectElement_Release(select
);
2327 IHTMLElement_Release(elem
);
2330 elem
= get_elem_by_id(doc
, scW
, TRUE
);
2332 IHTMLScriptElement
*script
;
2335 hres
= IHTMLElement_QueryInterface(elem
, &IID_IHTMLScriptElement
, (void**)&script
);
2336 ok(hres
== S_OK
, "Could not get IHTMLScriptElement interface: %08x\n", hres
);
2338 hres
= IHTMLScriptElement_get_type(script
, &type
);
2339 ok(hres
== S_OK
, "get_type failed: %08x\n", hres
);
2340 ok(!lstrcmpW(type
, text_javascriptW
), "Unexpected type %s\n", dbgstr_w(type
));
2341 SysFreeString(type
);
2343 IHTMLScriptElement_Release(script
);
2346 elem
= get_elem_by_id(doc
, inW
, TRUE
);
2348 IHTMLInputElement
*input
;
2350 hres
= IHTMLElement_QueryInterface(elem
, &IID_IHTMLInputElement
, (void**)&input
);
2351 ok(hres
== S_OK
, "Could not get IHTMLInputElement: %08x\n", hres
);
2353 test_elem_id((IUnknown
*)elem
, "in");
2354 test_elem_put_id((IUnknown
*)elem
, "newin");
2355 test_input_get_disabled(input
, VARIANT_FALSE
);
2356 test_input_set_disabled(input
, VARIANT_TRUE
);
2357 test_input_set_disabled(input
, VARIANT_FALSE
);
2358 test_elem_client_size((IUnknown
*)elem
);
2360 test_node_get_value_str((IUnknown
*)elem
, NULL
);
2361 test_node_put_value_str((IUnknown
*)elem
, "test");
2362 test_node_get_value_str((IUnknown
*)elem
, NULL
);
2363 test_input_value((IUnknown
*)elem
, NULL
);
2364 test_input_put_value((IUnknown
*)elem
, "test");
2365 test_input_value((IUnknown
*)elem
, NULL
);
2366 test_elem_class((IUnknown
*)elem
, "testclass");
2367 test_elem_tabindex((IUnknown
*)elem
, 2);
2368 test_elem_set_tabindex((IUnknown
*)elem
, 3);
2369 test_elem_title((IUnknown
*)elem
, "test title");
2371 IHTMLInputElement_Release(input
);
2372 IHTMLElement_Release(elem
);
2375 elem
= get_elem_by_id(doc
, imgidW
, TRUE
);
2377 test_img_set_src((IUnknown
*)elem
, "about:blank");
2378 test_img_alt((IUnknown
*)elem
, NULL
);
2379 test_img_set_alt((IUnknown
*)elem
, "alt test");
2380 IHTMLElement_Release(elem
);
2383 hres
= IHTMLDocument2_get_body(doc
, &elem
);
2384 ok(hres
== S_OK
, "get_body failed: %08x\n", hres
);
2386 node
= get_first_child((IUnknown
*)elem
);
2387 ok(node
!= NULL
, "node == NULL\n");
2389 test_ifaces((IUnknown
*)node
, text_iids
);
2390 test_disp((IUnknown
*)node
, &DIID_DispHTMLDOMTextNode
);
2392 node2
= get_first_child((IUnknown
*)node
);
2393 ok(!node2
, "node2 != NULL\n");
2395 type
= get_node_type((IUnknown
*)node
);
2396 ok(type
== 3, "type=%ld\n", type
);
2398 test_node_get_value_str((IUnknown
*)node
, "text test");
2399 test_node_put_value_str((IUnknown
*)elem
, "test text");
2400 test_node_get_value_str((IUnknown
*)node
, "text test");
2402 IHTMLDOMNode_Release(node
);
2405 child_col
= get_child_nodes((IUnknown
*)elem
);
2406 ok(child_col
!= NULL
, "child_coll == NULL\n");
2410 test_disp((IUnknown
*)child_col
, &DIID_DispDOMChildrenCollection
);
2412 hres
= IHTMLDOMChildrenCollection_get_length(child_col
, &length
);
2413 ok(hres
== S_OK
, "get_length failed: %08x\n", hres
);
2414 ok(length
, "length=0\n");
2416 node
= get_child_item(child_col
, 0);
2417 ok(node
!= NULL
, "node == NULL\n");
2419 type
= get_node_type((IUnknown
*)node
);
2420 ok(type
== 3, "type=%ld\n", type
);
2421 IHTMLDOMNode_Release(node
);
2424 node
= get_child_item(child_col
, 1);
2425 ok(node
!= NULL
, "node == NULL\n");
2427 type
= get_node_type((IUnknown
*)node
);
2428 ok(type
== 8, "type=%ld\n", type
);
2430 test_elem_id((IUnknown
*)node
, NULL
);
2431 IHTMLDOMNode_Release(node
);
2434 disp
= (void*)0xdeadbeef;
2435 hres
= IHTMLDOMChildrenCollection_item(child_col
, 6000, &disp
);
2436 ok(hres
== E_INVALIDARG
, "item failed: %08x, expected E_INVALIDARG\n", hres
);
2437 ok(disp
== (void*)0xdeadbeef, "disp=%p\n", disp
);
2439 disp
= (void*)0xdeadbeef;
2440 hres
= IHTMLDOMChildrenCollection_item(child_col
, length
, &disp
);
2441 ok(hres
== E_INVALIDARG
, "item failed: %08x, expected E_INVALIDARG\n", hres
);
2442 ok(disp
== (void*)0xdeadbeef, "disp=%p\n", disp
);
2444 test_child_col_disp(child_col
);
2446 IHTMLDOMChildrenCollection_Release(child_col
);
2449 IHTMLElement_Release(elem
);
2451 test_stylesheets(doc
);
2452 test_create_option_elem(doc
);
2454 test_doc_title(doc
, "test");
2455 test_doc_set_title(doc
, "test title");
2456 test_doc_title(doc
, "test title");
2459 static void test_create_elems(IHTMLDocument2
*doc
)
2461 IHTMLElement
*elem
, *body
, *elem2
;
2467 static const elem_type_t types1
[] = { ET_TESTG
};
2469 elem
= test_create_elem(doc
, "TEST");
2470 test_elem_tag((IUnknown
*)elem
, "TEST");
2471 type
= get_node_type((IUnknown
*)elem
);
2472 ok(type
== 1, "type=%ld\n", type
);
2473 test_ifaces((IUnknown
*)elem
, elem_iids
);
2474 test_disp((IUnknown
*)elem
, &DIID_DispHTMLGenericElement
);
2476 hres
= IHTMLDocument2_get_body(doc
, &body
);
2477 ok(hres
== S_OK
, "get_body failed: %08x\n", hres
);
2478 test_node_has_child((IUnknown
*)body
, VARIANT_FALSE
);
2480 node
= test_node_append_child((IUnknown
*)body
, (IUnknown
*)elem
);
2481 test_node_has_child((IUnknown
*)body
, VARIANT_TRUE
);
2482 elem2
= get_elem_iface((IUnknown
*)node
);
2483 IHTMLElement_Release(elem2
);
2485 hres
= IHTMLElement_get_all(body
, &disp
);
2486 ok(hres
== S_OK
, "get_all failed: %08x\n", hres
);
2487 test_elem_collection((IUnknown
*)disp
, types1
, sizeof(types1
)/sizeof(types1
[0]));
2488 IDispatch_Release(disp
);
2490 test_node_remove_child((IUnknown
*)body
, node
);
2492 hres
= IHTMLElement_get_all(body
, &disp
);
2493 ok(hres
== S_OK
, "get_all failed: %08x\n", hres
);
2494 test_elem_collection((IUnknown
*)disp
, NULL
, 0);
2495 IDispatch_Release(disp
);
2496 test_node_has_child((IUnknown
*)body
, VARIANT_FALSE
);
2498 IHTMLElement_Release(body
);
2499 IHTMLElement_Release(elem
);
2500 IHTMLDOMNode_Release(node
);
2502 node
= test_create_text(doc
, "test");
2503 test_ifaces((IUnknown
*)node
, text_iids
);
2504 test_disp((IUnknown
*)node
, &DIID_DispHTMLDOMTextNode
);
2505 IHTMLDOMNode_Release(node
);
2508 static void test_exec(IUnknown
*unk
, const GUID
*grpid
, DWORD cmdid
, VARIANT
*in
, VARIANT
*out
)
2510 IOleCommandTarget
*cmdtrg
;
2513 hres
= IHTMLTxtRange_QueryInterface(unk
, &IID_IOleCommandTarget
, (void**)&cmdtrg
);
2514 ok(hres
== S_OK
, "Could not get IOleCommandTarget interface: %08x\n", hres
);
2516 hres
= IOleCommandTarget_Exec(cmdtrg
, grpid
, cmdid
, 0, in
, out
);
2517 ok(hres
== S_OK
, "Exec failed: %08x\n", hres
);
2519 IOleCommandTarget_Release(cmdtrg
);
2522 static void test_indent(IHTMLDocument2
*doc
)
2524 IHTMLElementCollection
*col
;
2525 IHTMLTxtRange
*range
;
2528 static const elem_type_t all_types
[] = {
2537 static const elem_type_t indent_types
[] = {
2548 hres
= IHTMLDocument2_get_all(doc
, &col
);
2549 ok(hres
== S_OK
, "get_all failed: %08x\n", hres
);
2550 test_elem_collection((IUnknown
*)col
, all_types
, sizeof(all_types
)/sizeof(all_types
[0]));
2551 IHTMLElementCollection_Release(col
);
2553 range
= test_create_body_range(doc
);
2554 test_exec((IUnknown
*)range
, &CGID_MSHTML
, IDM_INDENT
, NULL
, NULL
);
2555 IHTMLTxtRange_Release(range
);
2557 hres
= IHTMLDocument2_get_all(doc
, &col
);
2558 ok(hres
== S_OK
, "get_all failed: %08x\n", hres
);
2559 test_elem_collection((IUnknown
*)col
, indent_types
, sizeof(indent_types
)/sizeof(indent_types
[0]));
2560 IHTMLElementCollection_Release(col
);
2563 static IHTMLDocument2
*notif_doc
;
2564 static BOOL doc_complete
;
2566 static HRESULT WINAPI
PropertyNotifySink_QueryInterface(IPropertyNotifySink
*iface
,
2567 REFIID riid
, void**ppv
)
2569 if(IsEqualGUID(&IID_IPropertyNotifySink
, riid
)) {
2574 ok(0, "unexpected call\n");
2575 return E_NOINTERFACE
;
2578 static ULONG WINAPI
PropertyNotifySink_AddRef(IPropertyNotifySink
*iface
)
2583 static ULONG WINAPI
PropertyNotifySink_Release(IPropertyNotifySink
*iface
)
2588 static HRESULT WINAPI
PropertyNotifySink_OnChanged(IPropertyNotifySink
*iface
, DISPID dispID
)
2590 if(dispID
== DISPID_READYSTATE
){
2594 static const WCHAR completeW
[] = {'c','o','m','p','l','e','t','e',0};
2596 hres
= IHTMLDocument2_get_readyState(notif_doc
, &state
);
2597 ok(hres
== S_OK
, "get_readyState failed: %08x\n", hres
);
2599 if(!lstrcmpW(state
, completeW
))
2600 doc_complete
= TRUE
;
2602 SysFreeString(state
);
2608 static HRESULT WINAPI
PropertyNotifySink_OnRequestEdit(IPropertyNotifySink
*iface
, DISPID dispID
)
2610 ok(0, "unexpected call\n");
2614 static IPropertyNotifySinkVtbl PropertyNotifySinkVtbl
= {
2615 PropertyNotifySink_QueryInterface
,
2616 PropertyNotifySink_AddRef
,
2617 PropertyNotifySink_Release
,
2618 PropertyNotifySink_OnChanged
,
2619 PropertyNotifySink_OnRequestEdit
2622 static IPropertyNotifySink PropertyNotifySink
= { &PropertyNotifySinkVtbl
};
2624 static IHTMLDocument2
*create_doc_with_string(const char *str
)
2626 IPersistStreamInit
*init
;
2628 IHTMLDocument2
*doc
;
2632 notif_doc
= doc
= create_document();
2636 doc_complete
= FALSE
;
2638 mem
= GlobalAlloc(0, len
);
2639 memcpy(mem
, str
, len
);
2640 CreateStreamOnHGlobal(mem
, TRUE
, &stream
);
2642 IHTMLDocument2_QueryInterface(doc
, &IID_IPersistStreamInit
, (void**)&init
);
2644 IPersistStreamInit_Load(init
, stream
);
2645 IPersistStreamInit_Release(init
);
2646 IStream_Release(stream
);
2651 static void do_advise(IUnknown
*unk
, REFIID riid
, IUnknown
*unk_advise
)
2653 IConnectionPointContainer
*container
;
2654 IConnectionPoint
*cp
;
2658 hres
= IUnknown_QueryInterface(unk
, &IID_IConnectionPointContainer
, (void**)&container
);
2659 ok(hres
== S_OK
, "QueryInterface(IID_IConnectionPointContainer) failed: %08x\n", hres
);
2661 hres
= IConnectionPointContainer_FindConnectionPoint(container
, riid
, &cp
);
2662 IConnectionPointContainer_Release(container
);
2663 ok(hres
== S_OK
, "FindConnectionPoint failed: %08x\n", hres
);
2665 hres
= IConnectionPoint_Advise(cp
, unk_advise
, &cookie
);
2666 IConnectionPoint_Release(cp
);
2667 ok(hres
== S_OK
, "Advise failed: %08x\n", hres
);
2670 typedef void (*domtest_t
)(IHTMLDocument2
*);
2672 static void run_domtest(const char *str
, domtest_t test
)
2674 IHTMLDocument2
*doc
;
2675 IHTMLElement
*body
= NULL
;
2680 doc
= create_doc_with_string(str
);
2681 do_advise((IUnknown
*)doc
, &IID_IPropertyNotifySink
, (IUnknown
*)&PropertyNotifySink
);
2683 while(!doc_complete
&& GetMessage(&msg
, NULL
, 0, 0)) {
2684 TranslateMessage(&msg
);
2685 DispatchMessage(&msg
);
2688 hres
= IHTMLDocument2_get_body(doc
, &body
);
2689 ok(hres
== S_OK
, "get_body failed: %08x\n", hres
);
2692 IHTMLElement_Release(body
);
2695 skip("Could not get document body. Assuming no Gecko installed.\n");
2698 ref
= IHTMLDocument2_Release(doc
);
2699 ok(!ref
, "ref = %d\n", ref
);
2702 static void gecko_installer_workaround(BOOL disable
)
2707 static BOOL has_url
= FALSE
;
2708 static char url
[2048];
2710 if(!disable
&& !has_url
)
2713 res
= RegOpenKey(HKEY_CURRENT_USER
, "Software\\Wine\\MSHTML", &hkey
);
2714 if(res
!= ERROR_SUCCESS
)
2718 DWORD type
, size
= sizeof(url
);
2720 res
= RegQueryValueEx(hkey
, "GeckoUrl", NULL
, &type
, (PVOID
)url
, &size
);
2721 if(res
== ERROR_SUCCESS
&& type
== REG_SZ
)
2724 RegDeleteValue(hkey
, "GeckoUrl");
2726 RegSetValueEx(hkey
, "GeckoUrl", 0, REG_SZ
, (PVOID
)url
, lstrlenA(url
)+1);
2734 gecko_installer_workaround(TRUE
);
2737 run_domtest(doc_str1
, test_doc_elem
);
2738 run_domtest(range_test_str
, test_txtrange
);
2739 run_domtest(range_test2_str
, test_txtrange2
);
2740 run_domtest(elem_test_str
, test_elems
);
2741 run_domtest(doc_blank
, test_create_elems
);
2742 run_domtest(doc_blank
, test_defaults
);
2743 run_domtest(indent_test_str
, test_indent
);
2746 gecko_installer_workaround(FALSE
);