2 * Copyright 2007-2008 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 onload=\"Testing()\">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 id=\"tbl\"><tbody><tr></tr><tr id=\"row2\"><td>td1 text</td><td>td2 text</td></tr></tbody></table>"
49 "<script id=\"sc\" type=\"text/javascript\"><!--\nfunction Testing() {}\n// -->\n</script>"
52 "<iframe src=\"about:blank\" id=\"ifr\"></iframe>"
54 static const char indent_test_str
[] =
55 "<html><head><title>test</title></head><body>abc<br /><a href=\"about:blank\">123</a></body></html>";
56 static const char cond_comment_str
[] =
57 "<html><head><title>test</title></head><body>"
58 "<!--[if gte IE 4]> <br> <![endif]-->"
61 static const WCHAR noneW
[] = {'N','o','n','e',0};
63 static WCHAR characterW
[] = {'c','h','a','r','a','c','t','e','r',0};
64 static WCHAR texteditW
[] = {'t','e','x','t','e','d','i','t',0};
65 static WCHAR wordW
[] = {'w','o','r','d',0};
67 static const WCHAR text_javascriptW
[] = {'t','e','x','t','/','j','a','v','a','s','c','r','i','p','t',0};
69 static const WCHAR idW
[] = {'i','d',0};
98 static const IID
* const none_iids
[] = {
103 static const IID
* const elem_iids
[] = {
110 &IID_IConnectionPointContainer
,
114 static const IID
* const body_iids
[] = {
120 &IID_IHTMLTextContainer
,
121 &IID_IHTMLBodyElement
,
123 &IID_IConnectionPointContainer
,
127 static const IID
* const anchor_iids
[] = {
133 &IID_IHTMLAnchorElement
,
135 &IID_IConnectionPointContainer
,
139 static const IID
* const input_iids
[] = {
145 &IID_IHTMLInputElement
,
146 &IID_IHTMLInputTextElement
,
148 &IID_IConnectionPointContainer
,
152 static const IID
* const select_iids
[] = {
158 &IID_IHTMLSelectElement
,
160 &IID_IConnectionPointContainer
,
164 static const IID
* const textarea_iids
[] = {
170 &IID_IHTMLTextAreaElement
,
172 &IID_IConnectionPointContainer
,
176 static const IID
* const option_iids
[] = {
182 &IID_IHTMLOptionElement
,
184 &IID_IConnectionPointContainer
,
188 static const IID
* const table_iids
[] = {
196 &IID_IConnectionPointContainer
,
200 static const IID
* const script_iids
[] = {
206 &IID_IHTMLScriptElement
,
208 &IID_IConnectionPointContainer
,
212 static const IID
* const text_iids
[] = {
215 &IID_IHTMLDOMTextNode
,
219 static const IID
* const location_iids
[] = {
225 static const IID
* const window_iids
[] = {
233 static const IID
* const comment_iids
[] = {
239 &IID_IHTMLCommentElement
,
241 &IID_IConnectionPointContainer
,
245 static const IID
* const img_iids
[] = {
252 &IID_IHTMLImgElement
,
253 &IID_IConnectionPointContainer
,
257 static const IID
* const tr_iids
[] = {
265 &IID_IConnectionPointContainer
,
269 static const IID
* const td_iids
[] = {
276 &IID_IConnectionPointContainer
,
280 static const IID
* const iframe_iids
[] = {
286 &IID_IHTMLFrameBase2
,
288 &IID_IConnectionPointContainer
,
292 static const IID
* const generic_iids
[] = {
298 &IID_IHTMLGenericElement
,
300 &IID_IConnectionPointContainer
,
304 static const IID
* const style_iids
[] = {
313 static const IID
* const cstyle_iids
[] = {
317 &IID_IHTMLCurrentStyle
,
327 static const elem_type_info_t elem_type_infos
[] = {
328 {"", none_iids
, NULL
},
329 {"HTML", elem_iids
, NULL
},
330 {"HEAD", elem_iids
, NULL
},
331 {"TITLE", elem_iids
, NULL
},
332 {"BODY", body_iids
, &DIID_DispHTMLBody
},
333 {"A", anchor_iids
, NULL
},
334 {"INPUT", input_iids
, &DIID_DispHTMLInputElement
},
335 {"SELECT", select_iids
, &DIID_DispHTMLSelectElement
},
336 {"TEXTAREA", textarea_iids
, NULL
},
337 {"OPTION", option_iids
, &DIID_DispHTMLOptionElement
},
338 {"STYLE", elem_iids
, NULL
},
339 {"BLOCKQUOTE",elem_iids
, NULL
},
340 {"P", elem_iids
, NULL
},
341 {"BR", elem_iids
, NULL
},
342 {"TABLE", table_iids
, &DIID_DispHTMLTable
},
343 {"TBODY", elem_iids
, NULL
},
344 {"SCRIPT", script_iids
, NULL
},
345 {"TEST", elem_iids
, &DIID_DispHTMLUnknownElement
},
346 {"TEST", generic_iids
, &DIID_DispHTMLGenericElement
},
347 {"!", comment_iids
, &DIID_DispHTMLCommentElement
},
348 {"IMG", img_iids
, &DIID_DispHTMLImg
},
349 {"TR", tr_iids
, &DIID_DispHTMLTableRow
},
350 {"TD", td_iids
, NULL
},
351 {"IFRAME", iframe_iids
, &DIID_DispHTMLIFrame
}
354 static const char *dbgstr_w(LPCWSTR str
)
356 static char buf
[512];
359 WideCharToMultiByte(CP_ACP
, 0, str
, -1, buf
, sizeof(buf
), NULL
, NULL
);
363 static const char *dbgstr_guid(REFIID riid
)
367 sprintf(buf
, "{%08X-%04X-%04X-%02X%02X-%02X%02X%02X%02X%02X%02X}",
368 riid
->Data1
, riid
->Data2
, riid
->Data3
, riid
->Data4
[0],
369 riid
->Data4
[1], riid
->Data4
[2], riid
->Data4
[3], riid
->Data4
[4],
370 riid
->Data4
[5], riid
->Data4
[6], riid
->Data4
[7]);
375 static int strcmp_wa(LPCWSTR strw
, const char *stra
)
378 MultiByteToWideChar(CP_ACP
, 0, stra
, -1, buf
, sizeof(buf
)/sizeof(WCHAR
));
379 return lstrcmpW(strw
, buf
);
382 static BSTR
a2bstr(const char *str
)
387 len
= MultiByteToWideChar(CP_ACP
, 0, str
, -1, NULL
, 0);
388 ret
= SysAllocStringLen(NULL
, len
);
389 MultiByteToWideChar(CP_ACP
, 0, str
, -1, ret
, len
);
394 static BOOL
iface_cmp(IUnknown
*iface1
, IUnknown
*iface2
)
396 IUnknown
*unk1
, *unk2
;
401 IUnknown_QueryInterface(iface1
, &IID_IUnknown
, (void**)&unk1
);
402 IUnknown_Release(unk1
);
403 IUnknown_QueryInterface(iface1
, &IID_IUnknown
, (void**)&unk2
);
404 IUnknown_Release(unk2
);
409 static IHTMLDocument2
*create_document(void)
412 IHTMLDocument5
*doc5
;
415 hres
= CoCreateInstance(&CLSID_HTMLDocument
, NULL
, CLSCTX_INPROC_SERVER
|CLSCTX_INPROC_HANDLER
,
416 &IID_IHTMLDocument2
, (void**)&doc
);
417 ok(hres
== S_OK
, "CoCreateInstance failed: %08x\n", hres
);
419 hres
= IHTMLDocument2_QueryInterface(doc
, &IID_IHTMLDocument5
, (void**)&doc5
);
421 win_skip("Could not get IHTMLDocument5, probably too old IE\n");
422 IHTMLDocument2_Release(doc
);
426 IHTMLDocument5_Release(doc5
);
430 #define test_ifaces(i,ids) _test_ifaces(__LINE__,i,ids)
431 static void _test_ifaces(unsigned line
, IUnknown
*iface
, REFIID
*iids
)
433 const IID
* const *piid
;
437 for(piid
= iids
; *piid
; piid
++) {
438 hres
= IDispatch_QueryInterface(iface
, *piid
, (void**)&unk
);
439 ok_(__FILE__
,line
) (hres
== S_OK
, "Could not get %s interface: %08x\n", dbgstr_guid(*piid
), hres
);
441 IUnknown_Release(unk
);
445 #define test_disp(u,id) _test_disp(__LINE__,u,id)
446 static void _test_disp(unsigned line
, IUnknown
*unk
, const IID
*diid
)
453 hres
= IUnknown_QueryInterface(unk
, &IID_IDispatchEx
, (void**)&dispex
);
454 ok_(__FILE__
,line
) (hres
== S_OK
, "Could not get IDispatch: %08x\n", hres
);
459 hres
= IDispatchEx_GetTypeInfoCount(dispex
, &ticnt
);
460 ok_(__FILE__
,line
) (hres
== S_OK
, "GetTypeInfoCount failed: %08x\n", hres
);
461 ok_(__FILE__
,line
) (ticnt
== 1, "ticnt=%u\n", ticnt
);
463 hres
= IDispatchEx_GetTypeInfo(dispex
, 0, 0, &typeinfo
);
464 ok_(__FILE__
,line
) (hres
== S_OK
, "GetTypeInfo failed: %08x\n", hres
);
466 if(SUCCEEDED(hres
)) {
469 hres
= ITypeInfo_GetTypeAttr(typeinfo
, &type_attr
);
470 ok_(__FILE__
,line
) (hres
== S_OK
, "GetTypeAttr failed: %08x\n", hres
);
471 ok_(__FILE__
,line
) (IsEqualGUID(&type_attr
->guid
, diid
), "unexpected guid %s\n", dbgstr_guid(&type_attr
->guid
));
473 ITypeInfo_ReleaseTypeAttr(typeinfo
, type_attr
);
474 ITypeInfo_Release(typeinfo
);
477 IDispatchEx_Release(dispex
);
480 #define get_elem_iface(u) _get_elem_iface(__LINE__,u)
481 static IHTMLElement
*_get_elem_iface(unsigned line
, IUnknown
*unk
)
486 hres
= IUnknown_QueryInterface(unk
, &IID_IHTMLElement
, (void**)&elem
);
487 ok_(__FILE__
,line
) (hres
== S_OK
, "Coule not get IHTMLElement: %08x\n", hres
);
491 #define get_elem2_iface(u) _get_elem2_iface(__LINE__,u)
492 static IHTMLElement2
*_get_elem2_iface(unsigned line
, IUnknown
*unk
)
497 hres
= IUnknown_QueryInterface(unk
, &IID_IHTMLElement2
, (void**)&elem
);
498 ok_(__FILE__
,line
) (hres
== S_OK
, "Coule not get IHTMLElement2: %08x\n", hres
);
502 #define get_elem3_iface(u) _get_elem3_iface(__LINE__,u)
503 static IHTMLElement3
*_get_elem3_iface(unsigned line
, IUnknown
*unk
)
508 hres
= IUnknown_QueryInterface(unk
, &IID_IHTMLElement3
, (void**)&elem
);
509 ok_(__FILE__
,line
) (hres
== S_OK
, "Coule not get IHTMLElement3: %08x\n", hres
);
513 #define get_node_iface(u) _get_node_iface(__LINE__,u)
514 static IHTMLDOMNode
*_get_node_iface(unsigned line
, IUnknown
*unk
)
519 hres
= IUnknown_QueryInterface(unk
, &IID_IHTMLDOMNode
, (void**)&node
);
520 ok_(__FILE__
,line
) (hres
== S_OK
, "Coule not get IHTMLDOMNode: %08x\n", hres
);
524 #define get_img_iface(u) _get_img_iface(__LINE__,u)
525 static IHTMLImgElement
*_get_img_iface(unsigned line
, IUnknown
*unk
)
527 IHTMLImgElement
*img
;
530 hres
= IUnknown_QueryInterface(unk
, &IID_IHTMLImgElement
, (void**)&img
);
531 ok_(__FILE__
,line
) (hres
== S_OK
, "Could not get IHTMLImgElement: %08x\n", hres
);
535 #define test_node_name(u,n) _test_node_name(__LINE__,u,n)
536 static void _test_node_name(unsigned line
, IUnknown
*unk
, const char *exname
)
538 IHTMLDOMNode
*node
= _get_node_iface(line
, unk
);
542 hres
= IHTMLDOMNode_get_nodeName(node
, &name
);
543 IHTMLDOMNode_Release(node
);
544 ok_(__FILE__
, line
) (hres
== S_OK
, "get_nodeName failed: %08x\n", hres
);
545 ok_(__FILE__
, line
) (!strcmp_wa(name
, exname
), "got name: %s, expected %s\n", dbgstr_w(name
), exname
);
550 #define test_elem_tag(u,n) _test_elem_tag(__LINE__,u,n)
551 static void _test_elem_tag(unsigned line
, IUnknown
*unk
, const char *extag
)
553 IHTMLElement
*elem
= _get_elem_iface(line
, unk
);
557 hres
= IHTMLElement_get_tagName(elem
, &tag
);
558 IHTMLElement_Release(elem
);
559 ok_(__FILE__
, line
) (hres
== S_OK
, "get_tagName failed: %08x\n", hres
);
560 ok_(__FILE__
, line
) (!strcmp_wa(tag
, extag
), "got tag: %s, expected %s\n", dbgstr_w(tag
), extag
);
565 #define test_elem_type(ifc,t) _test_elem_type(__LINE__,ifc,t)
566 static void _test_elem_type(unsigned line
, IUnknown
*unk
, elem_type_t type
)
568 _test_elem_tag(line
, unk
, elem_type_infos
[type
].tag
);
569 _test_ifaces(line
, unk
, elem_type_infos
[type
].iids
);
571 if(elem_type_infos
[type
].dispiid
)
572 _test_disp(line
, unk
, elem_type_infos
[type
].dispiid
);
575 #define get_node_type(n) _get_node_type(__LINE__,n)
576 static long _get_node_type(unsigned line
, IUnknown
*unk
)
578 IHTMLDOMNode
*node
= _get_node_iface(line
, unk
);
582 hres
= IHTMLDOMNode_get_nodeType(node
, &type
);
583 ok(hres
== S_OK
, "get_nodeType failed: %08x\n", hres
);
585 IHTMLDOMNode_Release(node
);
590 #define get_child_nodes(u) _get_child_nodes(__LINE__,u)
591 static IHTMLDOMChildrenCollection
*_get_child_nodes(unsigned line
, IUnknown
*unk
)
593 IHTMLDOMNode
*node
= _get_node_iface(line
, unk
);
594 IHTMLDOMChildrenCollection
*col
= NULL
;
598 hres
= IHTMLDOMNode_get_childNodes(node
, &disp
);
599 IHTMLDOMNode_Release(node
);
600 ok_(__FILE__
,line
) (hres
== S_OK
, "get_childNodes failed: %08x\n", hres
);
604 hres
= IDispatch_QueryInterface(disp
, &IID_IHTMLDOMChildrenCollection
, (void**)&col
);
605 IDispatch_Release(disp
);
606 ok_(__FILE__
,line
) (hres
== S_OK
, "Could not get IHTMLDOMChildrenCollection: %08x\n", hres
);
611 #define get_child_item(c,i) _get_child_item(__LINE__,c,i)
612 static IHTMLDOMNode
*_get_child_item(unsigned line
, IHTMLDOMChildrenCollection
*col
, long idx
)
614 IHTMLDOMNode
*node
= NULL
;
618 hres
= IHTMLDOMChildrenCollection_item(col
, idx
, &disp
);
619 ok(hres
== S_OK
, "item failed: %08x\n", hres
);
621 node
= _get_node_iface(line
, (IUnknown
*)disp
);
622 IDispatch_Release(disp
);
627 #define test_elem_attr(e,n,v) _test_elem_attr(__LINE__,e,n,v)
628 static void _test_elem_attr(unsigned line
, IHTMLElement
*elem
, LPCWSTR name
, LPCWSTR exval
)
636 tmp
= SysAllocString(name
);
637 hres
= IHTMLElement_getAttribute(elem
, tmp
, 0, &value
);
639 ok_(__FILE__
,line
) (hres
== S_OK
, "getAttribute failed: %08x\n", hres
);
642 ok_(__FILE__
,line
) (V_VT(&value
) == VT_BSTR
, "vt=%d\n", V_VT(&value
));
643 ok_(__FILE__
,line
) (!lstrcmpW(exval
, V_BSTR(&value
)), "unexpected value %s\n", dbgstr_w(V_BSTR(&value
)));
645 ok_(__FILE__
,line
) (V_VT(&value
) == VT_NULL
, "vt=%d\n", V_VT(&value
));
648 VariantClear(&value
);
651 #define test_elem_offset(u) _test_elem_offset(__LINE__,u)
652 static void _test_elem_offset(unsigned line
, IUnknown
*unk
)
654 IHTMLElement
*elem
= _get_elem_iface(line
, unk
);
658 hres
= IHTMLElement_get_offsetTop(elem
, &l
);
659 ok_(__FILE__
,line
) (hres
== S_OK
, "get_offsetTop failed: %08x\n", hres
);
661 hres
= IHTMLElement_get_offsetHeight(elem
, &l
);
662 ok_(__FILE__
,line
) (hres
== S_OK
, "get_offsetHeight failed: %08x\n", hres
);
664 hres
= IHTMLElement_get_offsetWidth(elem
, &l
);
665 ok_(__FILE__
,line
) (hres
== S_OK
, "get_offsetWidth failed: %08x\n", hres
);
667 IHTMLElement_Release(elem
);
670 static void test_doc_elem(IHTMLDocument2
*doc
)
673 IHTMLDocument3
*doc3
;
676 hres
= IHTMLDocument2_QueryInterface(doc
, &IID_IHTMLDocument3
, (void**)&doc3
);
677 ok(hres
== S_OK
, "QueryInterface(IID_IHTMLDocument3) failed: %08x\n", hres
);
679 hres
= IHTMLDocument3_get_documentElement(doc3
, &elem
);
680 IHTMLDocument3_Release(doc3
);
681 ok(hres
== S_OK
, "get_documentElement failed: %08x\n", hres
);
683 test_node_name((IUnknown
*)elem
, "HTML");
684 test_elem_tag((IUnknown
*)elem
, "HTML");
686 IHTMLElement_Release(elem
);
689 #define get_doc_elem(d) _get_doc_elem(__LINE__,d)
690 static IHTMLElement
*_get_doc_elem(unsigned line
, IHTMLDocument2
*doc
)
693 IHTMLDocument3
*doc3
;
696 hres
= IHTMLDocument2_QueryInterface(doc
, &IID_IHTMLDocument3
, (void**)&doc3
);
697 ok_(__FILE__
,line
) (hres
== S_OK
, "Could not get IHTMLDocument3 interface: %08x\n", hres
);
698 hres
= IHTMLDocument3_get_documentElement(doc3
, &elem
);
699 ok_(__FILE__
,line
) (hres
== S_OK
, "get_documentElement failed: %08x\n", hres
);
700 IHTMLDocument3_Release(doc3
);
705 #define test_option_text(o,t) _test_option_text(__LINE__,o,t)
706 static void _test_option_text(unsigned line
, IHTMLOptionElement
*option
, const char *text
)
711 hres
= IHTMLOptionElement_get_text(option
, &bstr
);
712 ok_(__FILE__
,line
) (hres
== S_OK
, "get_text failed: %08x\n", hres
);
713 ok_(__FILE__
,line
) (!strcmp_wa(bstr
, text
), "text=%s\n", dbgstr_w(bstr
));
717 #define test_option_put_text(o,t) _test_option_put_text(__LINE__,o,t)
718 static void _test_option_put_text(unsigned line
, IHTMLOptionElement
*option
, const char *text
)
724 hres
= IHTMLOptionElement_put_text(option
, bstr
);
726 ok(hres
== S_OK
, "put_text failed: %08x\n", hres
);
728 _test_option_text(line
, option
, text
);
731 #define test_option_value(o,t) _test_option_value(__LINE__,o,t)
732 static void _test_option_value(unsigned line
, IHTMLOptionElement
*option
, const char *value
)
737 hres
= IHTMLOptionElement_get_value(option
, &bstr
);
738 ok_(__FILE__
,line
) (hres
== S_OK
, "get_value failed: %08x\n", hres
);
739 ok_(__FILE__
,line
) (!strcmp_wa(bstr
, value
), "value=%s\n", dbgstr_w(bstr
));
743 #define test_option_put_value(o,t) _test_option_put_value(__LINE__,o,t)
744 static void _test_option_put_value(unsigned line
, IHTMLOptionElement
*option
, const char *value
)
749 bstr
= a2bstr(value
);
750 hres
= IHTMLOptionElement_put_value(option
, bstr
);
752 ok(hres
== S_OK
, "put_value failed: %08x\n", hres
);
754 _test_option_value(line
, option
, value
);
757 #define create_option_elem(d,t,v) _create_option_elem(__LINE__,d,t,v)
758 static IHTMLOptionElement
*_create_option_elem(unsigned line
, IHTMLDocument2
*doc
,
759 const char *txt
, const char *val
)
761 IHTMLOptionElementFactory
*factory
;
762 IHTMLOptionElement
*option
;
763 IHTMLWindow2
*window
;
764 VARIANT text
, value
, empty
;
767 hres
= IHTMLDocument2_get_parentWindow(doc
, &window
);
768 ok_(__FILE__
,line
) (hres
== S_OK
, "get_parentElement failed: %08x\n", hres
);
770 hres
= IHTMLWindow2_get_Option(window
, &factory
);
771 IHTMLWindow2_Release(window
);
772 ok_(__FILE__
,line
) (hres
== S_OK
, "get_Option failed: %08x\n", hres
);
774 V_VT(&text
) = VT_BSTR
;
775 V_BSTR(&text
) = a2bstr(txt
);
776 V_VT(&value
) = VT_BSTR
;
777 V_BSTR(&value
) = a2bstr(val
);
778 V_VT(&empty
) = VT_EMPTY
;
780 hres
= IHTMLOptionElementFactory_create(factory
, text
, value
, empty
, empty
, &option
);
781 ok_(__FILE__
,line
) (hres
== S_OK
, "create failed: %08x\n", hres
);
783 IHTMLOptionElementFactory_Release(factory
);
785 VariantClear(&value
);
787 _test_option_text(line
, option
, txt
);
788 _test_option_value(line
, option
, val
);
793 #define test_select_length(s,l) _test_select_length(__LINE__,s,l)
794 static void _test_select_length(unsigned line
, IHTMLSelectElement
*select
, long length
)
796 long len
= 0xdeadbeef;
799 hres
= IHTMLSelectElement_get_length(select
, &len
);
800 ok_(__FILE__
,line
) (hres
== S_OK
, "get_length failed: %08x\n", hres
);
801 ok_(__FILE__
,line
) (len
== length
, "len=%ld, expected %ld\n", len
, length
);
804 #define test_select_selidx(s,i) _test_select_selidx(__LINE__,s,i)
805 static void _test_select_selidx(unsigned line
, IHTMLSelectElement
*select
, long index
)
807 long idx
= 0xdeadbeef;
810 hres
= IHTMLSelectElement_get_selectedIndex(select
, &idx
);
811 ok_(__FILE__
,line
) (hres
== S_OK
, "get_selectedIndex failed: %08x\n", hres
);
812 ok_(__FILE__
,line
) (idx
== index
, "idx=%ld, expected %ld\n", idx
, index
);
815 #define test_select_put_selidx(s,i) _test_select_put_selidx(__LINE__,s,i)
816 static void _test_select_put_selidx(unsigned line
, IHTMLSelectElement
*select
, long index
)
820 hres
= IHTMLSelectElement_put_selectedIndex(select
, index
);
821 ok_(__FILE__
,line
) (hres
== S_OK
, "get_selectedIndex failed: %08x\n", hres
);
822 _test_select_selidx(line
, select
, index
);
825 #define test_select_value(s,v) _test_select_value(__LINE__,s,v)
826 static void _test_select_value(unsigned line
, IHTMLSelectElement
*select
, const char *exval
)
831 hres
= IHTMLSelectElement_get_value(select
, &val
);
832 ok_(__FILE__
,line
) (hres
== S_OK
, "get_value failed: %08x\n", hres
);
834 ok_(__FILE__
,line
) (!strcmp_wa(val
, exval
), "unexpected value %s\n", dbgstr_w(val
));
836 ok_(__FILE__
,line
) (val
== NULL
, "val=%s, expected NULL\n", dbgstr_w(val
));
839 #define test_select_set_value(s,v) _test_select_set_value(__LINE__,s,v)
840 static void _test_select_set_value(unsigned line
, IHTMLSelectElement
*select
, const char *val
)
846 hres
= IHTMLSelectElement_put_value(select
, bstr
);
848 ok_(__FILE__
,line
) (hres
== S_OK
, "put_value failed: %08x\n", hres
);
851 #define test_select_type(s,t) _test_select_type(__LINE__,s,t)
852 static void _test_select_type(unsigned line
, IHTMLSelectElement
*select
, const char *extype
)
857 hres
= IHTMLSelectElement_get_type(select
, &type
);
858 ok_(__FILE__
,line
) (hres
== S_OK
, "get_type failed: %08x\n", hres
);
859 ok_(__FILE__
,line
) (!strcmp_wa(type
, extype
), "type=%s, expected %s\n", dbgstr_w(type
), extype
);
862 #define test_range_text(r,t) _test_range_text(__LINE__,r,t)
863 static void _test_range_text(unsigned line
, IHTMLTxtRange
*range
, const char *extext
)
868 hres
= IHTMLTxtRange_get_text(range
, &text
);
869 ok_(__FILE__
, line
) (hres
== S_OK
, "get_text failed: %08x\n", hres
);
872 ok_(__FILE__
, line
) (text
!= NULL
, "text == NULL\n");
873 ok_(__FILE__
, line
) (!strcmp_wa(text
, extext
), "text=\"%s\", expected \"%s\"\n", dbgstr_w(text
), extext
);
875 ok_(__FILE__
, line
) (text
== NULL
, "text=\"%s\", expected NULL\n", dbgstr_w(text
));
882 #define test_range_collapse(r,b) _test_range_collapse(__LINE__,r,b)
883 static void _test_range_collapse(unsigned line
, IHTMLTxtRange
*range
, BOOL b
)
887 hres
= IHTMLTxtRange_collapse(range
, b
);
888 ok_(__FILE__
, line
) (hres
== S_OK
, "collapse failed: %08x\n", hres
);
889 _test_range_text(line
, range
, NULL
);
892 #define test_range_expand(r,u,b,t) _test_range_expand(__LINE__,r,u,b,t)
893 static void _test_range_expand(unsigned line
, IHTMLTxtRange
*range
, LPWSTR unit
,
894 VARIANT_BOOL exb
, const char *extext
)
896 VARIANT_BOOL b
= 0xe0e0;
899 hres
= IHTMLTxtRange_expand(range
, unit
, &b
);
900 ok_(__FILE__
,line
) (hres
== S_OK
, "expand failed: %08x\n", hres
);
901 ok_(__FILE__
,line
) (b
== exb
, "b=%x, expected %x\n", b
, exb
);
902 _test_range_text(line
, range
, extext
);
905 #define test_range_move(r,u,c,e) _test_range_move(__LINE__,r,u,c,e)
906 static void _test_range_move(unsigned line
, IHTMLTxtRange
*range
, LPWSTR unit
, long cnt
, long excnt
)
911 hres
= IHTMLTxtRange_move(range
, unit
, cnt
, &c
);
912 ok_(__FILE__
,line
) (hres
== S_OK
, "move failed: %08x\n", hres
);
913 ok_(__FILE__
,line
) (c
== excnt
, "count=%ld, expected %ld\n", c
, excnt
);
914 _test_range_text(line
, range
, NULL
);
917 #define test_range_movestart(r,u,c,e) _test_range_movestart(__LINE__,r,u,c,e)
918 static void _test_range_movestart(unsigned line
, IHTMLTxtRange
*range
,
919 LPWSTR unit
, long cnt
, long excnt
)
924 hres
= IHTMLTxtRange_moveStart(range
, unit
, cnt
, &c
);
925 ok_(__FILE__
,line
) (hres
== S_OK
, "move failed: %08x\n", hres
);
926 ok_(__FILE__
,line
) (c
== excnt
, "count=%ld, expected %ld\n", c
, excnt
);
929 #define test_range_moveend(r,u,c,e) _test_range_moveend(__LINE__,r,u,c,e)
930 static void _test_range_moveend(unsigned line
, IHTMLTxtRange
*range
, LPWSTR unit
, long cnt
, long excnt
)
935 hres
= IHTMLTxtRange_moveEnd(range
, unit
, cnt
, &c
);
936 ok_(__FILE__
,line
) (hres
== S_OK
, "move failed: %08x\n", hres
);
937 ok_(__FILE__
,line
) (c
== excnt
, "count=%ld, expected %ld\n", c
, excnt
);
940 #define test_range_put_text(r,t) _test_range_put_text(__LINE__,r,t)
941 static void _test_range_put_text(unsigned line
, IHTMLTxtRange
*range
, const char *text
)
944 BSTR bstr
= a2bstr(text
);
946 hres
= IHTMLTxtRange_put_text(range
, bstr
);
947 ok_(__FILE__
,line
) (hres
== S_OK
, "put_text failed: %08x\n", hres
);
949 _test_range_text(line
, range
, NULL
);
952 #define test_range_inrange(r1,r2,b) _test_range_inrange(__LINE__,r1,r2,b)
953 static void _test_range_inrange(unsigned line
, IHTMLTxtRange
*range1
, IHTMLTxtRange
*range2
, VARIANT_BOOL exb
)
959 hres
= IHTMLTxtRange_inRange(range1
, range2
, &b
);
960 ok_(__FILE__
,line
) (hres
== S_OK
, "(1->2) isEqual failed: %08x\n", hres
);
961 ok_(__FILE__
,line
) (b
== exb
, "(1->2) b=%x, expected %x\n", b
, exb
);
964 #define test_range_isequal(r1,r2,b) _test_range_isequal(__LINE__,r1,r2,b)
965 static void _test_range_isequal(unsigned line
, IHTMLTxtRange
*range1
, IHTMLTxtRange
*range2
, VARIANT_BOOL exb
)
971 hres
= IHTMLTxtRange_isEqual(range1
, range2
, &b
);
972 ok_(__FILE__
,line
) (hres
== S_OK
, "(1->2) isEqual failed: %08x\n", hres
);
973 ok_(__FILE__
,line
) (b
== exb
, "(1->2) b=%x, expected %x\n", b
, exb
);
976 hres
= IHTMLTxtRange_isEqual(range2
, range1
, &b
);
977 ok_(__FILE__
,line
) (hres
== S_OK
, "(2->1) isEqual failed: %08x\n", hres
);
978 ok_(__FILE__
,line
) (b
== exb
, "(2->1) b=%x, expected %x\n", b
, exb
);
981 test_range_inrange(range1
, range2
, VARIANT_TRUE
);
982 test_range_inrange(range2
, range1
, VARIANT_TRUE
);
986 #define test_range_parent(r,t) _test_range_parent(__LINE__,r,t)
987 static void _test_range_parent(unsigned line
, IHTMLTxtRange
*range
, elem_type_t type
)
992 hres
= IHTMLTxtRange_parentElement(range
, &elem
);
993 ok_(__FILE__
,line
) (hres
== S_OK
, "parentElement failed: %08x\n", hres
);
995 _test_elem_type(line
, (IUnknown
*)elem
, type
);
997 IHTMLElement_Release(elem
);
1000 #define test_elem_collection(c,t,l) _test_elem_collection(__LINE__,c,t,l)
1001 static void _test_elem_collection(unsigned line
, IUnknown
*unk
,
1002 const elem_type_t
*elem_types
, long exlen
)
1004 IHTMLElementCollection
*col
;
1007 VARIANT name
, index
;
1011 hres
= IUnknown_QueryInterface(unk
, &IID_IHTMLElementCollection
, (void**)&col
);
1012 ok_(__FILE__
,line
) (hres
== S_OK
, "Could not get IHTMLElementCollection: %08x\n", hres
);
1014 test_disp((IUnknown
*)col
, &DIID_DispHTMLElementCollection
);
1016 hres
= IHTMLElementCollection_get_length(col
, &len
);
1017 ok_(__FILE__
,line
) (hres
== S_OK
, "get_length failed: %08x\n", hres
);
1018 ok_(__FILE__
,line
) (len
== exlen
, "len=%ld, expected %ld\n", len
, exlen
);
1023 V_VT(&index
) = VT_EMPTY
;
1024 V_VT(&name
) = VT_I4
;
1026 for(i
=0; i
<len
; i
++) {
1028 disp
= (void*)0xdeadbeef;
1029 hres
= IHTMLElementCollection_item(col
, name
, index
, &disp
);
1030 ok_(__FILE__
,line
) (hres
== S_OK
, "item(%d) failed: %08x\n", i
, hres
);
1031 ok_(__FILE__
,line
) (disp
!= NULL
, "item returned NULL\n");
1032 if(FAILED(hres
) || !disp
)
1035 _test_elem_type(line
, (IUnknown
*)disp
, elem_types
[i
]);
1036 IDispatch_Release(disp
);
1040 disp
= (void*)0xdeadbeef;
1041 hres
= IHTMLElementCollection_item(col
, name
, index
, &disp
);
1042 ok_(__FILE__
,line
) (hres
== S_OK
, "item failed: %08x\n", hres
);
1043 ok_(__FILE__
,line
) (disp
== NULL
, "disp != NULL\n");
1046 disp
= (void*)0xdeadbeef;
1047 hres
= IHTMLElementCollection_item(col
, name
, index
, &disp
);
1048 ok_(__FILE__
,line
) (hres
== E_INVALIDARG
, "item failed: %08x, expected E_INVALIDARG\n", hres
);
1049 ok_(__FILE__
,line
) (disp
== NULL
, "disp != NULL\n");
1051 IHTMLElementCollection_Release(col
);
1054 #define test_elem_getelembytag(u,t,l) _test_elem_getelembytag(__LINE__,u,t,l)
1055 static void _test_elem_getelembytag(unsigned line
, IUnknown
*unk
, elem_type_t type
, long exlen
)
1057 IHTMLElement2
*elem
= _get_elem2_iface(line
, unk
);
1058 IHTMLElementCollection
*col
= NULL
;
1059 elem_type_t
*types
= NULL
;
1064 tmp
= a2bstr(elem_type_infos
[type
].tag
);
1065 hres
= IHTMLElement2_getElementsByTagName(elem
, tmp
, &col
);
1067 IHTMLElement2_Release(elem
);
1068 ok_(__FILE__
,line
) (hres
== S_OK
, "getElementByTagName failed: %08x\n", hres
);
1069 ok_(__FILE__
,line
) (col
!= NULL
, "col == NULL\n");
1072 types
= HeapAlloc(GetProcessHeap(), 0, exlen
*sizeof(elem_type_t
));
1073 for(i
=0; i
<exlen
; i
++)
1077 _test_elem_collection(line
, (IUnknown
*)col
, types
, exlen
);
1079 HeapFree(GetProcessHeap(), 0, types
);
1082 #define test_elem_innertext(e,t) _test_elem_innertext(__LINE__,e,t)
1083 static void _test_elem_innertext(unsigned line
, IHTMLElement
*elem
, const char *extext
)
1088 hres
= IHTMLElement_get_innerText(elem
, &text
);
1089 ok_(__FILE__
,line
) (hres
== S_OK
, "get_innerText failed: %08x\n", hres
);
1090 ok_(__FILE__
,line
) (!strcmp_wa(text
, extext
), "get_innerText returned %s expected %s\n",
1091 dbgstr_w(text
), extext
);
1092 SysFreeString(text
);
1095 #define test_elem_set_innertext(e,t) _test_elem_set_innertext(__LINE__,e,t)
1096 static void _test_elem_set_innertext(unsigned line
, IHTMLElement
*elem
, const char *text
)
1098 IHTMLDOMChildrenCollection
*col
;
1103 hres
= IHTMLElement_put_innerText(elem
, str
);
1104 ok_(__FILE__
,line
) (hres
== S_OK
, "put_innerText failed: %08x\n", hres
);
1107 _test_elem_innertext(line
, elem
, text
);
1110 col
= _get_child_nodes(line
, (IUnknown
*)elem
);
1111 ok(col
!= NULL
, "col == NULL\n");
1113 long length
= 0, type
;
1116 hres
= IHTMLDOMChildrenCollection_get_length(col
, &length
);
1117 ok(hres
== S_OK
, "get_length failed: %08x\n", hres
);
1118 ok(length
== 1, "length = %ld\n", length
);
1120 node
= _get_child_item(line
, col
, 0);
1121 ok(node
!= NULL
, "node == NULL\n");
1123 type
= _get_node_type(line
, (IUnknown
*)node
);
1124 ok(type
== 3, "type=%ld\n", type
);
1125 IHTMLDOMNode_Release(node
);
1128 IHTMLDOMChildrenCollection_Release(col
);
1133 #define get_first_child(n) _get_first_child(__LINE__,n)
1134 static IHTMLDOMNode
*_get_first_child(unsigned line
, IUnknown
*unk
)
1136 IHTMLDOMNode
*node
= _get_node_iface(line
, unk
);
1137 IHTMLDOMNode
*child
= NULL
;
1140 hres
= IHTMLDOMNode_get_firstChild(node
, &child
);
1141 IHTMLDOMNode_Release(node
);
1142 ok_(__FILE__
,line
) (hres
== S_OK
, "get_firstChild failed: %08x\n", hres
);
1147 #define test_node_has_child(u,b) _test_node_has_child(__LINE__,u,b)
1148 static void _test_node_has_child(unsigned line
, IUnknown
*unk
, VARIANT_BOOL exb
)
1150 IHTMLDOMNode
*node
= _get_node_iface(line
, unk
);
1151 VARIANT_BOOL b
= 0xdead;
1154 hres
= IHTMLDOMNode_hasChildNodes(node
, &b
);
1155 ok_(__FILE__
,line
) (hres
== S_OK
, "hasChildNodes failed: %08x\n", hres
);
1156 ok_(__FILE__
,line
) (b
== exb
, "hasChildNodes=%x, expected %x\n", b
, exb
);
1158 IHTMLDOMNode_Release(node
);
1161 #define test_node_get_parent(u) _test_node_get_parent(__LINE__,u)
1162 static IHTMLDOMNode
*_test_node_get_parent(unsigned line
, IUnknown
*unk
)
1164 IHTMLDOMNode
*node
= _get_node_iface(line
, unk
);
1165 IHTMLDOMNode
*parent
;
1168 hres
= IHTMLDOMNode_get_parentNode(node
, &parent
);
1169 IHTMLDOMNode_Release(node
);
1170 ok_(__FILE__
,line
) (hres
== S_OK
, "get_parentNode failed: %08x\n", hres
);
1175 #define test_elem_get_parent(u) _test_elem_get_parent(__LINE__,u)
1176 static IHTMLElement
*_test_elem_get_parent(unsigned line
, IUnknown
*unk
)
1178 IHTMLElement
*elem
= _get_elem_iface(line
, unk
);
1179 IHTMLElement
*parent
;
1182 hres
= IHTMLElement_get_parentElement(elem
, &parent
);
1183 IHTMLElement_Release(elem
);
1184 ok_(__FILE__
,line
) (hres
== S_OK
, "get_parentElement failed: %08x\n", hres
);
1189 #define test_elem3_get_disabled(i,b) _test_elem3_get_disabled(__LINE__,i,b)
1190 static void _test_elem3_get_disabled(unsigned line
, IUnknown
*unk
, VARIANT_BOOL exb
)
1192 IHTMLElement3
*elem3
= _get_elem3_iface(line
, unk
);
1193 VARIANT_BOOL disabled
= 100;
1197 hres
= IHTMLElement3_get_disabled(elem3
, &disabled
);
1198 ok_(__FILE__
,line
) (hres
== S_OK
, "get_disabled failed: %08x\n", hres
);
1199 ok_(__FILE__
,line
) (disabled
== exb
, "disabled=%x, expected %x\n", disabled
, exb
);
1200 IHTMLElement3_Release(elem3
);
1203 #define test_elem3_set_disabled(i,b) _test_elem3_set_disabled(__LINE__,i,b)
1204 static void _test_elem3_set_disabled(unsigned line
, IUnknown
*unk
, VARIANT_BOOL b
)
1206 IHTMLElement3
*elem3
= _get_elem3_iface(line
, unk
);
1210 hres
= IHTMLElement3_put_disabled(elem3
, b
);
1211 ok_(__FILE__
,line
) (hres
== S_OK
, "get_disabled failed: %08x\n", hres
);
1213 IHTMLElement3_Release(elem3
);
1214 _test_elem3_get_disabled(line
, unk
, b
);
1217 #define test_select_get_disabled(i,b) _test_select_get_disabled(__LINE__,i,b)
1218 static void _test_select_get_disabled(unsigned line
, IHTMLSelectElement
*select
, VARIANT_BOOL exb
)
1220 VARIANT_BOOL disabled
= 100;
1223 hres
= IHTMLSelectElement_get_disabled(select
, &disabled
);
1224 ok_(__FILE__
,line
) (hres
== S_OK
, "get_disabled failed: %08x\n", hres
);
1225 ok_(__FILE__
,line
) (disabled
== exb
, "disabled=%x, expected %x\n", disabled
, exb
);
1227 _test_elem3_get_disabled(line
, (IUnknown
*)select
, exb
);
1230 #define test_select_set_disabled(i,b) _test_select_set_disabled(__LINE__,i,b)
1231 static void _test_select_set_disabled(unsigned line
, IHTMLSelectElement
*select
, VARIANT_BOOL b
)
1235 hres
= IHTMLSelectElement_put_disabled(select
, b
);
1236 ok_(__FILE__
,line
) (hres
== S_OK
, "get_disabled failed: %08x\n", hres
);
1238 _test_select_get_disabled(line
, select
, b
);
1241 #define elem_get_scroll_height(u) _elem_get_scroll_height(__LINE__,u)
1242 static long _elem_get_scroll_height(unsigned line
, IUnknown
*unk
)
1244 IHTMLElement2
*elem
= _get_elem2_iface(line
, unk
);
1245 IHTMLTextContainer
*txtcont
;
1246 long l
= -1, l2
= -1;
1249 hres
= IHTMLElement2_get_scrollHeight(elem
, &l
);
1250 ok_(__FILE__
,line
) (hres
== S_OK
, "get_scrollHeight failed: %08x\n", hres
);
1251 IHTMLElement2_Release(elem
);
1253 hres
= IUnknown_QueryInterface(unk
, &IID_IHTMLTextContainer
, (void**)&txtcont
);
1254 ok_(__FILE__
,line
) (hres
== S_OK
, "Could not get IHTMLTextContainer: %08x\n", hres
);
1256 hres
= IHTMLTextContainer_get_scrollHeight(txtcont
, &l2
);
1257 IHTMLTextContainer_Release(txtcont
);
1258 ok_(__FILE__
,line
) (hres
== S_OK
, "IHTMLTextContainer::get_scrollHeight failed: %ld\n", l2
);
1259 ok_(__FILE__
,line
) (l
== l2
, "unexpected height %ld, expected %ld\n", l2
, l
);
1264 #define elem_get_scroll_width(u) _elem_get_scroll_width(__LINE__,u)
1265 static long _elem_get_scroll_width(unsigned line
, IUnknown
*unk
)
1267 IHTMLElement2
*elem
= _get_elem2_iface(line
, unk
);
1268 IHTMLTextContainer
*txtcont
;
1269 long l
= -1, l2
= -1;
1272 hres
= IHTMLElement2_get_scrollWidth(elem
, &l
);
1273 ok_(__FILE__
,line
) (hres
== S_OK
, "get_scrollWidth failed: %08x\n", hres
);
1274 IHTMLElement2_Release(elem
);
1276 hres
= IUnknown_QueryInterface(unk
, &IID_IHTMLTextContainer
, (void**)&txtcont
);
1277 ok_(__FILE__
,line
) (hres
== S_OK
, "Could not get IHTMLTextContainer: %08x\n", hres
);
1279 hres
= IHTMLTextContainer_get_scrollWidth(txtcont
, &l2
);
1280 IHTMLTextContainer_Release(txtcont
);
1281 ok_(__FILE__
,line
) (hres
== S_OK
, "IHTMLTextContainer::get_scrollWidth failed: %ld\n", l2
);
1282 ok_(__FILE__
,line
) (l
== l2
, "unexpected width %ld, expected %ld\n", l2
, l
);
1287 #define elem_get_scroll_top(u) _elem_get_scroll_top(__LINE__,u)
1288 static long _elem_get_scroll_top(unsigned line
, IUnknown
*unk
)
1290 IHTMLElement2
*elem
= _get_elem2_iface(line
, unk
);
1291 IHTMLTextContainer
*txtcont
;
1292 long l
= -1, l2
= -1;
1295 hres
= IHTMLElement2_get_scrollTop(elem
, &l
);
1296 ok_(__FILE__
,line
) (hres
== S_OK
, "get_scrollTop failed: %08x\n", hres
);
1297 IHTMLElement2_Release(elem
);
1299 hres
= IUnknown_QueryInterface(unk
, &IID_IHTMLTextContainer
, (void**)&txtcont
);
1300 ok_(__FILE__
,line
) (hres
== S_OK
, "Could not get IHTMLTextContainer: %08x\n", hres
);
1302 hres
= IHTMLTextContainer_get_scrollTop(txtcont
, &l2
);
1303 IHTMLTextContainer_Release(txtcont
);
1304 ok_(__FILE__
,line
) (hres
== S_OK
, "IHTMLTextContainer::get_scrollTop failed: %ld\n", l2
);
1305 ok_(__FILE__
,line
) (l
== l2
, "unexpected top %ld, expected %ld\n", l2
, l
);
1310 #define elem_get_scroll_left(u) _elem_get_scroll_left(__LINE__,u)
1311 static void _elem_get_scroll_left(unsigned line
, IUnknown
*unk
)
1313 IHTMLElement2
*elem
= _get_elem2_iface(line
, unk
);
1314 IHTMLTextContainer
*txtcont
;
1315 long l
= -1, l2
= -1;
1318 hres
= IHTMLElement2_get_scrollLeft(elem
, NULL
);
1319 ok(hres
== E_INVALIDARG
, "expect E_INVALIDARG got 0x%08x\n", hres
);
1321 hres
= IHTMLElement2_get_scrollLeft(elem
, &l
);
1322 ok(hres
== S_OK
, "get_scrollTop failed: %08x\n", hres
);
1323 IHTMLElement2_Release(elem
);
1325 hres
= IUnknown_QueryInterface(unk
, &IID_IHTMLTextContainer
, (void**)&txtcont
);
1326 ok(hres
== S_OK
, "Could not get IHTMLTextContainer: %08x\n", hres
);
1328 hres
= IHTMLTextContainer_get_scrollLeft(txtcont
, &l2
);
1329 IHTMLTextContainer_Release(txtcont
);
1330 ok(hres
== S_OK
, "IHTMLTextContainer::get_scrollLeft failed: %ld\n", l2
);
1331 ok(l
== l2
, "unexpected left %ld, expected %ld\n", l2
, l
);
1334 #define test_img_src(i,s) _test_img_src(__LINE__,i,s)
1335 static void _test_img_src(unsigned line
, IUnknown
*unk
, const char *exsrc
)
1337 IHTMLImgElement
*img
= _get_img_iface(line
, unk
);
1341 hres
= IHTMLImgElement_get_src(img
, &src
);
1342 IHTMLImgElement_Release(img
);
1343 ok_(__FILE__
,line
) (hres
== S_OK
, "get_src failed: %08x\n", hres
);
1344 ok_(__FILE__
,line
) (!strcmp_wa(src
, exsrc
), "get_src returned %s expected %s\n", dbgstr_w(src
), exsrc
);
1348 #define test_img_set_src(u,s) _test_img_set_src(__LINE__,u,s)
1349 static void _test_img_set_src(unsigned line
, IUnknown
*unk
, const char *src
)
1351 IHTMLImgElement
*img
= _get_img_iface(line
, unk
);
1356 hres
= IHTMLImgElement_put_src(img
, tmp
);
1357 IHTMLImgElement_Release(img
);
1359 ok_(__FILE__
,line
) (hres
== S_OK
, "put_src failed: %08x\n", hres
);
1361 _test_img_src(line
, unk
, src
);
1364 #define test_img_alt(u,a) _test_img_alt(__LINE__,u,a)
1365 static void _test_img_alt(unsigned line
, IUnknown
*unk
, const char *exalt
)
1367 IHTMLImgElement
*img
= _get_img_iface(line
, unk
);
1371 hres
= IHTMLImgElement_get_alt(img
, &alt
);
1372 ok_(__FILE__
,line
) (hres
== S_OK
, "get_alt failed: %08x\n", hres
);
1374 ok_(__FILE__
,line
) (!strcmp_wa(alt
, exalt
), "inexopected alt %s\n", dbgstr_w(alt
));
1376 ok_(__FILE__
,line
) (!alt
, "alt != NULL\n");
1380 #define test_img_set_alt(u,a) _test_img_set_alt(__LINE__,u,a)
1381 static void _test_img_set_alt(unsigned line
, IUnknown
*unk
, const char *alt
)
1383 IHTMLImgElement
*img
= _get_img_iface(line
, unk
);
1388 hres
= IHTMLImgElement_put_alt(img
, tmp
);
1389 ok_(__FILE__
,line
) (hres
== S_OK
, "get_alt failed: %08x\n", hres
);
1392 _test_img_alt(line
, unk
, alt
);
1395 #define test_input_get_disabled(i,b) _test_input_get_disabled(__LINE__,i,b)
1396 static void _test_input_get_disabled(unsigned line
, IHTMLInputElement
*input
, VARIANT_BOOL exb
)
1398 VARIANT_BOOL disabled
= 100;
1401 hres
= IHTMLInputElement_get_disabled(input
, &disabled
);
1402 ok_(__FILE__
,line
) (hres
== S_OK
, "get_disabled failed: %08x\n", hres
);
1403 ok_(__FILE__
,line
) (disabled
== exb
, "disabled=%x, expected %x\n", disabled
, exb
);
1405 _test_elem3_get_disabled(line
, (IUnknown
*)input
, exb
);
1408 #define test_input_set_disabled(i,b) _test_input_set_disabled(__LINE__,i,b)
1409 static void _test_input_set_disabled(unsigned line
, IHTMLInputElement
*input
, VARIANT_BOOL b
)
1413 hres
= IHTMLInputElement_put_disabled(input
, b
);
1414 ok_(__FILE__
,line
) (hres
== S_OK
, "get_disabled failed: %08x\n", hres
);
1416 _test_input_get_disabled(line
, input
, b
);
1419 #define test_input_get_defaultchecked(i,b) _test_input_get_defaultchecked(__LINE__,i,b)
1420 static void _test_input_get_defaultchecked(unsigned line
, IHTMLInputElement
*input
, VARIANT_BOOL exb
)
1422 VARIANT_BOOL checked
= 100;
1425 hres
= IHTMLInputElement_get_defaultChecked(input
, &checked
);
1426 ok_(__FILE__
,line
) (hres
== S_OK
, "get_defaultChecked failed: %08x\n", hres
);
1427 ok_(__FILE__
,line
) (checked
== exb
, "checked=%x, expected %x\n", checked
, exb
);
1430 #define test_input_set_defaultchecked(i,b) _test_input_set_defaultchecked(__LINE__,i,b)
1431 static void _test_input_set_defaultchecked(unsigned line
, IHTMLInputElement
*input
, VARIANT_BOOL b
)
1435 hres
= IHTMLInputElement_put_defaultChecked(input
, b
);
1436 ok_(__FILE__
,line
) (hres
== S_OK
, "get_defaultChecked failed: %08x\n", hres
);
1438 _test_input_get_defaultchecked(line
, input
, b
);
1441 #define test_input_get_checked(i,b) _test_input_get_checked(__LINE__,i,b)
1442 static void _test_input_get_checked(unsigned line
, IHTMLInputElement
*input
, VARIANT_BOOL exb
)
1444 VARIANT_BOOL checked
= 100;
1447 hres
= IHTMLInputElement_get_checked(input
, &checked
);
1448 ok_(__FILE__
,line
) (hres
== S_OK
, "get_checked failed: %08x\n", hres
);
1449 ok_(__FILE__
,line
) (checked
== exb
, "checked=%x, expected %x\n", checked
, exb
);
1452 #define test_input_set_checked(i,b) _test_input_set_checked(__LINE__,i,b)
1453 static void _test_input_set_checked(unsigned line
, IHTMLInputElement
*input
, VARIANT_BOOL b
)
1457 hres
= IHTMLInputElement_put_checked(input
, b
);
1458 ok_(__FILE__
,line
) (hres
== S_OK
, "get_checked failed: %08x\n", hres
);
1460 _test_input_get_checked(line
, input
, b
);
1463 #define test_input_value(o,t) _test_input_value(__LINE__,o,t)
1464 static void _test_input_value(unsigned line
, IUnknown
*unk
, const char *exval
)
1466 IHTMLInputElement
*input
;
1470 hres
= IUnknown_QueryInterface(unk
, &IID_IHTMLInputElement
, (void**)&input
);
1471 ok_(__FILE__
,line
) (hres
== S_OK
, "Could not get IHTMLInputElement: %08x\n", hres
);
1475 hres
= IHTMLInputElement_get_value(input
, &bstr
);
1476 ok_(__FILE__
,line
) (hres
== S_OK
, "get_value failed: %08x\n", hres
);
1478 ok_(__FILE__
,line
) (!strcmp_wa(bstr
, exval
), "value=%s\n", dbgstr_w(bstr
));
1480 ok_(__FILE__
,line
) (!exval
, "exval != NULL\n");
1481 SysFreeString(bstr
);
1482 IHTMLInputElement_Release(input
);
1485 #define test_input_put_value(o,v) _test_input_put_value(__LINE__,o,v)
1486 static void _test_input_put_value(unsigned line
, IUnknown
*unk
, const char *val
)
1488 IHTMLInputElement
*input
;
1492 hres
= IUnknown_QueryInterface(unk
, &IID_IHTMLInputElement
, (void**)&input
);
1493 ok_(__FILE__
,line
) (hres
== S_OK
, "Could not get IHTMLInputElement: %08x\n", hres
);
1498 hres
= IHTMLInputElement_get_value(input
, &bstr
);
1499 ok_(__FILE__
,line
) (hres
== S_OK
, "get_value failed: %08x\n", hres
);
1500 SysFreeString(bstr
);
1501 IHTMLInputElement_Release(input
);
1504 #define test_elem_class(u,c) _test_elem_class(__LINE__,u,c)
1505 static void _test_elem_class(unsigned line
, IUnknown
*unk
, const char *exclass
)
1507 IHTMLElement
*elem
= _get_elem_iface(line
, unk
);
1508 BSTR
class = (void*)0xdeadbeef;
1511 hres
= IHTMLElement_get_className(elem
, &class);
1512 IHTMLElement_Release(elem
);
1513 ok_(__FILE__
,line
) (hres
== S_OK
, "get_className failed: %08x\n", hres
);
1515 ok_(__FILE__
,line
) (!strcmp_wa(class, exclass
), "unexpected className %s\n", dbgstr_w(class));
1517 ok_(__FILE__
,line
) (!class, "class != NULL\n");
1518 SysFreeString(class);
1521 #define test_elem_tabindex(u,i) _test_elem_tabindex(__LINE__,u,i)
1522 static void _test_elem_tabindex(unsigned line
, IUnknown
*unk
, short exindex
)
1524 IHTMLElement2
*elem2
= _get_elem2_iface(line
, unk
);
1528 hres
= IHTMLElement2_get_tabIndex(elem2
, &index
);
1529 IHTMLElement2_Release(elem2
);
1530 ok_(__FILE__
,line
) (hres
== S_OK
, "get_tabIndex failed: %08x\n", hres
);
1531 ok_(__FILE__
,line
) (index
== exindex
, "unexpected index %d\n", index
);
1534 #define test_elem_set_tabindex(u,i) _test_elem_set_tabindex(__LINE__,u,i)
1535 static void _test_elem_set_tabindex(unsigned line
, IUnknown
*unk
, short index
)
1537 IHTMLElement2
*elem2
= _get_elem2_iface(line
, unk
);
1540 hres
= IHTMLElement2_put_tabIndex(elem2
, index
);
1541 IHTMLElement2_Release(elem2
);
1542 ok_(__FILE__
,line
) (hres
== S_OK
, "get_tabIndex failed: %08x\n", hres
);
1544 _test_elem_tabindex(line
, unk
, index
);
1547 #define test_elem_set_class(u,c) _test_elem_set_class(__LINE__,u,c)
1548 static void _test_elem_set_class(unsigned line
, IUnknown
*unk
, const char *class)
1550 IHTMLElement
*elem
= _get_elem_iface(line
, unk
);
1554 tmp
= class ? a2bstr(class) : NULL
;
1555 hres
= IHTMLElement_put_className(elem
, tmp
);
1556 IHTMLElement_Release(elem
);
1557 ok_(__FILE__
,line
) (hres
== S_OK
, "put_className failed: %08x\n", hres
);
1560 _test_elem_class(line
, unk
, class);
1563 #define test_elem_id(e,i) _test_elem_id(__LINE__,e,i)
1564 static void _test_elem_id(unsigned line
, IUnknown
*unk
, const char *exid
)
1566 IHTMLElement
*elem
= _get_elem_iface(line
, unk
);
1567 BSTR id
= (void*)0xdeadbeef;
1570 hres
= IHTMLElement_get_id(elem
, &id
);
1571 IHTMLElement_Release(elem
);
1572 ok_(__FILE__
,line
) (hres
== S_OK
, "get_id failed: %08x\n", hres
);
1575 ok_(__FILE__
,line
) (!strcmp_wa(id
, exid
), "unexpected id %s\n", dbgstr_w(id
));
1577 ok_(__FILE__
,line
) (!id
, "id=%s\n", dbgstr_w(id
));
1582 #define test_elem_put_id(u,i) _test_elem_put_id(__LINE__,u,i)
1583 static void _test_elem_put_id(unsigned line
, IUnknown
*unk
, const char *new_id
)
1585 IHTMLElement
*elem
= _get_elem_iface(line
, unk
);
1586 BSTR tmp
= a2bstr(new_id
);
1589 hres
= IHTMLElement_put_id(elem
, tmp
);
1590 IHTMLElement_Release(elem
);
1592 ok_(__FILE__
,line
) (hres
== S_OK
, "put_id failed: %08x\n", hres
);
1594 _test_elem_id(line
, unk
, new_id
);
1597 #define test_elem_title(u,t) _test_elem_title(__LINE__,u,t)
1598 static void _test_elem_title(unsigned line
, IUnknown
*unk
, const char *extitle
)
1600 IHTMLElement
*elem
= _get_elem_iface(line
, unk
);
1604 hres
= IHTMLElement_get_title(elem
, &title
);
1605 IHTMLElement_Release(elem
);
1606 ok_(__FILE__
,line
) (hres
== S_OK
, "get_title failed: %08x\n", hres
);
1608 ok_(__FILE__
,line
) (!strcmp_wa(title
, extitle
), "unexpected title %s\n", dbgstr_w(title
));
1610 ok_(__FILE__
,line
) (!title
, "title=%s, expected NULL\n", dbgstr_w(title
));
1612 SysFreeString(title
);
1615 #define test_elem_set_title(u,t) _test_elem_set_title(__LINE__,u,t)
1616 static void _test_elem_set_title(unsigned line
, IUnknown
*unk
, const char *title
)
1618 IHTMLElement
*elem
= _get_elem_iface(line
, unk
);
1622 tmp
= a2bstr(title
);
1623 hres
= IHTMLElement_put_title(elem
, tmp
);
1624 ok_(__FILE__
,line
) (hres
== S_OK
, "get_title failed: %08x\n", hres
);
1626 IHTMLElement_Release(elem
);
1630 #define test_node_get_value_str(u,e) _test_node_get_value_str(__LINE__,u,e)
1631 static void _test_node_get_value_str(unsigned line
, IUnknown
*unk
, const char *exval
)
1633 IHTMLDOMNode
*node
= _get_node_iface(line
, unk
);
1637 hres
= IHTMLDOMNode_get_nodeValue(node
, &var
);
1638 IHTMLDOMNode_Release(node
);
1639 ok_(__FILE__
,line
) (hres
== S_OK
, "get_nodeValue failed: %08x, expected VT_BSTR\n", hres
);
1642 ok_(__FILE__
,line
) (V_VT(&var
) == VT_BSTR
, "vt=%d\n", V_VT(&var
));
1643 ok_(__FILE__
,line
) (!strcmp_wa(V_BSTR(&var
), exval
), "unexpected value %s\n", dbgstr_w(V_BSTR(&var
)));
1645 ok_(__FILE__
,line
) (V_VT(&var
) == VT_NULL
, "vt=%d, expected VT_NULL\n", V_VT(&var
));
1651 #define test_node_put_value_str(u,v) _test_node_put_value_str(__LINE__,u,v)
1652 static void _test_node_put_value_str(unsigned line
, IUnknown
*unk
, const char *val
)
1654 IHTMLDOMNode
*node
= _get_node_iface(line
, unk
);
1658 V_VT(&var
) = VT_BSTR
;
1659 V_BSTR(&var
) = a2bstr(val
);
1661 hres
= IHTMLDOMNode_put_nodeValue(node
, var
);
1662 ok_(__FILE__
,line
) (hres
== S_OK
, "get_nodeValue failed: %08x, expected VT_BSTR\n", hres
);
1663 IHTMLDOMNode_Release(node
);
1667 #define test_elem_client_size(u) _test_elem_client_size(__LINE__,u)
1668 static void _test_elem_client_size(unsigned line
, IUnknown
*unk
)
1670 IHTMLElement2
*elem
= _get_elem2_iface(line
, unk
);
1674 hres
= IHTMLElement2_get_clientWidth(elem
, &l
);
1675 ok_(__FILE__
,line
) (hres
== S_OK
, "get_clientWidth failed: %08x\n", hres
);
1676 hres
= IHTMLElement2_get_clientHeight(elem
, &l
);
1677 ok_(__FILE__
,line
) (hres
== S_OK
, "get_clientHeight failed: %08x\n", hres
);
1679 IHTMLElement2_Release(elem
);
1682 #define test_create_elem(d,t) _test_create_elem(__LINE__,d,t)
1683 static IHTMLElement
*_test_create_elem(unsigned line
, IHTMLDocument2
*doc
, const char *tag
)
1685 IHTMLElement
*elem
= NULL
;
1690 hres
= IHTMLDocument2_createElement(doc
, tmp
, &elem
);
1691 ok_(__FILE__
,line
) (hres
== S_OK
, "createElement failed: %08x\n", hres
);
1692 ok_(__FILE__
,line
) (elem
!= NULL
, "elem == NULL\n");
1697 #define test_create_text(d,t) _test_create_text(__LINE__,d,t)
1698 static IHTMLDOMNode
*_test_create_text(unsigned line
, IHTMLDocument2
*doc
, const char *text
)
1700 IHTMLDocument3
*doc3
;
1701 IHTMLDOMNode
*node
= NULL
;
1705 hres
= IHTMLDocument2_QueryInterface(doc
, &IID_IHTMLDocument3
, (void**)&doc3
);
1706 ok_(__FILE__
,line
) (hres
== S_OK
, "Could not get IHTMLDocument3: %08x\n", hres
);
1709 hres
= IHTMLDocument3_createTextNode(doc3
, tmp
, &node
);
1710 IHTMLDocument3_Release(doc3
);
1711 ok_(__FILE__
,line
) (hres
== S_OK
, "createElement failed: %08x\n", hres
);
1712 ok_(__FILE__
,line
) (node
!= NULL
, "node == NULL\n");
1717 #define test_node_append_child(n,c) _test_node_append_child(__LINE__,n,c)
1718 static IHTMLDOMNode
*_test_node_append_child(unsigned line
, IUnknown
*node_unk
, IUnknown
*child_unk
)
1720 IHTMLDOMNode
*node
= _get_node_iface(line
, node_unk
);
1721 IHTMLDOMNode
*child
= _get_node_iface(line
, child_unk
);
1722 IHTMLDOMNode
*new_child
= NULL
;
1725 hres
= IHTMLDOMNode_appendChild(node
, child
, &new_child
);
1726 ok_(__FILE__
,line
) (hres
== S_OK
, "appendChild failed: %08x\n", hres
);
1727 ok_(__FILE__
,line
) (new_child
!= NULL
, "new_child == NULL\n");
1728 /* TODO ok_(__FILE__,line) (new_child != child, "new_child == child\n"); */
1730 IHTMLDOMNode_Release(node
);
1731 IHTMLDOMNode_Release(child
);
1736 #define test_node_insertbefore(n,c,v) _test_node_insertbefore(__LINE__,n,c,v)
1737 static IHTMLDOMNode
*_test_node_insertbefore(unsigned line
, IUnknown
*node_unk
, IHTMLDOMNode
*child
, VARIANT
*var
)
1739 IHTMLDOMNode
*node
= _get_node_iface(line
, node_unk
);
1740 IHTMLDOMNode
*new_child
= NULL
;
1743 hres
= IHTMLDOMNode_insertBefore(node
, child
, *var
, &new_child
);
1744 ok_(__FILE__
,line
) (hres
== S_OK
, "insertBefore failed: %08x\n", hres
);
1745 ok_(__FILE__
,line
) (new_child
!= NULL
, "new_child == NULL\n");
1746 /* TODO ok_(__FILE__,line) (new_child != child, "new_child == child\n"); */
1748 IHTMLDOMNode_Release(node
);
1753 #define test_node_remove_child(n,c) _test_node_remove_child(__LINE__,n,c)
1754 static void _test_node_remove_child(unsigned line
, IUnknown
*unk
, IHTMLDOMNode
*child
)
1756 IHTMLDOMNode
*node
= _get_node_iface(line
, unk
);
1757 IHTMLDOMNode
*new_node
= NULL
;
1760 hres
= IHTMLDOMNode_removeChild(node
, child
, &new_node
);
1761 ok_(__FILE__
,line
) (hres
== S_OK
, "removeChild failed: %08x\n", hres
);
1762 ok_(__FILE__
,line
) (new_node
!= NULL
, "new_node == NULL\n");
1763 /* TODO ok_(__FILE__,line) (new_node != child, "new_node == child\n"); */
1765 IHTMLDOMNode_Release(node
);
1766 IHTMLDOMNode_Release(new_node
);
1769 #define test_doc_title(d,t) _test_doc_title(__LINE__,d,t)
1770 static void _test_doc_title(unsigned line
, IHTMLDocument2
*doc
, const char *extitle
)
1775 hres
= IHTMLDocument2_get_title(doc
, &title
);
1776 ok_(__FILE__
,line
) (hres
== S_OK
, "get_title failed: %08x\n", hres
);
1777 ok_(__FILE__
,line
) (!strcmp_wa(title
, extitle
), "unexpected title %s\n", dbgstr_w(title
));
1778 SysFreeString(title
);
1781 #define test_doc_set_title(d,t) _test_doc_set_title(__LINE__,d,t)
1782 static void _test_doc_set_title(unsigned line
, IHTMLDocument2
*doc
, const char *title
)
1787 tmp
= a2bstr(title
);
1788 hres
= IHTMLDocument2_put_title(doc
, tmp
);
1789 ok_(__FILE__
,line
) (hres
== S_OK
, "get_title failed: %08x\n", hres
);
1793 #define test_border_styles(p, n) _test_border_styles(__LINE__, p, n)
1794 static void _test_border_styles(unsigned line
, IHTMLStyle
*pStyle
, BSTR Name
)
1799 hres
= IHTMLStyle_GetIDsOfNames(pStyle
, &IID_NULL
, (LPOLESTR
*)&Name
, 1,
1800 LOCALE_USER_DEFAULT
, &dispid
);
1801 ok_(__FILE__
,line
) (hres
== S_OK
, "GetIDsOfNames: %08x\n", hres
);
1804 DISPPARAMS params
= {NULL
,NULL
,0,0};
1805 DISPID dispidNamed
= DISPID_PROPERTYPUT
;
1810 hres
= IHTMLStyle_Invoke(pStyle
, dispid
, &IID_NULL
, LOCALE_SYSTEM_DEFAULT
,
1811 DISPATCH_PROPERTYGET
, ¶ms
, &vDefault
, NULL
, NULL
);
1812 ok_(__FILE__
,line
) (hres
== S_OK
, "get_default. ret: %08x\n", hres
);
1815 params
.cNamedArgs
= 1;
1816 params
.rgdispidNamedArgs
= &dispidNamed
;
1817 V_VT(&arg
) = VT_BSTR
;
1818 V_BSTR(&arg
) = a2bstr("none");
1819 params
.rgvarg
= &arg
;
1820 hres
= IHTMLStyle_Invoke(pStyle
, dispid
, &IID_NULL
, LOCALE_SYSTEM_DEFAULT
,
1821 DISPATCH_PROPERTYPUT
, ¶ms
, &ret
, NULL
, NULL
);
1822 ok_(__FILE__
,line
) (hres
== S_OK
, "none. ret: %08x\n", hres
);
1825 V_VT(&arg
) = VT_BSTR
;
1826 V_BSTR(&arg
) = a2bstr("dotted");
1827 hres
= IHTMLStyle_Invoke(pStyle
, dispid
, &IID_NULL
, LOCALE_SYSTEM_DEFAULT
,
1828 DISPATCH_PROPERTYPUT
, ¶ms
, &ret
, NULL
, NULL
);
1829 ok_(__FILE__
,line
) (hres
== S_OK
, "dotted. ret: %08x\n", hres
);
1832 V_VT(&arg
) = VT_BSTR
;
1833 V_BSTR(&arg
) = a2bstr("dashed");
1834 hres
= IHTMLStyle_Invoke(pStyle
, dispid
, &IID_NULL
, LOCALE_SYSTEM_DEFAULT
,
1835 DISPATCH_PROPERTYPUT
, ¶ms
, &ret
, NULL
, NULL
);
1836 ok_(__FILE__
,line
) (hres
== S_OK
, "dashed. ret: %08x\n", hres
);
1839 V_VT(&arg
) = VT_BSTR
;
1840 V_BSTR(&arg
) = a2bstr("solid");
1841 hres
= IHTMLStyle_Invoke(pStyle
, dispid
, &IID_NULL
, LOCALE_SYSTEM_DEFAULT
,
1842 DISPATCH_PROPERTYPUT
, ¶ms
, &ret
, NULL
, NULL
);
1843 ok_(__FILE__
,line
) (hres
== S_OK
, "solid. ret: %08x\n", hres
);
1846 V_VT(&arg
) = VT_BSTR
;
1847 V_BSTR(&arg
) = a2bstr("double");
1848 hres
= IHTMLStyle_Invoke(pStyle
, dispid
, &IID_NULL
, LOCALE_SYSTEM_DEFAULT
,
1849 DISPATCH_PROPERTYPUT
, ¶ms
, &ret
, NULL
, NULL
);
1850 ok_(__FILE__
,line
) (hres
== S_OK
, "double. ret: %08x\n", hres
);
1853 V_VT(&arg
) = VT_BSTR
;
1854 V_BSTR(&arg
) = a2bstr("groove");
1855 hres
= IHTMLStyle_Invoke(pStyle
, dispid
, &IID_NULL
, LOCALE_SYSTEM_DEFAULT
,
1856 DISPATCH_PROPERTYPUT
, ¶ms
, &ret
, NULL
, NULL
);
1857 ok_(__FILE__
,line
) (hres
== S_OK
, "groove. ret: %08x\n", hres
);
1860 V_VT(&arg
) = VT_BSTR
;
1861 V_BSTR(&arg
) = a2bstr("ridge");
1862 hres
= IHTMLStyle_Invoke(pStyle
, dispid
, &IID_NULL
, LOCALE_SYSTEM_DEFAULT
,
1863 DISPATCH_PROPERTYPUT
, ¶ms
, &ret
, NULL
, NULL
);
1864 ok_(__FILE__
,line
) (hres
== S_OK
, "ridge. ret: %08x\n", hres
);
1867 V_VT(&arg
) = VT_BSTR
;
1868 V_BSTR(&arg
) = a2bstr("inset");
1869 hres
= IHTMLStyle_Invoke(pStyle
, dispid
, &IID_NULL
, LOCALE_SYSTEM_DEFAULT
,
1870 DISPATCH_PROPERTYPUT
, ¶ms
, &ret
, NULL
, NULL
);
1871 ok_(__FILE__
,line
) (hres
== S_OK
, "inset. ret: %08x\n", hres
);
1874 V_VT(&arg
) = VT_BSTR
;
1875 V_BSTR(&arg
) = a2bstr("outset");
1876 hres
= IHTMLStyle_Invoke(pStyle
, dispid
, &IID_NULL
, LOCALE_SYSTEM_DEFAULT
,
1877 DISPATCH_PROPERTYPUT
, ¶ms
, &ret
, NULL
, NULL
);
1878 ok_(__FILE__
,line
) (hres
== S_OK
, "outset. ret: %08x\n", hres
);
1881 V_VT(&arg
) = VT_BSTR
;
1882 V_BSTR(&arg
) = a2bstr("invalid");
1883 hres
= IHTMLStyle_Invoke(pStyle
, dispid
, &IID_NULL
, LOCALE_SYSTEM_DEFAULT
,
1884 DISPATCH_PROPERTYPUT
, ¶ms
, &ret
, NULL
, NULL
);
1885 ok_(__FILE__
,line
) (FAILED(hres
), "invalid value passed.\n");
1888 params
.rgvarg
= &vDefault
;
1889 hres
= IHTMLStyle_Invoke(pStyle
, dispid
, &IID_NULL
, LOCALE_SYSTEM_DEFAULT
,
1890 DISPATCH_PROPERTYPUT
, ¶ms
, &ret
, NULL
, NULL
);
1891 ok_(__FILE__
,line
) (hres
== S_OK
, "default. ret: %08x\n", hres
);
1895 static void test_elem_col_item(IHTMLElementCollection
*col
, LPCWSTR n
,
1896 const elem_type_t
*elem_types
, long len
)
1899 VARIANT name
, index
;
1903 V_VT(&index
) = VT_EMPTY
;
1904 V_VT(&name
) = VT_BSTR
;
1905 V_BSTR(&name
) = SysAllocString(n
);
1907 hres
= IHTMLElementCollection_item(col
, name
, index
, &disp
);
1908 ok(hres
== S_OK
, "item failed: %08x\n", hres
);
1910 test_elem_collection((IUnknown
*)disp
, elem_types
, len
);
1911 IDispatch_Release(disp
);
1912 ok(hres
== S_OK
, "Could not get IHTMLElementCollection interface: %08x\n", hres
);
1916 V_VT(&index
) = VT_I4
;
1918 for(i
=0; i
<len
; i
++) {
1920 disp
= (void*)0xdeadbeef;
1921 hres
= IHTMLElementCollection_item(col
, name
, index
, &disp
);
1922 ok(hres
== S_OK
, "item failed: %08x\n", hres
);
1923 ok(disp
!= NULL
, "disp == NULL\n");
1924 if(FAILED(hres
) || !disp
)
1927 test_elem_type((IUnknown
*)disp
, elem_types
[i
]);
1929 IDispatch_Release(disp
);
1933 disp
= (void*)0xdeadbeef;
1934 hres
= IHTMLElementCollection_item(col
, name
, index
, &disp
);
1935 ok(hres
== S_OK
, "item failed: %08x\n", hres
);
1936 ok(disp
== NULL
, "disp != NULL\n");
1939 disp
= (void*)0xdeadbeef;
1940 hres
= IHTMLElementCollection_item(col
, name
, index
, &disp
);
1941 ok(hres
== E_INVALIDARG
, "item failed: %08x, expected E_INVALIDARG\n", hres
);
1942 ok(disp
== NULL
, "disp != NULL\n");
1945 SysFreeString(V_BSTR(&name
));
1948 static IHTMLElement
*get_elem_by_id(IHTMLDocument2
*doc
, LPCWSTR id
, BOOL expect_success
)
1950 IHTMLElementCollection
*col
;
1952 IDispatch
*disp
= (void*)0xdeadbeef;
1953 VARIANT name
, index
;
1956 hres
= IHTMLDocument2_get_all(doc
, &col
);
1957 ok(hres
== S_OK
, "get_all failed: %08x\n", hres
);
1958 ok(col
!= NULL
, "col == NULL\n");
1959 if(FAILED(hres
) || !col
)
1962 V_VT(&index
) = VT_EMPTY
;
1963 V_VT(&name
) = VT_BSTR
;
1964 V_BSTR(&name
) = SysAllocString(id
);
1966 hres
= IHTMLElementCollection_item(col
, name
, index
, &disp
);
1967 IHTMLElementCollection_Release(col
);
1968 SysFreeString(V_BSTR(&name
));
1969 ok(hres
== S_OK
, "item failed: %08x\n", hres
);
1970 if(!expect_success
) {
1971 ok(disp
== NULL
, "disp != NULL\n");
1975 ok(disp
!= NULL
, "disp == NULL\n");
1979 elem
= get_elem_iface((IUnknown
*)disp
);
1980 IDispatch_Release(disp
);
1985 static IHTMLElement
*get_doc_elem_by_id(IHTMLDocument2
*doc
, LPCWSTR id
)
1987 IHTMLDocument3
*doc3
;
1992 hres
= IHTMLDocument2_QueryInterface(doc
, &IID_IHTMLDocument3
, (void**)&doc3
);
1993 ok(hres
== S_OK
, "Could not get IHTMLDocument3 iface: %08x\n", hres
);
1995 tmp
= SysAllocString(id
);
1996 hres
= IHTMLDocument3_getElementById(doc3
, tmp
, &elem
);
1998 ok(hres
== S_OK
, "getElementById(%s) failed: %08x\n", dbgstr_w(id
), hres
);
2000 IHTMLDocument3_Release(doc3
);
2005 static void test_select_elem(IHTMLSelectElement
*select
)
2007 test_select_type(select
, "select-one");
2008 test_select_length(select
, 2);
2009 test_select_selidx(select
, 0);
2010 test_select_put_selidx(select
, 1);
2012 test_select_set_value(select
, "val1");
2013 test_select_value(select
, "val1");
2015 test_select_get_disabled(select
, VARIANT_FALSE
);
2016 test_select_set_disabled(select
, VARIANT_TRUE
);
2017 test_select_set_disabled(select
, VARIANT_FALSE
);
2020 static void test_create_option_elem(IHTMLDocument2
*doc
)
2022 IHTMLOptionElement
*option
;
2024 option
= create_option_elem(doc
, "test text", "test value");
2026 test_option_put_text(option
, "new text");
2027 test_option_put_value(option
, "new value");
2029 IHTMLOptionElement_Release(option
);
2032 static IHTMLTxtRange
*test_create_body_range(IHTMLDocument2
*doc
)
2034 IHTMLBodyElement
*body
;
2035 IHTMLTxtRange
*range
;
2039 hres
= IHTMLDocument2_get_body(doc
, &elem
);
2040 ok(hres
== S_OK
, "get_body failed: %08x\n", hres
);
2042 hres
= IHTMLElement_QueryInterface(elem
, &IID_IHTMLBodyElement
, (void**)&body
);
2043 IHTMLElement_Release(elem
);
2045 hres
= IHTMLBodyElement_createTextRange(body
, &range
);
2046 IHTMLBodyElement_Release(body
);
2047 ok(hres
== S_OK
, "createTextRange failed: %08x\n", hres
);
2052 static void test_txtrange(IHTMLDocument2
*doc
)
2054 IHTMLTxtRange
*body_range
, *range
, *range2
;
2055 IHTMLSelectionObject
*selection
;
2056 IDispatch
*disp_range
;
2059 body_range
= test_create_body_range(doc
);
2061 test_range_text(body_range
, "test abc 123\r\nit's text");
2063 hres
= IHTMLTxtRange_duplicate(body_range
, &range
);
2064 ok(hres
== S_OK
, "duplicate failed: %08x\n", hres
);
2066 hres
= IHTMLTxtRange_duplicate(body_range
, &range2
);
2067 ok(hres
== S_OK
, "duplicate failed: %08x\n", hres
);
2068 test_range_isequal(range
, range2
, VARIANT_TRUE
);
2070 test_range_text(range
, "test abc 123\r\nit's text");
2071 test_range_text(body_range
, "test abc 123\r\nit's text");
2073 test_range_collapse(range
, TRUE
);
2074 test_range_isequal(range
, range2
, VARIANT_FALSE
);
2075 test_range_inrange(range
, range2
, VARIANT_FALSE
);
2076 test_range_inrange(range2
, range
, VARIANT_TRUE
);
2077 IHTMLTxtRange_Release(range2
);
2079 test_range_expand(range
, wordW
, VARIANT_TRUE
, "test ");
2080 test_range_expand(range
, wordW
, VARIANT_FALSE
, "test ");
2081 test_range_move(range
, characterW
, 2, 2);
2082 test_range_expand(range
, wordW
, VARIANT_TRUE
, "test ");
2084 test_range_collapse(range
, FALSE
);
2085 test_range_expand(range
, wordW
, VARIANT_TRUE
, "abc ");
2087 test_range_collapse(range
, FALSE
);
2088 test_range_expand(range
, wordW
, VARIANT_TRUE
, "123");
2089 test_range_expand(range
, wordW
, VARIANT_FALSE
, "123");
2090 test_range_move(range
, characterW
, 2, 2);
2091 test_range_expand(range
, wordW
, VARIANT_TRUE
, "123");
2092 test_range_moveend(range
, characterW
, -5, -5);
2093 test_range_text(range
, NULL
);
2094 test_range_moveend(range
, characterW
, 3, 3);
2095 test_range_text(range
, "c 1");
2096 test_range_expand(range
, texteditW
, VARIANT_TRUE
, "test abc 123\r\nit's text");
2097 test_range_collapse(range
, TRUE
);
2098 test_range_move(range
, characterW
, 4, 4);
2099 test_range_moveend(range
, characterW
, 1, 1);
2100 test_range_text(range
, " ");
2101 test_range_move(range
, wordW
, 1, 1);
2102 test_range_moveend(range
, characterW
, 2, 2);
2103 test_range_text(range
, "ab");
2105 IHTMLTxtRange_Release(range
);
2107 hres
= IHTMLTxtRange_duplicate(body_range
, &range
);
2108 ok(hres
== S_OK
, "duplicate failed: %08x\n", hres
);
2110 test_range_text(range
, "test abc 123\r\nit's text");
2111 test_range_move(range
, characterW
, 3, 3);
2112 test_range_moveend(range
, characterW
, 1, 1);
2113 test_range_text(range
, "t");
2114 test_range_moveend(range
, characterW
, 3, 3);
2115 test_range_text(range
, "t ab");
2116 test_range_moveend(range
, characterW
, -2, -2);
2117 test_range_text(range
, "t ");
2118 test_range_move(range
, characterW
, 6, 6);
2119 test_range_moveend(range
, characterW
, 3, 3);
2120 test_range_text(range
, "123");
2121 test_range_moveend(range
, characterW
, 2, 2);
2122 test_range_text(range
, "123\r\ni");
2124 IHTMLTxtRange_Release(range
);
2126 hres
= IHTMLTxtRange_duplicate(body_range
, &range
);
2127 ok(hres
== S_OK
, "duplicate failed: %08x\n", hres
);
2129 test_range_move(range
, wordW
, 1, 1);
2130 test_range_moveend(range
, characterW
, 2, 2);
2131 test_range_text(range
, "ab");
2133 test_range_move(range
, characterW
, -2, -2);
2134 test_range_moveend(range
, characterW
, 2, 2);
2135 test_range_text(range
, "t ");
2137 test_range_move(range
, wordW
, 3, 3);
2138 test_range_move(range
, wordW
, -2, -2);
2139 test_range_moveend(range
, characterW
, 2, 2);
2140 test_range_text(range
, "ab");
2142 test_range_move(range
, characterW
, -6, -5);
2143 test_range_moveend(range
, characterW
, -1, 0);
2144 test_range_moveend(range
, characterW
, -6, 0);
2145 test_range_move(range
, characterW
, 2, 2);
2146 test_range_moveend(range
, characterW
, 2, 2);
2147 test_range_text(range
, "st");
2148 test_range_moveend(range
, characterW
, -6, -4);
2149 test_range_moveend(range
, characterW
, 2, 2);
2151 IHTMLTxtRange_Release(range
);
2153 hres
= IHTMLTxtRange_duplicate(body_range
, &range
);
2154 ok(hres
== S_OK
, "duplicate failed: %08x\n", hres
);
2156 test_range_move(range
, wordW
, 2, 2);
2157 test_range_moveend(range
, characterW
, 2, 2);
2158 test_range_text(range
, "12");
2160 test_range_move(range
, characterW
, 15, 14);
2161 test_range_move(range
, characterW
, -2, -2);
2162 test_range_moveend(range
, characterW
, 3, 2);
2163 test_range_text(range
, "t");
2164 test_range_moveend(range
, characterW
, -1, -1);
2165 test_range_text(range
, "t");
2166 test_range_expand(range
, wordW
, VARIANT_TRUE
, "text");
2167 test_range_move(range
, characterW
, -2, -2);
2168 test_range_moveend(range
, characterW
, 2, 2);
2169 test_range_text(range
, "s ");
2170 test_range_move(range
, characterW
, 100, 7);
2171 test_range_move(range
, wordW
, 1, 0);
2172 test_range_move(range
, characterW
, -2, -2);
2173 test_range_moveend(range
, characterW
, 3, 2);
2174 test_range_text(range
, "t");
2176 IHTMLTxtRange_Release(range
);
2178 hres
= IHTMLTxtRange_duplicate(body_range
, &range
);
2179 ok(hres
== S_OK
, "duplicate failed: %08x\n", hres
);
2181 test_range_collapse(range
, TRUE
);
2182 test_range_expand(range
, wordW
, VARIANT_TRUE
, "test ");
2183 test_range_put_text(range
, "word");
2184 test_range_text(body_range
, "wordabc 123\r\nit's text");
2185 test_range_text(range
, NULL
);
2186 test_range_moveend(range
, characterW
, 3, 3);
2187 test_range_text(range
, "abc");
2188 test_range_movestart(range
, characterW
, -2, -2);
2189 test_range_text(range
, "rdabc");
2190 test_range_movestart(range
, characterW
, 3, 3);
2191 test_range_text(range
, "bc");
2192 test_range_movestart(range
, characterW
, 4, 4);
2193 test_range_text(range
, NULL
);
2194 test_range_movestart(range
, characterW
, -3, -3);
2195 test_range_text(range
, "c 1");
2196 test_range_movestart(range
, characterW
, -7, -6);
2197 test_range_text(range
, "wordabc 1");
2198 test_range_movestart(range
, characterW
, 100, 22);
2199 test_range_text(range
, NULL
);
2201 IHTMLTxtRange_Release(range
);
2202 IHTMLTxtRange_Release(body_range
);
2204 hres
= IHTMLDocument2_get_selection(doc
, &selection
);
2205 ok(hres
== S_OK
, "IHTMLDocument2_get_selection failed: %08x\n", hres
);
2207 hres
= IHTMLSelectionObject_createRange(selection
, &disp_range
);
2208 ok(hres
== S_OK
, "IHTMLSelectionObject_createRange failed: %08x\n", hres
);
2209 IHTMLSelectionObject_Release(selection
);
2211 hres
= IDispatch_QueryInterface(disp_range
, &IID_IHTMLTxtRange
, (void **)&range
);
2212 ok(hres
== S_OK
, "Could not get IID_IHTMLTxtRange interface: 0x%08x\n", hres
);
2213 IDispatch_Release(disp_range
);
2215 test_range_text(range
, NULL
);
2216 test_range_moveend(range
, characterW
, 3, 3);
2217 test_range_text(range
, "wor");
2218 test_range_parent(range
, ET_BODY
);
2219 test_range_expand(range
, texteditW
, VARIANT_TRUE
, "wordabc 123\r\nit's text");
2220 test_range_expand(range
, texteditW
, VARIANT_TRUE
, "wordabc 123\r\nit's text");
2221 test_range_move(range
, characterW
, 3, 3);
2222 test_range_expand(range
, wordW
, VARIANT_TRUE
, "wordabc ");
2223 test_range_moveend(range
, characterW
, -4, -4);
2224 test_range_put_text(range
, "abc def ");
2225 test_range_expand(range
, texteditW
, VARIANT_TRUE
, "abc def abc 123\r\nit's text");
2226 test_range_move(range
, wordW
, 1, 1);
2227 test_range_movestart(range
, characterW
, -1, -1);
2228 test_range_text(range
, " ");
2229 test_range_move(range
, wordW
, 1, 1);
2230 test_range_moveend(range
, characterW
, 3, 3);
2231 test_range_text(range
, "def");
2232 test_range_put_text(range
, "xyz");
2233 test_range_moveend(range
, characterW
, 1, 1);
2234 test_range_move(range
, wordW
, 1, 1);
2235 test_range_moveend(range
, characterW
, 2, 2);
2236 test_range_text(range
, "ab");
2238 IHTMLTxtRange_Release(range
);
2241 static void test_txtrange2(IHTMLDocument2
*doc
)
2243 IHTMLTxtRange
*range
;
2245 range
= test_create_body_range(doc
);
2247 test_range_text(range
, "abc\r\n\r\n123\r\n\r\n\r\ndef");
2248 test_range_move(range
, characterW
, 5, 5);
2249 test_range_moveend(range
, characterW
, 1, 1);
2250 test_range_text(range
, "2");
2251 test_range_move(range
, characterW
, -3, -3);
2252 test_range_moveend(range
, characterW
, 3, 3);
2253 test_range_text(range
, "c\r\n\r\n1");
2254 test_range_collapse(range
, VARIANT_FALSE
);
2255 test_range_moveend(range
, characterW
, 4, 4);
2256 test_range_text(range
, "23");
2257 test_range_moveend(range
, characterW
, 1, 1);
2258 test_range_text(range
, "23\r\n\r\n\r\nd");
2259 test_range_moveend(range
, characterW
, -1, -1);
2260 test_range_text(range
, "23");
2261 test_range_moveend(range
, characterW
, -1, -1);
2262 test_range_text(range
, "23");
2263 test_range_moveend(range
, characterW
, -2, -2);
2264 test_range_text(range
, "2");
2266 IHTMLTxtRange_Release(range
);
2269 static void test_compatmode(IHTMLDocument2
*doc
)
2271 IHTMLDocument5
*doc5
;
2275 hres
= IHTMLDocument2_QueryInterface(doc
, &IID_IHTMLDocument5
, (void**)&doc5
);
2276 ok(hres
== S_OK
, "Could not get IHTMLDocument5 interface: %08x\n", hres
);
2280 hres
= IHTMLDocument5_get_compatMode(doc5
, &mode
);
2281 IHTMLDocument5_Release(doc5
);
2282 ok(hres
== S_OK
, "get_compatMode failed: %08x\n", hres
);
2283 ok(!strcmp_wa(mode
, "BackCompat"), "compatMode=%s\n", dbgstr_w(mode
));
2284 SysFreeString(mode
);
2287 static void test_location(IHTMLDocument2
*doc
)
2289 IHTMLLocation
*location
, *location2
;
2290 IHTMLWindow2
*window
;
2294 hres
= IHTMLDocument2_get_location(doc
, &location
);
2295 ok(hres
== S_OK
, "get_location failed: %08x\n", hres
);
2297 hres
= IHTMLDocument2_get_location(doc
, &location2
);
2298 ok(hres
== S_OK
, "get_location failed: %08x\n", hres
);
2300 ok(location
== location2
, "location != location2\n");
2301 IHTMLLocation_Release(location2
);
2303 hres
= IHTMLDocument2_get_parentWindow(doc
, &window
);
2304 ok(hres
== S_OK
, "get_parentWindow failed: %08x\n", hres
);
2306 hres
= IHTMLWindow2_get_location(window
, &location2
);
2307 ok(hres
== S_OK
, "get_location failed: %08x\n", hres
);
2308 ok(location
== location2
, "location != location2\n");
2309 IHTMLLocation_Release(location2
);
2311 test_ifaces((IUnknown
*)location
, location_iids
);
2312 test_disp((IUnknown
*)location
, &IID_IHTMLLocation
);
2314 ref
= IHTMLLocation_Release(location
);
2315 ok(!ref
, "location chould be destroyed here\n");
2318 static void test_navigator(IHTMLDocument2
*doc
)
2320 IHTMLWindow2
*window
;
2321 IOmNavigator
*navigator
, *navigator2
;
2326 static const WCHAR v40
[] = {'4','.','0'};
2328 hres
= IHTMLDocument2_get_parentWindow(doc
, &window
);
2329 ok(hres
== S_OK
, "parentWidnow failed: %08x\n", hres
);
2331 hres
= IHTMLWindow2_get_navigator(window
, &navigator
);
2332 ok(hres
== S_OK
, "get_navigator failed: %08x\n", hres
);
2333 ok(navigator
!= NULL
, "navigator == NULL\n");
2334 test_disp((IUnknown
*)navigator
, &IID_IOmNavigator
);
2336 hres
= IHTMLWindow2_get_navigator(window
, &navigator2
);
2337 ok(hres
== S_OK
, "get_navigator failed: %08x\n", hres
);
2338 ok(navigator
!= navigator2
, "navigator2 != navihgator\n");
2340 IHTMLWindow2_Release(window
);
2341 IOmNavigator_Release(navigator2
);
2343 hres
= IOmNavigator_get_appCodeName(navigator
, &bstr
);
2344 ok(hres
== S_OK
, "get_appCodeName failed: %08x\n", hres
);
2345 ok(!strcmp_wa(bstr
, "Mozilla"), "Unexpected appCodeName %s\n", dbgstr_w(bstr
));
2346 SysFreeString(bstr
);
2349 hres
= IOmNavigator_get_platform(navigator
, &bstr
);
2350 ok(hres
== S_OK
, "get_platform failed: %08x\n", hres
);
2352 ok(!strcmp_wa(bstr
, "Win64"), "unexpected platform %s\n", dbgstr_w(bstr
));
2354 ok(!strcmp_wa(bstr
, "Win32"), "unexpected platform %s\n", dbgstr_w(bstr
));
2356 SysFreeString(bstr
);
2359 hres
= IOmNavigator_get_appVersion(navigator
, &bstr
);
2360 ok(hres
== S_OK
, "get_appVersion failed: %08x\n", hres
);
2361 ok(!memcmp(bstr
, v40
, sizeof(v40
)), "appVersion is %s\n", dbgstr_w(bstr
));
2362 SysFreeString(bstr
);
2364 ref
= IOmNavigator_Release(navigator
);
2365 ok(!ref
, "navigator should be destroyed here\n");
2368 static void test_current_style(IHTMLCurrentStyle
*current_style
)
2373 test_disp((IUnknown
*)current_style
, &DIID_DispHTMLCurrentStyle
);
2374 test_ifaces((IUnknown
*)current_style
, cstyle_iids
);
2376 hres
= IHTMLCurrentStyle_get_display(current_style
, &str
);
2377 ok(hres
== S_OK
, "get_display failed: %08x\n", hres
);
2378 ok(!strcmp_wa(str
, "block"), "get_display returned %s\n", dbgstr_w(str
));
2382 static void test_style2(IHTMLStyle2
*style2
)
2387 str
= (void*)0xdeadbeef;
2388 hres
= IHTMLStyle2_get_position(style2
, &str
);
2389 ok(hres
== S_OK
, "get_position failed: %08x\n", hres
);
2390 ok(!str
, "str != NULL\n");
2392 str
= a2bstr("absolute");
2393 hres
= IHTMLStyle2_put_position(style2
, str
);
2394 ok(hres
== S_OK
, "get_position failed: %08x\n", hres
);
2398 hres
= IHTMLStyle2_get_position(style2
, &str
);
2399 ok(hres
== S_OK
, "get_position failed: %08x\n", hres
);
2400 ok(!strcmp_wa(str
, "absolute"), "get_position returned %s\n", dbgstr_w(str
));
2404 static void test_default_style(IHTMLStyle
*style
)
2406 IHTMLStyle2
*style2
;
2412 BSTR sOverflowDefault
;
2415 test_disp((IUnknown
*)style
, &DIID_DispHTMLStyle
);
2416 test_ifaces((IUnknown
*)style
, style_iids
);
2418 hres
= IHTMLStyle_get_position(style
, &str
);
2419 ok(hres
== S_OK
, "get_position failed: %08x\n", hres
);
2420 ok(!str
, "str=%s\n", dbgstr_w(str
));
2422 str
= (void*)0xdeadbeef;
2423 hres
= IHTMLStyle_get_fontFamily(style
, &str
);
2424 ok(hres
== S_OK
, "get_fontFamily failed: %08x\n", hres
);
2425 ok(!str
, "fontFamily = %s\n", dbgstr_w(str
));
2427 str
= (void*)0xdeadbeef;
2428 hres
= IHTMLStyle_get_fontWeight(style
, &str
);
2429 ok(hres
== S_OK
, "get_fontWeight failed: %08x\n", hres
);
2430 ok(!str
, "fontWeight = %s\n", dbgstr_w(str
));
2433 hres
= IHTMLStyle_get_fontVariant(style
, NULL
);
2434 ok(hres
== E_INVALIDARG
, "get_fontVariant failed: %08x\n", hres
);
2436 hres
= IHTMLStyle_get_fontVariant(style
, &sDefault
);
2437 ok(hres
== S_OK
, "get_fontVariant failed: %08x\n", hres
);
2439 str
= a2bstr("test");
2440 hres
= IHTMLStyle_put_fontVariant(style
, str
);
2441 ok(hres
== E_INVALIDARG
, "fontVariant failed: %08x\n", hres
);
2444 str
= a2bstr("small-caps");
2445 hres
= IHTMLStyle_put_fontVariant(style
, str
);
2446 ok(hres
== S_OK
, "fontVariant failed: %08x\n", hres
);
2449 str
= a2bstr("normal");
2450 hres
= IHTMLStyle_put_fontVariant(style
, str
);
2451 ok(hres
== S_OK
, "fontVariant failed: %08x\n", hres
);
2454 hres
= IHTMLStyle_put_fontVariant(style
, sDefault
);
2455 ok(hres
== S_OK
, "fontVariant failed: %08x\n", hres
);
2456 SysFreeString(sDefault
);
2458 str
= (void*)0xdeadbeef;
2459 hres
= IHTMLStyle_get_display(style
, &str
);
2460 ok(hres
== S_OK
, "get_display failed: %08x\n", hres
);
2461 ok(!str
, "display = %s\n", dbgstr_w(str
));
2463 str
= (void*)0xdeadbeef;
2464 hres
= IHTMLStyle_get_visibility(style
, &str
);
2465 ok(hres
== S_OK
, "get_visibility failed: %08x\n", hres
);
2466 ok(!str
, "visibility = %s\n", dbgstr_w(str
));
2469 hres
= IHTMLStyle_get_fontSize(style
, &v
);
2470 ok(hres
== S_OK
, "get_fontSize failed: %08x\n", hres
);
2471 ok(V_VT(&v
) == VT_BSTR
, "V_VT(fontSize) = %d\n", V_VT(&v
));
2472 ok(!V_BSTR(&v
), "V_BSTR(fontSize) = %s\n", dbgstr_w(V_BSTR(&v
)));
2475 hres
= IHTMLStyle_get_color(style
, &v
);
2476 ok(hres
== S_OK
, "get_color failed: %08x\n", hres
);
2477 ok(V_VT(&v
) == VT_BSTR
, "V_VT(color) = %d\n", V_VT(&v
));
2478 ok(!V_BSTR(&v
), "V_BSTR(color) = %s\n", dbgstr_w(V_BSTR(&v
)));
2481 hres
= IHTMLStyle_get_textDecorationUnderline(style
, &b
);
2482 ok(hres
== S_OK
, "get_textDecorationUnderline failed: %08x\n", hres
);
2483 ok(b
== VARIANT_FALSE
, "textDecorationUnderline = %x\n", b
);
2486 hres
= IHTMLStyle_get_textDecorationLineThrough(style
, &b
);
2487 ok(hres
== S_OK
, "get_textDecorationLineThrough failed: %08x\n", hres
);
2488 ok(b
== VARIANT_FALSE
, "textDecorationLineThrough = %x\n", b
);
2490 hres
= IHTMLStyle_get_posWidth(style
, NULL
);
2491 ok(hres
== E_POINTER
, "get_posWidth failed: %08x\n", hres
);
2493 hres
= IHTMLStyle_get_posWidth(style
, &f
);
2494 ok(hres
== S_OK
, "get_posWidth failed: %08x\n", hres
);
2495 ok(f
== 0.0f
, "f = %f\n", f
);
2497 V_VT(&v
) = VT_EMPTY
;
2498 hres
= IHTMLStyle_get_width(style
, &v
);
2499 ok(hres
== S_OK
, "get_width failed: %08x\n", hres
);
2500 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v)=%d\n", V_VT(&v
));
2501 ok(!V_BSTR(&v
), "V_BSTR(v)=%p\n", V_BSTR(&v
));
2503 hres
= IHTMLStyle_put_posWidth(style
, 2.2);
2504 ok(hres
== S_OK
, "get_posWidth failed: %08x\n", hres
);
2506 hres
= IHTMLStyle_get_posWidth(style
, &f
);
2507 ok(hres
== S_OK
, "get_posWidth failed: %08x\n", hres
);
2508 ok(f
== 2.0f
, "f = %f\n", f
);
2511 V_BSTR(&v
) = a2bstr("auto");
2512 hres
= IHTMLStyle_put_width(style
, v
);
2513 ok(hres
== S_OK
, "put_width failed: %08x\n", hres
);
2516 V_VT(&v
) = VT_EMPTY
;
2517 hres
= IHTMLStyle_get_width(style
, &v
);
2518 ok(hres
== S_OK
, "get_width failed: %08x\n", hres
);
2519 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v)=%d\n", V_VT(&v
));
2520 ok(!strcmp_wa(V_BSTR(&v
), "auto"), "V_BSTR(v)=%s\n", dbgstr_w(V_BSTR(&v
)));
2524 str
= (void*)0xdeadbeef;
2525 hres
= IHTMLStyle_get_margin(style
, &str
);
2526 ok(hres
== S_OK
, "get_margin failed: %08x\n", hres
);
2527 ok(!str
, "margin = %s\n", dbgstr_w(str
));
2530 hres
= IHTMLStyle_put_margin(style
, str
);
2531 ok(hres
== S_OK
, "get_margin failed: %08x\n", hres
);
2534 hres
= IHTMLStyle_get_margin(style
, &str
);
2535 ok(hres
== S_OK
, "get_margin failed: %08x\n", hres
);
2536 ok(strcmp_wa(str
, "1"), "margin = %s\n", dbgstr_w(str
));
2538 hres
= IHTMLStyle_put_margin(style
, NULL
);
2539 ok(hres
== S_OK
, "get_margin failed: %08x\n", hres
);
2542 hres
= IHTMLStyle_get_border(style
, &str
);
2543 ok(hres
== S_OK
, "get_border failed: %08x\n", hres
);
2544 ok(!str
|| !*str
, "str is not empty\n");
2547 str
= a2bstr("1px");
2548 hres
= IHTMLStyle_put_border(style
, str
);
2549 ok(hres
== S_OK
, "get_border failed: %08x\n", hres
);
2552 V_VT(&v
) = VT_EMPTY
;
2553 hres
= IHTMLStyle_get_left(style
, &v
);
2554 ok(hres
== S_OK
, "get_left failed: %08x\n", hres
);
2555 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v)=%d\n", V_VT(&v
));
2556 ok(!V_BSTR(&v
), "V_BSTR(v) != NULL\n");
2560 hres
= IHTMLStyle_get_posLeft(style
, NULL
);
2561 ok(hres
== E_POINTER
, "get_left failed: %08x\n", hres
);
2564 hres
= IHTMLStyle_get_posLeft(style
, &f
);
2565 ok(hres
== S_OK
, "get_left failed: %08x\n", hres
);
2566 ok(f
== 0.0, "expected 0.0 got %f\n", f
);
2568 hres
= IHTMLStyle_put_posLeft(style
, 4.9f
);
2569 ok(hres
== S_OK
, "get_left failed: %08x\n", hres
);
2571 hres
= IHTMLStyle_get_posLeft(style
, &f
);
2572 ok(hres
== S_OK
, "get_left failed: %08x\n", hres
);
2573 ok(f
== 4.0, "expected 4.0 got %f\n", f
);
2575 /* Ensure left is updated correctly. */
2576 V_VT(&v
) = VT_EMPTY
;
2577 hres
= IHTMLStyle_get_left(style
, &v
);
2578 ok(hres
== S_OK
, "get_left failed: %08x\n", hres
);
2579 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v)=%d\n", V_VT(&v
));
2580 ok(!strcmp_wa(V_BSTR(&v
), "4px"), "V_BSTR(v) = %s\n", dbgstr_w(V_BSTR(&v
)));
2585 V_BSTR(&v
) = a2bstr("3px");
2586 hres
= IHTMLStyle_put_left(style
, v
);
2587 ok(hres
== S_OK
, "put_left failed: %08x\n", hres
);
2590 hres
= IHTMLStyle_get_posLeft(style
, &f
);
2591 ok(hres
== S_OK
, "get_left failed: %08x\n", hres
);
2592 ok(f
== 3.0, "expected 3.0 got %f\n", f
);
2594 V_VT(&v
) = VT_EMPTY
;
2595 hres
= IHTMLStyle_get_left(style
, &v
);
2596 ok(hres
== S_OK
, "get_left failed: %08x\n", hres
);
2597 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v)=%d\n", V_VT(&v
));
2598 ok(!strcmp_wa(V_BSTR(&v
), "3px"), "V_BSTR(v) = %s\n", dbgstr_w(V_BSTR(&v
)));
2602 hres
= IHTMLStyle_put_left(style
, v
);
2603 ok(hres
== S_OK
, "put_left failed: %08x\n", hres
);
2605 V_VT(&v
) = VT_EMPTY
;
2606 hres
= IHTMLStyle_get_left(style
, &v
);
2607 ok(hres
== S_OK
, "get_left failed: %08x\n", hres
);
2608 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v)=%d\n", V_VT(&v
));
2609 ok(!V_BSTR(&v
), "V_BSTR(v) != NULL\n");
2612 V_VT(&v
) = VT_EMPTY
;
2613 hres
= IHTMLStyle_get_top(style
, &v
);
2614 ok(hres
== S_OK
, "get_top failed: %08x\n", hres
);
2615 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v)=%d\n", V_VT(&v
));
2616 ok(!V_BSTR(&v
), "V_BSTR(v) != NULL\n");
2620 hres
= IHTMLStyle_get_posTop(style
, NULL
);
2621 ok(hres
== E_POINTER
, "get_left failed: %08x\n", hres
);
2624 hres
= IHTMLStyle_get_posTop(style
, &f
);
2625 ok(hres
== S_OK
, "get_left failed: %08x\n", hres
);
2626 ok(f
== 0.0, "expected 0.0 got %f\n", f
);
2628 hres
= IHTMLStyle_put_posTop(style
, 4.9f
);
2629 ok(hres
== S_OK
, "get_left failed: %08x\n", hres
);
2631 hres
= IHTMLStyle_get_posTop(style
, &f
);
2632 ok(hres
== S_OK
, "get_left failed: %08x\n", hres
);
2633 ok(f
== 4.0, "expected 4.0 got %f\n", f
);
2636 V_BSTR(&v
) = a2bstr("3px");
2637 hres
= IHTMLStyle_put_top(style
, v
);
2638 ok(hres
== S_OK
, "put_top failed: %08x\n", hres
);
2641 V_VT(&v
) = VT_EMPTY
;
2642 hres
= IHTMLStyle_get_top(style
, &v
);
2643 ok(hres
== S_OK
, "get_top failed: %08x\n", hres
);
2644 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v)=%d\n", V_VT(&v
));
2645 ok(!strcmp_wa(V_BSTR(&v
), "3px"), "V_BSTR(v) = %s\n", dbgstr_w(V_BSTR(&v
)));
2648 hres
= IHTMLStyle_get_posTop(style
, &f
);
2649 ok(hres
== S_OK
, "get_left failed: %08x\n", hres
);
2650 ok(f
== 3.0, "expected 3.0 got %f\n", f
);
2653 hres
= IHTMLStyle_put_top(style
, v
);
2654 ok(hres
== S_OK
, "put_top failed: %08x\n", hres
);
2656 V_VT(&v
) = VT_EMPTY
;
2657 hres
= IHTMLStyle_get_top(style
, &v
);
2658 ok(hres
== S_OK
, "get_top failed: %08x\n", hres
);
2659 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v)=%d\n", V_VT(&v
));
2660 ok(!V_BSTR(&v
), "V_BSTR(v) != NULL\n");
2663 /* Test posHeight */
2664 hres
= IHTMLStyle_get_posHeight(style
, NULL
);
2665 ok(hres
== E_POINTER
, "get_left failed: %08x\n", hres
);
2667 V_VT(&v
) = VT_EMPTY
;
2668 hres
= IHTMLStyle_get_height(style
, &v
);
2669 ok(hres
== S_OK
, "get_height failed: %08x\n", hres
);
2670 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v)=%d\n", V_VT(&v
));
2671 ok(!V_BSTR(&v
), "V_BSTR(v) != NULL\n");
2675 hres
= IHTMLStyle_get_posHeight(style
, &f
);
2676 ok(hres
== S_OK
, "get_left failed: %08x\n", hres
);
2677 ok(f
== 0.0, "expected 0.0 got %f\n", f
);
2679 hres
= IHTMLStyle_put_posHeight(style
, 4.9f
);
2680 ok(hres
== S_OK
, "get_left failed: %08x\n", hres
);
2682 hres
= IHTMLStyle_get_posHeight(style
, &f
);
2683 ok(hres
== S_OK
, "get_left failed: %08x\n", hres
);
2684 ok(f
== 4.0, "expected 4.0 got %f\n", f
);
2687 V_BSTR(&v
) = a2bstr("64px");
2688 hres
= IHTMLStyle_put_height(style
, v
);
2689 ok(hres
== S_OK
, "put_height failed: %08x\n", hres
);
2692 V_VT(&v
) = VT_EMPTY
;
2693 hres
= IHTMLStyle_get_height(style
, &v
);
2694 ok(hres
== S_OK
, "get_height failed: %08x\n", hres
);
2695 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v)=%d\n", V_VT(&v
));
2696 ok(!strcmp_wa(V_BSTR(&v
), "64px"), "V_BSTR(v) = %s\n", dbgstr_w(V_BSTR(&v
)));
2699 hres
= IHTMLStyle_get_posHeight(style
, &f
);
2700 ok(hres
== S_OK
, "get_left failed: %08x\n", hres
);
2701 ok(f
== 64.0, "expected 64.0 got %f\n", f
);
2703 str
= (void*)0xdeadbeef;
2704 hres
= IHTMLStyle_get_cursor(style
, &str
);
2705 ok(hres
== S_OK
, "get_cursor failed: %08x\n", hres
);
2706 ok(!str
, "get_cursor != NULL\n");
2709 str
= a2bstr("default");
2710 hres
= IHTMLStyle_put_cursor(style
, str
);
2711 ok(hres
== S_OK
, "get_cursor failed: %08x\n", hres
);
2715 hres
= IHTMLStyle_get_cursor(style
, &str
);
2716 ok(hres
== S_OK
, "get_cursor failed: %08x\n", hres
);
2717 ok(!strcmp_wa(str
, "default"), "get_cursor returned %s\n", dbgstr_w(str
));
2720 V_VT(&v
) = VT_EMPTY
;
2721 hres
= IHTMLStyle_get_verticalAlign(style
, &v
);
2722 ok(hres
== S_OK
, "get_vertivalAlign failed: %08x\n", hres
);
2723 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v)=%d\n", V_VT(&v
));
2724 ok(!V_BSTR(&v
), "V_BSTR(v) != NULL\n");
2728 V_BSTR(&v
) = a2bstr("middle");
2729 hres
= IHTMLStyle_put_verticalAlign(style
, v
);
2730 ok(hres
== S_OK
, "put_vertivalAlign failed: %08x\n", hres
);
2733 V_VT(&v
) = VT_EMPTY
;
2734 hres
= IHTMLStyle_get_verticalAlign(style
, &v
);
2735 ok(hres
== S_OK
, "get_verticalAlign failed: %08x\n", hres
);
2736 ok(V_VT(&v
) == VT_BSTR
, "V_VT(v)=%d\n", V_VT(&v
));
2737 ok(!strcmp_wa(V_BSTR(&v
), "middle"), "V_BSTR(v) = %s\n", dbgstr_w(V_BSTR(&v
)));
2740 str
= (void*)0xdeadbeef;
2741 hres
= IHTMLStyle_get_textAlign(style
, &str
);
2742 ok(hres
== S_OK
, "get_textAlign failed: %08x\n", hres
);
2743 ok(!str
, "textAlign != NULL\n");
2745 str
= a2bstr("center");
2746 hres
= IHTMLStyle_put_textAlign(style
, str
);
2747 ok(hres
== S_OK
, "put_textAlign failed: %08x\n", hres
);
2751 hres
= IHTMLStyle_get_textAlign(style
, &str
);
2752 ok(hres
== S_OK
, "get_textAlign failed: %08x\n", hres
);
2753 ok(!strcmp_wa(str
, "center"), "textAlign = %s\n", dbgstr_w(V_BSTR(&v
)));
2756 str
= (void*)0xdeadbeef;
2757 hres
= IHTMLStyle_get_filter(style
, &str
);
2758 ok(hres
== S_OK
, "get_filter failed: %08x\n", hres
);
2759 ok(!str
, "filter != NULL\n");
2761 str
= a2bstr("alpha(opacity=100)");
2762 hres
= IHTMLStyle_put_filter(style
, str
);
2763 ok(hres
== S_OK
, "put_filter failed: %08x\n", hres
);
2766 V_VT(&v
) = VT_EMPTY
;
2767 hres
= IHTMLStyle_get_zIndex(style
, &v
);
2768 ok(hres
== S_OK
, "get_zIndex failed: %08x\n", hres
);
2769 ok(V_VT(&v
) == VT_I4
, "V_VT(v)=%d\n", V_VT(&v
));
2770 ok(!V_I4(&v
), "V_I4(v) != 0\n");
2774 V_BSTR(&v
) = a2bstr("1");
2775 hres
= IHTMLStyle_put_zIndex(style
, v
);
2776 ok(hres
== S_OK
, "put_zIndex failed: %08x\n", hres
);
2779 V_VT(&v
) = VT_EMPTY
;
2780 hres
= IHTMLStyle_get_zIndex(style
, &v
);
2781 ok(hres
== S_OK
, "get_zIndex failed: %08x\n", hres
);
2782 ok(V_VT(&v
) == VT_I4
, "V_VT(v)=%d\n", V_VT(&v
));
2783 ok(V_I4(&v
) == 1, "V_I4(v) = %d\n", V_I4(&v
));
2787 hres
= IHTMLStyle_get_fontStyle(style
, &sDefault
);
2788 ok(hres
== S_OK
, "get_fontStyle failed: %08x\n", hres
);
2790 str
= a2bstr("test");
2791 hres
= IHTMLStyle_put_fontStyle(style
, str
);
2792 ok(hres
== E_INVALIDARG
, "put_fontStyle failed: %08x\n", hres
);
2795 str
= a2bstr("italic");
2796 hres
= IHTMLStyle_put_fontStyle(style
, str
);
2797 ok(hres
== S_OK
, "put_fontStyle failed: %08x\n", hres
);
2800 str
= a2bstr("oblique");
2801 hres
= IHTMLStyle_put_fontStyle(style
, str
);
2802 ok(hres
== S_OK
, "put_fontStyle failed: %08x\n", hres
);
2805 str
= a2bstr("normal");
2806 hres
= IHTMLStyle_put_fontStyle(style
, str
);
2807 ok(hres
== S_OK
, "put_fontStyle failed: %08x\n", hres
);
2810 hres
= IHTMLStyle_put_fontStyle(style
, sDefault
);
2811 ok(hres
== S_OK
, "get_fontStyle failed: %08x\n", hres
);
2814 hres
= IHTMLStyle_get_overflow(style
, NULL
);
2815 ok(hres
== E_INVALIDARG
, "get_overflow failed: %08x\n", hres
);
2817 hres
= IHTMLStyle_get_overflow(style
, &sOverflowDefault
);
2818 ok(hres
== S_OK
, "get_overflow failed: %08x\n", hres
);
2820 str
= a2bstr("test");
2821 hres
= IHTMLStyle_put_overflow(style
, str
);
2822 ok(hres
== E_INVALIDARG
, "put_overflow failed: %08x\n", hres
);
2825 str
= a2bstr("visible");
2826 hres
= IHTMLStyle_put_overflow(style
, str
);
2827 ok(hres
== S_OK
, "put_overflow failed: %08x\n", hres
);
2830 str
= a2bstr("scroll");
2831 hres
= IHTMLStyle_put_overflow(style
, str
);
2832 ok(hres
== S_OK
, "put_overflow failed: %08x\n", hres
);
2835 str
= a2bstr("hidden");
2836 hres
= IHTMLStyle_put_overflow(style
, str
);
2837 ok(hres
== S_OK
, "put_overflow failed: %08x\n", hres
);
2840 str
= a2bstr("auto");
2841 hres
= IHTMLStyle_put_overflow(style
, str
);
2842 ok(hres
== S_OK
, "put_overflow failed: %08x\n", hres
);
2845 hres
= IHTMLStyle_get_overflow(style
, &str
);
2846 ok(hres
== S_OK
, "get_overflow failed: %08x\n", hres
);
2847 ok(!strcmp_wa(str
, "auto"), "str=%s\n", dbgstr_w(str
));
2850 /* restore overflow default */
2851 hres
= IHTMLStyle_put_overflow(style
, sOverflowDefault
);
2852 ok(hres
== S_OK
, "put_overflow failed: %08x\n", hres
);
2853 SysFreeString(sOverflowDefault
);
2855 /* Attribute Tests*/
2856 hres
= IHTMLStyle_getAttribute(style
, NULL
, 1, &v
);
2857 ok(hres
== E_INVALIDARG
, "getAttribute failed: %08x\n", hres
);
2859 str
= a2bstr("position");
2860 hres
= IHTMLStyle_getAttribute(style
, str
, 1, NULL
);
2861 ok(hres
== E_INVALIDARG
, "getAttribute failed: %08x\n", hres
);
2863 hres
= IHTMLStyle_getAttribute(style
, str
, 1, &v
);
2864 ok(hres
== S_OK
, "getAttribute failed: %08x\n", hres
);
2865 ok(V_VT(&v
) == VT_BSTR
, "type failed: %d\n", V_VT(&v
));
2868 hres
= IHTMLStyle_setAttribute(style
, NULL
, v
, 1);
2869 ok(hres
== E_INVALIDARG
, "getAttribute failed: %08x\n", hres
);
2872 V_BSTR(&v
) = a2bstr("absolute");
2873 hres
= IHTMLStyle_setAttribute(style
, str
, v
, 1);
2874 ok(hres
== S_OK
, "setAttribute failed: %08x\n", hres
);
2877 hres
= IHTMLStyle_getAttribute(style
, str
, 1, &v
);
2878 ok(hres
== S_OK
, "getAttribute failed: %08x\n", hres
);
2879 ok(V_VT(&v
) == VT_BSTR
, "type failed: %d\n", V_VT(&v
));
2880 ok(!strcmp_wa(V_BSTR(&v
), "absolute"), "str=%s\n", dbgstr_w(V_BSTR(&v
)));
2885 hres
= IHTMLStyle_setAttribute(style
, str
, v
, 1);
2886 ok(hres
== S_OK
, "setAttribute failed: %08x\n", hres
);
2891 str
= a2bstr("borderLeftStyle");
2892 test_border_styles(style
, str
);
2895 str
= a2bstr("borderbottomstyle");
2896 test_border_styles(style
, str
);
2899 str
= a2bstr("borderrightstyle");
2900 test_border_styles(style
, str
);
2903 str
= a2bstr("bordertopstyle");
2904 test_border_styles(style
, str
);
2907 hres
= IHTMLStyle_QueryInterface(style
, &IID_IHTMLStyle2
, (void**)&style2
);
2908 ok(hres
== S_OK
, "Could not get IHTMLStyle2 iface: %08x\n", hres
);
2909 if(SUCCEEDED(hres
)) {
2910 test_style2(style2
);
2911 IHTMLStyle2_Release(style2
);
2915 static void test_default_selection(IHTMLDocument2
*doc
)
2917 IHTMLSelectionObject
*selection
;
2918 IHTMLTxtRange
*range
;
2923 hres
= IHTMLDocument2_get_selection(doc
, &selection
);
2924 ok(hres
== S_OK
, "get_selection failed: %08x\n", hres
);
2926 hres
= IHTMLSelectionObject_get_type(selection
, &str
);
2927 ok(hres
== S_OK
, "get_type failed: %08x\n", hres
);
2928 ok(!lstrcmpW(str
, noneW
), "type = %s\n", dbgstr_w(str
));
2931 hres
= IHTMLSelectionObject_createRange(selection
, &disp
);
2932 IHTMLSelectionObject_Release(selection
);
2933 ok(hres
== S_OK
, "createRange failed: %08x\n", hres
);
2935 hres
= IDispatch_QueryInterface(disp
, &IID_IHTMLTxtRange
, (void**)&range
);
2936 IDispatch_Release(disp
);
2937 ok(hres
== S_OK
, "Could not get IHTMLTxtRange interface: %08x\n", hres
);
2939 test_range_text(range
, NULL
);
2940 IHTMLTxtRange_Release(range
);
2943 static void test_default_body(IHTMLBodyElement
*body
)
2949 WCHAR sBodyText
[] = {'#','F','F','0','0','0','0',0};
2950 WCHAR sTextInvalid
[] = {'I','n','v','a','l','i','d',0};
2951 WCHAR sResInvalid
[] = {'#','0','0','a','0','d','0',0};
2953 bstr
= (void*)0xdeadbeef;
2954 hres
= IHTMLBodyElement_get_background(body
, &bstr
);
2955 ok(hres
== S_OK
, "get_background failed: %08x\n", hres
);
2956 ok(bstr
== NULL
, "bstr != NULL\n");
2958 l
= elem_get_scroll_height((IUnknown
*)body
);
2959 ok(l
!= -1, "scrollHeight == -1\n");
2960 l
= elem_get_scroll_width((IUnknown
*)body
);
2961 ok(l
!= -1, "scrollWidth == -1\n");
2962 l
= elem_get_scroll_top((IUnknown
*)body
);
2963 ok(!l
, "scrollTop = %ld\n", l
);
2964 elem_get_scroll_left((IUnknown
*)body
);
2966 /* get_text tests */
2967 hres
= IHTMLBodyElement_get_text(body
, &v
);
2968 ok(hres
== S_OK
, "expect S_OK got 0x%08d\n", hres
);
2969 ok(V_VT(&v
) == VT_BSTR
, "Expected VT_BSTR got %d\n", V_VT(&v
));
2970 ok(bstr
== NULL
, "bstr != NULL\n");
2973 /* get_text - Invalid Text */
2975 V_BSTR(&v
) = SysAllocString(sTextInvalid
);
2976 hres
= IHTMLBodyElement_put_text(body
, v
);
2977 ok(hres
== S_OK
, "expect S_OK got 0x%08d\n", hres
);
2980 hres
= IHTMLBodyElement_get_text(body
, &v
);
2981 ok(hres
== S_OK
, "expect S_OK got 0x%08d\n", hres
);
2982 ok(V_VT(&v
) == VT_BSTR
, "Expected VT_BSTR got %d\n", V_VT(&v
));
2983 ok(!lstrcmpW(sResInvalid
, V_BSTR(&v
)), "bstr != sResInvalid\n");
2986 /* get_text - Valid Text */
2988 V_BSTR(&v
) = SysAllocString(sBodyText
);
2989 hres
= IHTMLBodyElement_put_text(body
, v
);
2990 ok(hres
== S_OK
, "expect S_OK got 0x%08d\n", hres
);
2993 hres
= IHTMLBodyElement_get_text(body
, &v
);
2994 ok(hres
== S_OK
, "expect S_OK got 0x%08d\n", hres
);
2995 ok(V_VT(&v
) == VT_BSTR
, "Expected VT_BSTR got %d\n", V_VT(&v
));
2996 ok(lstrcmpW(bstr
, V_BSTR(&v
)), "bstr != V_BSTR(&v)\n");
3000 static void test_body_funs(IHTMLBodyElement
*body
)
3002 static WCHAR sRed
[] = {'r','e','d',0};
3003 static WCHAR sRedbg
[] = {'#','f','f','0','0','0','0',0};
3008 hres
= IHTMLBodyElement_get_bgColor(body
, &vDefaultbg
);
3009 ok(hres
== S_OK
, "get_background failed: %08x\n", hres
);
3010 ok(V_VT(&vDefaultbg
) == VT_BSTR
, "bstr != NULL\n");
3012 V_VT(&vbg
) = VT_BSTR
;
3013 V_BSTR(&vbg
) = SysAllocString(sRed
);
3014 hres
= IHTMLBodyElement_put_bgColor(body
, vbg
);
3015 ok(hres
== S_OK
, "get_background failed: %08x\n", hres
);
3018 hres
= IHTMLBodyElement_get_bgColor(body
, &vbg
);
3019 ok(hres
== S_OK
, "get_background failed: %08x\n", hres
);
3020 ok(V_VT(&vDefaultbg
) == VT_BSTR
, "V_VT(&vDefaultbg) != VT_BSTR\n");
3021 ok(!lstrcmpW(V_BSTR(&vbg
), sRedbg
), "Unexpected type %s\n", dbgstr_w(V_BSTR(&vbg
)));
3024 /* Restore Originial */
3025 hres
= IHTMLBodyElement_put_bgColor(body
, vDefaultbg
);
3026 ok(hres
== S_OK
, "get_background failed: %08x\n", hres
);
3027 VariantClear(&vDefaultbg
);
3030 static void test_window(IHTMLDocument2
*doc
)
3032 IHTMLWindow2
*window
, *window2
, *self
;
3033 IHTMLDocument2
*doc2
= NULL
;
3037 hres
= IHTMLDocument2_get_parentWindow(doc
, &window
);
3038 ok(hres
== S_OK
, "get_parentElement failed: %08x\n", hres
);
3039 test_ifaces((IUnknown
*)window
, window_iids
);
3040 test_disp((IUnknown
*)window
, &DIID_DispHTMLWindow2
);
3042 hres
= IHTMLWindow2_get_document(window
, &doc2
);
3043 ok(hres
== S_OK
, "get_document failed: %08x\n", hres
);
3044 ok(doc2
!= NULL
, "doc2 == NULL\n");
3046 IHTMLDocument_Release(doc2
);
3048 hres
= IHTMLWindow2_get_window(window
, &window2
);
3049 ok(hres
== S_OK
, "get_window failed: %08x\n", hres
);
3050 ok(window2
!= NULL
, "window2 == NULL\n");
3052 hres
= IHTMLWindow2_get_self(window
, &self
);
3053 ok(hres
== S_OK
, "get_window failed: %08x\n", hres
);
3054 ok(window2
!= NULL
, "self == NULL\n");
3056 ok(self
== window2
, "self != window2\n");
3058 IHTMLWindow2_Release(window2
);
3059 IHTMLWindow2_Release(self
);
3062 hres
= IHTMLDocument2_get_Script(doc
, &disp
);
3063 ok(hres
== S_OK
, "get_Script failed: %08x\n", hres
);
3064 ok(disp
== (void*)window
, "disp != window\n");
3065 IDispatch_Release(disp
);
3067 IHTMLWindow2_Release(window
);
3070 static void test_defaults(IHTMLDocument2
*doc
)
3072 IHTMLStyleSheetsCollection
*stylesheetcol
;
3073 IHTMLCurrentStyle
*cstyle
;
3074 IHTMLBodyElement
*body
;
3075 IHTMLElement2
*elem2
;
3080 IHTMLElementCollection
*collection
;
3082 hres
= IHTMLDocument2_get_body(doc
, &elem
);
3083 ok(hres
== S_OK
, "get_body failed: %08x\n", hres
);
3085 hres
= IHTMLDocument2_get_images(doc
, NULL
);
3086 ok(hres
== E_INVALIDARG
, "hres %08x\n", hres
);
3088 hres
= IHTMLDocument2_get_images(doc
, &collection
);
3089 ok(hres
== S_OK
, "get_images failed: %08x\n", hres
);
3092 test_elem_collection((IUnknown
*)collection
, NULL
, 0);
3093 IHTMLElementCollection_Release(collection
);
3096 hres
= IHTMLDocument2_get_applets(doc
, NULL
);
3097 ok(hres
== E_INVALIDARG
, "hres %08x\n", hres
);
3099 hres
= IHTMLDocument2_get_applets(doc
, &collection
);
3100 ok(hres
== S_OK
, "get_applets failed: %08x\n", hres
);
3103 test_elem_collection((IUnknown
*)collection
, NULL
, 0);
3104 IHTMLElementCollection_Release(collection
);
3107 hres
= IHTMLDocument2_get_links(doc
, NULL
);
3108 ok(hres
== E_INVALIDARG
, "hres %08x\n", hres
);
3110 hres
= IHTMLDocument2_get_links(doc
, &collection
);
3111 ok(hres
== S_OK
, "get_links failed: %08x\n", hres
);
3114 test_elem_collection((IUnknown
*)collection
, NULL
, 0);
3115 IHTMLElementCollection_Release(collection
);
3118 hres
= IHTMLDocument2_get_forms(doc
, NULL
);
3119 ok(hres
== E_INVALIDARG
, "hres %08x\n", hres
);
3121 hres
= IHTMLDocument2_get_forms(doc
, &collection
);
3122 ok(hres
== S_OK
, "get_forms failed: %08x\n", hres
);
3125 test_elem_collection((IUnknown
*)collection
, NULL
, 0);
3126 IHTMLElementCollection_Release(collection
);
3129 hres
= IHTMLDocument2_get_anchors(doc
, NULL
);
3130 ok(hres
== E_INVALIDARG
, "hres %08x\n", hres
);
3132 hres
= IHTMLDocument2_get_anchors(doc
, &collection
);
3133 ok(hres
== S_OK
, "get_anchors failed: %08x\n", hres
);
3136 test_elem_collection((IUnknown
*)collection
, NULL
, 0);
3137 IHTMLElementCollection_Release(collection
);
3140 hres
= IHTMLElement_QueryInterface(elem
, &IID_IHTMLBodyElement
, (void**)&body
);
3141 ok(hres
== S_OK
, "Could not get IHTMBodyElement: %08x\n", hres
);
3142 test_default_body(body
);
3143 test_body_funs(body
);
3144 IHTMLBodyElement_Release(body
);
3146 hres
= IHTMLElement_get_style(elem
, &style
);
3147 ok(hres
== S_OK
, "get_style failed: %08x\n", hres
);
3149 test_default_style(style
);
3151 test_compatmode(doc
);
3153 test_navigator(doc
);
3155 IHTMLStyle_Release(style
);
3157 elem2
= get_elem2_iface((IUnknown
*)elem
);
3158 hres
= IHTMLElement2_get_currentStyle(elem2
, &cstyle
);
3159 ok(hres
== S_OK
, "get_currentStyle failed: %08x\n", hres
);
3160 if(SUCCEEDED(hres
)) {
3161 test_current_style(cstyle
);
3162 IHTMLCurrentStyle_Release(cstyle
);
3164 IHTMLElement2_Release(elem2
);
3166 IHTMLElement_Release(elem
);
3168 hres
= IHTMLDocument2_get_styleSheets(doc
, &stylesheetcol
);
3169 ok(hres
== S_OK
, "get_styleSheets failed: %08x\n", hres
);
3172 hres
= IHTMLStyleSheetsCollection_get_length(stylesheetcol
, &l
);
3173 ok(hres
== S_OK
, "get_length failed: %08x\n", hres
);
3174 ok(l
== 0, "length = %ld\n", l
);
3176 IHTMLStyleSheetsCollection_Release(stylesheetcol
);
3178 test_default_selection(doc
);
3179 test_doc_title(doc
, "");
3182 static void test_tr_elem(IHTMLElement
*elem
)
3184 IHTMLElementCollection
*col
;
3188 static const elem_type_t cell_types
[] = {ET_TD
,ET_TD
};
3190 hres
= IHTMLElement_QueryInterface(elem
, &IID_IHTMLTableRow
, (void**)&row
);
3191 ok(hres
== S_OK
, "Could not get IHTMLTableRow iface: %08x\n", hres
);
3196 hres
= IHTMLTableRow_get_cells(row
, &col
);
3197 ok(hres
== S_OK
, "get_cells failed: %08x\n", hres
);
3198 ok(col
!= NULL
, "get_cells returned NULL\n");
3200 test_elem_collection((IUnknown
*)col
, cell_types
, sizeof(cell_types
)/sizeof(*cell_types
));
3201 IHTMLElementCollection_Release(col
);
3203 IHTMLTable_Release(row
);
3206 static void test_table_elem(IHTMLElement
*elem
)
3208 IHTMLElementCollection
*col
;
3212 static const elem_type_t row_types
[] = {ET_TR
,ET_TR
};
3214 hres
= IHTMLElement_QueryInterface(elem
, &IID_IHTMLTable
, (void**)&table
);
3215 ok(hres
== S_OK
, "Could not get IHTMLTable iface: %08x\n", hres
);
3220 hres
= IHTMLTable_get_rows(table
, &col
);
3221 ok(hres
== S_OK
, "get_rows failed: %08x\n", hres
);
3222 ok(col
!= NULL
, "get_ros returned NULL\n");
3224 test_elem_collection((IUnknown
*)col
, row_types
, sizeof(row_types
)/sizeof(*row_types
));
3225 IHTMLElementCollection_Release(col
);
3227 IHTMLTable_Release(table
);
3230 static void doc_write(IHTMLDocument2
*doc
, const char *text
)
3240 sa
= SafeArrayCreate(VT_VARIANT
, 1, &dim
);
3241 SafeArrayAccessData(sa
, (void**)&var
);
3242 V_VT(var
) = VT_BSTR
;
3243 V_BSTR(var
) = str
= a2bstr(text
);
3244 SafeArrayUnaccessData(sa
);
3246 hres
= IHTMLDocument2_write(doc
, sa
);
3247 ok(hres
== S_OK
, "write failed: %08x\n", hres
);
3250 SafeArrayDestroy(sa
);
3253 static void test_iframe_elem(IHTMLElement
*elem
)
3255 IHTMLElementCollection
*col
;
3256 IHTMLDocument2
*content_doc
;
3257 IHTMLWindow2
*content_window
;
3258 IHTMLFrameBase2
*base2
;
3264 static const elem_type_t all_types
[] = {
3272 hres
= IHTMLElement_QueryInterface(elem
, &IID_IHTMLFrameBase2
, (void**)&base2
);
3273 ok(hres
== S_OK
, "Could not get IHTMFrameBase2 iface: %08x\n", hres
);
3276 content_window
= NULL
;
3277 hres
= IHTMLFrameBase2_get_contentWindow(base2
, &content_window
);
3278 IHTMLFrameBase2_Release(base2
);
3279 ok(hres
== S_OK
, "get_contentWindow failed: %08x\n", hres
);
3280 ok(content_window
!= NULL
, "contentWindow = NULL\n");
3283 hres
= IHTMLWindow2_get_document(content_window
, &content_doc
);
3284 IHTMLWindow2_Release(content_window
);
3285 ok(hres
== S_OK
, "get_document failed: %08x\n", hres
);
3286 ok(content_doc
!= NULL
, "content_doc = NULL\n");
3288 str
= a2bstr("text/html");
3289 V_VT(&errv
) = VT_ERROR
;
3291 hres
= IHTMLDocument2_open(content_doc
, str
, errv
, errv
, errv
, &disp
);
3293 ok(hres
== S_OK
, "open failed: %08x\n", hres
);
3294 ok(disp
!= NULL
, "disp == NULL\n");
3295 ok(iface_cmp((IUnknown
*)disp
, (IUnknown
*)content_window
), "disp != content_window\n");
3296 IDispatch_Release(disp
);
3298 doc_write(content_doc
, "<html><head><title>test</title></head><body><br /></body></html>");
3300 hres
= IHTMLDocument2_get_all(content_doc
, &col
);
3301 ok(hres
== S_OK
, "get_all failed: %08x\n", hres
);
3302 test_elem_collection((IUnknown
*)col
, all_types
, sizeof(all_types
)/sizeof(all_types
[0]));
3303 IHTMLElementCollection_Release(col
);
3305 hres
= IHTMLDocument2_close(content_doc
);
3306 ok(hres
== S_OK
, "close failed: %08x\n", hres
);
3308 IHTMLDocument2_Release(content_doc
);
3311 static void test_stylesheet(IDispatch
*disp
)
3313 IHTMLStyleSheetRulesCollection
*col
= NULL
;
3314 IHTMLStyleSheet
*stylesheet
;
3317 hres
= IDispatch_QueryInterface(disp
, &IID_IHTMLStyleSheet
, (void**)&stylesheet
);
3318 ok(hres
== S_OK
, "Could not get IHTMLStyleSheet: %08x\n", hres
);
3320 hres
= IHTMLStyleSheet_get_rules(stylesheet
, &col
);
3321 ok(hres
== S_OK
, "get_rules failed: %08x\n", hres
);
3322 ok(col
!= NULL
, "col == NULL\n");
3324 IHTMLStyleSheetRulesCollection_Release(col
);
3325 IHTMLStyleSheet_Release(stylesheet
);
3328 static void test_stylesheets(IHTMLDocument2
*doc
)
3330 IHTMLStyleSheetsCollection
*col
= NULL
;
3335 hres
= IHTMLDocument2_get_styleSheets(doc
, &col
);
3336 ok(hres
== S_OK
, "get_styleSheets failed: %08x\n", hres
);
3337 ok(col
!= NULL
, "col == NULL\n");
3339 hres
= IHTMLStyleSheetsCollection_get_length(col
, &len
);
3340 ok(hres
== S_OK
, "get_length failed: %08x\n", hres
);
3341 ok(len
== 1, "len=%ld\n", len
);
3347 hres
= IHTMLStyleSheetsCollection_item(col
, &idx
, &res
);
3348 ok(hres
== S_OK
, "item failed: %08x\n", hres
);
3349 ok(V_VT(&res
) == VT_DISPATCH
, "V_VT(res) = %d\n", V_VT(&res
));
3350 ok(V_DISPATCH(&res
) != NULL
, "V_DISPATCH(&res) == NULL\n");
3351 test_stylesheet(V_DISPATCH(&res
));
3358 hres
= IHTMLStyleSheetsCollection_item(col
, &idx
, &res
);
3359 ok(hres
== E_INVALIDARG
, "item failed: %08x, expected E_INVALIDARG\n", hres
);
3360 ok(V_VT(&res
) == VT_EMPTY
, "V_VT(res) = %d\n", V_VT(&res
));
3361 ok(V_DISPATCH(&res
) != NULL
, "V_DISPATCH(&res) == NULL\n");
3364 IHTMLStyleSheetsCollection_Release(col
);
3367 static void test_child_col_disp(IHTMLDOMChildrenCollection
*col
)
3369 IDispatchEx
*dispex
;
3371 DISPPARAMS dp
= {NULL
, NULL
, 0, 0};
3379 static const WCHAR w0
[] = {'0',0};
3380 static const WCHAR w100
[] = {'1','0','0',0};
3382 hres
= IHTMLDOMChildrenCollection_QueryInterface(col
, &IID_IDispatchEx
, (void**)&dispex
);
3383 ok(hres
== S_OK
, "Could not get IDispatchEx: %08x\n", hres
);
3385 bstr
= SysAllocString(w0
);
3386 hres
= IDispatchEx_GetDispID(dispex
, bstr
, fdexNameCaseSensitive
, &id
);
3387 ok(hres
== S_OK
, "GetDispID failed: %08x\n", hres
);
3388 SysFreeString(bstr
);
3391 hres
= IDispatchEx_InvokeEx(dispex
, id
, LOCALE_NEUTRAL
, INVOKE_PROPERTYGET
, &dp
, &var
, &ei
, NULL
);
3392 ok(hres
== S_OK
, "InvokeEx failed: %08x\n", hres
);
3393 ok(V_VT(&var
) == VT_DISPATCH
, "V_VT(var)=%d\n", V_VT(&var
));
3394 ok(V_DISPATCH(&var
) != NULL
, "V_DISPATCH(var) == NULL\n");
3395 node
= get_node_iface((IUnknown
*)V_DISPATCH(&var
));
3396 type
= get_node_type((IUnknown
*)node
);
3397 ok(type
== 3, "type=%ld\n", type
);
3398 IHTMLDOMNode_Release(node
);
3401 bstr
= SysAllocString(w100
);
3402 hres
= IDispatchEx_GetDispID(dispex
, bstr
, fdexNameCaseSensitive
, &id
);
3403 ok(hres
== DISP_E_UNKNOWNNAME
, "GetDispID failed: %08x, expected DISP_E_UNKNOWNNAME\n", hres
);
3404 SysFreeString(bstr
);
3406 IDispatchEx_Release(dispex
);
3411 static void test_elems(IHTMLDocument2
*doc
)
3413 IHTMLElementCollection
*col
;
3414 IHTMLDOMChildrenCollection
*child_col
;
3415 IHTMLElement
*elem
, *elem2
, *elem3
;
3416 IHTMLDOMNode
*node
, *node2
;
3420 IHTMLElementCollection
*collection
;
3421 IHTMLDocument3
*doc3
;
3424 static const WCHAR imgidW
[] = {'i','m','g','i','d',0};
3425 static const WCHAR inW
[] = {'i','n',0};
3426 static const WCHAR xW
[] = {'x',0};
3427 static const WCHAR sW
[] = {'s',0};
3428 static const WCHAR scW
[] = {'s','c',0};
3429 static const WCHAR xxxW
[] = {'x','x','x',0};
3430 static const WCHAR tblW
[] = {'t','b','l',0};
3431 static const WCHAR row2W
[] = {'r','o','w','2',0};
3432 static const WCHAR ifrW
[] = {'i','f','r',0};
3434 static const elem_type_t all_types
[] = {
3459 static const elem_type_t item_types
[] = {
3465 hres
= IHTMLDocument2_get_all(doc
, &col
);
3466 ok(hres
== S_OK
, "get_all failed: %08x\n", hres
);
3467 test_elem_collection((IUnknown
*)col
, all_types
, sizeof(all_types
)/sizeof(all_types
[0]));
3468 test_elem_col_item(col
, xW
, item_types
, sizeof(item_types
)/sizeof(item_types
[0]));
3469 IHTMLElementCollection_Release(col
);
3471 hres
= IHTMLDocument2_get_images(doc
, &collection
);
3472 ok(hres
== S_OK
, "get_images failed: %08x\n", hres
);
3475 static const elem_type_t images_types
[] = {ET_IMG
};
3476 test_elem_collection((IUnknown
*)collection
, images_types
, 1);
3478 IHTMLElementCollection_Release(collection
);
3481 hres
= IHTMLDocument2_get_links(doc
, &collection
);
3482 ok(hres
== S_OK
, "get_links failed: %08x\n", hres
);
3485 static const elem_type_t images_types
[] = {ET_A
};
3486 test_elem_collection((IUnknown
*)collection
, images_types
, 1);
3488 IHTMLElementCollection_Release(collection
);
3491 hres
= IHTMLDocument2_get_anchors(doc
, &collection
);
3492 ok(hres
== S_OK
, "get_anchors failed: %08x\n", hres
);
3495 static const elem_type_t anchor_types
[] = {ET_A
};
3496 test_elem_collection((IUnknown
*)collection
, anchor_types
, 1);
3498 IHTMLElementCollection_Release(collection
);
3501 elem
= get_doc_elem(doc
);
3502 ok(hres
== S_OK
, "get_documentElement failed: %08x\n", hres
);
3503 hres
= IHTMLElement_get_all(elem
, &disp
);
3504 IHTMLElement_Release(elem
);
3505 ok(hres
== S_OK
, "get_all failed: %08x\n", hres
);
3507 hres
= IDispatch_QueryInterface(disp
, &IID_IHTMLElementCollection
, (void**)&col
);
3508 IDispatch_Release(disp
);
3509 ok(hres
== S_OK
, "Could not get IHTMLElementCollection: %08x\n", hres
);
3510 test_elem_collection((IUnknown
*)col
, all_types
+1, sizeof(all_types
)/sizeof(all_types
[0])-1);
3511 IHTMLElementCollection_Release(col
);
3513 get_elem_by_id(doc
, xxxW
, FALSE
);
3514 elem
= get_doc_elem_by_id(doc
, xxxW
);
3515 ok(!elem
, "elem != NULL\n");
3517 elem
= get_doc_elem_by_id(doc
, sW
);
3518 ok(elem
!= NULL
, "elem == NULL\n");
3520 test_elem_type((IUnknown
*)elem
, ET_SELECT
);
3521 test_elem_attr(elem
, xxxW
, NULL
);
3522 test_elem_attr(elem
, idW
, sW
);
3523 test_elem_class((IUnknown
*)elem
, NULL
);
3524 test_elem_set_class((IUnknown
*)elem
, "cl");
3525 test_elem_set_class((IUnknown
*)elem
, NULL
);
3526 test_elem_tabindex((IUnknown
*)elem
, 0);
3527 test_elem_set_tabindex((IUnknown
*)elem
, 1);
3529 node
= test_node_get_parent((IUnknown
*)elem
);
3530 ok(node
!= NULL
, "node == NULL\n");
3531 test_node_name((IUnknown
*)node
, "BODY");
3532 node2
= test_node_get_parent((IUnknown
*)node
);
3533 IHTMLDOMNode_Release(node
);
3534 ok(node2
!= NULL
, "node == NULL\n");
3535 test_node_name((IUnknown
*)node2
, "HTML");
3536 node
= test_node_get_parent((IUnknown
*)node2
);
3537 IHTMLDOMNode_Release(node2
);
3538 ok(node
!= NULL
, "node == NULL\n");
3541 test_node_name((IUnknown
*)node
, "#document");
3542 type
= get_node_type((IUnknown
*)node
);
3543 ok(type
== 9, "type=%ld, expected 9\n", type
);
3544 node2
= test_node_get_parent((IUnknown
*)node
);
3545 IHTMLDOMNode_Release(node
);
3546 ok(node2
== NULL
, "node != NULL\n");
3549 elem2
= test_elem_get_parent((IUnknown
*)elem
);
3550 ok(elem2
!= NULL
, "elem2 == NULL\n");
3551 test_node_name((IUnknown
*)elem2
, "BODY");
3552 elem3
= test_elem_get_parent((IUnknown
*)elem2
);
3553 IHTMLElement_Release(elem2
);
3554 ok(elem3
!= NULL
, "elem3 == NULL\n");
3555 test_node_name((IUnknown
*)elem3
, "HTML");
3556 elem2
= test_elem_get_parent((IUnknown
*)elem3
);
3557 IHTMLElement_Release(elem3
);
3558 ok(elem2
== NULL
, "elem2 != NULL\n");
3560 test_elem_getelembytag((IUnknown
*)elem
, ET_OPTION
, 2);
3561 test_elem_getelembytag((IUnknown
*)elem
, ET_SELECT
, 0);
3562 test_elem_getelembytag((IUnknown
*)elem
, ET_HTML
, 0);
3564 test_elem_innertext(elem
, "opt1opt2");
3566 IHTMLElement_Release(elem
);
3569 elem
= get_elem_by_id(doc
, sW
, TRUE
);
3571 IHTMLSelectElement
*select
;
3573 hres
= IHTMLElement_QueryInterface(elem
, &IID_IHTMLSelectElement
, (void**)&select
);
3574 ok(hres
== S_OK
, "Could not get IHTMLSelectElement interface: %08x\n", hres
);
3576 test_select_elem(select
);
3578 test_elem_title((IUnknown
*)select
, NULL
);
3579 test_elem_set_title((IUnknown
*)select
, "Title");
3580 test_elem_title((IUnknown
*)select
, "Title");
3581 test_elem_offset((IUnknown
*)select
);
3583 node
= get_first_child((IUnknown
*)select
);
3584 ok(node
!= NULL
, "node == NULL\n");
3586 test_elem_type((IUnknown
*)node
, ET_OPTION
);
3587 IHTMLDOMNode_Release(node
);
3590 type
= get_node_type((IUnknown
*)select
);
3591 ok(type
== 1, "type=%ld\n", type
);
3593 IHTMLSelectElement_Release(select
);
3595 hres
= IHTMLElement_get_document(elem
, &disp
);
3596 ok(hres
== S_OK
, "get_document failed: %08x\n", hres
);
3597 ok(iface_cmp((IUnknown
*)disp
, (IUnknown
*)doc
), "disp != doc\n");
3599 IHTMLElement_Release(elem
);
3602 elem
= get_elem_by_id(doc
, scW
, TRUE
);
3604 IHTMLScriptElement
*script
;
3607 hres
= IHTMLElement_QueryInterface(elem
, &IID_IHTMLScriptElement
, (void**)&script
);
3608 ok(hres
== S_OK
, "Could not get IHTMLScriptElement interface: %08x\n", hres
);
3614 hres
= IHTMLScriptElement_get_type(script
, &type
);
3615 ok(hres
== S_OK
, "get_type failed: %08x\n", hres
);
3616 ok(!lstrcmpW(type
, text_javascriptW
), "Unexpected type %s\n", dbgstr_w(type
));
3617 SysFreeString(type
);
3620 hres
= IHTMLScriptElement_put_defer(script
, VARIANT_TRUE
);
3621 ok(hres
== S_OK
, "get_type failed: %08x\n", hres
);
3623 hres
= IHTMLScriptElement_get_defer(script
, &vb
);
3624 ok(hres
== S_OK
, "get_type failed: %08x\n", hres
);
3625 ok(vb
== VARIANT_TRUE
, "get_type failed: %08x\n", hres
);
3627 hres
= IHTMLScriptElement_put_defer(script
, VARIANT_FALSE
);
3628 ok(hres
== S_OK
, "get_type failed: %08x\n", hres
);
3631 IHTMLScriptElement_Release(script
);
3634 elem
= get_elem_by_id(doc
, inW
, TRUE
);
3636 IHTMLInputElement
*input
;
3638 hres
= IHTMLElement_QueryInterface(elem
, &IID_IHTMLInputElement
, (void**)&input
);
3639 ok(hres
== S_OK
, "Could not get IHTMLInputElement: %08x\n", hres
);
3641 test_elem_id((IUnknown
*)elem
, "in");
3642 test_elem_put_id((IUnknown
*)elem
, "newin");
3643 test_input_get_disabled(input
, VARIANT_FALSE
);
3644 test_input_set_disabled(input
, VARIANT_TRUE
);
3645 test_input_set_disabled(input
, VARIANT_FALSE
);
3646 test_elem3_set_disabled((IUnknown
*)input
, VARIANT_TRUE
);
3647 test_input_get_disabled(input
, VARIANT_TRUE
);
3648 test_elem3_set_disabled((IUnknown
*)input
, VARIANT_FALSE
);
3649 test_input_get_disabled(input
, VARIANT_FALSE
);
3650 test_elem_client_size((IUnknown
*)elem
);
3652 test_node_get_value_str((IUnknown
*)elem
, NULL
);
3653 test_node_put_value_str((IUnknown
*)elem
, "test");
3654 test_node_get_value_str((IUnknown
*)elem
, NULL
);
3655 test_input_value((IUnknown
*)elem
, NULL
);
3656 test_input_put_value((IUnknown
*)elem
, "test");
3657 test_input_value((IUnknown
*)elem
, NULL
);
3658 test_elem_class((IUnknown
*)elem
, "testclass");
3659 test_elem_tabindex((IUnknown
*)elem
, 2);
3660 test_elem_set_tabindex((IUnknown
*)elem
, 3);
3661 test_elem_title((IUnknown
*)elem
, "test title");
3663 test_input_get_defaultchecked(input
, VARIANT_FALSE
);
3664 test_input_set_defaultchecked(input
, VARIANT_TRUE
);
3665 test_input_set_defaultchecked(input
, VARIANT_FALSE
);
3667 test_input_get_checked(input
, VARIANT_FALSE
);
3668 test_input_set_checked(input
, VARIANT_TRUE
);
3669 test_input_set_checked(input
, VARIANT_FALSE
);
3671 IHTMLInputElement_Release(input
);
3672 IHTMLElement_Release(elem
);
3675 elem
= get_elem_by_id(doc
, imgidW
, TRUE
);
3677 test_img_src((IUnknown
*)elem
, "");
3678 test_img_set_src((IUnknown
*)elem
, "about:blank");
3679 test_img_alt((IUnknown
*)elem
, NULL
);
3680 test_img_set_alt((IUnknown
*)elem
, "alt test");
3681 IHTMLElement_Release(elem
);
3684 elem
= get_doc_elem_by_id(doc
, tblW
);
3685 ok(elem
!= NULL
, "elem == NULL\n");
3687 test_table_elem(elem
);
3688 IHTMLElement_Release(elem
);
3691 elem
= get_doc_elem_by_id(doc
, row2W
);
3692 ok(elem
!= NULL
, "elem == NULL\n");
3695 IHTMLElement_Release(elem
);
3698 elem
= get_doc_elem_by_id(doc
, ifrW
);
3699 ok(elem
!= NULL
, "elem == NULL\n");
3701 test_iframe_elem(elem
);
3702 IHTMLElement_Release(elem
);
3705 hres
= IHTMLDocument2_get_body(doc
, &elem
);
3706 ok(hres
== S_OK
, "get_body failed: %08x\n", hres
);
3708 node
= get_first_child((IUnknown
*)elem
);
3709 ok(node
!= NULL
, "node == NULL\n");
3711 test_ifaces((IUnknown
*)node
, text_iids
);
3712 test_disp((IUnknown
*)node
, &DIID_DispHTMLDOMTextNode
);
3714 node2
= get_first_child((IUnknown
*)node
);
3715 ok(!node2
, "node2 != NULL\n");
3717 type
= get_node_type((IUnknown
*)node
);
3718 ok(type
== 3, "type=%ld\n", type
);
3720 test_node_get_value_str((IUnknown
*)node
, "text test");
3721 test_node_put_value_str((IUnknown
*)elem
, "test text");
3722 test_node_get_value_str((IUnknown
*)node
, "text test");
3724 IHTMLDOMNode_Release(node
);
3727 child_col
= get_child_nodes((IUnknown
*)elem
);
3728 ok(child_col
!= NULL
, "child_coll == NULL\n");
3732 test_disp((IUnknown
*)child_col
, &DIID_DispDOMChildrenCollection
);
3734 hres
= IHTMLDOMChildrenCollection_get_length(child_col
, &length
);
3735 ok(hres
== S_OK
, "get_length failed: %08x\n", hres
);
3736 ok(length
, "length=0\n");
3738 node
= get_child_item(child_col
, 0);
3739 ok(node
!= NULL
, "node == NULL\n");
3741 type
= get_node_type((IUnknown
*)node
);
3742 ok(type
== 3, "type=%ld\n", type
);
3743 IHTMLDOMNode_Release(node
);
3746 node
= get_child_item(child_col
, 1);
3747 ok(node
!= NULL
, "node == NULL\n");
3749 type
= get_node_type((IUnknown
*)node
);
3750 ok(type
== 8, "type=%ld\n", type
);
3752 test_elem_id((IUnknown
*)node
, NULL
);
3753 IHTMLDOMNode_Release(node
);
3756 disp
= (void*)0xdeadbeef;
3757 hres
= IHTMLDOMChildrenCollection_item(child_col
, 6000, &disp
);
3758 ok(hres
== E_INVALIDARG
, "item failed: %08x, expected E_INVALIDARG\n", hres
);
3759 ok(disp
== (void*)0xdeadbeef, "disp=%p\n", disp
);
3761 disp
= (void*)0xdeadbeef;
3762 hres
= IHTMLDOMChildrenCollection_item(child_col
, length
, &disp
);
3763 ok(hres
== E_INVALIDARG
, "item failed: %08x, expected E_INVALIDARG\n", hres
);
3764 ok(disp
== (void*)0xdeadbeef, "disp=%p\n", disp
);
3766 test_child_col_disp(child_col
);
3768 IHTMLDOMChildrenCollection_Release(child_col
);
3771 test_elem3_get_disabled((IUnknown
*)elem
, VARIANT_FALSE
);
3772 test_elem3_set_disabled((IUnknown
*)elem
, VARIANT_TRUE
);
3773 test_elem3_set_disabled((IUnknown
*)elem
, VARIANT_FALSE
);
3775 IHTMLElement_Release(elem
);
3777 test_stylesheets(doc
);
3778 test_create_option_elem(doc
);
3780 elem
= get_doc_elem_by_id(doc
, tblW
);
3781 ok(elem
!= NULL
, "elem = NULL\n");
3782 test_elem_set_innertext(elem
, "inner text");
3783 IHTMLElement_Release(elem
);
3785 test_doc_title(doc
, "test");
3786 test_doc_set_title(doc
, "test title");
3787 test_doc_title(doc
, "test title");
3790 hres
= IHTMLDocument2_get_Script(doc
, &disp
);
3791 ok(hres
== S_OK
, "get_Script failed: %08x\n", hres
);
3794 IDispatchEx
*dispex
;
3795 hres
= IDispatch_QueryInterface(disp
, &IID_IDispatchEx
, (void**)&dispex
);
3796 ok(hres
== S_OK
, "IDispatch_QueryInterface failed: %08x\n", hres
);
3800 BSTR str
= a2bstr("Testing");
3801 hres
= IDispatchEx_GetDispID(dispex
, str
, 1, &pid
);
3802 todo_wine
ok(hres
== S_OK
, "GetDispID failed: %08x\n", hres
);
3803 todo_wine
ok(pid
!= -1, "pid == -1\n");
3805 IDispatchEx_Release(dispex
);
3808 IDispatch_Release(disp
);
3810 hres
= IHTMLDocument2_QueryInterface(doc
, &IID_IHTMLDocument3
, (void**)&doc3
);
3811 ok(hres
== S_OK
, "Could not get IHTMLDocument3 iface: %08x\n", hres
);
3813 str
= a2bstr("img");
3814 hres
= IHTMLDocument3_getElementsByTagName(doc3
, str
, &col
);
3816 ok(hres
== S_OK
, "getElementByTag(%s) failed: %08x\n", dbgstr_w(ifrW
), hres
);
3819 static const elem_type_t img_types
[] = { ET_IMG
};
3821 test_elem_collection((IUnknown
*)col
, img_types
, sizeof(img_types
)/sizeof(img_types
[0]));
3822 IHTMLElementCollection_Release(col
);
3825 IHTMLDocument3_Release(doc3
);
3828 static void test_create_elems(IHTMLDocument2
*doc
)
3830 IHTMLElement
*elem
, *body
, *elem2
;
3831 IHTMLDOMNode
*node
, *node2
, *node3
, *comment
;
3832 IHTMLDocument5
*doc5
;
3839 static const elem_type_t types1
[] = { ET_TESTG
};
3841 elem
= test_create_elem(doc
, "TEST");
3842 test_elem_tag((IUnknown
*)elem
, "TEST");
3843 type
= get_node_type((IUnknown
*)elem
);
3844 ok(type
== 1, "type=%ld\n", type
);
3845 test_ifaces((IUnknown
*)elem
, elem_iids
);
3846 test_disp((IUnknown
*)elem
, &DIID_DispHTMLGenericElement
);
3848 hres
= IHTMLDocument2_get_body(doc
, &body
);
3849 ok(hres
== S_OK
, "get_body failed: %08x\n", hres
);
3850 test_node_has_child((IUnknown
*)body
, VARIANT_FALSE
);
3852 node
= test_node_append_child((IUnknown
*)body
, (IUnknown
*)elem
);
3853 test_node_has_child((IUnknown
*)body
, VARIANT_TRUE
);
3854 elem2
= get_elem_iface((IUnknown
*)node
);
3855 IHTMLElement_Release(elem2
);
3857 hres
= IHTMLElement_get_all(body
, &disp
);
3858 ok(hres
== S_OK
, "get_all failed: %08x\n", hres
);
3859 test_elem_collection((IUnknown
*)disp
, types1
, sizeof(types1
)/sizeof(types1
[0]));
3860 IDispatch_Release(disp
);
3862 test_node_remove_child((IUnknown
*)body
, node
);
3864 hres
= IHTMLElement_get_all(body
, &disp
);
3865 ok(hres
== S_OK
, "get_all failed: %08x\n", hres
);
3866 test_elem_collection((IUnknown
*)disp
, NULL
, 0);
3867 IDispatch_Release(disp
);
3868 test_node_has_child((IUnknown
*)body
, VARIANT_FALSE
);
3870 IHTMLElement_Release(elem
);
3871 IHTMLDOMNode_Release(node
);
3873 node
= test_create_text(doc
, "test");
3874 test_ifaces((IUnknown
*)node
, text_iids
);
3875 test_disp((IUnknown
*)node
, &DIID_DispHTMLDOMTextNode
);
3877 V_VT(&var
) = VT_NULL
;
3878 node2
= test_node_insertbefore((IUnknown
*)body
, node
, &var
);
3879 IHTMLDOMNode_Release(node
);
3881 node
= test_create_text(doc
, "insert ");
3883 V_VT(&var
) = VT_DISPATCH
;
3884 V_DISPATCH(&var
) = (IDispatch
*)node2
;
3885 node3
= test_node_insertbefore((IUnknown
*)body
, node
, &var
);
3886 IHTMLDOMNode_Release(node
);
3887 IHTMLDOMNode_Release(node2
);
3888 IHTMLDOMNode_Release(node3
);
3890 test_elem_innertext(body
, "insert test");
3892 hres
= IHTMLDocument2_QueryInterface(doc
, &IID_IHTMLDocument5
, (void**)&doc5
);
3895 str
= a2bstr("testing");
3896 hres
= IHTMLDocument5_createComment(doc5
, str
, &comment
);
3898 ok(hres
== S_OK
, "createComment failed: %08x\n", hres
);
3901 type
= get_node_type((IUnknown
*)comment
);
3902 ok(type
== 8, "type=%ld, expected 8\n", type
);
3904 test_node_get_value_str((IUnknown
*)comment
, "testing");
3906 IHTMLDOMNode_Release(comment
);
3909 IHTMLDocument5_Release(doc5
);
3912 IHTMLElement_Release(body
);
3915 static void test_exec(IUnknown
*unk
, const GUID
*grpid
, DWORD cmdid
, VARIANT
*in
, VARIANT
*out
)
3917 IOleCommandTarget
*cmdtrg
;
3920 hres
= IHTMLTxtRange_QueryInterface(unk
, &IID_IOleCommandTarget
, (void**)&cmdtrg
);
3921 ok(hres
== S_OK
, "Could not get IOleCommandTarget interface: %08x\n", hres
);
3923 hres
= IOleCommandTarget_Exec(cmdtrg
, grpid
, cmdid
, 0, in
, out
);
3924 ok(hres
== S_OK
, "Exec failed: %08x\n", hres
);
3926 IOleCommandTarget_Release(cmdtrg
);
3929 static void test_indent(IHTMLDocument2
*doc
)
3931 IHTMLElementCollection
*col
;
3932 IHTMLTxtRange
*range
;
3935 static const elem_type_t all_types
[] = {
3944 static const elem_type_t indent_types
[] = {
3955 hres
= IHTMLDocument2_get_all(doc
, &col
);
3956 ok(hres
== S_OK
, "get_all failed: %08x\n", hres
);
3957 test_elem_collection((IUnknown
*)col
, all_types
, sizeof(all_types
)/sizeof(all_types
[0]));
3958 IHTMLElementCollection_Release(col
);
3960 range
= test_create_body_range(doc
);
3961 test_exec((IUnknown
*)range
, &CGID_MSHTML
, IDM_INDENT
, NULL
, NULL
);
3962 IHTMLTxtRange_Release(range
);
3964 hres
= IHTMLDocument2_get_all(doc
, &col
);
3965 ok(hres
== S_OK
, "get_all failed: %08x\n", hres
);
3966 test_elem_collection((IUnknown
*)col
, indent_types
, sizeof(indent_types
)/sizeof(indent_types
[0]));
3967 IHTMLElementCollection_Release(col
);
3970 static void test_cond_comment(IHTMLDocument2
*doc
)
3972 IHTMLElementCollection
*col
;
3975 static const elem_type_t all_types
[] = {
3983 hres
= IHTMLDocument2_get_all(doc
, &col
);
3984 ok(hres
== S_OK
, "get_all failed: %08x\n", hres
);
3985 test_elem_collection((IUnknown
*)col
, all_types
, sizeof(all_types
)/sizeof(all_types
[0]));
3986 IHTMLElementCollection_Release(col
);
3989 static IHTMLDocument2
*notif_doc
;
3990 static BOOL doc_complete
;
3992 static HRESULT WINAPI
PropertyNotifySink_QueryInterface(IPropertyNotifySink
*iface
,
3993 REFIID riid
, void**ppv
)
3995 if(IsEqualGUID(&IID_IPropertyNotifySink
, riid
)) {
4000 ok(0, "unexpected call\n");
4001 return E_NOINTERFACE
;
4004 static ULONG WINAPI
PropertyNotifySink_AddRef(IPropertyNotifySink
*iface
)
4009 static ULONG WINAPI
PropertyNotifySink_Release(IPropertyNotifySink
*iface
)
4014 static HRESULT WINAPI
PropertyNotifySink_OnChanged(IPropertyNotifySink
*iface
, DISPID dispID
)
4016 if(dispID
== DISPID_READYSTATE
){
4020 static const WCHAR completeW
[] = {'c','o','m','p','l','e','t','e',0};
4022 hres
= IHTMLDocument2_get_readyState(notif_doc
, &state
);
4023 ok(hres
== S_OK
, "get_readyState failed: %08x\n", hres
);
4025 if(!lstrcmpW(state
, completeW
))
4026 doc_complete
= TRUE
;
4028 SysFreeString(state
);
4034 static HRESULT WINAPI
PropertyNotifySink_OnRequestEdit(IPropertyNotifySink
*iface
, DISPID dispID
)
4036 ok(0, "unexpected call\n");
4040 static IPropertyNotifySinkVtbl PropertyNotifySinkVtbl
= {
4041 PropertyNotifySink_QueryInterface
,
4042 PropertyNotifySink_AddRef
,
4043 PropertyNotifySink_Release
,
4044 PropertyNotifySink_OnChanged
,
4045 PropertyNotifySink_OnRequestEdit
4048 static IPropertyNotifySink PropertyNotifySink
= { &PropertyNotifySinkVtbl
};
4050 static IHTMLDocument2
*create_doc_with_string(const char *str
)
4052 IPersistStreamInit
*init
;
4054 IHTMLDocument2
*doc
;
4058 notif_doc
= doc
= create_document();
4062 doc_complete
= FALSE
;
4064 mem
= GlobalAlloc(0, len
);
4065 memcpy(mem
, str
, len
);
4066 CreateStreamOnHGlobal(mem
, TRUE
, &stream
);
4068 IHTMLDocument2_QueryInterface(doc
, &IID_IPersistStreamInit
, (void**)&init
);
4070 IPersistStreamInit_Load(init
, stream
);
4071 IPersistStreamInit_Release(init
);
4072 IStream_Release(stream
);
4077 static void do_advise(IUnknown
*unk
, REFIID riid
, IUnknown
*unk_advise
)
4079 IConnectionPointContainer
*container
;
4080 IConnectionPoint
*cp
;
4084 hres
= IUnknown_QueryInterface(unk
, &IID_IConnectionPointContainer
, (void**)&container
);
4085 ok(hres
== S_OK
, "QueryInterface(IID_IConnectionPointContainer) failed: %08x\n", hres
);
4087 hres
= IConnectionPointContainer_FindConnectionPoint(container
, riid
, &cp
);
4088 IConnectionPointContainer_Release(container
);
4089 ok(hres
== S_OK
, "FindConnectionPoint failed: %08x\n", hres
);
4091 hres
= IConnectionPoint_Advise(cp
, unk_advise
, &cookie
);
4092 IConnectionPoint_Release(cp
);
4093 ok(hres
== S_OK
, "Advise failed: %08x\n", hres
);
4096 typedef void (*domtest_t
)(IHTMLDocument2
*);
4098 static void run_domtest(const char *str
, domtest_t test
)
4100 IHTMLDocument2
*doc
;
4101 IHTMLElement
*body
= NULL
;
4106 doc
= create_doc_with_string(str
);
4110 do_advise((IUnknown
*)doc
, &IID_IPropertyNotifySink
, (IUnknown
*)&PropertyNotifySink
);
4112 while(!doc_complete
&& GetMessage(&msg
, NULL
, 0, 0)) {
4113 TranslateMessage(&msg
);
4114 DispatchMessage(&msg
);
4117 hres
= IHTMLDocument2_get_body(doc
, &body
);
4118 ok(hres
== S_OK
, "get_body failed: %08x\n", hres
);
4121 IHTMLElement_Release(body
);
4124 skip("Could not get document body. Assuming no Gecko installed.\n");
4127 ref
= IHTMLDocument2_Release(doc
);
4129 ref
== 1, /* Vista */
4133 static void gecko_installer_workaround(BOOL disable
)
4138 static BOOL has_url
= FALSE
;
4139 static char url
[2048];
4141 if(!disable
&& !has_url
)
4144 res
= RegOpenKey(HKEY_CURRENT_USER
, "Software\\Wine\\MSHTML", &hkey
);
4145 if(res
!= ERROR_SUCCESS
)
4149 DWORD type
, size
= sizeof(url
);
4151 res
= RegQueryValueEx(hkey
, "GeckoUrl", NULL
, &type
, (PVOID
)url
, &size
);
4152 if(res
== ERROR_SUCCESS
&& type
== REG_SZ
)
4155 RegDeleteValue(hkey
, "GeckoUrl");
4157 RegSetValueEx(hkey
, "GeckoUrl", 0, REG_SZ
, (PVOID
)url
, lstrlenA(url
)+1);
4163 /* Check if Internet Explorer is configured to run in "Enhanced Security Configuration" (aka hardened mode) */
4164 /* Note: this code is duplicated in dlls/mshtml/tests/dom.c, dlls/mshtml/tests/script.c and dlls/urlmon/tests/misc.c */
4165 static BOOL
is_ie_hardened(void)
4168 DWORD ie_harden
, type
, size
;
4171 if(RegOpenKeyEx(HKEY_CURRENT_USER
, "Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\ZoneMap",
4172 0, KEY_QUERY_VALUE
, &zone_map
) == ERROR_SUCCESS
) {
4173 size
= sizeof(DWORD
);
4174 if (RegQueryValueEx(zone_map
, "IEHarden", NULL
, &type
, (LPBYTE
) &ie_harden
, &size
) != ERROR_SUCCESS
||
4175 type
!= REG_DWORD
) {
4178 RegCloseKey(zone_map
);
4181 return ie_harden
!= 0;
4186 gecko_installer_workaround(TRUE
);
4189 run_domtest(doc_str1
, test_doc_elem
);
4190 run_domtest(range_test_str
, test_txtrange
);
4191 run_domtest(range_test2_str
, test_txtrange2
);
4192 if (winetest_interactive
|| ! is_ie_hardened()) {
4193 run_domtest(elem_test_str
, test_elems
);
4195 skip("IE running in Enhanced Security Configuration\n");
4197 run_domtest(doc_blank
, test_create_elems
);
4198 run_domtest(doc_blank
, test_defaults
);
4199 run_domtest(indent_test_str
, test_indent
);
4200 run_domtest(cond_comment_str
, test_cond_comment
);
4203 gecko_installer_workaround(FALSE
);