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>
34 #include "mshtml_test.h"
36 static const char doc_blank[] = "<html></html>";
37 static const char doc_str1[] = "<html><body>test</body></html>";
38 static const char range_test_str[] =
39 "<html><body>test \na<font size=\"2\">bc\t123<br /> it's\r\n \t</font>text<br /></body></html>";
40 static const char range_test2_str[] =
41 "<html><body>abc<hr />123<br /><hr />def</body></html>";
42 static const char elem_test_str[] =
43 "<html><head><title>test</title><style id=\"styleid\">.body { margin-right: 0px; }</style>"
44 "<body onload=\"Testing()\">text test<!-- a comment -->"
45 "<a id=\"a\" href=\"http://test\" name=\"x\">link</a>"
46 "<input id=\"in\" class=\"testclass\" tabIndex=\"2\" title=\"test title\" />"
47 "<select id=\"s\"><option id=\"x\" value=\"val1\">opt1</option><option id=\"y\">opt2</option></select>"
48 "<textarea id=\"X\">text text</textarea>"
49 "<table id=\"tbl\"><tbody><tr></tr><tr id=\"row2\"><td>td1 text</td><td>td2 text</td></tr></tbody></table>"
50 "<script id=\"sc\" type=\"text/javascript\"><!--\nfunction Testing() {}\n// -->\n</script>"
51 "<test /><object id=\"objid\" vspace=100></object><embed />"
52 "<img id=\"imgid\" name=\"WineImg\"/>"
53 "<iframe src=\"about:blank\" id=\"ifr\"></iframe>"
54 "<form id=\"frm\"></form>"
56 static const char elem_test2_str[] =
57 "<html><head><title>test</title><style>.body { margin-right: 0px; }</style>"
58 "<body><div id=\"divid\"></div></body>"
61 static const char indent_test_str[] =
62 "<html><head><title>test</title></head><body>abc<br /><a href=\"about:blank\">123</a></body></html>";
63 static const char cond_comment_str[] =
64 "<html><head><title>test</title></head><body>"
65 "<!--[if gte IE 4]> <br> <![endif]-->"
67 static const char frameset_str[] =
68 "<html><head><title>frameset test</title></head><frameset rows=\"25, 25, *\">"
69 "<frame src=\"about:blank\" name=\"nm1\" id=\"fr1\"><frame src=\"about:blank\" name=\"nm2\" id=\"fr2\">"
70 "<frame src=\"about:blank\" id=\"fr3\">"
72 static const char emptydiv_str[] =
73 "<html><head><title>emptydiv test</title></head>"
74 "<body><div id=\"divid\"></div></body></html>";
76 static WCHAR characterW[] = {'c','h','a','r','a','c','t','e','r',0};
77 static WCHAR texteditW[] = {'t','e','x','t','e','d','i','t',0};
78 static WCHAR wordW[] = {'w','o','r','d',0};
112 static const IID * const none_iids[] = {
117 static const IID * const doc_node_iids[] = {
126 &IID_IConnectionPointContainer,
127 &IID_IInternetHostSecurityManager,
132 static const IID * const doc_obj_iids[] = {
139 &IID_IConnectionPointContainer,
145 static const IID * const elem_iids[] = {
152 &IID_IConnectionPointContainer,
156 static const IID * const body_iids[] = {
162 &IID_IHTMLTextContainer,
163 &IID_IHTMLBodyElement,
165 &IID_IConnectionPointContainer,
169 static const IID * const anchor_iids[] = {
175 &IID_IHTMLAnchorElement,
177 &IID_IConnectionPointContainer,
181 static const IID * const input_iids[] = {
187 &IID_IHTMLInputElement,
188 &IID_IHTMLInputTextElement,
190 &IID_IConnectionPointContainer,
194 static const IID * const select_iids[] = {
200 &IID_IHTMLSelectElement,
202 &IID_IConnectionPointContainer,
206 static const IID * const textarea_iids[] = {
212 &IID_IHTMLTextAreaElement,
214 &IID_IConnectionPointContainer,
218 static const IID * const option_iids[] = {
224 &IID_IHTMLOptionElement,
226 &IID_IConnectionPointContainer,
230 static const IID * const table_iids[] = {
238 &IID_IConnectionPointContainer,
242 static const IID * const script_iids[] = {
248 &IID_IHTMLScriptElement,
250 &IID_IConnectionPointContainer,
254 static const IID * const text_iids[] = {
257 &IID_IHTMLDOMTextNode,
261 static const IID * const location_iids[] = {
267 static const IID * const window_iids[] = {
272 &IID_IServiceProvider,
276 static const IID * const comment_iids[] = {
282 &IID_IHTMLCommentElement,
284 &IID_IConnectionPointContainer,
288 static const IID * const img_iids[] = {
295 &IID_IHTMLImgElement,
296 &IID_IConnectionPointContainer,
300 static const IID * const tr_iids[] = {
308 &IID_IConnectionPointContainer,
312 static const IID * const td_iids[] = {
319 &IID_IConnectionPointContainer,
323 static const IID * const frame_iids[] = {
330 &IID_IHTMLFrameBase2,
332 &IID_IConnectionPointContainer,
336 static const IID * const object_iids[] = {
342 &IID_IHTMLObjectElement,
344 /* FIXME: No IConnectionPointContainer */
348 static const IID * const embed_iids[] = {
354 &IID_IHTMLEmbedElement,
356 /* FIXME: No IConnectionPointContainer */
360 static const IID * const iframe_iids[] = {
367 &IID_IHTMLFrameBase2,
368 &IID_IHTMLIFrameElement,
370 &IID_IConnectionPointContainer,
374 static const IID * const form_iids[] = {
380 &IID_IHTMLFormElement,
382 &IID_IConnectionPointContainer,
386 static const IID * const styleelem_iids[] = {
392 &IID_IHTMLStyleElement,
394 &IID_IConnectionPointContainer,
398 static const IID * const generic_iids[] = {
404 &IID_IHTMLGenericElement,
406 &IID_IConnectionPointContainer,
410 static const IID * const style_iids[] = {
421 static const IID * const cstyle_iids[] = {
425 &IID_IHTMLCurrentStyle,
429 static const IID * const img_factory_iids[] = {
433 &IID_IHTMLImageElementFactory,
443 static const elem_type_info_t elem_type_infos[] = {
444 {"", none_iids, NULL},
445 {"HTML", elem_iids, NULL},
446 {"HEAD", elem_iids, NULL},
447 {"TITLE", elem_iids, NULL},
448 {"BODY", body_iids, &DIID_DispHTMLBody},
449 {"A", anchor_iids, &DIID_DispHTMLAnchorElement},
450 {"INPUT", input_iids, &DIID_DispHTMLInputElement},
451 {"SELECT", select_iids, &DIID_DispHTMLSelectElement},
452 {"TEXTAREA", textarea_iids, &DIID_DispHTMLTextAreaElement},
453 {"OPTION", option_iids, &DIID_DispHTMLOptionElement},
454 {"STYLE", styleelem_iids, &DIID_DispHTMLStyleElement},
455 {"BLOCKQUOTE",elem_iids, NULL},
456 {"P", elem_iids, NULL},
457 {"BR", elem_iids, NULL},
458 {"TABLE", table_iids, &DIID_DispHTMLTable},
459 {"TBODY", elem_iids, NULL},
460 {"SCRIPT", script_iids, &DIID_DispHTMLScriptElement},
461 {"TEST", elem_iids, &DIID_DispHTMLUnknownElement},
462 {"TEST", generic_iids, &DIID_DispHTMLGenericElement},
463 {"!", comment_iids, &DIID_DispHTMLCommentElement},
464 {"IMG", img_iids, &DIID_DispHTMLImg},
465 {"TR", tr_iids, &DIID_DispHTMLTableRow},
466 {"TD", td_iids, NULL},
467 {"IFRAME", iframe_iids, &DIID_DispHTMLIFrame},
468 {"FORM", form_iids, &DIID_DispHTMLFormElement},
469 {"FRAME", frame_iids, &DIID_DispHTMLFrameElement},
470 {"OBJECT", object_iids, &DIID_DispHTMLObjectElement},
471 {"EMBED", embed_iids, &DIID_DispHTMLEmbed},
472 {"DIV", elem_iids, NULL}
475 static const char *dbgstr_guid(REFIID riid)
479 sprintf(buf, "{%08X-%04X-%04X-%02X%02X-%02X%02X%02X%02X%02X%02X}",
480 riid->Data1, riid->Data2, riid->Data3, riid->Data4[0],
481 riid->Data4[1], riid->Data4[2], riid->Data4[3], riid->Data4[4],
482 riid->Data4[5], riid->Data4[6], riid->Data4[7]);
487 static int strcmp_wa(LPCWSTR strw, const char *stra)
490 WideCharToMultiByte(CP_ACP, 0, strw, -1, buf, sizeof(buf), NULL, NULL);
491 return lstrcmpA(stra, buf);
494 static BSTR a2bstr(const char *str)
499 len = MultiByteToWideChar(CP_ACP, 0, str, -1, NULL, 0);
500 ret = SysAllocStringLen(NULL, len);
501 MultiByteToWideChar(CP_ACP, 0, str, -1, ret, len);
506 static BOOL iface_cmp(IUnknown *iface1, IUnknown *iface2)
508 IUnknown *unk1, *unk2;
513 IUnknown_QueryInterface(iface1, &IID_IUnknown, (void**)&unk1);
514 IUnknown_Release(unk1);
515 IUnknown_QueryInterface(iface2, &IID_IUnknown, (void**)&unk2);
516 IUnknown_Release(unk2);
521 static IHTMLDocument2 *create_document(void)
524 IHTMLDocument5 *doc5;
527 hres = CoCreateInstance(&CLSID_HTMLDocument, NULL, CLSCTX_INPROC_SERVER|CLSCTX_INPROC_HANDLER,
528 &IID_IHTMLDocument2, (void**)&doc);
529 ok(hres == S_OK, "CoCreateInstance failed: %08x\n", hres);
533 hres = IHTMLDocument2_QueryInterface(doc, &IID_IHTMLDocument5, (void**)&doc5);
535 win_skip("Could not get IHTMLDocument5, probably too old IE\n");
536 IHTMLDocument2_Release(doc);
540 IHTMLDocument5_Release(doc5);
544 #define test_ifaces(i,ids) _test_ifaces(__LINE__,i,ids)
545 static void _test_ifaces(unsigned line, IUnknown *iface, REFIID *iids)
547 const IID * const *piid;
551 for(piid = iids; *piid; piid++) {
552 hres = IDispatch_QueryInterface(iface, *piid, (void**)&unk);
553 ok_(__FILE__,line) (hres == S_OK, "Could not get %s interface: %08x\n", dbgstr_guid(*piid), hres);
555 IUnknown_Release(unk);
559 #define test_get_dispid(u,id) _test_get_dispid(__LINE__,u,id)
560 static BOOL _test_get_dispid(unsigned line, IUnknown *unk, IID *iid)
568 hres = IUnknown_QueryInterface(unk, &IID_IDispatchEx, (void**)&dispex);
569 ok_(__FILE__,line) (hres == S_OK, "Could not get IDispatchEx: %08x\n", hres);
574 hres = IDispatchEx_GetTypeInfoCount(dispex, &ticnt);
575 ok_(__FILE__,line) (hres == S_OK, "GetTypeInfoCount failed: %08x\n", hres);
576 ok_(__FILE__,line) (ticnt == 1, "ticnt=%u\n", ticnt);
578 hres = IDispatchEx_GetTypeInfo(dispex, 0, 0, &typeinfo);
579 ok_(__FILE__,line) (hres == S_OK, "GetTypeInfo failed: %08x\n", hres);
581 if(SUCCEEDED(hres)) {
584 hres = ITypeInfo_GetTypeAttr(typeinfo, &type_attr);
585 ok_(__FILE__,line) (hres == S_OK, "GetTypeAttr failed: %08x\n", hres);
587 *iid = type_attr->guid;
591 ITypeInfo_ReleaseTypeAttr(typeinfo, type_attr);
592 ITypeInfo_Release(typeinfo);
595 IDispatchEx_Release(dispex);
599 #define test_disp_value(u) _test_disp_value(__LINE__,u,v)
600 static void _test_disp_value(unsigned line, IUnknown *unk, const char *val)
602 DISPPARAMS dp = {NULL,NULL,0,0};
608 hres = IUnknown_QueryInterface(unk, &IID_IDispatchEx, (void**)&dispex);
609 ok_(__FILE__,line)(hres == S_OK, "Could not get IDispatchEx interface: %08x\n", hres);
613 hres = IDispatchEx_InvokeEx(dispex, DISPID_VALUE, 0, DISPATCH_PROPERTYGET, &dp, &var, &ei, NULL);
614 IDispatchEx_Release(dispex);
615 ok_(__FILE__,line)(hres == S_OK, "InvokeEx(DISPID_VALUE) returned: %08x\n", hres);
617 ok_(__FILE__,line)(V_VT(&var) == VT_BSTR, "V_VT(value) = %d\n", V_VT(&var));
618 ok_(__FILE__,line)(!strcmp_wa(V_BSTR(&var), val), "value = %s, expected %s\n", wine_dbgstr_w(V_BSTR(&var)), val);
622 #define test_disp(u,id,v) _test_disp(__LINE__,u,id,v)
623 static void _test_disp(unsigned line, IUnknown *unk, const IID *diid, const char *val)
627 if(_test_get_dispid(line, unk, &iid))
628 ok_(__FILE__,line) (IsEqualGUID(&iid, diid), "unexpected guid %s\n", dbgstr_guid(&iid));
631 _test_disp_value(line, unk, val);
634 #define test_disp2(u,id,id2,v) _test_disp2(__LINE__,u,id,id2,v)
635 static void _test_disp2(unsigned line, IUnknown *unk, const IID *diid, const IID *diid2, const char *val)
639 if(_test_get_dispid(line, unk, &iid))
640 ok_(__FILE__,line) (IsEqualGUID(&iid, diid) || broken(IsEqualGUID(&iid, diid2)),
641 "unexpected guid %s\n", dbgstr_guid(&iid));
644 _test_disp_value(line, unk, val);
647 #define get_elem_iface(u) _get_elem_iface(__LINE__,u)
648 static IHTMLElement *_get_elem_iface(unsigned line, IUnknown *unk)
653 hres = IUnknown_QueryInterface(unk, &IID_IHTMLElement, (void**)&elem);
654 ok_(__FILE__,line) (hres == S_OK, "Could not get IHTMLElement: %08x\n", hres);
658 #define get_elem2_iface(u) _get_elem2_iface(__LINE__,u)
659 static IHTMLElement2 *_get_elem2_iface(unsigned line, IUnknown *unk)
664 hres = IUnknown_QueryInterface(unk, &IID_IHTMLElement2, (void**)&elem);
665 ok_(__FILE__,line) (hres == S_OK, "Could not get IHTMLElement2: %08x\n", hres);
669 #define get_elem3_iface(u) _get_elem3_iface(__LINE__,u)
670 static IHTMLElement3 *_get_elem3_iface(unsigned line, IUnknown *unk)
675 hres = IUnknown_QueryInterface(unk, &IID_IHTMLElement3, (void**)&elem);
676 ok_(__FILE__,line) (hres == S_OK, "Could not get IHTMLElement3: %08x\n", hres);
680 #define get_node_iface(u) _get_node_iface(__LINE__,u)
681 static IHTMLDOMNode *_get_node_iface(unsigned line, IUnknown *unk)
686 hres = IUnknown_QueryInterface(unk, &IID_IHTMLDOMNode, (void**)&node);
687 ok_(__FILE__,line) (hres == S_OK, "Could not get IHTMLDOMNode: %08x\n", hres);
691 #define get_node2_iface(u) _get_node2_iface(__LINE__,u)
692 static IHTMLDOMNode2 *_get_node2_iface(unsigned line, IUnknown *unk)
697 hres = IUnknown_QueryInterface(unk, &IID_IHTMLDOMNode2, (void**)&node);
698 ok_(__FILE__,line) (hres == S_OK, "Could not get IHTMLDOMNode2: %08x\n", hres);
702 #define get_img_iface(u) _get_img_iface(__LINE__,u)
703 static IHTMLImgElement *_get_img_iface(unsigned line, IUnknown *unk)
705 IHTMLImgElement *img;
708 hres = IUnknown_QueryInterface(unk, &IID_IHTMLImgElement, (void**)&img);
709 ok_(__FILE__,line) (hres == S_OK, "Could not get IHTMLImgElement: %08x\n", hres);
713 #define get_anchor_iface(u) _get_anchor_iface(__LINE__,u)
714 static IHTMLAnchorElement *_get_anchor_iface(unsigned line, IUnknown *unk)
716 IHTMLAnchorElement *anchor;
719 hres = IUnknown_QueryInterface(unk, &IID_IHTMLAnchorElement, (void**)&anchor);
720 ok_(__FILE__,line) (hres == S_OK, "Could not get IHTMLAnchorElement: %08x\n", hres);
724 #define get_textarea_iface(u) _get_textarea_iface(__LINE__,u)
725 static IHTMLTextAreaElement *_get_textarea_iface(unsigned line, IUnknown *unk)
727 IHTMLTextAreaElement *textarea;
730 hres = IUnknown_QueryInterface(unk, &IID_IHTMLTextAreaElement, (void**)&textarea);
731 ok_(__FILE__,line) (hres == S_OK, "Could not get IHTMLTextAreaElement: %08x\n", hres);
735 #define get_select_iface(u) _get_select_iface(__LINE__,u)
736 static IHTMLSelectElement *_get_select_iface(unsigned line, IUnknown *unk)
738 IHTMLSelectElement *select;
741 hres = IUnknown_QueryInterface(unk, &IID_IHTMLSelectElement, (void**)&select);
742 ok_(__FILE__,line) (hres == S_OK, "Could not get IHTMLSelectElement: %08x\n", hres);
746 #define get_form_iface(u) _get_form_iface(__LINE__,u)
747 static IHTMLFormElement *_get_form_iface(unsigned line, IUnknown *unk)
749 IHTMLFormElement *form;
752 hres = IUnknown_QueryInterface(unk, &IID_IHTMLFormElement, (void**)&form);
753 ok_(__FILE__,line) (hres == S_OK, "Could not get IHTMLFormElement: %08x\n", hres);
757 #define get_text_iface(u) _get_text_iface(__LINE__,u)
758 static IHTMLDOMTextNode *_get_text_iface(unsigned line, IUnknown *unk)
760 IHTMLDOMTextNode *text;
763 hres = IUnknown_QueryInterface(unk, &IID_IHTMLDOMTextNode, (void**)&text);
764 ok_(__FILE__,line) (hres == S_OK, "Could not get IHTMLDOMTextNode: %08x\n", hres);
768 #define get_comment_iface(u) _get_comment_iface(__LINE__,u)
769 static IHTMLCommentElement *_get_comment_iface(unsigned line, IUnknown *unk)
771 IHTMLCommentElement *comment;
774 hres = IUnknown_QueryInterface(unk, &IID_IHTMLCommentElement, (void**)&comment);
775 ok_(__FILE__,line) (hres == S_OK, "Could not get IHTMLCommentElement: %08x\n", hres);
779 #define get_object_iface(u) _get_object_iface(__LINE__,u)
780 static IHTMLObjectElement *_get_object_iface(unsigned line, IUnknown *unk)
782 IHTMLObjectElement *obj;
785 hres = IUnknown_QueryInterface(unk, &IID_IHTMLObjectElement, (void**)&obj);
786 ok_(__FILE__,line) (hres == S_OK, "Could not get IHTMLObjectElement: %08x\n", hres);
790 #define get_style_iface(u) _get_style_iface(__LINE__,u)
791 static IHTMLStyleElement *_get_style_iface(unsigned line, IUnknown *unk)
793 IHTMLStyleElement *obj;
796 hres = IUnknown_QueryInterface(unk, &IID_IHTMLStyleElement, (void**)&obj);
797 ok_(__FILE__,line) (hres == S_OK, "Could not get IHTMLStyleElement: %08x\n", hres);
801 #define test_node_name(u,n) _test_node_name(__LINE__,u,n)
802 static void _test_node_name(unsigned line, IUnknown *unk, const char *exname)
804 IHTMLDOMNode *node = _get_node_iface(line, unk);
808 hres = IHTMLDOMNode_get_nodeName(node, &name);
809 IHTMLDOMNode_Release(node);
810 ok_(__FILE__, line) (hres == S_OK, "get_nodeName failed: %08x\n", hres);
811 ok_(__FILE__, line) (!strcmp_wa(name, exname), "got name: %s, expected %s\n", wine_dbgstr_w(name), exname);
816 #define get_owner_doc(u) _get_owner_doc(__LINE__,u)
817 static IHTMLDocument2 *_get_owner_doc(unsigned line, IUnknown *unk)
819 IHTMLDOMNode2 *node = _get_node2_iface(line, unk);
820 IDispatch *disp = (void*)0xdeadbeef;
821 IHTMLDocument2 *doc = NULL;
824 hres = IHTMLDOMNode2_get_ownerDocument(node, &disp);
825 IHTMLDOMNode2_Release(node);
826 ok_(__FILE__,line)(hres == S_OK, "get_ownerDocument failed: %08x\n", hres);
829 hres = IDispatch_QueryInterface(disp, &IID_IHTMLDocument2, (void**)&doc);
830 IDispatch_Release(disp);
831 ok_(__FILE__,line)(hres == S_OK, "Could not get IHTMLDocument2 iface: %08x\n", hres);
837 #define get_doc_window(d) _get_doc_window(__LINE__,d)
838 static IHTMLWindow2 *_get_doc_window(unsigned line, IHTMLDocument2 *doc)
840 IHTMLWindow2 *window;
844 hres = IHTMLDocument2_get_parentWindow(doc, &window);
845 ok_(__FILE__,line)(hres == S_OK, "get_parentWindow failed: %08x\n", hres);
846 ok_(__FILE__,line)(window != NULL, "window == NULL\n");
851 #define clone_node(n,d) _clone_node(__LINE__,n,d)
852 static IHTMLDOMNode *_clone_node(unsigned line, IUnknown *unk, VARIANT_BOOL deep)
854 IHTMLDOMNode *node = _get_node_iface(line, unk);
855 IHTMLDOMNode *ret = NULL;
858 hres = IHTMLDOMNode_cloneNode(node, deep, &ret);
859 IHTMLDOMNode_Release(node);
860 ok_(__FILE__,line)(hres == S_OK, "cloneNode failed: %08x\n", hres);
861 ok_(__FILE__,line)(ret != NULL, "ret == NULL\n");
867 #define test_elem_tag(u,n) _test_elem_tag(__LINE__,u,n)
868 static void _test_elem_tag(unsigned line, IUnknown *unk, const char *extag)
870 IHTMLElement *elem = _get_elem_iface(line, unk);
874 hres = IHTMLElement_get_tagName(elem, &tag);
875 IHTMLElement_Release(elem);
876 ok_(__FILE__, line) (hres == S_OK, "get_tagName failed: %08x\n", hres);
877 ok_(__FILE__, line) (!strcmp_wa(tag, extag), "got tag: %s, expected %s\n", wine_dbgstr_w(tag), extag);
882 #define test_elem_type(ifc,t) _test_elem_type(__LINE__,ifc,t)
883 static void _test_elem_type(unsigned line, IUnknown *unk, elem_type_t type)
885 _test_elem_tag(line, unk, elem_type_infos[type].tag);
886 _test_ifaces(line, unk, elem_type_infos[type].iids);
888 if(elem_type_infos[type].dispiid && type != ET_A)
889 _test_disp(line, unk, elem_type_infos[type].dispiid, "[object]");
892 #define get_node_type(n) _get_node_type(__LINE__,n)
893 static LONG _get_node_type(unsigned line, IUnknown *unk)
895 IHTMLDOMNode *node = _get_node_iface(line, unk);
899 hres = IHTMLDOMNode_get_nodeType(node, &type);
900 ok(hres == S_OK, "get_nodeType failed: %08x\n", hres);
902 IHTMLDOMNode_Release(node);
907 #define get_child_nodes(u) _get_child_nodes(__LINE__,u)
908 static IHTMLDOMChildrenCollection *_get_child_nodes(unsigned line, IUnknown *unk)
910 IHTMLDOMNode *node = _get_node_iface(line, unk);
911 IHTMLDOMChildrenCollection *col = NULL;
915 hres = IHTMLDOMNode_get_childNodes(node, &disp);
916 IHTMLDOMNode_Release(node);
917 ok_(__FILE__,line) (hres == S_OK, "get_childNodes failed: %08x\n", hres);
921 hres = IDispatch_QueryInterface(disp, &IID_IHTMLDOMChildrenCollection, (void**)&col);
922 IDispatch_Release(disp);
923 ok_(__FILE__,line) (hres == S_OK, "Could not get IHTMLDOMChildrenCollection: %08x\n", hres);
928 #define get_child_item(c,i) _get_child_item(__LINE__,c,i)
929 static IHTMLDOMNode *_get_child_item(unsigned line, IHTMLDOMChildrenCollection *col, LONG idx)
931 IHTMLDOMNode *node = NULL;
935 hres = IHTMLDOMChildrenCollection_item(col, idx, &disp);
936 ok(hres == S_OK, "item failed: %08x\n", hres);
938 node = _get_node_iface(line, (IUnknown*)disp);
939 IDispatch_Release(disp);
944 #define test_elem_attr(e,n,v) _test_elem_attr(__LINE__,e,n,v)
945 static void _test_elem_attr(unsigned line, IHTMLElement *elem, const char *name, const char *exval)
954 hres = IHTMLElement_getAttribute(elem, tmp, 0, &value);
956 ok_(__FILE__,line) (hres == S_OK, "getAttribute failed: %08x\n", hres);
959 ok_(__FILE__,line) (V_VT(&value) == VT_BSTR, "vt=%d\n", V_VT(&value));
960 ok_(__FILE__,line) (!strcmp_wa(V_BSTR(&value), exval), "unexpected value %s\n", wine_dbgstr_w(V_BSTR(&value)));
962 ok_(__FILE__,line) (V_VT(&value) == VT_NULL, "vt=%d\n", V_VT(&value));
965 VariantClear(&value);
968 #define test_elem_offset(u) _test_elem_offset(__LINE__,u)
969 static void _test_elem_offset(unsigned line, IUnknown *unk)
971 IHTMLElement *elem = _get_elem_iface(line, unk);
975 hres = IHTMLElement_get_offsetTop(elem, &l);
976 ok_(__FILE__,line) (hres == S_OK, "get_offsetTop failed: %08x\n", hres);
978 hres = IHTMLElement_get_offsetHeight(elem, &l);
979 ok_(__FILE__,line) (hres == S_OK, "get_offsetHeight failed: %08x\n", hres);
981 hres = IHTMLElement_get_offsetWidth(elem, &l);
982 ok_(__FILE__,line) (hres == S_OK, "get_offsetWidth failed: %08x\n", hres);
984 IHTMLElement_Release(elem);
987 #define get_doc_node(d) _get_doc_node(__LINE__,d)
988 static IHTMLDocument2 *_get_doc_node(unsigned line, IHTMLDocument2 *doc)
990 IHTMLWindow2 *window;
994 hres = IHTMLDocument2_get_parentWindow(doc, &window);
995 ok_(__FILE__,line)(hres == S_OK, "get_parentWindow failed: %08x\n", hres);
997 hres = IHTMLWindow2_get_document(window, &ret);
998 ok_(__FILE__,line)(hres == S_OK, "get_document failed: %08x\n", hres);
999 ok_(__FILE__,line)(ret != NULL, "document = NULL\n");
1004 #define test_window_name(d,e) _test_window_name(__LINE__,d,e)
1005 static void _test_window_name(unsigned line, IHTMLWindow2 *window, const char *exname)
1010 hres = IHTMLWindow2_get_name(window, &name);
1011 ok_(__FILE__,line)(hres == S_OK, "get_name failed: %08x\n", hres);
1013 ok_(__FILE__,line)(!strcmp_wa(name, exname), "name = %s\n", wine_dbgstr_w(name));
1015 ok_(__FILE__,line)(!name, "name = %s\n", wine_dbgstr_w(name));
1016 SysFreeString(name);
1019 #define set_window_name(w,n) _set_window_name(__LINE__,w,n)
1020 static void _set_window_name(unsigned line, IHTMLWindow2 *window, const char *name)
1026 hres = IHTMLWindow2_put_name(window, str);
1028 ok_(__FILE__,line)(hres == S_OK, "put_name failed: %08x\n", hres);
1030 _test_window_name(line, window, name);
1033 #define test_window_length(w,l) _test_window_length(__LINE__,w,l)
1034 static void _test_window_length(unsigned line, IHTMLWindow2 *window, LONG exlen)
1039 hres = IHTMLWindow2_get_length(window, &length);
1040 ok_(__FILE__,line)(hres == S_OK, "get_length failed: %08x\n", hres);
1041 ok_(__FILE__,line)(length == exlen, "length = %d, expected %d\n", length, exlen);
1044 #define get_frame_content_window(e) _get_frame_content_window(__LINE__,e)
1045 static IHTMLWindow2 *_get_frame_content_window(unsigned line, IUnknown *elem)
1047 IHTMLFrameBase2 *base2;
1048 IHTMLWindow2 *window;
1051 hres = IUnknown_QueryInterface(elem, &IID_IHTMLFrameBase2, (void**)&base2);
1052 ok(hres == S_OK, "Could not get IHTMFrameBase2 iface: %08x\n", hres);
1055 hres = IHTMLFrameBase2_get_contentWindow(base2, &window);
1056 IHTMLFrameBase2_Release(base2);
1057 ok(hres == S_OK, "get_contentWindow failed: %08x\n", hres);
1058 ok(window != NULL, "contentWindow = NULL\n");
1063 static void test_get_set_attr(IHTMLDocument2 *doc)
1066 IHTMLDocument3 *doc3;
1071 /* grab an element to test with */
1072 hres = IHTMLDocument2_QueryInterface(doc, &IID_IHTMLDocument3, (void**)&doc3);
1073 ok(hres == S_OK, "QueryInterface(IID_IHTMLDocument3) failed: %08x\n", hres);
1075 hres = IHTMLDocument3_get_documentElement(doc3, &elem);
1076 IHTMLDocument3_Release(doc3);
1077 ok(hres == S_OK, "get_documentElement failed: %08x\n", hres);
1079 /* get a non-present attribute */
1080 bstr = a2bstr("notAnAttribute");
1081 hres = IHTMLElement_getAttribute(elem, bstr, 0, &val);
1082 ok(hres == S_OK, "getAttribute failed: %08x\n", hres);
1083 ok(V_VT(&val) == VT_NULL, "variant type should have been VT_NULL (0x%x), was: 0x%x\n", VT_NULL, V_VT(&val));
1085 SysFreeString(bstr);
1087 /* get a present attribute */
1088 bstr = a2bstr("scrollHeight");
1089 hres = IHTMLElement_getAttribute(elem, bstr, 0, &val);
1090 ok(hres == S_OK, "getAttribute failed: %08x\n", hres);
1091 ok(V_VT(&val) == VT_I4, "variant type should have been VT_I4 (0x%x), was: 0x%x\n", VT_I4, V_VT(&val));
1093 SysFreeString(bstr);
1095 /* create a new BSTR attribute */
1096 bstr = a2bstr("newAttribute");
1098 V_VT(&val) = VT_BSTR;
1099 V_BSTR(&val) = a2bstr("the value");
1100 hres = IHTMLElement_setAttribute(elem, bstr, val, 0);
1101 ok(hres == S_OK, "setAttribute failed: %08x\n", hres);
1104 hres = IHTMLElement_getAttribute(elem, bstr, 0, &val);
1105 ok(hres == S_OK, "getAttribute failed: %08x\n", hres);
1106 ok(V_VT(&val) == VT_BSTR, "variant type should have been VT_BSTR (0x%x), was: 0x%x\n", VT_BSTR, V_VT(&val));
1107 ok(strcmp_wa(V_BSTR(&val), "the value") == 0, "variant value should have been L\"the value\", was %s\n", wine_dbgstr_w(V_BSTR(&val)));
1110 /* overwrite the attribute with a BOOL */
1111 V_VT(&val) = VT_BOOL;
1112 V_BOOL(&val) = VARIANT_TRUE;
1113 hres = IHTMLElement_setAttribute(elem, bstr, val, 0);
1114 ok(hres == S_OK, "setAttribute failed: %08x\n", hres);
1117 hres = IHTMLElement_getAttribute(elem, bstr, 0, &val);
1118 ok(hres == S_OK, "getAttribute failed: %08x\n", hres);
1119 ok(V_VT(&val) == VT_BOOL, "variant type should have been VT_BOOL (0x%x), was: 0x%x\n", VT_BOOL, V_VT(&val));
1120 ok(V_BOOL(&val) == VARIANT_TRUE, "variant value should have been VARIANT_TRUE (0x%x), was %d\n", VARIANT_TRUE, V_BOOL(&val));
1123 SysFreeString(bstr);
1125 /* case-insensitive */
1126 bstr = a2bstr("newattribute");
1127 hres = IHTMLElement_getAttribute(elem, bstr, 0, &val);
1128 ok(hres == S_OK, "getAttribute failed: %08x\n", hres);
1129 ok(V_VT(&val) == VT_BOOL, "variant type should have been VT_BOOL (0x%x), was: 0x%x\n", VT_BOOL, V_VT(&val));
1130 ok(V_BOOL(&val) == VARIANT_TRUE, "variant value should have been VARIANT_TRUE (0x%x), was %d\n", VARIANT_TRUE, V_BOOL(&val));
1132 SysFreeString(bstr);
1134 IHTMLElement_Release(elem);
1137 #define get_doc_elem(d) _get_doc_elem(__LINE__,d)
1138 static IHTMLElement *_get_doc_elem(unsigned line, IHTMLDocument2 *doc)
1141 IHTMLDocument3 *doc3;
1144 hres = IHTMLDocument2_QueryInterface(doc, &IID_IHTMLDocument3, (void**)&doc3);
1145 ok_(__FILE__,line) (hres == S_OK, "Could not get IHTMLDocument3 interface: %08x\n", hres);
1146 hres = IHTMLDocument3_get_documentElement(doc3, &elem);
1147 ok_(__FILE__,line) (hres == S_OK, "get_documentElement failed: %08x\n", hres);
1148 IHTMLDocument3_Release(doc3);
1153 #define test_anchor_href(a,h) _test_anchor_href(__LINE__,a,h)
1154 static void _test_anchor_href(unsigned line, IUnknown *unk, const char *exhref)
1156 IHTMLAnchorElement *anchor = _get_anchor_iface(line, unk);
1160 hres = IHTMLAnchorElement_get_href(anchor, &str);
1161 ok_(__FILE__,line)(hres == S_OK, "get_href failed: %08x\n", hres);
1162 ok_(__FILE__,line)(!strcmp_wa(str, exhref), "href = %s, expected %s\n", wine_dbgstr_w(str), exhref);
1165 _test_disp_value(line, unk, exhref);
1168 #define test_option_text(o,t) _test_option_text(__LINE__,o,t)
1169 static void _test_option_text(unsigned line, IHTMLOptionElement *option, const char *text)
1174 hres = IHTMLOptionElement_get_text(option, &bstr);
1175 ok_(__FILE__,line) (hres == S_OK, "get_text failed: %08x\n", hres);
1176 ok_(__FILE__,line) (!strcmp_wa(bstr, text), "text=%s\n", wine_dbgstr_w(bstr));
1177 SysFreeString(bstr);
1180 #define test_option_put_text(o,t) _test_option_put_text(__LINE__,o,t)
1181 static void _test_option_put_text(unsigned line, IHTMLOptionElement *option, const char *text)
1186 bstr = a2bstr(text);
1187 hres = IHTMLOptionElement_put_text(option, bstr);
1188 SysFreeString(bstr);
1189 ok(hres == S_OK, "put_text failed: %08x\n", hres);
1191 _test_option_text(line, option, text);
1194 #define test_option_value(o,t) _test_option_value(__LINE__,o,t)
1195 static void _test_option_value(unsigned line, IHTMLOptionElement *option, const char *value)
1200 hres = IHTMLOptionElement_get_value(option, &bstr);
1201 ok_(__FILE__,line) (hres == S_OK, "get_value failed: %08x\n", hres);
1202 ok_(__FILE__,line) (!strcmp_wa(bstr, value), "value=%s\n", wine_dbgstr_w(bstr));
1203 SysFreeString(bstr);
1206 #define test_option_put_value(o,t) _test_option_put_value(__LINE__,o,t)
1207 static void _test_option_put_value(unsigned line, IHTMLOptionElement *option, const char *value)
1212 bstr = a2bstr(value);
1213 hres = IHTMLOptionElement_put_value(option, bstr);
1214 SysFreeString(bstr);
1215 ok(hres == S_OK, "put_value failed: %08x\n", hres);
1217 _test_option_value(line, option, value);
1220 #define test_option_selected(o,s) _test_option_selected(__LINE__,o,s)
1221 static void _test_option_selected(unsigned line, IHTMLOptionElement *option, VARIANT_BOOL ex)
1223 VARIANT_BOOL b = 0x100;
1226 hres = IHTMLOptionElement_get_selected(option, &b);
1227 ok_(__FILE__,line)(hres == S_OK, "get_selected failed: %08x\n", hres);
1228 ok_(__FILE__,line)(b == ex, "selected = %x, expected %x\n", b, ex);
1231 #define test_option_put_selected(o,s) _test_option_put_selected(__LINE__,o,s)
1232 static void _test_option_put_selected(unsigned line, IHTMLOptionElement *option, VARIANT_BOOL b)
1236 hres = IHTMLOptionElement_put_selected(option, b);
1237 ok_(__FILE__,line)(hres == S_OK, "put_selected failed: %08x\n", hres);
1238 _test_option_selected(line, option, b);
1241 #define test_textarea_value(t,v) _test_textarea_value(__LINE__,t,v)
1242 static void _test_textarea_value(unsigned line, IUnknown *unk, const char *exval)
1244 IHTMLTextAreaElement *textarea = _get_textarea_iface(line, unk);
1245 BSTR value = (void*)0xdeadbeef;
1248 hres = IHTMLTextAreaElement_get_value(textarea, &value);
1249 IHTMLTextAreaElement_Release(textarea);
1250 ok_(__FILE__,line)(hres == S_OK, "get_value failed: %08x\n", hres);
1252 ok_(__FILE__,line)(!strcmp_wa(value, exval), "value = %s, expected %s\n", wine_dbgstr_w(value), exval);
1254 ok_(__FILE__,line)(!value, "value = %p\n", value);
1255 SysFreeString(value);
1258 #define test_textarea_put_value(t,v) _test_textarea_put_value(__LINE__,t,v)
1259 static void _test_textarea_put_value(unsigned line, IUnknown *unk, const char *value)
1261 IHTMLTextAreaElement *textarea = _get_textarea_iface(line, unk);
1262 BSTR tmp = a2bstr(value);
1265 hres = IHTMLTextAreaElement_put_value(textarea, tmp);
1266 IHTMLTextAreaElement_Release(textarea);
1267 ok_(__FILE__,line)(hres == S_OK, "put_value failed: %08x\n", hres);
1270 _test_textarea_value(line, unk, value);
1273 #define test_textarea_readonly(t,v) _test_textarea_readonly(__LINE__,t,v)
1274 static void _test_textarea_readonly(unsigned line, IUnknown *unk, VARIANT_BOOL ex)
1276 IHTMLTextAreaElement *textarea = _get_textarea_iface(line, unk);
1277 VARIANT_BOOL b = 0x100;
1280 hres = IHTMLTextAreaElement_get_readOnly(textarea, &b);
1281 IHTMLTextAreaElement_Release(textarea);
1282 ok_(__FILE__,line)(hres == S_OK, "get_readOnly failed: %08x\n", hres);
1283 ok_(__FILE__,line)(b == ex, "readOnly = %x, expected %x\n", b, ex);
1286 #define test_textarea_put_readonly(t,v) _test_textarea_put_readonly(__LINE__,t,v)
1287 static void _test_textarea_put_readonly(unsigned line, IUnknown *unk, VARIANT_BOOL b)
1289 IHTMLTextAreaElement *textarea = _get_textarea_iface(line, unk);
1292 hres = IHTMLTextAreaElement_put_readOnly(textarea, b);
1293 IHTMLTextAreaElement_Release(textarea);
1294 ok_(__FILE__,line)(hres == S_OK, "put_readOnly failed: %08x\n", hres);
1296 _test_textarea_readonly(line, unk, b);
1299 #define test_textarea_type(t) _test_textarea_type(__LINE__,t)
1300 static void _test_textarea_type(unsigned line, IUnknown *unk)
1302 IHTMLTextAreaElement *textarea = _get_textarea_iface(line, unk);
1303 BSTR type = (void*)0xdeadbeef;
1306 hres = IHTMLTextAreaElement_get_type(textarea, &type);
1307 IHTMLTextAreaElement_Release(textarea);
1308 ok_(__FILE__,line)(hres == S_OK, "get_type failed: %08x\n", hres);
1309 ok_(__FILE__,line)(!strcmp_wa(type, "textarea"), "type = %s, expected textarea\n", wine_dbgstr_w(type));
1310 SysFreeString(type);
1313 #define test_comment_text(c,t) _test_comment_text(__LINE__,c,t)
1314 static void _test_comment_text(unsigned line, IUnknown *unk, const char *extext)
1316 IHTMLCommentElement *comment = _get_comment_iface(__LINE__,unk);
1320 text = a2bstr(extext);
1321 hres = IHTMLCommentElement_get_text(comment, &text);
1322 ok_(__FILE__,line)(hres == S_OK, "get_text failed: %08x\n", hres);
1323 ok_(__FILE__,line)(!strcmp_wa(text, extext), "text = \"%s\", expected \"%s\"\n", wine_dbgstr_w(text), extext);
1325 IHTMLCommentElement_Release(comment);
1326 SysFreeString(text);
1329 #define test_object_vspace(u,s) _test_object_vspace(__LINE__,u,s)
1330 static void _test_object_vspace(unsigned line, IUnknown *unk, LONG exl)
1332 IHTMLObjectElement *object = _get_object_iface(line, unk);
1337 hres = IHTMLObjectElement_get_vspace(object, &l);
1338 ok_(__FILE__,line)(hres == S_OK, "get_vspace failed: %08x\n", hres);
1339 ok_(__FILE__,line)(l == exl, "vspace=%d, expected %d\n", l, exl);
1340 IHTMLObjectElement_Release(object);
1343 #define create_option_elem(d,t,v) _create_option_elem(__LINE__,d,t,v)
1344 static IHTMLOptionElement *_create_option_elem(unsigned line, IHTMLDocument2 *doc,
1345 const char *txt, const char *val)
1347 IHTMLOptionElementFactory *factory;
1348 IHTMLOptionElement *option;
1349 IHTMLWindow2 *window;
1350 VARIANT text, value, empty;
1353 hres = IHTMLDocument2_get_parentWindow(doc, &window);
1354 ok_(__FILE__,line) (hres == S_OK, "get_parentElement failed: %08x\n", hres);
1356 hres = IHTMLWindow2_get_Option(window, &factory);
1357 IHTMLWindow2_Release(window);
1358 ok_(__FILE__,line) (hres == S_OK, "get_Option failed: %08x\n", hres);
1360 V_VT(&text) = VT_BSTR;
1361 V_BSTR(&text) = a2bstr(txt);
1362 V_VT(&value) = VT_BSTR;
1363 V_BSTR(&value) = a2bstr(val);
1364 V_VT(&empty) = VT_EMPTY;
1366 hres = IHTMLOptionElementFactory_create(factory, text, value, empty, empty, &option);
1367 ok_(__FILE__,line) (hres == S_OK, "create failed: %08x\n", hres);
1369 IHTMLOptionElementFactory_Release(factory);
1370 VariantClear(&text);
1371 VariantClear(&value);
1373 _test_option_text(line, option, txt);
1374 _test_option_value(line, option, val);
1375 _test_option_selected(line, option, VARIANT_FALSE);
1380 #define test_img_width(o,w) _test_img_width(__LINE__,o,w)
1381 static void _test_img_width(unsigned line, IHTMLImgElement *img, const LONG exp)
1386 hres = IHTMLImgElement_get_width(img, &found);
1387 ok_(__FILE__,line) (hres == S_OK, "get_width failed: %08x\n", hres);
1388 ok_(__FILE__,line) (found == exp, "width=%d\n", found);
1391 #define test_img_put_width(o,w) _test_img_put_width(__LINE__,o,w)
1392 static void _test_img_put_width(unsigned line, IHTMLImgElement *img, const LONG width)
1396 hres = IHTMLImgElement_put_width(img, width);
1397 ok(hres == S_OK, "put_width failed: %08x\n", hres);
1399 _test_img_width(line, img, width);
1402 #define test_img_height(o,h) _test_img_height(__LINE__,o,h)
1403 static void _test_img_height(unsigned line, IHTMLImgElement *img, const LONG exp)
1408 hres = IHTMLImgElement_get_height(img, &found);
1409 ok_(__FILE__,line) (hres == S_OK, "get_height failed: %08x\n", hres);
1410 ok_(__FILE__,line) (found == exp, "height=%d\n", found);
1413 #define test_img_put_height(o,w) _test_img_put_height(__LINE__,o,w)
1414 static void _test_img_put_height(unsigned line, IHTMLImgElement *img, const LONG height)
1418 hres = IHTMLImgElement_put_height(img, height);
1419 ok(hres == S_OK, "put_height failed: %08x\n", hres);
1421 _test_img_height(line, img, height);
1424 #define create_img_elem(d,t,v) _create_img_elem(__LINE__,d,t,v)
1425 static IHTMLImgElement *_create_img_elem(unsigned line, IHTMLDocument2 *doc,
1426 LONG wdth, LONG hght)
1428 IHTMLImageElementFactory *factory;
1429 IHTMLImgElement *img;
1430 IHTMLWindow2 *window;
1431 VARIANT width, height;
1435 hres = IHTMLDocument2_get_parentWindow(doc, &window);
1436 ok_(__FILE__,line) (hres == S_OK, "get_parentElement failed: %08x\n", hres);
1438 hres = IHTMLWindow2_get_Image(window, &factory);
1439 IHTMLWindow2_Release(window);
1440 ok_(__FILE__,line) (hres == S_OK, "get_Image failed: %08x\n", hres);
1442 test_ifaces((IUnknown*)factory, img_factory_iids);
1443 test_disp((IUnknown*)factory, &IID_IHTMLImageElementFactory, "[object]");
1446 snprintf(buf, 16, "%d", wdth);
1447 V_VT(&width) = VT_BSTR;
1448 V_BSTR(&width) = a2bstr(buf);
1450 V_VT(&width) = VT_EMPTY;
1455 snprintf(buf, 16, "%d", hght);
1456 V_VT(&height) = VT_BSTR;
1457 V_BSTR(&height) = a2bstr(buf);
1459 V_VT(&height) = VT_EMPTY;
1463 hres = IHTMLImageElementFactory_create(factory, width, height, &img);
1464 ok_(__FILE__,line) (hres == S_OK, "create failed: %08x\n", hres);
1466 IHTMLImageElementFactory_Release(factory);
1467 VariantClear(&width);
1468 VariantClear(&height);
1470 if(SUCCEEDED(hres)) {
1471 _test_img_width(line, img, wdth);
1472 _test_img_height(line, img, hght);
1479 #define test_select_length(s,l) _test_select_length(__LINE__,s,l)
1480 static void _test_select_length(unsigned line, IHTMLSelectElement *select, LONG length)
1482 LONG len = 0xdeadbeef;
1485 hres = IHTMLSelectElement_get_length(select, &len);
1486 ok_(__FILE__,line) (hres == S_OK, "get_length failed: %08x\n", hres);
1487 ok_(__FILE__,line) (len == length, "len=%d, expected %d\n", len, length);
1490 #define test_select_put_length(s,l) _test_select_put_length(__LINE__,s,l)
1491 static void _test_select_put_length(unsigned line, IUnknown *unk, LONG length)
1493 IHTMLSelectElement *select = _get_select_iface(line, unk);
1496 hres = IHTMLSelectElement_put_length(select, length);
1497 ok_(__FILE__,line) (hres == S_OK, "put_length failed: %08x\n", hres);
1498 _test_select_length(line, select, length);
1499 IHTMLSelectElement_Release(select);
1502 #define test_select_selidx(s,i) _test_select_selidx(__LINE__,s,i)
1503 static void _test_select_selidx(unsigned line, IHTMLSelectElement *select, LONG index)
1505 LONG idx = 0xdeadbeef;
1508 hres = IHTMLSelectElement_get_selectedIndex(select, &idx);
1509 ok_(__FILE__,line) (hres == S_OK, "get_selectedIndex failed: %08x\n", hres);
1510 ok_(__FILE__,line) (idx == index, "idx=%d, expected %d\n", idx, index);
1513 #define test_select_put_selidx(s,i) _test_select_put_selidx(__LINE__,s,i)
1514 static void _test_select_put_selidx(unsigned line, IHTMLSelectElement *select, LONG index)
1518 hres = IHTMLSelectElement_put_selectedIndex(select, index);
1519 ok_(__FILE__,line) (hres == S_OK, "get_selectedIndex failed: %08x\n", hres);
1520 _test_select_selidx(line, select, index);
1523 #define test_select_value(s,v) _test_select_value(__LINE__,s,v)
1524 static void _test_select_value(unsigned line, IHTMLSelectElement *select, const char *exval)
1529 hres = IHTMLSelectElement_get_value(select, &val);
1530 ok_(__FILE__,line) (hres == S_OK, "get_value failed: %08x\n", hres);
1532 ok_(__FILE__,line) (!strcmp_wa(val, exval), "unexpected value %s\n", wine_dbgstr_w(val));
1534 ok_(__FILE__,line) (val == NULL, "val=%s, expected NULL\n", wine_dbgstr_w(val));
1538 #define test_select_set_value(s,v) _test_select_set_value(__LINE__,s,v)
1539 static void _test_select_set_value(unsigned line, IHTMLSelectElement *select, const char *val)
1545 hres = IHTMLSelectElement_put_value(select, bstr);
1546 SysFreeString(bstr);
1547 ok_(__FILE__,line) (hres == S_OK, "put_value failed: %08x\n", hres);
1550 #define test_select_type(s,t) _test_select_type(__LINE__,s,t)
1551 static void _test_select_type(unsigned line, IHTMLSelectElement *select, const char *extype)
1556 hres = IHTMLSelectElement_get_type(select, &type);
1557 ok_(__FILE__,line) (hres == S_OK, "get_type failed: %08x\n", hres);
1558 ok_(__FILE__,line) (!strcmp_wa(type, extype), "type=%s, expected %s\n", wine_dbgstr_w(type), extype);
1559 SysFreeString(type);
1562 #define test_range_text(r,t) _test_range_text(__LINE__,r,t)
1563 static void _test_range_text(unsigned line, IHTMLTxtRange *range, const char *extext)
1568 hres = IHTMLTxtRange_get_text(range, &text);
1569 ok_(__FILE__, line) (hres == S_OK, "get_text failed: %08x\n", hres);
1572 ok_(__FILE__, line) (text != NULL, "text == NULL\n");
1573 ok_(__FILE__, line) (!strcmp_wa(text, extext), "text=%s, expected %s\n", wine_dbgstr_w(text), extext);
1575 ok_(__FILE__, line) (text == NULL, "text=%s, expected NULL\n", wine_dbgstr_w(text));
1578 SysFreeString(text);
1582 #define test_range_collapse(r,b) _test_range_collapse(__LINE__,r,b)
1583 static void _test_range_collapse(unsigned line, IHTMLTxtRange *range, BOOL b)
1587 hres = IHTMLTxtRange_collapse(range, b);
1588 ok_(__FILE__, line) (hres == S_OK, "collapse failed: %08x\n", hres);
1589 _test_range_text(line, range, NULL);
1592 #define test_range_expand(r,u,b,t) _test_range_expand(__LINE__,r,u,b,t)
1593 static void _test_range_expand(unsigned line, IHTMLTxtRange *range, LPWSTR unit,
1594 VARIANT_BOOL exb, const char *extext)
1596 VARIANT_BOOL b = 0xe0e0;
1599 hres = IHTMLTxtRange_expand(range, unit, &b);
1600 ok_(__FILE__,line) (hres == S_OK, "expand failed: %08x\n", hres);
1601 ok_(__FILE__,line) (b == exb, "b=%x, expected %x\n", b, exb);
1602 _test_range_text(line, range, extext);
1605 #define test_range_move(r,u,c,e) _test_range_move(__LINE__,r,u,c,e)
1606 static void _test_range_move(unsigned line, IHTMLTxtRange *range, LPWSTR unit, LONG cnt, LONG excnt)
1608 LONG c = 0xdeadbeef;
1611 hres = IHTMLTxtRange_move(range, unit, cnt, &c);
1612 ok_(__FILE__,line) (hres == S_OK, "move failed: %08x\n", hres);
1613 ok_(__FILE__,line) (c == excnt, "count=%d, expected %d\n", c, excnt);
1614 _test_range_text(line, range, NULL);
1617 #define test_range_movestart(r,u,c,e) _test_range_movestart(__LINE__,r,u,c,e)
1618 static void _test_range_movestart(unsigned line, IHTMLTxtRange *range,
1619 LPWSTR unit, LONG cnt, LONG excnt)
1621 LONG c = 0xdeadbeef;
1624 hres = IHTMLTxtRange_moveStart(range, unit, cnt, &c);
1625 ok_(__FILE__,line) (hres == S_OK, "move failed: %08x\n", hres);
1626 ok_(__FILE__,line) (c == excnt, "count=%d, expected %d\n", c, excnt);
1629 #define test_range_moveend(r,u,c,e) _test_range_moveend(__LINE__,r,u,c,e)
1630 static void _test_range_moveend(unsigned line, IHTMLTxtRange *range, LPWSTR unit, LONG cnt, LONG excnt)
1632 LONG c = 0xdeadbeef;
1635 hres = IHTMLTxtRange_moveEnd(range, unit, cnt, &c);
1636 ok_(__FILE__,line) (hres == S_OK, "move failed: %08x\n", hres);
1637 ok_(__FILE__,line) (c == excnt, "count=%d, expected %d\n", c, excnt);
1640 #define test_range_put_text(r,t) _test_range_put_text(__LINE__,r,t)
1641 static void _test_range_put_text(unsigned line, IHTMLTxtRange *range, const char *text)
1644 BSTR bstr = a2bstr(text);
1646 hres = IHTMLTxtRange_put_text(range, bstr);
1647 ok_(__FILE__,line) (hres == S_OK, "put_text failed: %08x\n", hres);
1648 SysFreeString(bstr);
1649 _test_range_text(line, range, NULL);
1652 #define test_range_inrange(r1,r2,b) _test_range_inrange(__LINE__,r1,r2,b)
1653 static void _test_range_inrange(unsigned line, IHTMLTxtRange *range1, IHTMLTxtRange *range2, VARIANT_BOOL exb)
1659 hres = IHTMLTxtRange_inRange(range1, range2, &b);
1660 ok_(__FILE__,line) (hres == S_OK, "(1->2) isEqual failed: %08x\n", hres);
1661 ok_(__FILE__,line) (b == exb, "(1->2) b=%x, expected %x\n", b, exb);
1664 #define test_range_isequal(r1,r2,b) _test_range_isequal(__LINE__,r1,r2,b)
1665 static void _test_range_isequal(unsigned line, IHTMLTxtRange *range1, IHTMLTxtRange *range2, VARIANT_BOOL exb)
1671 hres = IHTMLTxtRange_isEqual(range1, range2, &b);
1672 ok_(__FILE__,line) (hres == S_OK, "(1->2) isEqual failed: %08x\n", hres);
1673 ok_(__FILE__,line) (b == exb, "(1->2) b=%x, expected %x\n", b, exb);
1676 hres = IHTMLTxtRange_isEqual(range2, range1, &b);
1677 ok_(__FILE__,line) (hres == S_OK, "(2->1) isEqual failed: %08x\n", hres);
1678 ok_(__FILE__,line) (b == exb, "(2->1) b=%x, expected %x\n", b, exb);
1681 test_range_inrange(range1, range2, VARIANT_TRUE);
1682 test_range_inrange(range2, range1, VARIANT_TRUE);
1686 #define test_range_parent(r,t) _test_range_parent(__LINE__,r,t)
1687 static void _test_range_parent(unsigned line, IHTMLTxtRange *range, elem_type_t type)
1692 hres = IHTMLTxtRange_parentElement(range, &elem);
1693 ok_(__FILE__,line) (hres == S_OK, "parentElement failed: %08x\n", hres);
1695 _test_elem_type(line, (IUnknown*)elem, type);
1697 IHTMLElement_Release(elem);
1700 #define test_elem_collection(c,t,l) _test_elem_collection(__LINE__,c,t,l)
1701 static void _test_elem_collection(unsigned line, IUnknown *unk,
1702 const elem_type_t *elem_types, LONG exlen)
1704 IHTMLElementCollection *col;
1707 VARIANT name, index;
1708 IDispatch *disp, *disp2;
1711 hres = IUnknown_QueryInterface(unk, &IID_IHTMLElementCollection, (void**)&col);
1712 ok_(__FILE__,line) (hres == S_OK, "Could not get IHTMLElementCollection: %08x\n", hres);
1714 test_disp((IUnknown*)col, &DIID_DispHTMLElementCollection, "[object]");
1716 hres = IHTMLElementCollection_get_length(col, &len);
1717 ok_(__FILE__,line) (hres == S_OK, "get_length failed: %08x\n", hres);
1718 ok_(__FILE__,line) (len == exlen, "len=%d, expected %d\n", len, exlen);
1723 V_VT(&index) = VT_EMPTY;
1725 for(i=0; i<len; i++) {
1726 V_VT(&name) = VT_I4;
1728 disp = (void*)0xdeadbeef;
1729 hres = IHTMLElementCollection_item(col, name, index, &disp);
1730 ok_(__FILE__,line) (hres == S_OK, "item(%d) failed: %08x\n", i, hres);
1731 ok_(__FILE__,line) (disp != NULL, "item returned NULL\n");
1732 if(FAILED(hres) || !disp)
1735 _test_elem_type(line, (IUnknown*)disp, elem_types[i]);
1738 V_VT(&name) = VT_UINT;
1740 disp2 = (void*)0xdeadbeef;
1741 hres = IHTMLElementCollection_item(col, name, index, &disp2);
1742 ok_(__FILE__,line) (hres == S_OK, "item(%d) failed: %08x\n", i, hres);
1743 ok_(__FILE__,line) (iface_cmp((IUnknown*)disp, (IUnknown*)disp2), "disp != disp2\n");
1745 IDispatch_Release(disp2);
1748 IDispatch_Release(disp);
1751 V_VT(&name) = VT_I4;
1753 disp = (void*)0xdeadbeef;
1754 hres = IHTMLElementCollection_item(col, name, index, &disp);
1755 ok_(__FILE__,line) (hres == S_OK, "item failed: %08x\n", hres);
1756 ok_(__FILE__,line) (disp == NULL, "disp != NULL\n");
1758 V_VT(&name) = VT_I4;
1760 disp = (void*)0xdeadbeef;
1761 hres = IHTMLElementCollection_item(col, name, index, &disp);
1762 ok_(__FILE__,line) (hres == E_INVALIDARG, "item failed: %08x, expected E_INVALIDARG\n", hres);
1763 ok_(__FILE__,line) (disp == NULL, "disp != NULL\n");
1765 IHTMLElementCollection_Release(col);
1768 #define test_elem_all(c,t,l) _test_elem_all(__LINE__,c,t,l)
1769 static void _test_elem_all(unsigned line, IUnknown *unk, const elem_type_t *elem_types, LONG exlen)
1771 IHTMLElement *elem = _get_elem_iface(line, unk);
1775 hres = IHTMLElement_get_all(elem, &disp);
1776 IHTMLElement_Release(elem);
1777 ok_(__FILE__,line)(hres == S_OK, "get_all failed: %08x\n", hres);
1779 _test_elem_collection(line, (IUnknown*)disp, elem_types, exlen);
1780 IDispatch_Release(disp);
1783 #define test_elem_getelembytag(u,t,l) _test_elem_getelembytag(__LINE__,u,t,l)
1784 static void _test_elem_getelembytag(unsigned line, IUnknown *unk, elem_type_t type, LONG exlen)
1786 IHTMLElement2 *elem = _get_elem2_iface(line, unk);
1787 IHTMLElementCollection *col = NULL;
1788 elem_type_t *types = NULL;
1793 tmp = a2bstr(elem_type_infos[type].tag);
1794 hres = IHTMLElement2_getElementsByTagName(elem, tmp, &col);
1796 IHTMLElement2_Release(elem);
1797 ok_(__FILE__,line) (hres == S_OK, "getElementByTagName failed: %08x\n", hres);
1798 ok_(__FILE__,line) (col != NULL, "col == NULL\n");
1801 types = HeapAlloc(GetProcessHeap(), 0, exlen*sizeof(elem_type_t));
1802 for(i=0; i<exlen; i++)
1806 _test_elem_collection(line, (IUnknown*)col, types, exlen);
1808 HeapFree(GetProcessHeap(), 0, types);
1811 #define test_elem_innertext(e,t) _test_elem_innertext(__LINE__,e,t)
1812 static void _test_elem_innertext(unsigned line, IHTMLElement *elem, const char *extext)
1817 hres = IHTMLElement_get_innerText(elem, &text);
1818 ok_(__FILE__,line) (hres == S_OK, "get_innerText failed: %08x\n", hres);
1819 ok_(__FILE__,line) (!strcmp_wa(text, extext), "get_innerText returned %s expected %s\n",
1820 wine_dbgstr_w(text), extext);
1821 SysFreeString(text);
1824 #define test_elem_set_innertext(e,t) _test_elem_set_innertext(__LINE__,e,t)
1825 static void _test_elem_set_innertext(unsigned line, IHTMLElement *elem, const char *text)
1827 IHTMLDOMChildrenCollection *col;
1832 hres = IHTMLElement_put_innerText(elem, str);
1833 ok_(__FILE__,line) (hres == S_OK, "put_innerText failed: %08x\n", hres);
1836 _test_elem_innertext(line, elem, text);
1839 col = _get_child_nodes(line, (IUnknown*)elem);
1840 ok(col != NULL, "col == NULL\n");
1842 LONG length = 0, type;
1845 hres = IHTMLDOMChildrenCollection_get_length(col, &length);
1846 ok(hres == S_OK, "get_length failed: %08x\n", hres);
1847 ok(length == 1, "length = %d\n", length);
1849 node = _get_child_item(line, col, 0);
1850 ok(node != NULL, "node == NULL\n");
1852 type = _get_node_type(line, (IUnknown*)node);
1853 ok(type == 3, "type=%d\n", type);
1854 IHTMLDOMNode_Release(node);
1857 IHTMLDOMChildrenCollection_Release(col);
1862 #define test_elem_innerhtml(e,t) _test_elem_innerhtml(__LINE__,e,t)
1863 static void _test_elem_innerhtml(unsigned line, IUnknown *unk, const char *inner_html)
1865 IHTMLElement *elem = _get_elem_iface(line, unk);
1869 hres = IHTMLElement_get_innerHTML(elem, &html);
1870 ok_(__FILE__,line)(hres == S_OK, "get_innerHTML failed: %08x\n", hres);
1872 ok_(__FILE__,line)(!strcmp_wa(html, inner_html), "unexpected innerHTML: %s\n", wine_dbgstr_w(html));
1874 ok_(__FILE__,line)(!html, "innerHTML = %s\n", wine_dbgstr_w(html));
1876 IHTMLElement_Release(elem);
1877 SysFreeString(html);
1880 #define test_elem_set_innerhtml(e,t) _test_elem_set_innerhtml(__LINE__,e,t)
1881 static void _test_elem_set_innerhtml(unsigned line, IUnknown *unk, const char *inner_html)
1883 IHTMLElement *elem = _get_elem_iface(line, unk);
1887 html = a2bstr(inner_html);
1888 hres = IHTMLElement_put_innerHTML(elem, html);
1889 ok_(__FILE__,line)(hres == S_OK, "put_innerHTML failed: %08x\n", hres);
1891 IHTMLElement_Release(elem);
1892 SysFreeString(html);
1895 #define test_elem_set_outerhtml(e,t) _test_elem_set_outerhtml(__LINE__,e,t)
1896 static void _test_elem_set_outerhtml(unsigned line, IUnknown *unk, const char *outer_html)
1898 IHTMLElement *elem = _get_elem_iface(line, unk);
1902 html = a2bstr(outer_html);
1903 hres = IHTMLElement_put_outerHTML(elem, html);
1904 ok_(__FILE__,line)(hres == S_OK, "put_outerHTML failed: %08x\n", hres);
1906 IHTMLElement_Release(elem);
1907 SysFreeString(html);
1910 #define test_elem_outerhtml(e,t) _test_elem_outerhtml(__LINE__,e,t)
1911 static void _test_elem_outerhtml(unsigned line, IUnknown *unk, const char *outer_html)
1913 IHTMLElement *elem = _get_elem_iface(line, unk);
1917 hres = IHTMLElement_get_outerHTML(elem, &html);
1918 ok_(__FILE__,line)(hres == S_OK, "get_outerHTML failed: %08x\n", hres);
1919 ok_(__FILE__,line)(!strcmp_wa(html, outer_html), "outerHTML = '%s', expected '%s'\n", wine_dbgstr_w(html), outer_html);
1921 IHTMLElement_Release(elem);
1922 SysFreeString(html);
1925 #define get_first_child(n) _get_first_child(__LINE__,n)
1926 static IHTMLDOMNode *_get_first_child(unsigned line, IUnknown *unk)
1928 IHTMLDOMNode *node = _get_node_iface(line, unk);
1929 IHTMLDOMNode *child = NULL;
1932 hres = IHTMLDOMNode_get_firstChild(node, &child);
1933 IHTMLDOMNode_Release(node);
1934 ok_(__FILE__,line) (hres == S_OK, "get_firstChild failed: %08x\n", hres);
1939 #define test_node_has_child(u,b) _test_node_has_child(__LINE__,u,b)
1940 static void _test_node_has_child(unsigned line, IUnknown *unk, VARIANT_BOOL exb)
1942 IHTMLDOMNode *node = _get_node_iface(line, unk);
1943 VARIANT_BOOL b = 0xdead;
1946 hres = IHTMLDOMNode_hasChildNodes(node, &b);
1947 ok_(__FILE__,line) (hres == S_OK, "hasChildNodes failed: %08x\n", hres);
1948 ok_(__FILE__,line) (b == exb, "hasChildNodes=%x, expected %x\n", b, exb);
1950 IHTMLDOMNode_Release(node);
1953 #define test_node_get_parent(u) _test_node_get_parent(__LINE__,u)
1954 static IHTMLDOMNode *_test_node_get_parent(unsigned line, IUnknown *unk)
1956 IHTMLDOMNode *node = _get_node_iface(line, unk);
1957 IHTMLDOMNode *parent;
1960 hres = IHTMLDOMNode_get_parentNode(node, &parent);
1961 IHTMLDOMNode_Release(node);
1962 ok_(__FILE__,line) (hres == S_OK, "get_parentNode failed: %08x\n", hres);
1967 #define node_get_next(u) _node_get_next(__LINE__,u)
1968 static IHTMLDOMNode *_node_get_next(unsigned line, IUnknown *unk)
1970 IHTMLDOMNode *node = _get_node_iface(line, unk);
1974 hres = IHTMLDOMNode_get_nextSibling(node, &next);
1975 IHTMLDOMNode_Release(node);
1976 ok_(__FILE__,line) (hres == S_OK, "get_nextSiblibg failed: %08x\n", hres);
1981 #define test_elem_get_parent(u) _test_elem_get_parent(__LINE__,u)
1982 static IHTMLElement *_test_elem_get_parent(unsigned line, IUnknown *unk)
1984 IHTMLElement *elem = _get_elem_iface(line, unk);
1985 IHTMLElement *parent;
1988 hres = IHTMLElement_get_parentElement(elem, &parent);
1989 IHTMLElement_Release(elem);
1990 ok_(__FILE__,line) (hres == S_OK, "get_parentElement failed: %08x\n", hres);
1995 #define test_elem3_get_disabled(i,b) _test_elem3_get_disabled(__LINE__,i,b)
1996 static void _test_elem3_get_disabled(unsigned line, IUnknown *unk, VARIANT_BOOL exb)
1998 IHTMLElement3 *elem3 = _get_elem3_iface(line, unk);
1999 VARIANT_BOOL disabled = 100;
2003 hres = IHTMLElement3_get_disabled(elem3, &disabled);
2004 ok_(__FILE__,line) (hres == S_OK, "get_disabled failed: %08x\n", hres);
2005 ok_(__FILE__,line) (disabled == exb, "disabled=%x, expected %x\n", disabled, exb);
2006 IHTMLElement3_Release(elem3);
2009 #define test_elem3_set_disabled(i,b) _test_elem3_set_disabled(__LINE__,i,b)
2010 static void _test_elem3_set_disabled(unsigned line, IUnknown *unk, VARIANT_BOOL b)
2012 IHTMLElement3 *elem3 = _get_elem3_iface(line, unk);
2016 hres = IHTMLElement3_put_disabled(elem3, b);
2017 ok_(__FILE__,line) (hres == S_OK, "get_disabled failed: %08x\n", hres);
2019 IHTMLElement3_Release(elem3);
2020 _test_elem3_get_disabled(line, unk, b);
2023 #define test_select_get_disabled(i,b) _test_select_get_disabled(__LINE__,i,b)
2024 static void _test_select_get_disabled(unsigned line, IHTMLSelectElement *select, VARIANT_BOOL exb)
2026 VARIANT_BOOL disabled = 100;
2029 hres = IHTMLSelectElement_get_disabled(select, &disabled);
2030 ok_(__FILE__,line) (hres == S_OK, "get_disabled failed: %08x\n", hres);
2031 ok_(__FILE__,line) (disabled == exb, "disabled=%x, expected %x\n", disabled, exb);
2033 _test_elem3_get_disabled(line, (IUnknown*)select, exb);
2036 #define test_text_length(u,l) _test_text_length(__LINE__,u,l)
2037 static void _test_text_length(unsigned line, IUnknown *unk, LONG l)
2039 IHTMLDOMTextNode *text = _get_text_iface(line, unk);
2043 hres = IHTMLDOMTextNode_get_length(text, &length);
2044 ok_(__FILE__,line)(hres == S_OK, "get_length failed: %08x\n", hres);
2045 ok_(__FILE__,line)(length == l, "length = %d, expected %d\n", length, l);
2046 IHTMLDOMTextNode_Release(text);
2049 #define test_select_set_disabled(i,b) _test_select_set_disabled(__LINE__,i,b)
2050 static void _test_select_set_disabled(unsigned line, IHTMLSelectElement *select, VARIANT_BOOL b)
2054 hres = IHTMLSelectElement_put_disabled(select, b);
2055 ok_(__FILE__,line) (hres == S_OK, "get_disabled failed: %08x\n", hres);
2057 _test_select_get_disabled(line, select, b);
2060 #define elem_get_scroll_height(u) _elem_get_scroll_height(__LINE__,u)
2061 static LONG _elem_get_scroll_height(unsigned line, IUnknown *unk)
2063 IHTMLElement2 *elem = _get_elem2_iface(line, unk);
2064 IHTMLTextContainer *txtcont;
2065 LONG l = -1, l2 = -1;
2068 hres = IHTMLElement2_get_scrollHeight(elem, &l);
2069 ok_(__FILE__,line) (hres == S_OK, "get_scrollHeight failed: %08x\n", hres);
2070 IHTMLElement2_Release(elem);
2072 hres = IUnknown_QueryInterface(unk, &IID_IHTMLTextContainer, (void**)&txtcont);
2073 ok_(__FILE__,line) (hres == S_OK, "Could not get IHTMLTextContainer: %08x\n", hres);
2075 hres = IHTMLTextContainer_get_scrollHeight(txtcont, &l2);
2076 IHTMLTextContainer_Release(txtcont);
2077 ok_(__FILE__,line) (hres == S_OK, "IHTMLTextContainer::get_scrollHeight failed: %d\n", l2);
2078 ok_(__FILE__,line) (l == l2, "unexpected height %d, expected %d\n", l2, l);
2083 #define elem_get_scroll_width(u) _elem_get_scroll_width(__LINE__,u)
2084 static LONG _elem_get_scroll_width(unsigned line, IUnknown *unk)
2086 IHTMLElement2 *elem = _get_elem2_iface(line, unk);
2087 IHTMLTextContainer *txtcont;
2088 LONG l = -1, l2 = -1;
2091 hres = IHTMLElement2_get_scrollWidth(elem, &l);
2092 ok_(__FILE__,line) (hres == S_OK, "get_scrollWidth failed: %08x\n", hres);
2093 IHTMLElement2_Release(elem);
2095 hres = IUnknown_QueryInterface(unk, &IID_IHTMLTextContainer, (void**)&txtcont);
2096 ok_(__FILE__,line) (hres == S_OK, "Could not get IHTMLTextContainer: %08x\n", hres);
2098 hres = IHTMLTextContainer_get_scrollWidth(txtcont, &l2);
2099 IHTMLTextContainer_Release(txtcont);
2100 ok_(__FILE__,line) (hres == S_OK, "IHTMLTextContainer::get_scrollWidth failed: %d\n", l2);
2101 ok_(__FILE__,line) (l == l2, "unexpected width %d, expected %d\n", l2, l);
2106 #define elem_get_scroll_top(u) _elem_get_scroll_top(__LINE__,u)
2107 static LONG _elem_get_scroll_top(unsigned line, IUnknown *unk)
2109 IHTMLElement2 *elem = _get_elem2_iface(line, unk);
2110 IHTMLTextContainer *txtcont;
2111 LONG l = -1, l2 = -1;
2114 hres = IHTMLElement2_get_scrollTop(elem, &l);
2115 ok_(__FILE__,line) (hres == S_OK, "get_scrollTop failed: %08x\n", hres);
2116 IHTMLElement2_Release(elem);
2118 hres = IUnknown_QueryInterface(unk, &IID_IHTMLTextContainer, (void**)&txtcont);
2119 ok_(__FILE__,line) (hres == S_OK, "Could not get IHTMLTextContainer: %08x\n", hres);
2121 hres = IHTMLTextContainer_get_scrollTop(txtcont, &l2);
2122 IHTMLTextContainer_Release(txtcont);
2123 ok_(__FILE__,line) (hres == S_OK, "IHTMLTextContainer::get_scrollTop failed: %d\n", l2);
2124 ok_(__FILE__,line) (l == l2, "unexpected top %d, expected %d\n", l2, l);
2129 #define elem_get_scroll_left(u) _elem_get_scroll_left(__LINE__,u)
2130 static void _elem_get_scroll_left(unsigned line, IUnknown *unk)
2132 IHTMLElement2 *elem = _get_elem2_iface(line, unk);
2133 IHTMLTextContainer *txtcont;
2134 LONG l = -1, l2 = -1;
2137 hres = IHTMLElement2_get_scrollLeft(elem, NULL);
2138 ok(hres == E_INVALIDARG, "expect E_INVALIDARG got 0x%08x\n", hres);
2140 hres = IHTMLElement2_get_scrollLeft(elem, &l);
2141 ok(hres == S_OK, "get_scrollTop failed: %08x\n", hres);
2142 IHTMLElement2_Release(elem);
2144 hres = IUnknown_QueryInterface(unk, &IID_IHTMLTextContainer, (void**)&txtcont);
2145 ok(hres == S_OK, "Could not get IHTMLTextContainer: %08x\n", hres);
2147 hres = IHTMLTextContainer_get_scrollLeft(txtcont, &l2);
2148 IHTMLTextContainer_Release(txtcont);
2149 ok(hres == S_OK, "IHTMLTextContainer::get_scrollLeft failed: %d\n", l2);
2150 ok(l == l2, "unexpected left %d, expected %d\n", l2, l);
2153 #define test_img_src(i,s) _test_img_src(__LINE__,i,s)
2154 static void _test_img_src(unsigned line, IUnknown *unk, const char *exsrc)
2156 IHTMLImgElement *img = _get_img_iface(line, unk);
2160 hres = IHTMLImgElement_get_src(img, &src);
2161 IHTMLImgElement_Release(img);
2162 ok_(__FILE__,line) (hres == S_OK, "get_src failed: %08x\n", hres);
2163 ok_(__FILE__,line) (!strcmp_wa(src, exsrc), "get_src returned %s expected %s\n", wine_dbgstr_w(src), exsrc);
2167 #define test_img_set_src(u,s) _test_img_set_src(__LINE__,u,s)
2168 static void _test_img_set_src(unsigned line, IUnknown *unk, const char *src)
2170 IHTMLImgElement *img = _get_img_iface(line, unk);
2175 hres = IHTMLImgElement_put_src(img, tmp);
2176 IHTMLImgElement_Release(img);
2178 ok_(__FILE__,line) (hres == S_OK, "put_src failed: %08x\n", hres);
2180 _test_img_src(line, unk, src);
2183 #define test_img_alt(u,a) _test_img_alt(__LINE__,u,a)
2184 static void _test_img_alt(unsigned line, IUnknown *unk, const char *exalt)
2186 IHTMLImgElement *img = _get_img_iface(line, unk);
2190 hres = IHTMLImgElement_get_alt(img, &alt);
2191 ok_(__FILE__,line) (hres == S_OK, "get_alt failed: %08x\n", hres);
2193 ok_(__FILE__,line) (!strcmp_wa(alt, exalt), "inexopected alt %s\n", wine_dbgstr_w(alt));
2195 ok_(__FILE__,line) (!alt, "alt != NULL\n");
2199 #define test_img_set_alt(u,a) _test_img_set_alt(__LINE__,u,a)
2200 static void _test_img_set_alt(unsigned line, IUnknown *unk, const char *alt)
2202 IHTMLImgElement *img = _get_img_iface(line, unk);
2207 hres = IHTMLImgElement_put_alt(img, tmp);
2208 ok_(__FILE__,line) (hres == S_OK, "get_alt failed: %08x\n", hres);
2211 _test_img_alt(line, unk, alt);
2214 #define test_img_name(u, c) _test_img_name(__LINE__,u, c)
2215 static void _test_img_name(unsigned line, IUnknown *unk, const char *pValue)
2217 IHTMLImgElement *img = _get_img_iface(line, unk);
2221 hres = IHTMLImgElement_get_name(img, &sName);
2222 ok_(__FILE__,line) (hres == S_OK, "get_Name failed: %08x\n", hres);
2223 ok_(__FILE__,line) (!strcmp_wa (sName, pValue), "expected '%s' got '%s'\n", pValue, wine_dbgstr_w(sName));
2224 IHTMLImgElement_Release(img);
2225 SysFreeString(sName);
2228 #define test_input_type(i,t) _test_input_type(__LINE__,i,t)
2229 static void _test_input_type(unsigned line, IHTMLInputElement *input, const char *extype)
2234 hres = IHTMLInputElement_get_type(input, &type);
2235 ok_(__FILE__,line) (hres == S_OK, "get_type failed: %08x\n", hres);
2236 ok_(__FILE__,line) (!strcmp_wa(type, extype), "type=%s, expected %s\n", wine_dbgstr_w(type), extype);
2237 SysFreeString(type);
2240 #define test_input_name(u, c) _test_input_name(__LINE__,u, c)
2241 static void _test_input_name(unsigned line, IHTMLInputElement *input, const char *exname)
2243 BSTR name = (BSTR)0xdeadbeef;
2246 hres = IHTMLInputElement_get_name(input, &name);
2247 ok_(__FILE__,line) (hres == S_OK, "get_name failed: %08x\n", hres);
2249 ok_(__FILE__,line) (!strcmp_wa (name, exname), "name=%s, expected %s\n", wine_dbgstr_w(name), exname);
2251 ok_(__FILE__,line) (!name, "name=%p, expected NULL\n", name);
2252 SysFreeString(name);
2255 #define test_input_set_name(u, c) _test_input_set_name(__LINE__,u, c)
2256 static void _test_input_set_name(unsigned line, IHTMLInputElement *input, const char *name)
2258 BSTR tmp = a2bstr(name);
2261 hres = IHTMLInputElement_put_name(input, tmp);
2262 ok_(__FILE__,line) (hres == S_OK, "put_name failed: %08x\n", hres);
2265 _test_input_name(line, input, name);
2268 #define test_input_get_disabled(i,b) _test_input_get_disabled(__LINE__,i,b)
2269 static void _test_input_get_disabled(unsigned line, IHTMLInputElement *input, VARIANT_BOOL exb)
2271 VARIANT_BOOL disabled = 100;
2274 hres = IHTMLInputElement_get_disabled(input, &disabled);
2275 ok_(__FILE__,line) (hres == S_OK, "get_disabled failed: %08x\n", hres);
2276 ok_(__FILE__,line) (disabled == exb, "disabled=%x, expected %x\n", disabled, exb);
2278 _test_elem3_get_disabled(line, (IUnknown*)input, exb);
2281 #define test_input_set_disabled(i,b) _test_input_set_disabled(__LINE__,i,b)
2282 static void _test_input_set_disabled(unsigned line, IHTMLInputElement *input, VARIANT_BOOL b)
2286 hres = IHTMLInputElement_put_disabled(input, b);
2287 ok_(__FILE__,line) (hres == S_OK, "get_disabled failed: %08x\n", hres);
2289 _test_input_get_disabled(line, input, b);
2292 #define test_input_get_defaultchecked(i,b) _test_input_get_defaultchecked(__LINE__,i,b)
2293 static void _test_input_get_defaultchecked(unsigned line, IHTMLInputElement *input, VARIANT_BOOL exb)
2295 VARIANT_BOOL checked = 100;
2298 hres = IHTMLInputElement_get_defaultChecked(input, &checked);
2299 ok_(__FILE__,line) (hres == S_OK, "get_defaultChecked failed: %08x\n", hres);
2300 ok_(__FILE__,line) (checked == exb, "checked=%x, expected %x\n", checked, exb);
2303 #define test_input_set_defaultchecked(i,b) _test_input_set_defaultchecked(__LINE__,i,b)
2304 static void _test_input_set_defaultchecked(unsigned line, IHTMLInputElement *input, VARIANT_BOOL b)
2308 hres = IHTMLInputElement_put_defaultChecked(input, b);
2309 ok_(__FILE__,line) (hres == S_OK, "get_defaultChecked failed: %08x\n", hres);
2311 _test_input_get_defaultchecked(line, input, b);
2314 #define test_input_get_checked(i,b) _test_input_get_checked(__LINE__,i,b)
2315 static void _test_input_get_checked(unsigned line, IHTMLInputElement *input, VARIANT_BOOL exb)
2317 VARIANT_BOOL checked = 100;
2320 hres = IHTMLInputElement_get_checked(input, &checked);
2321 ok_(__FILE__,line) (hres == S_OK, "get_checked failed: %08x\n", hres);
2322 ok_(__FILE__,line) (checked == exb, "checked=%x, expected %x\n", checked, exb);
2325 #define test_input_set_checked(i,b) _test_input_set_checked(__LINE__,i,b)
2326 static void _test_input_set_checked(unsigned line, IHTMLInputElement *input, VARIANT_BOOL b)
2330 hres = IHTMLInputElement_put_checked(input, b);
2331 ok_(__FILE__,line) (hres == S_OK, "get_checked failed: %08x\n", hres);
2333 _test_input_get_checked(line, input, b);
2336 #define test_input_value(o,t) _test_input_value(__LINE__,o,t)
2337 static void _test_input_value(unsigned line, IUnknown *unk, const char *exval)
2339 IHTMLInputElement *input;
2343 hres = IUnknown_QueryInterface(unk, &IID_IHTMLInputElement, (void**)&input);
2344 ok_(__FILE__,line) (hres == S_OK, "Could not get IHTMLInputElement: %08x\n", hres);
2348 hres = IHTMLInputElement_get_value(input, &bstr);
2349 ok_(__FILE__,line) (hres == S_OK, "get_value failed: %08x\n", hres);
2351 ok_(__FILE__,line) (!strcmp_wa(bstr, exval), "value=%s\n", wine_dbgstr_w(bstr));
2353 ok_(__FILE__,line) (!exval, "exval != NULL\n");
2354 SysFreeString(bstr);
2355 IHTMLInputElement_Release(input);
2358 #define test_input_put_value(o,v) _test_input_put_value(__LINE__,o,v)
2359 static void _test_input_put_value(unsigned line, IUnknown *unk, const char *val)
2361 IHTMLInputElement *input;
2365 hres = IUnknown_QueryInterface(unk, &IID_IHTMLInputElement, (void**)&input);
2366 ok_(__FILE__,line) (hres == S_OK, "Could not get IHTMLInputElement: %08x\n", hres);
2371 hres = IHTMLInputElement_get_value(input, &bstr);
2372 ok_(__FILE__,line) (hres == S_OK, "get_value failed: %08x\n", hres);
2373 SysFreeString(bstr);
2374 IHTMLInputElement_Release(input);
2377 #define test_input_src(i,s) _test_input_src(__LINE__,i,s)
2378 static void _test_input_src(unsigned line, IHTMLInputElement *input, const char *exsrc)
2383 hres = IHTMLInputElement_get_src(input, &src);
2384 ok_(__FILE__,line) (hres == S_OK, "get_src failed: %08x\n", hres);
2386 ok_(__FILE__,line) (!strcmp_wa(src, exsrc), "get_src returned %s expected %s\n", wine_dbgstr_w(src), exsrc);
2388 ok_(__FILE__,line) (!src, "get_src returned %s expected NULL\n", wine_dbgstr_w(src));
2392 #define test_input_set_src(u,s) _test_input_set_src(__LINE__,u,s)
2393 static void _test_input_set_src(unsigned line, IHTMLInputElement *input, const char *src)
2399 hres = IHTMLInputElement_put_src(input, tmp);
2401 ok_(__FILE__,line) (hres == S_OK, "put_src failed: %08x\n", hres);
2403 _test_input_src(line, input, src);
2406 #define test_elem_class(u,c) _test_elem_class(__LINE__,u,c)
2407 static void _test_elem_class(unsigned line, IUnknown *unk, const char *exclass)
2409 IHTMLElement *elem = _get_elem_iface(line, unk);
2410 BSTR class = (void*)0xdeadbeef;
2413 hres = IHTMLElement_get_className(elem, &class);
2414 IHTMLElement_Release(elem);
2415 ok_(__FILE__,line) (hres == S_OK, "get_className failed: %08x\n", hres);
2417 ok_(__FILE__,line) (!strcmp_wa(class, exclass), "unexpected className %s\n", wine_dbgstr_w(class));
2419 ok_(__FILE__,line) (!class, "class != NULL\n");
2420 SysFreeString(class);
2423 #define test_elem_tabindex(u,i) _test_elem_tabindex(__LINE__,u,i)
2424 static void _test_elem_tabindex(unsigned line, IUnknown *unk, short exindex)
2426 IHTMLElement2 *elem2 = _get_elem2_iface(line, unk);
2430 hres = IHTMLElement2_get_tabIndex(elem2, &index);
2431 IHTMLElement2_Release(elem2);
2432 ok_(__FILE__,line) (hres == S_OK, "get_tabIndex failed: %08x\n", hres);
2433 ok_(__FILE__,line) (index == exindex, "unexpected index %d\n", index);
2436 #define test_elem_set_tabindex(u,i) _test_elem_set_tabindex(__LINE__,u,i)
2437 static void _test_elem_set_tabindex(unsigned line, IUnknown *unk, short index)
2439 IHTMLElement2 *elem2 = _get_elem2_iface(line, unk);
2442 hres = IHTMLElement2_put_tabIndex(elem2, index);
2443 IHTMLElement2_Release(elem2);
2444 ok_(__FILE__,line) (hres == S_OK, "get_tabIndex failed: %08x\n", hres);
2446 _test_elem_tabindex(line, unk, index);
2449 #define test_style_media(s,m) _test_style_media(__LINE__,s,m)
2450 static void _test_style_media(unsigned line, IUnknown *unk, const char *exmedia)
2452 IHTMLStyleElement *style = _get_style_iface(line, unk);
2456 hres = IHTMLStyleElement_get_media(style, &media);
2457 ok_(__FILE__,line)(hres == S_OK, "get_media failed: %08x\n", hres);
2459 ok_(__FILE__,line)(!strcmp_wa(media, exmedia), "media = %s, expected %s\n", wine_dbgstr_w(media), exmedia);
2461 ok_(__FILE__,line)(!media, "media = %s, expected NULL\n", wine_dbgstr_w(media));
2463 IHTMLStyleElement_Release(style);
2464 SysFreeString(media);
2467 #define test_style_put_media(s,m) _test_style_put_media(__LINE__,s,m)
2468 static void _test_style_put_media(unsigned line, IUnknown *unk, const char *media)
2470 IHTMLStyleElement *style = _get_style_iface(line, unk);
2474 str = a2bstr(media);
2475 hres = IHTMLStyleElement_put_media(style, str);
2476 ok_(__FILE__,line)(hres == S_OK, "put_media failed: %08x\n", hres);
2477 IHTMLStyleElement_Release(style);
2480 _test_style_media(line, unk, media);
2483 #define test_style_type(s,m) _test_style_type(__LINE__,s,m)
2484 static void _test_style_type(unsigned line, IUnknown *unk, const char *extype)
2486 IHTMLStyleElement *style = _get_style_iface(line, unk);
2490 hres = IHTMLStyleElement_get_type(style, &type);
2491 ok_(__FILE__,line)(hres == S_OK, "get_type failed: %08x\n", hres);
2493 ok_(__FILE__,line)(!strcmp_wa(type, extype), "type = %s, expected %s\n", wine_dbgstr_w(type), extype);
2495 ok_(__FILE__,line)(!type, "type = %s, expected NULL\n", wine_dbgstr_w(type));
2497 IHTMLStyleElement_Release(style);
2498 SysFreeString(type);
2501 #define test_style_put_type(s,m) _test_style_put_type(__LINE__,s,m)
2502 static void _test_style_put_type(unsigned line, IUnknown *unk, const char *type)
2504 IHTMLStyleElement *style = _get_style_iface(line, unk);
2509 hres = IHTMLStyleElement_put_type(style, str);
2510 ok_(__FILE__,line)(hres == S_OK, "put_type failed: %08x\n", hres);
2511 IHTMLStyleElement_Release(style);
2514 _test_style_type(line, unk, type);
2517 #define test_elem_filters(u) _test_elem_filters(__LINE__,u)
2518 static void _test_elem_filters(unsigned line, IUnknown *unk)
2520 IHTMLElement *elem = _get_elem_iface(line, unk);
2522 IHTMLFiltersCollection *filters;
2524 hres = IHTMLElement_get_filters(elem, &filters);
2525 ok_(__FILE__,line) (hres == S_OK || broken(hres == REGDB_E_CLASSNOTREG) /* NT4 */,
2526 "get_filters failed: %08x\n", hres);
2530 IDispatchEx *dispex;
2532 hres = IHTMLFiltersCollection_get_length(filters, &len);
2533 ok_(__FILE__,line) (hres == S_OK, "get_length failed: %08x\n", hres);
2534 ok_(__FILE__,line) (len == 0, "expect 0 got %d\n", len);
2536 hres = IHTMLFiltersCollection_QueryInterface(filters, &IID_IDispatchEx, (void**)&dispex);
2537 ok_(__FILE__,line) (hres == S_OK || broken(hres == E_NOINTERFACE),
2538 "Could not get IDispatchEx interface: %08x\n", hres);
2539 if(SUCCEEDED(hres)) {
2540 test_disp((IUnknown*)filters, &IID_IHTMLFiltersCollection, "[object]");
2541 IDispatchEx_Release(dispex);
2544 IHTMLFiltersCollection_Release(filters);
2547 IHTMLElement_Release(elem);
2550 #define test_elem_set_class(u,c) _test_elem_set_class(__LINE__,u,c)
2551 static void _test_elem_set_class(unsigned line, IUnknown *unk, const char *class)
2553 IHTMLElement *elem = _get_elem_iface(line, unk);
2557 tmp = class ? a2bstr(class) : NULL;
2558 hres = IHTMLElement_put_className(elem, tmp);
2559 IHTMLElement_Release(elem);
2560 ok_(__FILE__,line) (hres == S_OK, "put_className failed: %08x\n", hres);
2563 _test_elem_class(line, unk, class);
2566 #define test_elem_id(e,i) _test_elem_id(__LINE__,e,i)
2567 static void _test_elem_id(unsigned line, IUnknown *unk, const char *exid)
2569 IHTMLElement *elem = _get_elem_iface(line, unk);
2570 BSTR id = (void*)0xdeadbeef;
2573 hres = IHTMLElement_get_id(elem, &id);
2574 IHTMLElement_Release(elem);
2575 ok_(__FILE__,line) (hres == S_OK, "get_id failed: %08x\n", hres);
2578 ok_(__FILE__,line) (!strcmp_wa(id, exid), "unexpected id %s\n", wine_dbgstr_w(id));
2580 ok_(__FILE__,line) (!id, "id=%s\n", wine_dbgstr_w(id));
2585 #define test_elem_put_id(u,i) _test_elem_put_id(__LINE__,u,i)
2586 static void _test_elem_put_id(unsigned line, IUnknown *unk, const char *new_id)
2588 IHTMLElement *elem = _get_elem_iface(line, unk);
2589 BSTR tmp = a2bstr(new_id);
2592 hres = IHTMLElement_put_id(elem, tmp);
2593 IHTMLElement_Release(elem);
2595 ok_(__FILE__,line) (hres == S_OK, "put_id failed: %08x\n", hres);
2597 _test_elem_id(line, unk, new_id);
2600 #define test_elem_title(u,t) _test_elem_title(__LINE__,u,t)
2601 static void _test_elem_title(unsigned line, IUnknown *unk, const char *extitle)
2603 IHTMLElement *elem = _get_elem_iface(line, unk);
2607 hres = IHTMLElement_get_title(elem, &title);
2608 IHTMLElement_Release(elem);
2609 ok_(__FILE__,line) (hres == S_OK, "get_title failed: %08x\n", hres);
2611 ok_(__FILE__,line) (!strcmp_wa(title, extitle), "unexpected title %s\n", wine_dbgstr_w(title));
2613 ok_(__FILE__,line) (!title, "title=%s, expected NULL\n", wine_dbgstr_w(title));
2615 SysFreeString(title);
2618 #define test_elem_set_title(u,t) _test_elem_set_title(__LINE__,u,t)
2619 static void _test_elem_set_title(unsigned line, IUnknown *unk, const char *title)
2621 IHTMLElement *elem = _get_elem_iface(line, unk);
2625 tmp = a2bstr(title);
2626 hres = IHTMLElement_put_title(elem, tmp);
2627 ok_(__FILE__,line) (hres == S_OK, "get_title failed: %08x\n", hres);
2629 IHTMLElement_Release(elem);
2633 #define test_node_get_value_str(u,e) _test_node_get_value_str(__LINE__,u,e)
2634 static void _test_node_get_value_str(unsigned line, IUnknown *unk, const char *exval)
2636 IHTMLDOMNode *node = _get_node_iface(line, unk);
2640 hres = IHTMLDOMNode_get_nodeValue(node, &var);
2641 IHTMLDOMNode_Release(node);
2642 ok_(__FILE__,line) (hres == S_OK, "get_nodeValue failed: %08x, expected VT_BSTR\n", hres);
2645 ok_(__FILE__,line) (V_VT(&var) == VT_BSTR, "vt=%d\n", V_VT(&var));
2646 ok_(__FILE__,line) (!strcmp_wa(V_BSTR(&var), exval), "unexpected value %s\n", wine_dbgstr_w(V_BSTR(&var)));
2648 ok_(__FILE__,line) (V_VT(&var) == VT_NULL, "vt=%d, expected VT_NULL\n", V_VT(&var));
2654 #define test_node_put_value_str(u,v) _test_node_put_value_str(__LINE__,u,v)
2655 static void _test_node_put_value_str(unsigned line, IUnknown *unk, const char *val)
2657 IHTMLDOMNode *node = _get_node_iface(line, unk);
2661 V_VT(&var) = VT_BSTR;
2662 V_BSTR(&var) = a2bstr(val);
2664 hres = IHTMLDOMNode_put_nodeValue(node, var);
2665 ok_(__FILE__,line) (hres == S_OK, "get_nodeValue failed: %08x, expected VT_BSTR\n", hres);
2666 IHTMLDOMNode_Release(node);
2670 #define test_elem_client_size(u) _test_elem_client_size(__LINE__,u)
2671 static void _test_elem_client_size(unsigned line, IUnknown *unk)
2673 IHTMLElement2 *elem = _get_elem2_iface(line, unk);
2677 hres = IHTMLElement2_get_clientWidth(elem, &l);
2678 ok_(__FILE__,line) (hres == S_OK, "get_clientWidth failed: %08x\n", hres);
2679 hres = IHTMLElement2_get_clientHeight(elem, &l);
2680 ok_(__FILE__,line) (hres == S_OK, "get_clientHeight failed: %08x\n", hres);
2682 IHTMLElement2_Release(elem);
2685 #define test_elem_client_rect(u) _test_elem_client_rect(__LINE__,u)
2686 static void _test_elem_client_rect(unsigned line, IUnknown *unk)
2688 IHTMLElement2 *elem = _get_elem2_iface(line, unk);
2692 hres = IHTMLElement2_get_clientLeft(elem, &l);
2693 ok_(__FILE__,line) (hres == S_OK, "get_clientLeft failed: %08x\n", hres);
2694 ok_(__FILE__,line) (!l, "clientLeft = %d\n", l);
2696 hres = IHTMLElement2_get_clientTop(elem, &l);
2697 ok_(__FILE__,line) (hres == S_OK, "get_clientTop failed: %08x\n", hres);
2698 ok_(__FILE__,line) (!l, "clientTop = %d\n", l);
2700 IHTMLElement2_Release(elem);
2703 #define test_form_length(e,l) _test_form_length(__LINE__,e,l)
2704 static void _test_form_length(unsigned line, IUnknown *unk, LONG exlen)
2706 IHTMLFormElement *form = _get_form_iface(line, unk);
2707 LONG len = 0xdeadbeef;
2710 hres = IHTMLFormElement_get_length(form, &len);
2711 ok_(__FILE__,line)(hres == S_OK, "get_length failed: %08x\n", hres);
2712 ok_(__FILE__,line)(len == exlen, "length=%d, expected %d\n", len, exlen);
2714 IHTMLFormElement_Release(form);
2717 #define test_form_action(f,a) _test_form_action(__LINE__,f,a)
2718 static void _test_form_action(unsigned line, IUnknown *unk, const char *ex)
2720 IHTMLFormElement *form = _get_form_iface(line, unk);
2721 BSTR action = (void*)0xdeadbeef;
2724 hres = IHTMLFormElement_get_action(form, &action);
2725 ok_(__FILE__,line)(hres == S_OK, "get_action failed: %08x\n", hres);
2727 ok_(__FILE__,line)(!strcmp_wa(action, ex), "action=%s, expected %s\n", wine_dbgstr_w(action), ex);
2729 ok_(__FILE__,line)(!action, "action=%p\n", action);
2731 SysFreeString(action);
2732 IHTMLFormElement_Release(form);
2735 #define test_form_put_action(f,a) _test_form_put_action(__LINE__,f,a)
2736 static void _test_form_put_action(unsigned line, IUnknown *unk, const char *action)
2738 IHTMLFormElement *form = _get_form_iface(line, unk);
2739 BSTR tmp = a2bstr(action);
2742 hres = IHTMLFormElement_put_action(form, tmp);
2743 ok_(__FILE__,line)(hres == S_OK, "put_action failed: %08x\n", hres);
2745 IHTMLFormElement_Release(form);
2747 _test_form_action(line, unk, action);
2750 #define test_form_method(f,a) _test_form_method(__LINE__,f,a)
2751 static void _test_form_method(unsigned line, IUnknown *unk, const char *ex)
2753 IHTMLFormElement *form = _get_form_iface(line, unk);
2754 BSTR method = (void*)0xdeadbeef;
2757 hres = IHTMLFormElement_get_method(form, &method);
2758 ok_(__FILE__,line)(hres == S_OK, "get_method failed: %08x\n", hres);
2760 ok_(__FILE__,line)(!strcmp_wa(method, ex), "method=%s, expected %s\n", wine_dbgstr_w(method), ex);
2762 ok_(__FILE__,line)(!method, "method=%p\n", method);
2764 SysFreeString(method);
2765 IHTMLFormElement_Release(form);
2768 #define test_form_put_method(f,r,a) _test_form_put_method(__LINE__,f,r,a)
2769 static void _test_form_put_method(unsigned line, IUnknown *unk, HRESULT exp_hres, const char *method)
2771 IHTMLFormElement *form = _get_form_iface(line, unk);
2772 BSTR tmp = a2bstr(method);
2775 hres = IHTMLFormElement_put_method(form, tmp);
2776 ok_(__FILE__,line)(hres == exp_hres, "put_method returned: %08x, expected %08x\n", hres, exp_hres);
2778 IHTMLFormElement_Release(form);
2780 if(exp_hres == S_OK)
2781 _test_form_method(line, unk, method);
2784 #define test_form_name(f,a) _test_form_name(__LINE__,f,a)
2785 static void _test_form_name(unsigned line, IUnknown *unk, const char *ex)
2787 IHTMLFormElement *form = _get_form_iface(line, unk);
2788 BSTR name = (void*)0xdeadbeef;
2791 hres = IHTMLFormElement_get_name(form, &name);
2792 ok_(__FILE__,line)(hres == S_OK, "get_name failed: %08x\n", hres);
2794 ok_(__FILE__,line)(!strcmp_wa(name, ex), "name=%s, expected %s\n", wine_dbgstr_w(name), ex);
2796 ok_(__FILE__,line)(!name, "name=%p\n", name);
2798 SysFreeString(name);
2799 IHTMLFormElement_Release(form);
2802 #define test_form_put_name(f,a) _test_form_put_name(__LINE__,f,a)
2803 static void _test_form_put_name(unsigned line, IUnknown *unk, const char *name)
2805 IHTMLFormElement *form = _get_form_iface(line, unk);
2806 BSTR tmp = a2bstr(name);
2809 hres = IHTMLFormElement_put_name(form, tmp);
2810 ok_(__FILE__,line)(hres == S_OK, "put_name failed: %08x\n", hres);
2812 IHTMLFormElement_Release(form);
2814 _test_form_name(line, unk, name);
2817 #define test_form_encoding(f,a) _test_form_encoding(__LINE__,f,a)
2818 static void _test_form_encoding(unsigned line, IUnknown *unk, const char *ex)
2820 IHTMLFormElement *form = _get_form_iface(line, unk);
2821 BSTR encoding = (void*)0xdeadbeef;
2824 hres = IHTMLFormElement_get_encoding(form, &encoding);
2825 ok_(__FILE__,line)(hres == S_OK, "get_encoding failed: %08x\n", hres);
2827 ok_(__FILE__,line)(!strcmp_wa(encoding, ex), "encoding=%s, expected %s\n", wine_dbgstr_w(encoding), ex);
2829 ok_(__FILE__,line)(!encoding, "encoding=%p\n", encoding);
2831 SysFreeString(encoding);
2832 IHTMLFormElement_Release(form);
2835 #define test_form_put_encoding(f,r,a) _test_form_put_encoding(__LINE__,f,r,a)
2836 static void _test_form_put_encoding(unsigned line, IUnknown *unk, HRESULT exp_hres, const char *encoding)
2838 IHTMLFormElement *form = _get_form_iface(line, unk);
2839 BSTR tmp = a2bstr(encoding);
2842 hres = IHTMLFormElement_put_encoding(form, tmp);
2843 ok_(__FILE__,line)(hres == exp_hres, "put_encoding returned: %08x, expected %08x\n", hres, exp_hres);
2845 IHTMLFormElement_Release(form);
2847 if(exp_hres == S_OK)
2848 _test_form_encoding(line, unk, encoding);
2851 #define get_elem_doc(e) _get_elem_doc(__LINE__,e)
2852 static IHTMLDocument2 *_get_elem_doc(unsigned line, IUnknown *unk)
2854 IHTMLElement *elem = _get_elem_iface(line, unk);
2855 IHTMLDocument2 *doc;
2860 hres = IHTMLElement_get_document(elem, &disp);
2861 ok(hres == S_OK, "get_document failed: %08x\n", hres);
2862 ok(disp != NULL, "disp == NULL\n");
2864 hres = IDispatch_QueryInterface(disp, &IID_IHTMLDocument2, (void**)&doc);
2865 IDispatch_Release(disp);
2866 ok(hres == S_OK, "Could not get IHTMLDocument2 iface: %08x\n", hres);
2871 #define get_window_doc(e) _get_window_doc(__LINE__,e)
2872 static IHTMLDocument2 *_get_window_doc(unsigned line, IHTMLWindow2 *window)
2874 IHTMLDocument2 *doc;
2878 hres = IHTMLWindow2_get_document(window, &doc);
2879 ok(hres == S_OK, "get_document failed: %08x\n", hres);
2880 ok(doc != NULL, "disp == NULL\n");
2885 #define doc_get_body(d) _doc_get_body(__LINE__,d)
2886 static IHTMLElement *_doc_get_body(unsigned line, IHTMLDocument2 *doc)
2891 hres = IHTMLDocument2_get_body(doc, &elem);
2892 ok_(__FILE__,line)(hres == S_OK, "get_body failed: %08x\n", hres);
2893 ok_(__FILE__,line)(elem != NULL, "body == NULL\n");
2898 #define test_create_elem(d,t) _test_create_elem(__LINE__,d,t)
2899 static IHTMLElement *_test_create_elem(unsigned line, IHTMLDocument2 *doc, const char *tag)
2901 IHTMLElement *elem = NULL;
2906 hres = IHTMLDocument2_createElement(doc, tmp, &elem);
2907 ok_(__FILE__,line) (hres == S_OK, "createElement failed: %08x\n", hres);
2908 ok_(__FILE__,line) (elem != NULL, "elem == NULL\n");
2913 #define test_create_text(d,t) _test_create_text(__LINE__,d,t)
2914 static IHTMLDOMNode *_test_create_text(unsigned line, IHTMLDocument2 *doc, const char *text)
2916 IHTMLDocument3 *doc3;
2917 IHTMLDOMNode *node = NULL;
2921 hres = IHTMLDocument2_QueryInterface(doc, &IID_IHTMLDocument3, (void**)&doc3);
2922 ok_(__FILE__,line) (hres == S_OK, "Could not get IHTMLDocument3: %08x\n", hres);
2925 hres = IHTMLDocument3_createTextNode(doc3, tmp, &node);
2926 IHTMLDocument3_Release(doc3);
2927 ok_(__FILE__,line) (hres == S_OK, "createElement failed: %08x\n", hres);
2928 ok_(__FILE__,line) (node != NULL, "node == NULL\n");
2933 #define test_node_append_child(n,c) _test_node_append_child(__LINE__,n,c)
2934 static IHTMLDOMNode *_test_node_append_child(unsigned line, IUnknown *node_unk, IUnknown *child_unk)
2936 IHTMLDOMNode *node = _get_node_iface(line, node_unk);
2937 IHTMLDOMNode *child = _get_node_iface(line, child_unk);
2938 IHTMLDOMNode *new_child = NULL;
2941 hres = IHTMLDOMNode_appendChild(node, child, &new_child);
2942 ok_(__FILE__,line) (hres == S_OK, "appendChild failed: %08x\n", hres);
2943 ok_(__FILE__,line) (new_child != NULL, "new_child == NULL\n");
2944 /* TODO ok_(__FILE__,line) (new_child != child, "new_child == child\n"); */
2946 IHTMLDOMNode_Release(node);
2947 IHTMLDOMNode_Release(child);
2952 #define test_node_insertbefore(n,c,v) _test_node_insertbefore(__LINE__,n,c,v)
2953 static IHTMLDOMNode *_test_node_insertbefore(unsigned line, IUnknown *node_unk, IHTMLDOMNode *child, VARIANT *var)
2955 IHTMLDOMNode *node = _get_node_iface(line, node_unk);
2956 IHTMLDOMNode *new_child = NULL;
2959 hres = IHTMLDOMNode_insertBefore(node, child, *var, &new_child);
2960 ok_(__FILE__,line) (hres == S_OK, "insertBefore failed: %08x\n", hres);
2961 ok_(__FILE__,line) (new_child != NULL, "new_child == NULL\n");
2962 /* TODO ok_(__FILE__,line) (new_child != child, "new_child == child\n"); */
2964 IHTMLDOMNode_Release(node);
2969 #define test_node_remove_child(n,c) _test_node_remove_child(__LINE__,n,c)
2970 static void _test_node_remove_child(unsigned line, IUnknown *unk, IHTMLDOMNode *child)
2972 IHTMLDOMNode *node = _get_node_iface(line, unk);
2973 IHTMLDOMNode *new_node = NULL;
2976 hres = IHTMLDOMNode_removeChild(node, child, &new_node);
2977 ok_(__FILE__,line) (hres == S_OK, "removeChild failed: %08x\n", hres);
2978 ok_(__FILE__,line) (new_node != NULL, "new_node == NULL\n");
2979 /* TODO ok_(__FILE__,line) (new_node != child, "new_node == child\n"); */
2981 IHTMLDOMNode_Release(node);
2982 IHTMLDOMNode_Release(new_node);
2985 #define test_doc_title(d,t) _test_doc_title(__LINE__,d,t)
2986 static void _test_doc_title(unsigned line, IHTMLDocument2 *doc, const char *extitle)
2991 hres = IHTMLDocument2_get_title(doc, &title);
2992 ok_(__FILE__,line) (hres == S_OK, "get_title failed: %08x\n", hres);
2993 ok_(__FILE__,line) (!strcmp_wa(title, extitle), "unexpected title %s\n", wine_dbgstr_w(title));
2994 SysFreeString(title);
2997 #define test_doc_set_title(d,t) _test_doc_set_title(__LINE__,d,t)
2998 static void _test_doc_set_title(unsigned line, IHTMLDocument2 *doc, const char *title)
3003 tmp = a2bstr(title);
3004 hres = IHTMLDocument2_put_title(doc, tmp);
3005 ok_(__FILE__,line) (hres == S_OK, "get_title failed: %08x\n", hres);
3009 #define test_border_styles(p, n) _test_border_styles(__LINE__, p, n)
3010 static void _test_border_styles(unsigned line, IHTMLStyle *pStyle, BSTR Name)
3015 hres = IHTMLStyle_GetIDsOfNames(pStyle, &IID_NULL, &Name, 1,
3016 LOCALE_USER_DEFAULT, &dispid);
3017 ok_(__FILE__,line) (hres == S_OK, "GetIDsOfNames: %08x\n", hres);
3020 DISPPARAMS params = {NULL,NULL,0,0};
3021 DISPID dispidNamed = DISPID_PROPERTYPUT;
3026 hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
3027 DISPATCH_PROPERTYGET, ¶ms, &vDefault, NULL, NULL);
3028 ok_(__FILE__,line) (hres == S_OK, "get_default. ret: %08x\n", hres);
3031 params.cNamedArgs = 1;
3032 params.rgdispidNamedArgs = &dispidNamed;
3033 V_VT(&arg) = VT_BSTR;
3034 V_BSTR(&arg) = a2bstr("none");
3035 params.rgvarg = &arg;
3036 hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
3037 DISPATCH_PROPERTYPUT, ¶ms, &ret, NULL, NULL);
3038 ok_(__FILE__,line) (hres == S_OK, "none. ret: %08x\n", hres);
3041 V_VT(&arg) = VT_BSTR;
3042 V_BSTR(&arg) = a2bstr("dotted");
3043 hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
3044 DISPATCH_PROPERTYPUT, ¶ms, &ret, NULL, NULL);
3045 ok_(__FILE__,line) (hres == S_OK, "dotted. ret: %08x\n", hres);
3048 V_VT(&arg) = VT_BSTR;
3049 V_BSTR(&arg) = a2bstr("dashed");
3050 hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
3051 DISPATCH_PROPERTYPUT, ¶ms, &ret, NULL, NULL);
3052 ok_(__FILE__,line) (hres == S_OK, "dashed. ret: %08x\n", hres);
3055 V_VT(&arg) = VT_BSTR;
3056 V_BSTR(&arg) = a2bstr("solid");
3057 hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
3058 DISPATCH_PROPERTYPUT, ¶ms, &ret, NULL, NULL);
3059 ok_(__FILE__,line) (hres == S_OK, "solid. ret: %08x\n", hres);
3062 V_VT(&arg) = VT_BSTR;
3063 V_BSTR(&arg) = a2bstr("double");
3064 hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
3065 DISPATCH_PROPERTYPUT, ¶ms, &ret, NULL, NULL);
3066 ok_(__FILE__,line) (hres == S_OK, "double. ret: %08x\n", hres);
3069 V_VT(&arg) = VT_BSTR;
3070 V_BSTR(&arg) = a2bstr("groove");
3071 hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
3072 DISPATCH_PROPERTYPUT, ¶ms, &ret, NULL, NULL);
3073 ok_(__FILE__,line) (hres == S_OK, "groove. ret: %08x\n", hres);
3076 V_VT(&arg) = VT_BSTR;
3077 V_BSTR(&arg) = a2bstr("ridge");
3078 hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
3079 DISPATCH_PROPERTYPUT, ¶ms, &ret, NULL, NULL);
3080 ok_(__FILE__,line) (hres == S_OK, "ridge. ret: %08x\n", hres);
3083 V_VT(&arg) = VT_BSTR;
3084 V_BSTR(&arg) = a2bstr("inset");
3085 hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
3086 DISPATCH_PROPERTYPUT, ¶ms, &ret, NULL, NULL);
3087 ok_(__FILE__,line) (hres == S_OK, "inset. ret: %08x\n", hres);
3090 V_VT(&arg) = VT_BSTR;
3091 V_BSTR(&arg) = a2bstr("outset");
3092 hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
3093 DISPATCH_PROPERTYPUT, ¶ms, &ret, NULL, NULL);
3094 ok_(__FILE__,line) (hres == S_OK, "outset. ret: %08x\n", hres);
3097 V_VT(&arg) = VT_BSTR;
3098 V_BSTR(&arg) = a2bstr("invalid");
3099 hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
3100 DISPATCH_PROPERTYPUT, ¶ms, &ret, NULL, NULL);
3101 ok_(__FILE__,line) (FAILED(hres), "invalid value passed.\n");
3104 params.rgvarg = &vDefault;
3105 hres = IHTMLStyle_Invoke(pStyle, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
3106 DISPATCH_PROPERTYPUT, ¶ms, &ret, NULL, NULL);
3107 ok_(__FILE__,line) (hres == S_OK, "default. ret: %08x\n", hres);
3111 #define test_style_csstext(s,t) _test_style_csstext(__LINE__,s,t)
3112 static void _test_style_csstext(unsigned line, IHTMLStyle *style, const char *extext)
3114 BSTR text = (void*)0xdeadbeef;
3117 hres = IHTMLStyle_get_cssText(style, &text);
3118 ok_(__FILE__,line)(hres == S_OK, "get_cssText failed: %08x\n", hres);
3120 ok_(__FILE__,line)(!strcmp_wa(text, extext), "cssText = %s\n", wine_dbgstr_w(text));
3122 ok_(__FILE__,line)(!text, "cssText = %s\n", wine_dbgstr_w(text));
3124 SysFreeString(text);
3127 #define test_style_set_csstext(s,t) _test_style_set_csstext(__LINE__,s,t)
3128 static void _test_style_set_csstext(unsigned line, IHTMLStyle *style, const char *text)
3134 hres = IHTMLStyle_put_cssText(style, tmp);
3135 ok_(__FILE__,line)(hres == S_OK, "put_cssText failed: %08x\n", hres);
3139 static void test_elem_bounding_client_rect(IUnknown *unk)
3141 IHTMLRect *rect, *rect2;
3142 IHTMLElement2 *elem2;
3146 elem2 = get_elem2_iface(unk);
3147 hres = IHTMLElement2_getBoundingClientRect(elem2, &rect);
3148 hres = IHTMLElement2_getBoundingClientRect(elem2, &rect2);
3149 IHTMLElement2_Release(elem2);
3150 ok(hres == S_OK, "getBoundingClientRect failed: %08x\n", hres);
3151 ok(rect != NULL, "rect == NULL\n");
3152 ok(rect != rect2, "rect == rect2\n");
3153 IHTMLRect_Release(rect2);
3155 test_disp((IUnknown*)rect, &IID_IHTMLRect, "[object]");
3158 hres = IHTMLRect_get_top(rect, &l);
3159 ok(hres == S_OK, "get_top failed: %08x\n", hres);
3160 ok(l != 0xdeadbeef, "l = 0xdeadbeef\n");
3163 hres = IHTMLRect_get_left(rect, &l);
3164 ok(hres == S_OK, "get_left failed: %08x\n", hres);
3165 ok(l != 0xdeadbeef, "l = 0xdeadbeef\n");
3168 hres = IHTMLRect_get_bottom(rect, &l);
3169 ok(hres == S_OK, "get_bottom failed: %08x\n", hres);
3170 ok(l != 0xdeadbeef, "l = 0xdeadbeef\n");
3173 hres = IHTMLRect_get_right(rect, &l);
3174 ok(hres == S_OK, "get_right failed: %08x\n", hres);
3175 ok(l != 0xdeadbeef, "l = 0xdeadbeef\n");
3177 IHTMLRect_Release(rect);
3180 static void test_elem_col_item(IHTMLElementCollection *col, const char *n,
3181 const elem_type_t *elem_types, LONG len)
3184 VARIANT name, index;
3188 V_VT(&index) = VT_EMPTY;
3189 V_VT(&name) = VT_BSTR;
3190 V_BSTR(&name) = a2bstr(n);
3192 hres = IHTMLElementCollection_item(col, name, index, &disp);
3193 ok(hres == S_OK, "item failed: %08x\n", hres);
3195 test_elem_collection((IUnknown*)disp, elem_types, len);
3196 IDispatch_Release(disp);
3197 ok(hres == S_OK, "Could not get IHTMLElementCollection interface: %08x\n", hres);
3201 V_VT(&index) = VT_I4;
3203 for(i=0; i<len; i++) {
3205 disp = (void*)0xdeadbeef;
3206 hres = IHTMLElementCollection_item(col, name, index, &disp);
3207 ok(hres == S_OK, "item failed: %08x\n", hres);
3208 ok(disp != NULL, "disp == NULL\n");
3209 if(FAILED(hres) || !disp)
3212 test_elem_type((IUnknown*)disp, elem_types[i]);
3214 IDispatch_Release(disp);
3218 disp = (void*)0xdeadbeef;
3219 hres = IHTMLElementCollection_item(col, name, index, &disp);
3220 ok(hres == S_OK, "item failed: %08x\n", hres);
3221 ok(disp == NULL, "disp != NULL\n");
3224 disp = (void*)0xdeadbeef;
3225 hres = IHTMLElementCollection_item(col, name, index, &disp);
3226 ok(hres == E_INVALIDARG, "item failed: %08x, expected E_INVALIDARG\n", hres);
3227 ok(disp == NULL, "disp != NULL\n");
3230 SysFreeString(V_BSTR(&name));
3233 static IHTMLElement *get_elem_by_id(IHTMLDocument2 *doc, const char *id, BOOL expect_success)
3235 IHTMLElementCollection *col;
3237 IDispatch *disp = (void*)0xdeadbeef;
3238 VARIANT name, index;
3241 hres = IHTMLDocument2_get_all(doc, &col);
3242 ok(hres == S_OK, "get_all failed: %08x\n", hres);
3243 ok(col != NULL, "col == NULL\n");
3244 if(FAILED(hres) || !col)
3247 V_VT(&index) = VT_EMPTY;
3248 V_VT(&name) = VT_BSTR;
3249 V_BSTR(&name) = a2bstr(id);
3251 hres = IHTMLElementCollection_item(col, name, index, &disp);
3252 IHTMLElementCollection_Release(col);
3253 SysFreeString(V_BSTR(&name));
3254 ok(hres == S_OK, "item failed: %08x\n", hres);
3255 if(!expect_success) {
3256 ok(disp == NULL, "disp != NULL\n");
3260 ok(disp != NULL, "disp == NULL\n");
3264 elem = get_elem_iface((IUnknown*)disp);
3265 IDispatch_Release(disp);
3270 static IHTMLElement *get_doc_elem_by_id(IHTMLDocument2 *doc, const char *id)
3272 IHTMLDocument3 *doc3;
3277 hres = IHTMLDocument2_QueryInterface(doc, &IID_IHTMLDocument3, (void**)&doc3);
3278 ok(hres == S_OK, "Could not get IHTMLDocument3 iface: %08x\n", hres);
3281 hres = IHTMLDocument3_getElementById(doc3, tmp, &elem);
3283 ok(hres == S_OK, "getElementById(%s) failed: %08x\n", id, hres);
3285 IHTMLDocument3_Release(doc3);
3290 static void test_select_elem(IHTMLSelectElement *select)
3292 IDispatch *disp, *disp2;
3293 VARIANT name, index;
3296 test_select_type(select, "select-one");
3297 test_select_length(select, 2);
3298 test_select_selidx(select, 0);
3299 test_select_put_selidx(select, 1);
3301 test_select_set_value(select, "val1");
3302 test_select_value(select, "val1");
3304 test_select_get_disabled(select, VARIANT_FALSE);
3305 test_select_set_disabled(select, VARIANT_TRUE);
3306 test_select_set_disabled(select, VARIANT_FALSE);
3309 hres = IHTMLSelectElement_get_options(select, &disp);
3310 ok(hres == S_OK, "get_options failed: %08x\n", hres);
3311 ok(disp != NULL, "options == NULL\n");
3312 ok(iface_cmp((IUnknown*)disp, (IUnknown*)select), "disp != select\n");
3313 IDispatch_Release(disp);
3315 V_VT(&index) = VT_EMPTY;
3316 V_VT(&name) = VT_I4;
3318 disp = (void*)0xdeadbeef;
3319 hres = IHTMLSelectElement_item(select, name, index, &disp);
3320 ok(hres == E_INVALIDARG, "item failed: %08x, expected E_INVALIDARG\n", hres);
3321 ok(!disp, "disp = %p\n", disp);
3324 disp = (void*)0xdeadbeef;
3325 hres = IHTMLSelectElement_item(select, name, index, &disp);
3326 ok(hres == S_OK, "item failed: %08x\n", hres);
3327 ok(!disp, "disp = %p\n", disp);
3330 hres = IHTMLSelectElement_item(select, name, index, NULL);
3331 ok(hres == E_POINTER || broken(hres == E_INVALIDARG), "item failed: %08x, expected E_POINTER\n", hres);
3334 hres = IHTMLSelectElement_item(select, name, index, &disp);
3335 ok(hres == S_OK, "item failed: %08x\n", hres);
3336 ok(disp != NULL, "disp = NULL\n");
3337 test_disp((IUnknown*)disp, &DIID_DispHTMLOptionElement, NULL);
3339 V_VT(&index) = VT_I4;
3342 hres = IHTMLSelectElement_item(select, name, index, &disp2);
3343 ok(hres == S_OK, "item failed: %08x\n", hres);
3344 ok(disp2 != NULL, "disp = NULL\n");
3345 ok(iface_cmp((IUnknown*)disp, (IUnknown*)disp2), "disp != disp2\n");
3346 IDispatch_Release(disp2);
3347 IDispatch_Release(disp);
3350 static void test_form_item(IHTMLElement *elem)
3352 IHTMLFormElement *form = get_form_iface((IUnknown*)elem);
3353 IDispatch *disp, *disp2;
3354 VARIANT name, index;
3357 V_VT(&index) = VT_EMPTY;
3358 V_VT(&name) = VT_I4;
3360 disp = (void*)0xdeadbeef;
3361 hres = IHTMLFormElement_item(form, name, index, &disp);
3362 ok(hres == E_INVALIDARG, "item failed: %08x, expected E_INVALIDARG\n", hres);
3363 ok(!disp, "disp = %p\n", disp);
3366 disp = (void*)0xdeadbeef;
3367 hres = IHTMLFormElement_item(form, name, index, &disp);
3368 ok(hres == S_OK, "item failed: %08x\n", hres);
3369 ok(!disp, "disp = %p\n", disp);
3372 hres = IHTMLFormElement_item(form, name, index, NULL);
3373 ok(hres == E_INVALIDARG, "item failed: %08x, expected E_INVALIDARG\n", hres);
3376 hres = IHTMLFormElement_item(form, name, index, &disp);
3377 ok(hres == S_OK, "item failed: %08x\n", hres);
3378 ok(disp != NULL, "disp = NULL\n");
3379 test_disp((IUnknown*)disp, &DIID_DispHTMLInputElement, NULL);
3381 V_VT(&index) = VT_I4;
3384 hres = IHTMLFormElement_item(form, name, index, &disp2);
3385 ok(hres == S_OK, "item failed: %08x\n", hres);
3386 ok(disp2 != NULL, "disp = NULL\n");
3387 ok(iface_cmp((IUnknown*)disp, (IUnknown*)disp2), "disp != disp2\n");
3388 IDispatch_Release(disp2);
3389 IDispatch_Release(disp);
3392 static void test_create_option_elem(IHTMLDocument2 *doc)
3394 IHTMLOptionElement *option;
3396 option = create_option_elem(doc, "test text", "test value");
3398 test_option_put_text(option, "new text");
3399 test_option_put_value(option, "new value");
3400 test_option_put_selected(option, VARIANT_TRUE);
3401 test_option_put_selected(option, VARIANT_FALSE);
3403 IHTMLOptionElement_Release(option);
3406 static void test_create_img_elem(IHTMLDocument2 *doc)
3408 IHTMLImgElement *img;
3410 img = create_img_elem(doc, 10, 15);
3413 test_img_put_width(img, 5);
3414 test_img_put_height(img, 20);
3416 IHTMLImgElement_Release(img);
3420 img = create_img_elem(doc, -1, -1);
3423 test_img_put_width(img, 5);
3424 test_img_put_height(img, 20);
3426 IHTMLImgElement_Release(img);
3430 static IHTMLTxtRange *test_create_body_range(IHTMLDocument2 *doc)
3432 IHTMLBodyElement *body;
3433 IHTMLTxtRange *range;
3437 elem = doc_get_body(doc);
3438 hres = IHTMLElement_QueryInterface(elem, &IID_IHTMLBodyElement, (void**)&body);
3439 IHTMLElement_Release(elem);
3441 hres = IHTMLBodyElement_createTextRange(body, &range);
3442 IHTMLBodyElement_Release(body);
3443 ok(hres == S_OK, "createTextRange failed: %08x\n", hres);
3448 static void test_txtrange(IHTMLDocument2 *doc)
3450 IHTMLTxtRange *body_range, *range, *range2;
3451 IHTMLSelectionObject *selection;
3452 IDispatch *disp_range;
3455 body_range = test_create_body_range(doc);
3457 test_range_text(body_range, "test abc 123\r\nit's text");
3459 hres = IHTMLTxtRange_duplicate(body_range, &range);
3460 ok(hres == S_OK, "duplicate failed: %08x\n", hres);
3462 hres = IHTMLTxtRange_duplicate(body_range, &range2);
3463 ok(hres == S_OK, "duplicate failed: %08x\n", hres);
3464 test_range_isequal(range, range2, VARIANT_TRUE);
3466 test_range_text(range, "test abc 123\r\nit's text");
3467 test_range_text(body_range, "test abc 123\r\nit's text");
3469 test_range_collapse(range, TRUE);
3470 test_range_isequal(range, range2, VARIANT_FALSE);
3471 test_range_inrange(range, range2, VARIANT_FALSE);
3472 test_range_inrange(range2, range, VARIANT_TRUE);
3473 IHTMLTxtRange_Release(range2);
3475 test_range_expand(range, wordW, VARIANT_TRUE, "test ");
3476 test_range_expand(range, wordW, VARIANT_FALSE, "test ");
3477 test_range_move(range, characterW, 2, 2);
3478 test_range_expand(range, wordW, VARIANT_TRUE, "test ");
3480 test_range_collapse(range, FALSE);
3481 test_range_expand(range, wordW, VARIANT_TRUE, "abc ");
3483 test_range_collapse(range, FALSE);
3484 test_range_expand(range, wordW, VARIANT_TRUE, "123");
3485 test_range_expand(range, wordW, VARIANT_FALSE, "123");
3486 test_range_move(range, characterW, 2, 2);
3487 test_range_expand(range, wordW, VARIANT_TRUE, "123");
3488 test_range_moveend(range, characterW, -5, -5);
3489 test_range_text(range, NULL);
3490 test_range_moveend(range, characterW, 3, 3);
3491 test_range_text(range, "c 1");
3492 test_range_expand(range, texteditW, VARIANT_TRUE, "test abc 123\r\nit's text");
3493 test_range_collapse(range, TRUE);
3494 test_range_move(range, characterW, 4, 4);
3495 test_range_moveend(range, characterW, 1, 1);
3496 test_range_text(range, " ");
3497 test_range_move(range, wordW, 1, 1);
3498 test_range_moveend(range, characterW, 2, 2);
3499 test_range_text(range, "ab");
3501 IHTMLTxtRange_Release(range);
3503 hres = IHTMLTxtRange_duplicate(body_range, &range);
3504 ok(hres == S_OK, "duplicate failed: %08x\n", hres);
3506 test_range_text(range, "test abc 123\r\nit's text");
3507 test_range_move(range, characterW, 3, 3);
3508 test_range_moveend(range, characterW, 1, 1);
3509 test_range_text(range, "t");
3510 test_range_moveend(range, characterW, 3, 3);
3511 test_range_text(range, "t ab");
3512 test_range_moveend(range, characterW, -2, -2);
3513 test_range_text(range, "t ");
3514 test_range_move(range, characterW, 6, 6);
3515 test_range_moveend(range, characterW, 3, 3);
3516 test_range_text(range, "123");
3517 test_range_moveend(range, characterW, 2, 2);
3518 test_range_text(range, "123\r\ni");
3520 IHTMLTxtRange_Release(range);
3522 hres = IHTMLTxtRange_duplicate(body_range, &range);
3523 ok(hres == S_OK, "duplicate failed: %08x\n", hres);
3525 test_range_move(range, wordW, 1, 1);
3526 test_range_moveend(range, characterW, 2, 2);
3527 test_range_text(range, "ab");
3529 test_range_move(range, characterW, -2, -2);
3530 test_range_moveend(range, characterW, 2, 2);
3531 test_range_text(range, "t ");
3533 test_range_move(range, wordW, 3, 3);
3534 test_range_move(range, wordW, -2, -2);
3535 test_range_moveend(range, characterW, 2, 2);
3536 test_range_text(range, "ab");
3538 test_range_move(range, characterW, -6, -5);
3539 test_range_moveend(range, characterW, -1, 0);
3540 test_range_moveend(range, characterW, -6, 0);
3541 test_range_move(range, characterW, 2, 2);
3542 test_range_moveend(range, characterW, 2, 2);
3543 test_range_text(range, "st");
3544 test_range_moveend(range, characterW, -6, -4);
3545 test_range_moveend(range, characterW, 2, 2);
3547 IHTMLTxtRange_Release(range);
3549 hres = IHTMLTxtRange_duplicate(body_range, &range);
3550 ok(hres == S_OK, "duplicate failed: %08x\n", hres);
3552 test_range_move(range, wordW, 2, 2);
3553 test_range_moveend(range, characterW, 2, 2);
3554 test_range_text(range, "12");
3556 test_range_move(range, characterW, 15, 14);
3557 test_range_move(range, characterW, -2, -2);
3558 test_range_moveend(range, characterW, 3, 2);
3559 test_range_text(range, "t");
3560 test_range_moveend(range, characterW, -1, -1);
3561 test_range_text(range, "t");
3562 test_range_expand(range, wordW, VARIANT_TRUE, "text");
3563 test_range_move(range, characterW, -2, -2);
3564 test_range_moveend(range, characterW, 2, 2);
3565 test_range_text(range, "s ");
3566 test_range_move(range, characterW, 100, 7);
3567 test_range_move(range, wordW, 1, 0);
3568 test_range_move(range, characterW, -2, -2);
3569 test_range_moveend(range, characterW, 3, 2);
3570 test_range_text(range, "t");
3572 IHTMLTxtRange_Release(range);
3574 hres = IHTMLTxtRange_duplicate(body_range, &range);
3575 ok(hres == S_OK, "duplicate failed: %08x\n", hres);
3577 test_range_collapse(range, TRUE);
3578 test_range_expand(range, wordW, VARIANT_TRUE, "test ");
3579 test_range_put_text(range, "word");
3580 test_range_text(body_range, "wordabc 123\r\nit's text");
3581 test_range_text(range, NULL);
3582 test_range_moveend(range, characterW, 3, 3);
3583 test_range_text(range, "abc");
3584 test_range_movestart(range, characterW, -2, -2);
3585 test_range_text(range, "rdabc");
3586 test_range_movestart(range, characterW, 3, 3);
3587 test_range_text(range, "bc");
3588 test_range_movestart(range, characterW, 4, 4);
3589 test_range_text(range, NULL);
3590 test_range_movestart(range, characterW, -3, -3);
3591 test_range_text(range, "c 1");
3592 test_range_movestart(range, characterW, -7, -6);
3593 test_range_text(range, "wordabc 1");
3594 test_range_movestart(range, characterW, 100, 22);
3595 test_range_text(range, NULL);
3597 IHTMLTxtRange_Release(range);
3598 IHTMLTxtRange_Release(body_range);
3600 hres = IHTMLDocument2_get_selection(doc, &selection);
3601 ok(hres == S_OK, "IHTMLDocument2_get_selection failed: %08x\n", hres);
3603 hres = IHTMLSelectionObject_createRange(selection, &disp_range);
3604 ok(hres == S_OK, "IHTMLSelectionObject_createRange failed: %08x\n", hres);
3605 IHTMLSelectionObject_Release(selection);
3607 hres = IDispatch_QueryInterface(disp_range, &IID_IHTMLTxtRange, (void **)&range);
3608 ok(hres == S_OK, "Could not get IID_IHTMLTxtRange interface: 0x%08x\n", hres);
3609 IDispatch_Release(disp_range);
3611 test_range_text(range, NULL);
3612 test_range_moveend(range, characterW, 3, 3);
3613 test_range_text(range, "wor");
3614 test_range_parent(range, ET_BODY);
3615 test_range_expand(range, texteditW, VARIANT_TRUE, "wordabc 123\r\nit's text");
3616 test_range_expand(range, texteditW, VARIANT_TRUE, "wordabc 123\r\nit's text");
3617 test_range_move(range, characterW, 3, 3);
3618 test_range_expand(range, wordW, VARIANT_TRUE, "wordabc ");
3619 test_range_moveend(range, characterW, -4, -4);
3620 test_range_put_text(range, "abc def ");
3621 test_range_expand(range, texteditW, VARIANT_TRUE, "abc def abc 123\r\nit's text");
3622 test_range_move(range, wordW, 1, 1);
3623 test_range_movestart(range, characterW, -1, -1);
3624 test_range_text(range, " ");
3625 test_range_move(range, wordW, 1, 1);
3626 test_range_moveend(range, characterW, 3, 3);
3627 test_range_text(range, "def");
3628 test_range_put_text(range, "xyz");
3629 test_range_moveend(range, characterW, 1, 1);
3630 test_range_move(range, wordW, 1, 1);
3631 test_range_moveend(range, characterW, 2, 2);
3632 test_range_text(range, "ab");
3634 IHTMLTxtRange_Release(range);
3637 static void test_txtrange2(IHTMLDocument2 *doc)
3639 IHTMLTxtRange *range;
3641 range = test_create_body_range(doc);
3643 test_range_text(range, "abc\r\n\r\n123\r\n\r\n\r\ndef");
3644 test_range_move(range, characterW, 5, 5);
3645 test_range_moveend(range, characterW, 1, 1);
3646 test_range_text(range, "2");
3647 test_range_move(range, characterW, -3, -3);
3648 test_range_moveend(range, characterW, 3, 3);
3649 test_range_text(range, "c\r\n\r\n1");
3650 test_range_collapse(range, VARIANT_FALSE);
3651 test_range_moveend(range, characterW, 4, 4);
3652 test_range_text(range, "23");
3653 test_range_moveend(range, characterW, 1, 1);
3654 test_range_text(range, "23\r\n\r\n\r\nd");
3655 test_range_moveend(range, characterW, -1, -1);
3656 test_range_text(range, "23");
3657 test_range_moveend(range, characterW, -1, -1);
3658 test_range_text(range, "23");
3659 test_range_moveend(range, characterW, -2, -2);
3660 test_range_text(range, "2");
3662 IHTMLTxtRange_Release(range);
3665 static void test_compatmode(IHTMLDocument2 *doc)
3667 IHTMLDocument5 *doc5;
3671 hres = IHTMLDocument2_QueryInterface(doc, &IID_IHTMLDocument5, (void**)&doc5);
3672 ok(hres == S_OK, "Could not get IHTMLDocument5 interface: %08x\n", hres);
3676 hres = IHTMLDocument5_get_compatMode(doc5, &mode);
3677 IHTMLDocument5_Release(doc5);
3678 ok(hres == S_OK, "get_compatMode failed: %08x\n", hres);
3679 ok(!strcmp_wa(mode, "BackCompat"), "compatMode=%s\n", wine_dbgstr_w(mode));
3680 SysFreeString(mode);
3683 static void test_location(IHTMLDocument2 *doc)
3685 IHTMLLocation *location, *location2;
3686 IHTMLWindow2 *window;
3691 hres = IHTMLDocument2_get_location(doc, &location);
3692 ok(hres == S_OK, "get_location failed: %08x\n", hres);
3694 hres = IHTMLDocument2_get_location(doc, &location2);
3695 ok(hres == S_OK, "get_location failed: %08x\n", hres);
3697 ok(location == location2, "location != location2\n");
3698 IHTMLLocation_Release(location2);
3700 hres = IHTMLDocument2_get_parentWindow(doc, &window);
3701 ok(hres == S_OK, "get_parentWindow failed: %08x\n", hres);
3703 hres = IHTMLWindow2_get_location(window, &location2);
3704 ok(hres == S_OK, "get_location failed: %08x\n", hres);
3705 ok(location == location2, "location != location2\n");
3706 IHTMLLocation_Release(location2);
3708 test_ifaces((IUnknown*)location, location_iids);
3709 test_disp2((IUnknown*)location, &DIID_DispHTMLLocation, &IID_IHTMLLocation, "about:blank");
3711 hres = IHTMLLocation_get_pathname(location, &str);
3712 ok(hres == S_OK, "get_pathname failed: %08x\n", hres);
3713 ok(!strcmp_wa(str, "blank"), "unexpected pathname %s\n", wine_dbgstr_w(str));
3716 hres = IHTMLLocation_get_href(location, NULL);
3717 ok(hres == E_POINTER, "get_href passed: %08x\n", hres);
3719 hres = IHTMLLocation_get_href(location, &str);
3720 ok(hres == S_OK, "get_href failed: %08x\n", hres);
3721 ok(!strcmp_wa(str, "about:blank"), "unexpected href %s\n", wine_dbgstr_w(str));
3724 ref = IHTMLLocation_Release(location);
3725 ok(!ref, "location chould be destroyed here\n");
3728 static void test_plugins_col(IOmNavigator *nav)
3730 IHTMLPluginsCollection *col, *col2;
3734 hres = IOmNavigator_get_plugins(nav, &col);
3735 ok(hres == S_OK, "get_plugins failed: %08x\n", hres);
3737 hres = IOmNavigator_get_plugins(nav, &col2);
3738 ok(hres == S_OK, "get_plugins failed: %08x\n", hres);
3739 ok(iface_cmp((IUnknown*)col, (IUnknown*)col2), "col != col2\n");
3740 IHTMLPluginsCollection_Release(col2);
3742 test_disp2((IUnknown*)col, &DIID_DispCPlugins, &IID_IHTMLPluginsCollection, "[object]");
3744 ref = IHTMLPluginsCollection_Release(col);
3745 ok(!ref, "ref=%d\n", ref);
3748 static void test_navigator(IHTMLDocument2 *doc)
3750 IHTMLWindow2 *window;
3751 IOmNavigator *navigator, *navigator2;
3758 static const WCHAR v40[] = {'4','.','0'};
3760 hres = IHTMLDocument2_get_parentWindow(doc, &window);
3761 ok(hres == S_OK, "parentWidnow failed: %08x\n", hres);
3763 hres = IHTMLWindow2_get_navigator(window, &navigator);
3764 ok(hres == S_OK, "get_navigator failed: %08x\n", hres);
3765 ok(navigator != NULL, "navigator == NULL\n");
3766 test_disp2((IUnknown*)navigator, &DIID_DispHTMLNavigator, &IID_IOmNavigator, "[object]");
3768 hres = IHTMLWindow2_get_navigator(window, &navigator2);
3769 ok(hres == S_OK, "get_navigator failed: %08x\n", hres);
3770 ok(navigator != navigator2, "navigator2 != navihgator\n");
3772 IHTMLWindow2_Release(window);
3773 IOmNavigator_Release(navigator2);
3775 hres = IOmNavigator_get_appCodeName(navigator, &bstr);
3776 ok(hres == S_OK, "get_appCodeName failed: %08x\n", hres);
3777 ok(!strcmp_wa(bstr, "Mozilla"), "Unexpected appCodeName %s\n", wine_dbgstr_w(bstr));
3778 SysFreeString(bstr);
3781 hres = IOmNavigator_get_appName(navigator, &bstr);
3782 ok(hres == S_OK, "get_appName failed: %08x\n", hres);
3783 ok(!strcmp_wa(bstr, "Microsoft Internet Explorer"), "Unexpected appCodeName %s\n", wine_dbgstr_w(bstr));
3784 SysFreeString(bstr);
3787 hres = IOmNavigator_get_platform(navigator, &bstr);
3788 ok(hres == S_OK, "get_platform failed: %08x\n", hres);
3790 ok(!strcmp_wa(bstr, "Win64") || broken(!strcmp_wa(bstr, "Win32") /* IE6 */), "unexpected platform %s\n", wine_dbgstr_w(bstr));
3792 ok(!strcmp_wa(bstr, "Win32"), "unexpected platform %s\n", wine_dbgstr_w(bstr));
3794 SysFreeString(bstr);
3797 hres = IOmNavigator_get_appVersion(navigator, &bstr);
3798 ok(hres == S_OK, "get_appVersion failed: %08x\n", hres);
3799 ok(!memcmp(bstr, v40, sizeof(v40)), "appVersion is %s\n", wine_dbgstr_w(bstr));
3800 SysFreeString(bstr);
3802 hres = IOmNavigator_toString(navigator, NULL);
3803 ok(hres == E_INVALIDARG, "toString failed: %08x\n", hres);
3806 hres = IOmNavigator_toString(navigator, &bstr);
3807 ok(hres == S_OK, "toString failed: %08x\n", hres);
3808 ok(!strcmp_wa(bstr, "[object]"), "toString returned %s\n", wine_dbgstr_w(bstr));
3809 SysFreeString(bstr);
3812 hres = ObtainUserAgentString(0, buf, &size);
3813 ok(hres == S_OK, "ObtainUserAgentString failed: %08x\n", hres);
3816 hres = IOmNavigator_get_userAgent(navigator, &bstr);
3817 ok(hres == S_OK, "get_userAgent failed: %08x\n", hres);
3818 ok(!strcmp_wa(bstr, buf), "userAgent returned %s, expected \"%s\"\n", wine_dbgstr_w(bstr), buf);
3819 SysFreeString(bstr);
3821 if(!strncmp(buf, "Mozilla/", 8)) {
3823 hres = IOmNavigator_get_appVersion(navigator, &bstr);
3824 ok(hres == S_OK, "get_appVersion failed: %08x\n", hres);
3825 ok(!strcmp_wa(bstr, buf+8), "appVersion returned %s, expected \"%s\"\n", wine_dbgstr_w(bstr), buf+8);
3826 SysFreeString(bstr);
3828 skip("nonstandard user agent\n");
3831 test_plugins_col(navigator);
3833 ref = IOmNavigator_Release(navigator);
3834 ok(!ref, "navigator should be destroyed here\n");
3837 static void test_screen(IHTMLWindow2 *window)
3839 IHTMLScreen *screen, *screen2;
3840 IDispatchEx *dispex;
3846 hres = IHTMLWindow2_get_screen(window, &screen);
3847 ok(hres == S_OK, "get_screen failed: %08x\n", hres);
3848 ok(screen != NULL, "screen == NULL\n");
3851 hres = IHTMLWindow2_get_screen(window, &screen2);
3852 ok(hres == S_OK, "get_screen failed: %08x\n", hres);
3853 ok(screen2 != NULL, "screen == NULL\n");
3854 ok(iface_cmp((IUnknown*)screen2, (IUnknown*)screen), "screen2 != screen\n");
3855 IHTMLScreen_Release(screen2);
3857 hres = IHTMLScreen_QueryInterface(screen, &IID_IDispatchEx, (void**)&dispex);
3858 ok(hres == S_OK || broken(hres == E_NOINTERFACE), "Could not get IDispatchEx interface: %08x\n", hres);
3859 if(SUCCEEDED(hres)) {
3860 test_disp((IUnknown*)screen, &DIID_DispHTMLScreen, "[object]");
3861 IDispatchEx_Release(dispex);
3864 hdc = CreateICA("DISPLAY", NULL, NULL, NULL);
3866 exl = GetDeviceCaps(hdc, HORZRES);
3868 hres = IHTMLScreen_get_width(screen, &l);
3869 ok(hres == S_OK, "get_width failed: %08x\n", hres);
3870 ok(l == exl, "width = %d, expected %d\n", l, exl);
3872 exl = GetDeviceCaps(hdc, VERTRES);
3874 hres = IHTMLScreen_get_height(screen, &l);
3875 ok(hres == S_OK, "get_height failed: %08x\n", hres);
3876 ok(l == exl, "height = %d, expected %d\n", l, exl);
3878 exl = GetDeviceCaps(hdc, BITSPIXEL);
3880 hres = IHTMLScreen_get_colorDepth(screen, &l);
3881 ok(hres == S_OK, "get_height failed: %08x\n", hres);
3882 ok(l == exl, "height = %d, expected %d\n", l, exl);
3886 IHTMLScreen_Release(screen);
3889 static void test_current_style(IHTMLCurrentStyle *current_style)
3895 test_disp((IUnknown*)current_style, &DIID_DispHTMLCurrentStyle, "[object]");
3896 test_ifaces((IUnknown*)current_style, cstyle_iids);
3898 hres = IHTMLCurrentStyle_get_display(current_style, &str);
3899 ok(hres == S_OK, "get_display failed: %08x\n", hres);
3900 ok(!strcmp_wa(str, "block"), "get_display returned %s\n", wine_dbgstr_w(str));
3903 hres = IHTMLCurrentStyle_get_position(current_style, &str);
3904 ok(hres == S_OK, "get_position failed: %08x\n", hres);
3905 ok(!strcmp_wa(str, "absolute"), "get_position returned %s\n", wine_dbgstr_w(str));
3908 hres = IHTMLCurrentStyle_get_fontFamily(current_style, &str);
3909 ok(hres == S_OK, "get_fontFamily failed: %08x\n", hres);
3912 hres = IHTMLCurrentStyle_get_fontStyle(current_style, &str);
3913 ok(hres == S_OK, "get_fontStyle failed: %08x\n", hres);
3914 ok(!strcmp_wa(str, "normal"), "get_fontStyle returned %s\n", wine_dbgstr_w(str));
3917 hres = IHTMLCurrentStyle_get_backgroundImage(current_style, &str);
3918 ok(hres == S_OK, "get_backgroundImage failed: %08x\n", hres);
3919 ok(!strcmp_wa(str, "none"), "get_backgroundImage returned %s\n", wine_dbgstr_w(str));
3922 hres = IHTMLCurrentStyle_get_fontVariant(current_style, &str);
3923 ok(hres == S_OK, "get_fontVariant failed: %08x\n", hres);
3924 ok(!strcmp_wa(str, "normal"), "get_fontVariant returned %s\n", wine_dbgstr_w(str));
3927 hres = IHTMLCurrentStyle_get_borderTopStyle(current_style, &str);
3928 ok(hres == S_OK, "get_borderTopStyle failed: %08x\n", hres);
3929 ok(!strcmp_wa(str, "none"), "get_borderTopStyle returned %s\n", wine_dbgstr_w(str));
3932 hres = IHTMLCurrentStyle_get_borderRightStyle(current_style, &str);
3933 ok(hres == S_OK, "get_borderRightStyle failed: %08x\n", hres);
3934 ok(!strcmp_wa(str, "none"), "get_borderRightStyle returned %s\n", wine_dbgstr_w(str));
3937 hres = IHTMLCurrentStyle_get_borderBottomStyle(current_style, &str);
3938 ok(hres == S_OK, "get_borderBottomStyle failed: %08x\n", hres);
3939 ok(!strcmp_wa(str, "none"), "get_borderBottomStyle returned %s\n", wine_dbgstr_w(str));
3942 hres = IHTMLCurrentStyle_get_borderLeftStyle(current_style, &str);
3943 ok(hres == S_OK, "get_borderLeftStyle failed: %08x\n", hres);
3944 ok(!strcmp_wa(str, "none"), "get_borderLeftStyle returned %s\n", wine_dbgstr_w(str));
3947 hres = IHTMLCurrentStyle_get_textAlign(current_style, &str);
3948 ok(hres == S_OK, "get_textAlign failed: %08x\n", hres);
3949 ok(!strcmp_wa(str, "center"), "get_textAlign returned %s\n", wine_dbgstr_w(str));
3952 hres = IHTMLCurrentStyle_get_textDecoration(current_style, &str);
3953 ok(hres == S_OK, "get_textDecoration failed: %08x\n", hres);
3954 ok(!strcmp_wa(str, "none"), "get_textDecoration returned %s\n", wine_dbgstr_w(str));
3957 hres = IHTMLCurrentStyle_get_cursor(current_style, &str);
3958 ok(hres == S_OK, "get_cursor failed: %08x\n", hres);
3959 ok(!strcmp_wa(str, "default"), "get_cursor returned %s\n", wine_dbgstr_w(str));
3962 hres = IHTMLCurrentStyle_get_backgroundRepeat(current_style, &str);
3963 ok(hres == S_OK, "get_backgroundRepeat failed: %08x\n", hres);
3964 ok(!strcmp_wa(str, "repeat"), "get_backgroundRepeat returned %s\n", wine_dbgstr_w(str));
3967 hres = IHTMLCurrentStyle_get_borderColor(current_style, &str);
3968 ok(hres == S_OK, "get_borderColor failed: %08x\n", hres);
3971 hres = IHTMLCurrentStyle_get_borderStyle(current_style, &str);
3972 ok(hres == S_OK, "get_borderStyle failed: %08x\n", hres);
3975 hres = IHTMLCurrentStyle_get_visibility(current_style, &str);
3976 ok(hres == S_OK, "get_visibility failed: %08x\n", hres);
3979 hres = IHTMLCurrentStyle_get_overflow(current_style, &str);
3980 ok(hres == S_OK, "get_overflow failed: %08x\n", hres);
3983 hres = IHTMLCurrentStyle_get_borderWidth(current_style, &str);
3984 ok(hres == S_OK, "get_borderWidth failed: %08x\n", hres);
3987 hres = IHTMLCurrentStyle_get_margin(current_style, &str);
3988 ok(hres == S_OK, "get_margin failed: %08x\n", hres);
3991 hres = IHTMLCurrentStyle_get_fontWeight(current_style, &v);
3992 ok(hres == S_OK, "get_fontWeight failed: %08x\n", hres);
3993 ok(V_VT(&v) == VT_I4, "V_VT(v) = %d\n", V_VT(&v));
3994 ok( V_I4(&v) == 400, "expect 400 got (%d)\n", V_I4(&v));
3997 hres = IHTMLCurrentStyle_get_fontSize(current_style, &v);
3998 ok(hres == S_OK, "get_fontSize failed: %08x\n", hres);
3999 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
4002 hres = IHTMLCurrentStyle_get_left(current_style, &v);
4003 ok(hres == S_OK, "get_left failed: %08x\n", hres);
4004 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
4007 hres = IHTMLCurrentStyle_get_top(current_style, &v);
4008 ok(hres == S_OK, "get_top failed: %08x\n", hres);
4009 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
4012 hres = IHTMLCurrentStyle_get_width(current_style, &v);
4013 ok(hres == S_OK, "get_width failed: %08x\n", hres);
4014 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
4017 hres = IHTMLCurrentStyle_get_height(current_style, &v);
4018 ok(hres == S_OK, "get_height failed: %08x\n", hres);
4019 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
4022 hres = IHTMLCurrentStyle_get_paddingLeft(current_style, &v);
4023 ok(hres == S_OK, "get_paddingLeft failed: %08x\n", hres);
4024 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
4027 hres = IHTMLCurrentStyle_get_zIndex(current_style, &v);
4028 ok(hres == S_OK, "get_zIndex failed: %08x\n", hres);
4029 ok(V_VT(&v) == VT_I4, "V_VT(v) = %d\n", V_VT(&v));
4030 ok( V_I4(&v) == 1, "expect 1 got (%d)\n", V_I4(&v));
4033 hres = IHTMLCurrentStyle_get_verticalAlign(current_style, &v);
4034 ok(hres == S_OK, "get_verticalAlign failed: %08x\n", hres);
4035 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
4036 ok(!strcmp_wa(V_BSTR(&v), "middle"), "get_verticalAlign returned %s\n", wine_dbgstr_w(V_BSTR(&v)));
4039 hres = IHTMLCurrentStyle_get_marginRight(current_style, &v);
4040 ok(hres == S_OK, "get_marginRight failed: %08x\n", hres);
4041 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
4044 hres = IHTMLCurrentStyle_get_marginLeft(current_style, &v);
4045 ok(hres == S_OK, "get_marginLeft failed: %08x\n", hres);
4046 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
4049 hres = IHTMLCurrentStyle_get_borderLeftWidth(current_style, &v);
4050 ok(hres == S_OK, "get_borderLeftWidth failed: %08x\n", hres);
4051 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
4055 hres = IHTMLCurrentStyle_get_borderRightWidth(current_style, &v);
4056 ok(hres == S_OK, "get_borderRightWidth failed: %08x\n", hres);
4057 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
4060 hres = IHTMLCurrentStyle_get_borderBottomWidth(current_style, &v);
4061 ok(hres == S_OK, "get_borderBottomWidth failed: %08x\n", hres);
4062 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
4065 hres = IHTMLCurrentStyle_get_borderTopWidth(current_style, &v);
4066 ok(hres == S_OK, "get_borderTopWidth failed: %08x\n", hres);
4067 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
4070 hres = IHTMLCurrentStyle_get_color(current_style, &v);
4071 ok(hres == S_OK, "get_color failed: %08x\n", hres);
4072 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
4075 hres = IHTMLCurrentStyle_get_backgroundColor(current_style, &v);
4076 ok(hres == S_OK, "get_backgroundColor failed: %08x\n", hres);
4077 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
4080 hres = IHTMLCurrentStyle_get_borderLeftColor(current_style, &v);
4081 ok(hres == S_OK, "get_borderLeftColor failed: %08x\n", hres);
4082 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
4085 hres = IHTMLCurrentStyle_get_borderTopColor(current_style, &v);
4086 ok(hres == S_OK, "get_borderTopColor failed: %08x\n", hres);
4087 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
4090 hres = IHTMLCurrentStyle_get_borderRightColor(current_style, &v);
4091 ok(hres == S_OK, "get_borderRightColor failed: %08x\n", hres);
4092 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
4095 hres = IHTMLCurrentStyle_get_borderBottomColor(current_style, &v);
4096 ok(hres == S_OK, "get_borderBottomColor failed: %08x\n", hres);
4097 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
4100 hres = IHTMLCurrentStyle_get_paddingTop(current_style, &v);
4101 ok(hres == S_OK, "get_paddingTop failed: %08x\n", hres);
4102 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
4105 hres = IHTMLCurrentStyle_get_paddingRight(current_style, &v);
4106 ok(hres == S_OK, "get_paddingRight failed: %08x\n", hres);
4107 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
4110 hres = IHTMLCurrentStyle_get_paddingBottom(current_style, &v);
4111 ok(hres == S_OK, "get_paddingRight failed: %08x\n", hres);
4112 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
4115 hres = IHTMLCurrentStyle_get_letterSpacing(current_style, &v);
4116 ok(hres == S_OK, "get_letterSpacing failed: %08x\n", hres);
4117 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
4120 hres = IHTMLCurrentStyle_get_marginTop(current_style, &v);
4121 ok(hres == S_OK, "get_marginTop failed: %08x\n", hres);
4122 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
4125 hres = IHTMLCurrentStyle_get_marginBottom(current_style, &v);
4126 ok(hres == S_OK, "get_marginBottom failed: %08x\n", hres);
4127 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
4130 hres = IHTMLCurrentStyle_get_right(current_style, &v);
4131 ok(hres == S_OK, "get_Right failed: %08x\n", hres);
4132 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
4135 hres = IHTMLCurrentStyle_get_bottom(current_style, &v);
4136 ok(hres == S_OK, "get_bottom failed: %08x\n", hres);
4137 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
4140 hres = IHTMLCurrentStyle_get_lineHeight(current_style, &v);
4141 ok(hres == S_OK, "get_lineHeight failed: %08x\n", hres);
4142 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
4145 hres = IHTMLCurrentStyle_get_textIndent(current_style, &v);
4146 ok(hres == S_OK, "get_textIndent failed: %08x\n", hres);
4147 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
4151 static void test_style2(IHTMLStyle2 *style2)
4157 str = (void*)0xdeadbeef;
4158 hres = IHTMLStyle2_get_position(style2, &str);
4159 ok(hres == S_OK, "get_position failed: %08x\n", hres);
4160 ok(!str, "str != NULL\n");
4162 str = a2bstr("absolute");
4163 hres = IHTMLStyle2_put_position(style2, str);
4164 ok(hres == S_OK, "put_position failed: %08x\n", hres);
4168 hres = IHTMLStyle2_get_position(style2, &str);
4169 ok(hres == S_OK, "get_position failed: %08x\n", hres);
4170 ok(!strcmp_wa(str, "absolute"), "get_position returned %s\n", wine_dbgstr_w(str));
4174 V_VT(&v) = VT_EMPTY;
4175 hres = IHTMLStyle2_get_right(style2, &v);
4176 ok(hres == S_OK, "get_top failed: %08x\n", hres);
4177 ok(V_VT(&v) == VT_BSTR, "V_VT(right)=%d\n", V_VT(&v));
4178 ok(!V_BSTR(&v), "V_BSTR(right) != NULL\n");
4182 V_BSTR(&v) = a2bstr("3px");
4183 hres = IHTMLStyle2_put_right(style2, v);
4184 ok(hres == S_OK, "put_right failed: %08x\n", hres);
4187 V_VT(&v) = VT_EMPTY;
4188 hres = IHTMLStyle2_get_right(style2, &v);
4189 ok(hres == S_OK, "get_right failed: %08x\n", hres);
4190 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
4191 ok(!strcmp_wa(V_BSTR(&v), "3px"), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
4195 static void test_style3(IHTMLStyle3 *style3)
4200 str = (void*)0xdeadbeef;
4201 hres = IHTMLStyle3_get_wordWrap(style3, &str);
4202 ok(hres == S_OK, "get_wordWrap failed: %08x\n", hres);
4203 ok(!str, "str != NULL\n");
4205 str = a2bstr("break-word");
4206 hres = IHTMLStyle3_put_wordWrap(style3, str);
4207 ok(hres == S_OK, "put_wordWrap failed: %08x\n", hres);
4211 hres = IHTMLStyle3_get_wordWrap(style3, &str);
4212 ok(hres == S_OK, "get_wordWrap failed: %08x\n", hres);
4213 ok(!strcmp_wa(str, "break-word"), "get_wordWrap returned %s\n", wine_dbgstr_w(str));
4217 static void test_style4(IHTMLStyle4 *style4)
4223 hres = IHTMLStyle4_get_minHeight(style4, &vdefault);
4224 ok(hres == S_OK, "get_minHeight failed: %08x\n", hres);
4227 V_BSTR(&v) = a2bstr("10px");
4228 hres = IHTMLStyle4_put_minHeight(style4, v);
4229 ok(hres == S_OK, "put_minHeight failed: %08x\n", hres);
4232 hres = IHTMLStyle4_get_minHeight(style4, &v);
4233 ok(hres == S_OK, "get_minHeight failed: %08x\n", hres);
4234 ok(V_VT(&v) == VT_BSTR, "V_VT(v) = %d\n", V_VT(&v));
4235 ok( !strcmp_wa(V_BSTR(&v), "10px"), "expect 10px got (%s)\n", wine_dbgstr_w(V_BSTR(&v)));
4238 hres = IHTMLStyle4_put_minHeight(style4, vdefault);
4239 ok(hres == S_OK, "put_minHeight failed: %08x\n", hres);
4240 VariantClear(&vdefault);
4243 static void test_default_style(IHTMLStyle *style)
4245 IHTMLStyle2 *style2;
4246 IHTMLStyle3 *style3;
4247 IHTMLStyle4 *style4;
4253 BSTR sOverflowDefault;
4257 test_disp((IUnknown*)style, &DIID_DispHTMLStyle, "[object]");
4258 test_ifaces((IUnknown*)style, style_iids);
4260 test_style_csstext(style, NULL);
4262 hres = IHTMLStyle_get_position(style, &str);
4263 ok(hres == S_OK, "get_position failed: %08x\n", hres);
4264 ok(!str, "str=%s\n", wine_dbgstr_w(str));
4267 hres = IHTMLStyle_get_marginRight(style, &v);
4268 ok(hres == S_OK, "get_marginRight failed: %08x\n", hres);
4269 ok(V_VT(&v) == VT_BSTR, "V_VT(marginRight) = %d\n", V_VT(&v));
4270 ok(!V_BSTR(&v), "V_BSTR(marginRight) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
4273 hres = IHTMLStyle_get_marginLeft(style, &v);
4274 ok(hres == S_OK, "get_marginLeft failed: %08x\n", hres);
4275 ok(V_VT(&v) == VT_BSTR, "V_VT(marginLeft) = %d\n", V_VT(&v));
4276 ok(!V_BSTR(&v), "V_BSTR(marginLeft) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
4278 str = (void*)0xdeadbeef;
4279 hres = IHTMLStyle_get_fontFamily(style, &str);
4280 ok(hres == S_OK, "get_fontFamily failed: %08x\n", hres);
4281 ok(!str, "fontFamily = %s\n", wine_dbgstr_w(str));
4283 str = (void*)0xdeadbeef;
4284 hres = IHTMLStyle_get_fontWeight(style, &str);
4285 ok(hres == S_OK, "get_fontWeight failed: %08x\n", hres);
4286 ok(!str, "fontWeight = %s\n", wine_dbgstr_w(str));
4288 hres = IHTMLStyle_get_fontWeight(style, &sDefault);
4289 ok(hres == S_OK, "get_fontWeight failed: %08x\n", hres);
4291 str = a2bstr("test");
4292 hres = IHTMLStyle_put_fontWeight(style, str);
4293 ok(hres == E_INVALIDARG, "put_fontWeight failed: %08x\n", hres);
4296 str = a2bstr("bold");
4297 hres = IHTMLStyle_put_fontWeight(style, str);
4298 ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
4301 str = a2bstr("bolder");
4302 hres = IHTMLStyle_put_fontWeight(style, str);
4303 ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
4306 str = a2bstr("lighter");
4307 hres = IHTMLStyle_put_fontWeight(style, str);
4308 ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
4311 str = a2bstr("100");
4312 hres = IHTMLStyle_put_fontWeight(style, str);
4313 ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
4316 str = a2bstr("200");
4317 hres = IHTMLStyle_put_fontWeight(style, str);
4318 ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
4321 str = a2bstr("300");
4322 hres = IHTMLStyle_put_fontWeight(style, str);
4323 ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
4326 str = a2bstr("400");
4327 hres = IHTMLStyle_put_fontWeight(style, str);
4328 ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
4331 str = a2bstr("500");
4332 hres = IHTMLStyle_put_fontWeight(style, str);
4333 ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
4336 str = a2bstr("600");
4337 hres = IHTMLStyle_put_fontWeight(style, str);
4338 ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
4341 str = a2bstr("700");
4342 hres = IHTMLStyle_put_fontWeight(style, str);
4343 ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
4346 str = a2bstr("800");
4347 hres = IHTMLStyle_put_fontWeight(style, str);
4348 ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
4351 str = a2bstr("900");
4352 hres = IHTMLStyle_put_fontWeight(style, str);
4353 ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
4356 hres = IHTMLStyle_get_fontWeight(style, &str);
4357 ok(hres == S_OK, "get_fontWeight failed: %08x\n", hres);
4358 ok(!strcmp_wa(str, "900"), "str != style900\n");
4361 hres = IHTMLStyle_put_fontWeight(style, sDefault);
4362 ok(hres == S_OK, "put_fontWeight failed: %08x\n", hres);
4363 SysFreeString(sDefault);
4366 hres = IHTMLStyle_get_fontVariant(style, NULL);
4367 ok(hres == E_INVALIDARG, "get_fontVariant failed: %08x\n", hres);
4369 hres = IHTMLStyle_get_fontVariant(style, &sDefault);
4370 ok(hres == S_OK, "get_fontVariant failed: %08x\n", hres);
4372 str = a2bstr("test");
4373 hres = IHTMLStyle_put_fontVariant(style, str);
4374 ok(hres == E_INVALIDARG, "fontVariant failed: %08x\n", hres);
4377 str = a2bstr("small-caps");
4378 hres = IHTMLStyle_put_fontVariant(style, str);
4379 ok(hres == S_OK, "fontVariant failed: %08x\n", hres);
4382 str = a2bstr("normal");
4383 hres = IHTMLStyle_put_fontVariant(style, str);
4384 ok(hres == S_OK, "fontVariant failed: %08x\n", hres);
4387 hres = IHTMLStyle_put_fontVariant(style, sDefault);
4388 ok(hres == S_OK, "fontVariant failed: %08x\n", hres);
4389 SysFreeString(sDefault);
4391 str = (void*)0xdeadbeef;
4392 hres = IHTMLStyle_get_display(style, &str);
4393 ok(hres == S_OK, "get_display failed: %08x\n", hres);
4394 ok(!str, "display = %s\n", wine_dbgstr_w(str));
4396 str = (void*)0xdeadbeef;
4397 hres = IHTMLStyle_get_visibility(style, &str);
4398 ok(hres == S_OK, "get_visibility failed: %08x\n", hres);
4399 ok(!str, "visibility = %s\n", wine_dbgstr_w(str));
4402 hres = IHTMLStyle_get_fontSize(style, &v);
4403 ok(hres == S_OK, "get_fontSize failed: %08x\n", hres);
4404 ok(V_VT(&v) == VT_BSTR, "V_VT(fontSize) = %d\n", V_VT(&v));
4405 ok(!V_BSTR(&v), "V_BSTR(fontSize) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
4408 hres = IHTMLStyle_get_color(style, &v);
4409 ok(hres == S_OK, "get_color failed: %08x\n", hres);
4410 ok(V_VT(&v) == VT_BSTR, "V_VT(color) = %d\n", V_VT(&v));
4411 ok(!V_BSTR(&v), "V_BSTR(color) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
4414 hres = IHTMLStyle_get_textDecorationUnderline(style, &b);
4415 ok(hres == S_OK, "get_textDecorationUnderline failed: %08x\n", hres);
4416 ok(b == VARIANT_FALSE, "textDecorationUnderline = %x\n", b);
4418 hres = IHTMLStyle_put_textDecorationUnderline(style, VARIANT_TRUE);
4419 ok(hres == S_OK, "put_textDecorationUnderline failed: %08x\n", hres);
4420 ok(b == VARIANT_FALSE, "textDecorationUnderline = %x\n", b);
4422 hres = IHTMLStyle_get_textDecorationUnderline(style, &b);
4423 ok(hres == S_OK, "get_textDecorationUnderline failed: %08x\n", hres);
4424 ok(b == VARIANT_TRUE, "textDecorationUnderline = %x\n", b);
4426 hres = IHTMLStyle_put_textDecorationUnderline(style, VARIANT_FALSE);
4427 ok(hres == S_OK, "put_textDecorationUnderline failed: %08x\n", hres);
4430 hres = IHTMLStyle_get_textDecorationLineThrough(style, &b);
4431 ok(hres == S_OK, "get_textDecorationLineThrough failed: %08x\n", hres);
4432 ok(b == VARIANT_FALSE, "textDecorationLineThrough = %x\n", b);
4434 hres = IHTMLStyle_put_textDecorationLineThrough(style, VARIANT_TRUE);
4435 ok(hres == S_OK, "put_textDecorationLineThrough failed: %08x\n", hres);
4436 ok(b == VARIANT_FALSE, "textDecorationLineThrough = %x\n", b);
4438 hres = IHTMLStyle_get_textDecorationLineThrough(style, &b);
4439 ok(hres == S_OK, "get_textDecorationLineThrough failed: %08x\n", hres);
4440 ok(b == VARIANT_TRUE, "textDecorationLineThrough = %x\n", b);
4442 hres = IHTMLStyle_put_textDecorationLineThrough(style, VARIANT_FALSE);
4443 ok(hres == S_OK, "put_textDecorationLineThrough failed: %08x\n", hres);
4446 hres = IHTMLStyle_get_textDecorationNone(style, &b);
4447 ok(hres == S_OK, "get_textDecorationNone failed: %08x\n", hres);
4448 ok(b == VARIANT_FALSE, "textDecorationNone = %x\n", b);
4450 hres = IHTMLStyle_put_textDecorationNone(style, VARIANT_TRUE);
4451 ok(hres == S_OK, "put_textDecorationNone failed: %08x\n", hres);
4452 ok(b == VARIANT_FALSE, "textDecorationNone = %x\n", b);
4454 hres = IHTMLStyle_get_textDecorationNone(style, &b);
4455 ok(hres == S_OK, "get_textDecorationNone failed: %08x\n", hres);
4456 ok(b == VARIANT_TRUE, "textDecorationNone = %x\n", b);
4458 hres = IHTMLStyle_put_textDecorationNone(style, VARIANT_FALSE);
4459 ok(hres == S_OK, "put_textDecorationNone failed: %08x\n", hres);
4462 hres = IHTMLStyle_get_textDecorationOverline(style, &b);
4463 ok(hres == S_OK, "get_textDecorationOverline failed: %08x\n", hres);
4464 ok(b == VARIANT_FALSE, "textDecorationOverline = %x\n", b);
4466 hres = IHTMLStyle_put_textDecorationOverline(style, VARIANT_TRUE);
4467 ok(hres == S_OK, "put_textDecorationOverline failed: %08x\n", hres);
4468 ok(b == VARIANT_FALSE, "textDecorationOverline = %x\n", b);
4470 hres = IHTMLStyle_get_textDecorationOverline(style, &b);
4471 ok(hres == S_OK, "get_textDecorationOverline failed: %08x\n", hres);
4472 ok(b == VARIANT_TRUE, "textDecorationOverline = %x\n", b);
4474 hres = IHTMLStyle_put_textDecorationOverline(style, VARIANT_FALSE);
4475 ok(hres == S_OK, "put_textDecorationOverline failed: %08x\n", hres);
4478 hres = IHTMLStyle_get_textDecorationBlink(style, &b);
4479 ok(hres == S_OK, "get_textDecorationBlink failed: %08x\n", hres);
4480 ok(b == VARIANT_FALSE, "textDecorationBlink = %x\n", b);
4482 hres = IHTMLStyle_put_textDecorationBlink(style, VARIANT_TRUE);
4483 ok(hres == S_OK, "put_textDecorationBlink failed: %08x\n", hres);
4484 ok(b == VARIANT_FALSE, "textDecorationBlink = %x\n", b);
4486 hres = IHTMLStyle_get_textDecorationBlink(style, &b);
4487 ok(hres == S_OK, "get_textDecorationBlink failed: %08x\n", hres);
4488 ok(b == VARIANT_TRUE, "textDecorationBlink = %x\n", b);
4490 hres = IHTMLStyle_put_textDecorationBlink(style, VARIANT_FALSE);
4491 ok(hres == S_OK, "textDecorationBlink failed: %08x\n", hres);
4493 hres = IHTMLStyle_get_textDecoration(style, &sDefault);
4494 ok(hres == S_OK, "get_textDecoration failed: %08x\n", hres);
4496 str = a2bstr("invalid");
4497 hres = IHTMLStyle_put_textDecoration(style, str);
4498 ok(hres == E_INVALIDARG, "put_textDecoration failed: %08x\n", hres);
4501 str = a2bstr("none");
4502 hres = IHTMLStyle_put_textDecoration(style, str);
4503 ok(hres == S_OK, "put_textDecoration failed: %08x\n", hres);
4506 str = a2bstr("underline");
4507 hres = IHTMLStyle_put_textDecoration(style, str);
4508 ok(hres == S_OK, "put_textDecoration failed: %08x\n", hres);
4511 str = a2bstr("overline");
4512 hres = IHTMLStyle_put_textDecoration(style, str);
4513 ok(hres == S_OK, "put_textDecoration failed: %08x\n", hres);
4516 str = a2bstr("line-through");
4517 hres = IHTMLStyle_put_textDecoration(style, str);
4518 ok(hres == S_OK, "put_textDecoration failed: %08x\n", hres);
4521 str = a2bstr("blink");
4522 hres = IHTMLStyle_put_textDecoration(style, str);
4523 ok(hres == S_OK, "put_textDecoration failed: %08x\n", hres);
4526 hres = IHTMLStyle_get_textDecoration(style, &str);
4527 ok(hres == S_OK, "get_textDecoration failed: %08x\n", hres);
4528 ok(!strcmp_wa(str, "blink"), "str != blink\n");
4531 hres = IHTMLStyle_put_textDecoration(style, sDefault);
4532 ok(hres == S_OK, "put_textDecoration failed: %08x\n", hres);
4533 SysFreeString(sDefault);
4535 hres = IHTMLStyle_get_posWidth(style, NULL);
4536 ok(hres == E_POINTER, "get_posWidth failed: %08x\n", hres);
4538 hres = IHTMLStyle_get_posWidth(style, &f);
4539 ok(hres == S_OK, "get_posWidth failed: %08x\n", hres);
4540 ok(f == 0.0f, "f = %f\n", f);
4542 V_VT(&v) = VT_EMPTY;
4543 hres = IHTMLStyle_get_width(style, &v);
4544 ok(hres == S_OK, "get_width failed: %08x\n", hres);
4545 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
4546 ok(!V_BSTR(&v), "V_BSTR(v)=%p\n", V_BSTR(&v));
4548 hres = IHTMLStyle_put_posWidth(style, 2.2);
4549 ok(hres == S_OK, "put_posWidth failed: %08x\n", hres);
4551 hres = IHTMLStyle_get_posWidth(style, &f);
4552 ok(hres == S_OK, "get_posWidth failed: %08x\n", hres);
4554 f == 2.2f, /* IE8 */
4558 V_BSTR(&v) = a2bstr("auto");
4559 hres = IHTMLStyle_put_width(style, v);
4560 ok(hres == S_OK, "put_width failed: %08x\n", hres);
4563 V_VT(&v) = VT_EMPTY;
4564 hres = IHTMLStyle_get_width(style, &v);
4565 ok(hres == S_OK, "get_width failed: %08x\n", hres);
4566 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
4567 ok(!strcmp_wa(V_BSTR(&v), "auto"), "V_BSTR(v)=%s\n", wine_dbgstr_w(V_BSTR(&v)));
4572 hres = IHTMLStyle_put_width(style, v);
4573 ok(hres == S_OK, "put_width failed: %08x\n", hres);
4575 V_VT(&v) = VT_EMPTY;
4576 hres = IHTMLStyle_get_width(style, &v);
4577 ok(hres == S_OK, "get_width failed: %08x\n", hres);
4578 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
4579 ok(!strcmp_wa(V_BSTR(&v), "100px"), "V_BSTR(v)=%s\n", wine_dbgstr_w(V_BSTR(&v)));
4583 str = (void*)0xdeadbeef;
4584 hres = IHTMLStyle_get_margin(style, &str);
4585 ok(hres == S_OK, "get_margin failed: %08x\n", hres);
4586 ok(!str, "margin = %s\n", wine_dbgstr_w(str));
4589 hres = IHTMLStyle_put_margin(style, str);
4590 ok(hres == S_OK, "put_margin failed: %08x\n", hres);
4593 hres = IHTMLStyle_get_margin(style, &str);
4594 ok(hres == S_OK, "get_margin failed: %08x\n", hres);
4595 ok(!strcmp_wa(str, "1px"), "margin = %s\n", wine_dbgstr_w(str));
4598 hres = IHTMLStyle_put_margin(style, NULL);
4599 ok(hres == S_OK, "put_margin failed: %08x\n", hres);
4601 str = (void*)0xdeadbeef;
4602 hres = IHTMLStyle_get_marginTop(style, &v);
4603 ok(hres == S_OK, "get_marginTop failed: %08x\n", hres);
4604 ok(V_VT(&v) == VT_BSTR, "V_VT(marginTop) = %d\n", V_VT(&v));
4605 ok(!V_BSTR(&v), "V_BSTR(marginTop) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
4608 V_BSTR(&v) = a2bstr("6px");
4609 hres = IHTMLStyle_put_marginTop(style, v);
4610 SysFreeString(V_BSTR(&v));
4611 ok(hres == S_OK, "put_marginTop failed: %08x\n", hres);
4613 str = (void*)0xdeadbeef;
4614 hres = IHTMLStyle_get_marginTop(style, &v);
4615 ok(hres == S_OK, "get_marginTop failed: %08x\n", hres);
4616 ok(V_VT(&v) == VT_BSTR, "V_VT(marginTop) = %d\n", V_VT(&v));
4617 ok(!strcmp_wa(V_BSTR(&v), "6px"), "V_BSTR(marginTop) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
4621 hres = IHTMLStyle_get_border(style, &str);
4622 ok(hres == S_OK, "get_border failed: %08x\n", hres);
4623 ok(!str || !*str, "str is not empty\n");
4626 str = a2bstr("1px");
4627 hres = IHTMLStyle_put_border(style, str);
4628 ok(hres == S_OK, "put_border failed: %08x\n", hres);
4631 V_VT(&v) = VT_EMPTY;
4632 hres = IHTMLStyle_get_left(style, &v);
4633 ok(hres == S_OK, "get_left failed: %08x\n", hres);
4634 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
4635 ok(!V_BSTR(&v), "V_BSTR(v) != NULL\n");
4639 hres = IHTMLStyle_get_posLeft(style, NULL);
4640 ok(hres == E_POINTER, "get_posLeft failed: %08x\n", hres);
4643 hres = IHTMLStyle_get_posLeft(style, &f);
4644 ok(hres == S_OK, "get_posLeft failed: %08x\n", hres);
4645 ok(f == 0.0, "expected 0.0 got %f\n", f);
4647 hres = IHTMLStyle_put_posLeft(style, 4.9f);
4648 ok(hres == S_OK, "put_posLeft failed: %08x\n", hres);
4650 hres = IHTMLStyle_get_posLeft(style, &f);
4651 ok(hres == S_OK, "get_posLeft failed: %08x\n", hres);
4653 f == 4.9f, /* IE8 */
4654 "expected 4.0 or 4.9 (IE8) got %f\n", f);
4656 /* Ensure left is updated correctly. */
4657 V_VT(&v) = VT_EMPTY;
4658 hres = IHTMLStyle_get_left(style, &v);
4659 ok(hres == S_OK, "get_left failed: %08x\n", hres);
4660 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
4661 ok(!strcmp_wa(V_BSTR(&v), "4px") ||
4662 !strcmp_wa(V_BSTR(&v), "4.9px"), /* IE8 */
4663 "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
4668 V_BSTR(&v) = a2bstr("3px");
4669 hres = IHTMLStyle_put_left(style, v);
4670 ok(hres == S_OK, "put_left failed: %08x\n", hres);
4673 hres = IHTMLStyle_get_posLeft(style, &f);
4674 ok(hres == S_OK, "get_posLeft failed: %08x\n", hres);
4675 ok(f == 3.0, "expected 3.0 got %f\n", f);
4677 V_VT(&v) = VT_EMPTY;
4678 hres = IHTMLStyle_get_left(style, &v);
4679 ok(hres == S_OK, "get_left failed: %08x\n", hres);
4680 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
4681 ok(!strcmp_wa(V_BSTR(&v), "3px"), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
4685 hres = IHTMLStyle_put_left(style, v);
4686 ok(hres == S_OK, "put_left failed: %08x\n", hres);
4688 V_VT(&v) = VT_EMPTY;
4689 hres = IHTMLStyle_get_left(style, &v);
4690 ok(hres == S_OK, "get_left failed: %08x\n", hres);
4691 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
4692 ok(!V_BSTR(&v), "V_BSTR(v) != NULL\n");
4695 V_VT(&v) = VT_EMPTY;
4696 hres = IHTMLStyle_get_top(style, &v);
4697 ok(hres == S_OK, "get_top failed: %08x\n", hres);
4698 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
4699 ok(!V_BSTR(&v), "V_BSTR(v) != NULL\n");
4703 hres = IHTMLStyle_get_posTop(style, NULL);
4704 ok(hres == E_POINTER, "get_posTop failed: %08x\n", hres);
4707 hres = IHTMLStyle_get_posTop(style, &f);
4708 ok(hres == S_OK, "get_posTop failed: %08x\n", hres);
4709 ok(f == 0.0, "expected 0.0 got %f\n", f);
4711 hres = IHTMLStyle_put_posTop(style, 4.9f);
4712 ok(hres == S_OK, "put_posTop failed: %08x\n", hres);
4714 hres = IHTMLStyle_get_posTop(style, &f);
4715 ok(hres == S_OK, "get_posTop failed: %08x\n", hres);
4717 f == 4.9f, /* IE8 */
4718 "expected 4.0 or 4.9 (IE8) got %f\n", f);
4721 V_BSTR(&v) = a2bstr("3px");
4722 hres = IHTMLStyle_put_top(style, v);
4723 ok(hres == S_OK, "put_top failed: %08x\n", hres);
4726 V_VT(&v) = VT_EMPTY;
4727 hres = IHTMLStyle_get_top(style, &v);
4728 ok(hres == S_OK, "get_top failed: %08x\n", hres);
4729 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
4730 ok(!strcmp_wa(V_BSTR(&v), "3px"), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
4733 hres = IHTMLStyle_get_posTop(style, &f);
4734 ok(hres == S_OK, "get_posTop failed: %08x\n", hres);
4735 ok(f == 3.0, "expected 3.0 got %f\n", f);
4738 hres = IHTMLStyle_put_top(style, v);
4739 ok(hres == S_OK, "put_top failed: %08x\n", hres);
4741 V_VT(&v) = VT_EMPTY;
4742 hres = IHTMLStyle_get_top(style, &v);
4743 ok(hres == S_OK, "get_top failed: %08x\n", hres);
4744 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
4745 ok(!V_BSTR(&v), "V_BSTR(v) != NULL\n");
4748 /* Test posHeight */
4749 hres = IHTMLStyle_get_posHeight(style, NULL);
4750 ok(hres == E_POINTER, "get_posHeight failed: %08x\n", hres);
4752 V_VT(&v) = VT_EMPTY;
4753 hres = IHTMLStyle_get_height(style, &v);
4754 ok(hres == S_OK, "get_height failed: %08x\n", hres);
4755 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
4756 ok(!V_BSTR(&v), "V_BSTR(v) != NULL\n");
4760 hres = IHTMLStyle_get_posHeight(style, &f);
4761 ok(hres == S_OK, "get_posHeight failed: %08x\n", hres);
4762 ok(f == 0.0, "expected 0.0 got %f\n", f);
4764 hres = IHTMLStyle_put_posHeight(style, 4.9f);
4765 ok(hres == S_OK, "put_posHeight failed: %08x\n", hres);
4767 hres = IHTMLStyle_get_posHeight(style, &f);
4768 ok(hres == S_OK, "get_posHeight failed: %08x\n", hres);
4770 f == 4.9f, /* IE8 */
4771 "expected 4.0 or 4.9 (IE8) got %f\n", f);
4774 V_BSTR(&v) = a2bstr("64px");
4775 hres = IHTMLStyle_put_height(style, v);
4776 ok(hres == S_OK, "put_height failed: %08x\n", hres);
4779 V_VT(&v) = VT_EMPTY;
4780 hres = IHTMLStyle_get_height(style, &v);
4781 ok(hres == S_OK, "get_height failed: %08x\n", hres);
4782 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
4783 ok(!strcmp_wa(V_BSTR(&v), "64px"), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
4786 hres = IHTMLStyle_get_posHeight(style, &f);
4787 ok(hres == S_OK, "get_posHeight failed: %08x\n", hres);
4788 ok(f == 64.0, "expected 64.0 got %f\n", f);
4790 str = (void*)0xdeadbeef;
4791 hres = IHTMLStyle_get_cursor(style, &str);
4792 ok(hres == S_OK, "get_cursor failed: %08x\n", hres);
4793 ok(!str, "get_cursor != NULL\n");
4796 str = a2bstr("default");
4797 hres = IHTMLStyle_put_cursor(style, str);
4798 ok(hres == S_OK, "put_cursor failed: %08x\n", hres);
4802 hres = IHTMLStyle_get_cursor(style, &str);
4803 ok(hres == S_OK, "get_cursor failed: %08x\n", hres);
4804 ok(!strcmp_wa(str, "default"), "get_cursor returned %s\n", wine_dbgstr_w(str));
4807 V_VT(&v) = VT_EMPTY;
4808 hres = IHTMLStyle_get_verticalAlign(style, &v);
4809 ok(hres == S_OK, "get_vertivalAlign failed: %08x\n", hres);
4810 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
4811 ok(!V_BSTR(&v), "V_BSTR(v) != NULL\n");
4815 V_BSTR(&v) = a2bstr("middle");
4816 hres = IHTMLStyle_put_verticalAlign(style, v);
4817 ok(hres == S_OK, "put_vertivalAlign failed: %08x\n", hres);
4820 V_VT(&v) = VT_EMPTY;
4821 hres = IHTMLStyle_get_verticalAlign(style, &v);
4822 ok(hres == S_OK, "get_verticalAlign failed: %08x\n", hres);
4823 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
4824 ok(!strcmp_wa(V_BSTR(&v), "middle"), "V_BSTR(v) = %s\n", wine_dbgstr_w(V_BSTR(&v)));
4827 str = (void*)0xdeadbeef;
4828 hres = IHTMLStyle_get_textAlign(style, &str);
4829 ok(hres == S_OK, "get_textAlign failed: %08x\n", hres);
4830 ok(!str, "textAlign != NULL\n");
4832 str = a2bstr("center");
4833 hres = IHTMLStyle_put_textAlign(style, str);
4834 ok(hres == S_OK, "put_textAlign failed: %08x\n", hres);
4838 hres = IHTMLStyle_get_textAlign(style, &str);
4839 ok(hres == S_OK, "get_textAlign failed: %08x\n", hres);
4840 ok(!strcmp_wa(str, "center"), "textAlign = %s\n", wine_dbgstr_w(V_BSTR(&v)));
4843 str = (void*)0xdeadbeef;
4844 hres = IHTMLStyle_get_filter(style, &str);
4845 ok(hres == S_OK, "get_filter failed: %08x\n", hres);
4846 ok(!str, "filter != NULL\n");
4848 str = a2bstr("alpha(opacity=100)");
4849 hres = IHTMLStyle_put_filter(style, str);
4850 ok(hres == S_OK, "put_filter failed: %08x\n", hres);
4853 V_VT(&v) = VT_EMPTY;
4854 hres = IHTMLStyle_get_zIndex(style, &v);
4855 ok(hres == S_OK, "get_zIndex failed: %08x\n", hres);
4856 ok(V_VT(&v) == VT_I4, "V_VT(v)=%d\n", V_VT(&v));
4857 ok(!V_I4(&v), "V_I4(v) != 0\n");
4861 V_BSTR(&v) = a2bstr("1");
4862 hres = IHTMLStyle_put_zIndex(style, v);
4863 ok(hres == S_OK, "put_zIndex failed: %08x\n", hres);
4866 V_VT(&v) = VT_EMPTY;
4867 hres = IHTMLStyle_get_zIndex(style, &v);
4868 ok(hres == S_OK, "get_zIndex failed: %08x\n", hres);
4869 ok(V_VT(&v) == VT_I4, "V_VT(v)=%d\n", V_VT(&v));
4870 ok(V_I4(&v) == 1, "V_I4(v) = %d\n", V_I4(&v));
4874 hres = IHTMLStyle_get_fontStyle(style, &sDefault);
4875 ok(hres == S_OK, "get_fontStyle failed: %08x\n", hres);
4877 str = a2bstr("test");
4878 hres = IHTMLStyle_put_fontStyle(style, str);
4879 ok(hres == E_INVALIDARG, "put_fontStyle failed: %08x\n", hres);
4882 str = a2bstr("italic");
4883 hres = IHTMLStyle_put_fontStyle(style, str);
4884 ok(hres == S_OK, "put_fontStyle failed: %08x\n", hres);
4887 str = a2bstr("oblique");
4888 hres = IHTMLStyle_put_fontStyle(style, str);
4889 ok(hres == S_OK, "put_fontStyle failed: %08x\n", hres);
4892 str = a2bstr("normal");
4893 hres = IHTMLStyle_put_fontStyle(style, str);
4894 ok(hres == S_OK, "put_fontStyle failed: %08x\n", hres);
4897 hres = IHTMLStyle_put_fontStyle(style, sDefault);
4898 ok(hres == S_OK, "put_fontStyle failed: %08x\n", hres);
4899 SysFreeString(sDefault);
4902 hres = IHTMLStyle_get_overflow(style, NULL);
4903 ok(hres == E_INVALIDARG, "get_overflow failed: %08x\n", hres);
4905 hres = IHTMLStyle_get_overflow(style, &sOverflowDefault);
4906 ok(hres == S_OK, "get_overflow failed: %08x\n", hres);
4908 str = a2bstr("test");
4909 hres = IHTMLStyle_put_overflow(style, str);
4910 ok(hres == E_INVALIDARG, "put_overflow failed: %08x\n", hres);
4913 str = a2bstr("visible");
4914 hres = IHTMLStyle_put_overflow(style, str);
4915 ok(hres == S_OK, "put_overflow failed: %08x\n", hres);
4918 str = a2bstr("scroll");
4919 hres = IHTMLStyle_put_overflow(style, str);
4920 ok(hres == S_OK, "put_overflow failed: %08x\n", hres);
4923 str = a2bstr("hidden");
4924 hres = IHTMLStyle_put_overflow(style, str);
4925 ok(hres == S_OK, "put_overflow failed: %08x\n", hres);
4928 str = a2bstr("auto");
4929 hres = IHTMLStyle_put_overflow(style, str);
4930 ok(hres == S_OK, "put_overflow failed: %08x\n", hres);
4933 hres = IHTMLStyle_get_overflow(style, &str);
4934 ok(hres == S_OK, "get_overflow failed: %08x\n", hres);
4935 ok(!strcmp_wa(str, "auto"), "str=%s\n", wine_dbgstr_w(str));
4939 hres = IHTMLStyle_put_overflow(style, str);
4940 ok(hres == S_OK, "put_overflow failed: %08x\n", hres);
4943 hres = IHTMLStyle_get_overflow(style, &str);
4944 ok(hres == S_OK, "get_overflow failed: %08x\n", hres);
4945 ok(!str, "str=%s\n", wine_dbgstr_w(str));
4948 /* restore overflow default */
4949 hres = IHTMLStyle_put_overflow(style, sOverflowDefault);
4950 ok(hres == S_OK, "put_overflow failed: %08x\n", hres);
4951 SysFreeString(sOverflowDefault);
4953 /* Attribute Tests*/
4954 hres = IHTMLStyle_getAttribute(style, NULL, 1, &v);
4955 ok(hres == E_INVALIDARG, "getAttribute failed: %08x\n", hres);
4957 str = a2bstr("position");
4958 hres = IHTMLStyle_getAttribute(style, str, 1, NULL);
4959 ok(hres == E_INVALIDARG, "getAttribute failed: %08x\n", hres);
4961 hres = IHTMLStyle_getAttribute(style, str, 1, &v);
4962 ok(hres == S_OK, "getAttribute failed: %08x\n", hres);
4963 ok(V_VT(&v) == VT_BSTR, "type failed: %d\n", V_VT(&v));
4966 hres = IHTMLStyle_setAttribute(style, NULL, v, 1);
4967 ok(hres == E_INVALIDARG, "setAttribute failed: %08x\n", hres);
4970 V_BSTR(&v) = a2bstr("absolute");
4971 hres = IHTMLStyle_setAttribute(style, str, v, 1);
4972 ok(hres == S_OK, "setAttribute failed: %08x\n", hres);
4975 hres = IHTMLStyle_getAttribute(style, str, 1, &v);
4976 ok(hres == S_OK, "getAttribute failed: %08x\n", hres);
4977 ok(V_VT(&v) == VT_BSTR, "type failed: %d\n", V_VT(&v));
4978 ok(!strcmp_wa(V_BSTR(&v), "absolute"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
4983 hres = IHTMLStyle_setAttribute(style, str, v, 1);
4984 ok(hres == S_OK, "setAttribute failed: %08x\n", hres);
4989 str = a2bstr("borderLeftStyle");
4990 test_border_styles(style, str);
4993 str = a2bstr("borderbottomstyle");
4994 test_border_styles(style, str);
4997 str = a2bstr("borderrightstyle");
4998 test_border_styles(style, str);
5001 str = a2bstr("bordertopstyle");
5002 test_border_styles(style, str);
5005 hres = IHTMLStyle_get_borderStyle(style, &sDefault);
5006 ok(hres == S_OK, "get_borderStyle failed: %08x\n", hres);
5008 str = a2bstr("none dotted dashed solid");
5009 hres = IHTMLStyle_put_borderStyle(style, str);
5010 ok(hres == S_OK, "put_borderStyle failed: %08x\n", hres);
5013 str = a2bstr("none dotted dashed solid");
5014 hres = IHTMLStyle_get_borderStyle(style, &str);
5015 ok(hres == S_OK, "get_borderStyle failed: %08x\n", hres);
5016 ok(!strcmp_wa(str, "none dotted dashed solid"),
5017 "expected (none dotted dashed solid) = (%s)\n", wine_dbgstr_w(V_BSTR(&v)));
5020 str = a2bstr("double groove ridge inset");
5021 hres = IHTMLStyle_put_borderStyle(style, str);
5022 ok(hres == S_OK, "put_borderStyle failed: %08x\n", hres);
5025 str = a2bstr("window-inset outset ridge inset");
5026 hres = IHTMLStyle_put_borderStyle(style, str);
5027 ok(hres == S_OK, "put_borderStyle failed: %08x\n", hres);
5030 str = a2bstr("window-inset");
5031 hres = IHTMLStyle_put_borderStyle(style, str);
5032 ok(hres == S_OK, "put_borderStyle failed: %08x\n", hres);
5035 str = a2bstr("none none none none none");
5036 hres = IHTMLStyle_put_borderStyle(style, str);
5037 ok(hres == S_OK, "put_borderStyle failed: %08x\n", hres);
5040 str = a2bstr("invalid none none none");
5041 hres = IHTMLStyle_put_borderStyle(style, str);
5042 ok(hres == E_INVALIDARG, "put_borderStyle failed: %08x\n", hres);
5045 str = a2bstr("none invalid none none");
5046 hres = IHTMLStyle_put_borderStyle(style, str);
5047 ok(hres == E_INVALIDARG, "put_borderStyle failed: %08x\n", hres);
5050 hres = IHTMLStyle_put_borderStyle(style, sDefault);
5051 ok(hres == S_OK, "put_borderStyle failed: %08x\n", hres);
5052 SysFreeString(sDefault);
5054 /* backgoundColor */
5055 hres = IHTMLStyle_get_backgroundColor(style, &v);
5056 ok(hres == S_OK, "get_backgroundColor: %08x\n", hres);
5057 ok(V_VT(&v) == VT_BSTR, "type failed: %d\n", V_VT(&v));
5058 ok(!V_BSTR(&v), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
5062 hres = IHTMLStyle_get_padding(style, &str);
5063 ok(hres == S_OK, "get_padding failed: %08x\n", hres);
5064 ok(!str, "padding = %s\n", wine_dbgstr_w(str));
5068 hres = IHTMLStyle_put_padding(style, str);
5069 ok(hres == S_OK, "put_padding failed: %08x\n", hres);
5072 hres = IHTMLStyle_get_padding(style, &str);
5073 ok(hres == S_OK, "get_padding failed: %08x\n", hres);
5074 ok(!strcmp_wa(str, "1px"), "padding = %s\n", wine_dbgstr_w(str));
5078 hres = IHTMLStyle_get_paddingLeft(style, &vDefault);
5079 ok(hres == S_OK, "get_paddingLeft: %08x\n", hres);
5082 V_BSTR(&v) = a2bstr("10");
5083 hres = IHTMLStyle_put_paddingLeft(style, v);
5084 ok(hres == S_OK, "put_paddingLeft: %08x\n", hres);
5087 hres = IHTMLStyle_get_paddingLeft(style, &v);
5088 ok(hres == S_OK, "get_paddingLeft: %08x\n", hres);
5089 ok(!strcmp_wa(V_BSTR(&v), "10px"), "expecte 10 = %s\n", wine_dbgstr_w(V_BSTR(&v)));
5092 hres = IHTMLStyle_put_paddingLeft(style, vDefault);
5093 ok(hres == S_OK, "put_paddingLeft: %08x\n", hres);
5095 /* BackgroundRepeat */
5096 hres = IHTMLStyle_get_backgroundRepeat(style, &sDefault);
5097 ok(hres == S_OK, "get_backgroundRepeat failed: %08x\n", hres);
5099 str = a2bstr("invalid");
5100 hres = IHTMLStyle_put_backgroundRepeat(style, str);
5101 ok(hres == E_INVALIDARG, "put_backgroundRepeat failed: %08x\n", hres);
5104 str = a2bstr("repeat");
5105 hres = IHTMLStyle_put_backgroundRepeat(style, str);
5106 ok(hres == S_OK, "put_backgroundRepeat failed: %08x\n", hres);
5109 str = a2bstr("no-repeat");
5110 hres = IHTMLStyle_put_backgroundRepeat(style, str);
5111 ok(hres == S_OK, "put_backgroundRepeat failed: %08x\n", hres);
5114 str = a2bstr("repeat-x");
5115 hres = IHTMLStyle_put_backgroundRepeat(style, str);
5116 ok(hres == S_OK, "put_backgroundRepeat failed: %08x\n", hres);
5119 str = a2bstr("repeat-y");
5120 hres = IHTMLStyle_put_backgroundRepeat(style, str);
5121 ok(hres == S_OK, "put_backgroundRepeat failed: %08x\n", hres);
5124 hres = IHTMLStyle_get_backgroundRepeat(style, &str);
5125 ok(hres == S_OK, "get_backgroundRepeat failed: %08x\n", hres);
5126 ok(!strcmp_wa(str, "repeat-y"), "str=%s\n", wine_dbgstr_w(str));
5129 hres = IHTMLStyle_put_backgroundRepeat(style, sDefault);
5130 ok(hres == S_OK, "put_backgroundRepeat failed: %08x\n", hres);
5131 SysFreeString(sDefault);
5134 hres = IHTMLStyle_get_borderColor(style, &sDefault);
5135 ok(hres == S_OK, "get_borderColor failed: %08x\n", hres);
5137 str = a2bstr("red green red blue");
5138 hres = IHTMLStyle_put_borderColor(style, str);
5139 ok(hres == S_OK, "put_borderColor failed: %08x\n", hres);
5142 hres = IHTMLStyle_get_borderColor(style, &str);
5143 ok(hres == S_OK, "get_borderColor failed: %08x\n", hres);
5144 ok(!strcmp_wa(str, "red green red blue"), "str=%s\n", wine_dbgstr_w(str));
5147 hres = IHTMLStyle_put_borderColor(style, sDefault);
5148 ok(hres == S_OK, "put_borderColor failed: %08x\n", hres);
5149 SysFreeString(sDefault);
5152 hres = IHTMLStyle_get_borderRight(style, &sDefault);
5153 ok(hres == S_OK, "get_borderRight failed: %08x\n", hres);
5155 str = a2bstr("thick dotted red");
5156 hres = IHTMLStyle_put_borderRight(style, str);
5157 ok(hres == S_OK, "put_borderRight failed: %08x\n", hres);
5160 /* IHTMLStyle_get_borderRight appears to have a bug where
5161 it returns the first letter of the color. So we check
5162 each style individually.
5165 hres = IHTMLStyle_get_borderRightColor(style, &v);
5166 ok(hres == S_OK, "get_borderRightColor failed: %08x\n", hres);
5167 ok(!strcmp_wa(V_BSTR(&v), "red"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
5171 hres = IHTMLStyle_get_borderRightWidth(style, &v);
5172 ok(hres == S_OK, "get_borderRightWidth failed: %08x\n", hres);
5173 ok(!strcmp_wa(V_BSTR(&v), "thick"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
5176 hres = IHTMLStyle_get_borderRightStyle(style, &str);
5177 ok(hres == S_OK, "get_borderRightStyle failed: %08x\n", hres);
5178 ok(!strcmp_wa(str, "dotted"), "str=%s\n", wine_dbgstr_w(str));
5181 hres = IHTMLStyle_put_borderRight(style, sDefault);
5182 ok(hres == S_OK, "put_borderRight failed: %08x\n", hres);
5183 SysFreeString(sDefault);
5186 hres = IHTMLStyle_get_borderTop(style, &sDefault);
5187 ok(hres == S_OK, "get_borderTop failed: %08x\n", hres);
5189 str = a2bstr("thick dotted red");
5190 hres = IHTMLStyle_put_borderTop(style, str);
5191 ok(hres == S_OK, "put_borderTop failed: %08x\n", hres);
5194 /* IHTMLStyle_get_borderTop appears to have a bug where
5195 it returns the first letter of the color. So we check
5196 each style individually.
5199 hres = IHTMLStyle_get_borderTopColor(style, &v);
5200 ok(hres == S_OK, "get_borderTopColor failed: %08x\n", hres);
5201 ok(!strcmp_wa(V_BSTR(&v), "red"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
5205 hres = IHTMLStyle_get_borderTopWidth(style, &v);
5206 ok(hres == S_OK, "get_borderTopWidth failed: %08x\n", hres);
5207 ok(!strcmp_wa(V_BSTR(&v), "thick"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
5210 hres = IHTMLStyle_get_borderTopStyle(style, &str);
5211 ok(hres == S_OK, "get_borderTopStyle failed: %08x\n", hres);
5212 ok(!strcmp_wa(str, "dotted"), "str=%s\n", wine_dbgstr_w(str));
5215 hres = IHTMLStyle_put_borderTop(style, sDefault);
5216 ok(hres == S_OK, "put_borderTop failed: %08x\n", hres);
5217 SysFreeString(sDefault);
5220 hres = IHTMLStyle_get_borderBottom(style, &sDefault);
5221 ok(hres == S_OK, "get_borderBottom failed: %08x\n", hres);
5223 str = a2bstr("thick dotted red");
5224 hres = IHTMLStyle_put_borderBottom(style, str);
5225 ok(hres == S_OK, "put_borderBottom failed: %08x\n", hres);
5228 /* IHTMLStyle_get_borderBottom appears to have a bug where
5229 it returns the first letter of the color. So we check
5230 each style individually.
5233 hres = IHTMLStyle_get_borderBottomColor(style, &v);
5234 ok(hres == S_OK, "get_borderBottomColor failed: %08x\n", hres);
5235 ok(!strcmp_wa(V_BSTR(&v), "red"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
5239 hres = IHTMLStyle_get_borderBottomWidth(style, &v);
5240 ok(hres == S_OK, "get_borderBottomWidth failed: %08x\n", hres);
5241 ok(!strcmp_wa(V_BSTR(&v), "thick"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
5244 hres = IHTMLStyle_get_borderBottomStyle(style, &str);
5245 ok(hres == S_OK, "get_borderBottomStyle failed: %08x\n", hres);
5246 ok(!strcmp_wa(str, "dotted"), "str=%s\n", wine_dbgstr_w(str));
5249 hres = IHTMLStyle_put_borderBottom(style, sDefault);
5250 ok(hres == S_OK, "put_borderBottom failed: %08x\n", hres);
5251 SysFreeString(sDefault);
5254 hres = IHTMLStyle_get_borderLeft(style, &sDefault);
5255 ok(hres == S_OK, "get_borderLeft failed: %08x\n", hres);
5257 str = a2bstr("thick dotted red");
5258 hres = IHTMLStyle_put_borderLeft(style, str);
5259 ok(hres == S_OK, "put_borderLeft failed: %08x\n", hres);
5262 /* IHTMLStyle_get_borderLeft appears to have a bug where
5263 it returns the first letter of the color. So we check
5264 each style individually.
5267 hres = IHTMLStyle_get_borderLeftColor(style, &v);
5268 ok(hres == S_OK, "get_borderLeftColor failed: %08x\n", hres);
5269 ok(!strcmp_wa(V_BSTR(&v), "red"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
5273 hres = IHTMLStyle_get_borderLeftWidth(style, &v);
5274 ok(hres == S_OK, "get_borderLeftWidth failed: %08x\n", hres);
5275 ok(!strcmp_wa(V_BSTR(&v), "thick"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
5278 hres = IHTMLStyle_get_borderLeftStyle(style, &str);
5279 ok(hres == S_OK, "get_borderLeftStyle failed: %08x\n", hres);
5280 ok(!strcmp_wa(str, "dotted"), "str=%s\n", wine_dbgstr_w(str));
5283 hres = IHTMLStyle_put_borderLeft(style, sDefault);
5284 ok(hres == S_OK, "put_borderLeft failed: %08x\n", hres);
5285 SysFreeString(sDefault);
5287 /* backgroundPositionX */
5288 hres = IHTMLStyle_get_backgroundPositionX(style, &vDefault);
5289 ok(hres == S_OK, "get_backgroundPositionX failed: %08x\n", hres);
5292 V_BSTR(&v) = a2bstr("10px");
5293 hres = IHTMLStyle_put_backgroundPositionX(style, v);
5294 ok(hres == S_OK, "put_backgroundPositionX failed: %08x\n", hres);
5297 hres = IHTMLStyle_get_backgroundPositionX(style, &v);
5298 ok(hres == S_OK, "get_backgroundPositionX failed: %08x\n", hres);
5299 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
5302 hres = IHTMLStyle_put_backgroundPositionX(style, vDefault);
5303 ok(hres == S_OK, "put_backgroundPositionX failed: %08x\n", hres);
5304 VariantClear(&vDefault);
5306 /* backgroundPositionY */
5307 hres = IHTMLStyle_get_backgroundPositionY(style, &vDefault);
5308 ok(hres == S_OK, "get_backgroundPositionY failed: %08x\n", hres);
5311 V_BSTR(&v) = a2bstr("10px");
5312 hres = IHTMLStyle_put_backgroundPositionY(style, v);
5313 ok(hres == S_OK, "put_backgroundPositionY failed: %08x\n", hres);
5316 hres = IHTMLStyle_get_backgroundPositionY(style, &v);
5317 ok(hres == S_OK, "get_backgroundPositionY failed: %08x\n", hres);
5318 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
5321 hres = IHTMLStyle_put_backgroundPositionY(style, vDefault);
5322 ok(hres == S_OK, "put_backgroundPositionY failed: %08x\n", hres);
5323 VariantClear(&vDefault);
5325 /* borderTopWidth */
5326 hres = IHTMLStyle_get_borderTopWidth(style, &vDefault);
5327 ok(hres == S_OK, "get_borderTopWidth: %08x\n", hres);
5330 V_BSTR(&v) = a2bstr("10px");
5331 hres = IHTMLStyle_put_borderTopWidth(style, v);
5332 ok(hres == S_OK, "put_borderTopWidth: %08x\n", hres);
5335 hres = IHTMLStyle_get_borderTopWidth(style, &v);
5336 ok(hres == S_OK, "get_borderTopWidth: %08x\n", hres);
5337 ok(!strcmp_wa(V_BSTR(&v), "10px"), "expected 10px = %s\n", wine_dbgstr_w(V_BSTR(&v)));
5340 hres = IHTMLStyle_put_borderTopWidth(style, vDefault);
5341 ok(hres == S_OK, "put_borderTopWidth: %08x\n", hres);
5342 VariantClear(&vDefault);
5344 /* borderRightWidth */
5345 hres = IHTMLStyle_get_borderRightWidth(style, &vDefault);
5346 ok(hres == S_OK, "get_borderRightWidth: %08x\n", hres);
5349 V_BSTR(&v) = a2bstr("10");
5350 hres = IHTMLStyle_put_borderRightWidth(style, v);
5351 ok(hres == S_OK, "put_borderRightWidth: %08x\n", hres);
5354 hres = IHTMLStyle_get_borderRightWidth(style, &v);
5355 ok(hres == S_OK, "get_borderRightWidth: %08x\n", hres);
5356 ok(!strcmp_wa(V_BSTR(&v), "10px"), "expected 10px = %s\n", wine_dbgstr_w(V_BSTR(&v)));
5359 hres = IHTMLStyle_put_borderRightWidth(style, vDefault);
5360 ok(hres == S_OK, "put_borderRightWidth: %08x\n", hres);
5361 VariantClear(&vDefault);
5363 /* borderBottomWidth */
5364 hres = IHTMLStyle_get_borderBottomWidth(style, &vDefault);
5365 ok(hres == S_OK, "get_borderBottomWidth: %08x\n", hres);
5368 V_BSTR(&v) = a2bstr("10");
5369 hres = IHTMLStyle_put_borderBottomWidth(style, v);
5370 ok(hres == S_OK, "put_borderBottomWidth: %08x\n", hres);
5373 hres = IHTMLStyle_get_borderBottomWidth(style, &v);
5374 ok(hres == S_OK, "get_borderBottomWidth: %08x\n", hres);
5375 ok(!strcmp_wa(V_BSTR(&v), "10px"), "expected 10px = %s\n", wine_dbgstr_w(V_BSTR(&v)));
5378 hres = IHTMLStyle_put_borderBottomWidth(style, vDefault);
5379 ok(hres == S_OK, "put_borderBottomWidth: %08x\n", hres);
5380 VariantClear(&vDefault);
5382 /* borderLeftWidth */
5383 hres = IHTMLStyle_get_borderLeftWidth(style, &vDefault);
5384 ok(hres == S_OK, "get_borderLeftWidth: %08x\n", hres);
5387 V_BSTR(&v) = a2bstr("10");
5388 hres = IHTMLStyle_put_borderLeftWidth(style, v);
5389 ok(hres == S_OK, "put_borderLeftWidth: %08x\n", hres);
5392 hres = IHTMLStyle_get_borderLeftWidth(style, &v);
5393 ok(hres == S_OK, "get_borderLeftWidth: %08x\n", hres);
5394 ok(!strcmp_wa(V_BSTR(&v), "10px"), "expected 10px = %s\n", wine_dbgstr_w(V_BSTR(&v)));
5397 hres = IHTMLStyle_put_borderLeftWidth(style, vDefault);
5398 ok(hres == S_OK, "put_borderLeftWidth: %08x\n", hres);
5399 VariantClear(&vDefault);
5402 hres = IHTMLStyle_get_wordSpacing(style, &vDefault);
5403 ok(hres == S_OK, "get_wordSpacing: %08x\n", hres);
5406 V_BSTR(&v) = a2bstr("10");
5407 hres = IHTMLStyle_put_wordSpacing(style, v);
5408 ok(hres == S_OK, "put_wordSpacing: %08x\n", hres);
5411 hres = IHTMLStyle_get_wordSpacing(style, &v);
5412 ok(hres == S_OK, "get_wordSpacing: %08x\n", hres);
5413 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
5414 ok(!strcmp_wa(V_BSTR(&v), "10px"), "expected 10px = %s\n", wine_dbgstr_w(V_BSTR(&v)));
5417 hres = IHTMLStyle_put_wordSpacing(style, vDefault);
5418 ok(hres == S_OK, "put_wordSpacing: %08x\n", hres);
5419 VariantClear(&vDefault);
5422 hres = IHTMLStyle_get_letterSpacing(style, &vDefault);
5423 ok(hres == S_OK, "get_letterSpacing: %08x\n", hres);
5426 V_BSTR(&v) = a2bstr("11");
5427 hres = IHTMLStyle_put_letterSpacing(style, v);
5428 ok(hres == S_OK, "put_letterSpacing: %08x\n", hres);
5431 hres = IHTMLStyle_get_letterSpacing(style, &v);
5432 ok(hres == S_OK, "get_letterSpacing: %08x\n", hres);
5433 ok(V_VT(&v) == VT_BSTR, "V_VT(v)=%d\n", V_VT(&v));
5434 ok(!strcmp_wa(V_BSTR(&v), "11px"), "expected 10px = %s\n", wine_dbgstr_w(V_BSTR(&v)));
5437 hres = IHTMLStyle_put_letterSpacing(style, vDefault);
5438 ok(hres == S_OK, "put_letterSpacing: %08x\n", hres);
5439 VariantClear(&vDefault);
5441 hres = IHTMLStyle_QueryInterface(style, &IID_IHTMLStyle2, (void**)&style2);
5442 ok(hres == S_OK, "Could not get IHTMLStyle2 iface: %08x\n", hres);
5443 if(SUCCEEDED(hres)) {
5444 test_style2(style2);
5445 IHTMLStyle2_Release(style2);
5448 hres = IHTMLStyle_QueryInterface(style, &IID_IHTMLStyle3, (void**)&style3);
5449 ok(hres == S_OK, "Could not get IHTMLStyle3 iface: %08x\n", hres);
5450 if(SUCCEEDED(hres)) {
5451 test_style3(style3);
5452 IHTMLStyle3_Release(style3);
5455 hres = IHTMLStyle_QueryInterface(style, &IID_IHTMLStyle4, (void**)&style4);
5456 ok(hres == S_OK, "Could not get IHTMLStyle4 iface: %08x\n", hres);
5457 if(SUCCEEDED(hres)) {
5458 test_style4(style4);
5459 IHTMLStyle4_Release(style4);
5463 static void test_set_csstext(IHTMLStyle *style)
5468 test_style_set_csstext(style, "background-color: black;");
5470 hres = IHTMLStyle_get_backgroundColor(style, &v);
5471 ok(hres == S_OK, "get_backgroundColor: %08x\n", hres);
5472 ok(V_VT(&v) == VT_BSTR, "type failed: %d\n", V_VT(&v));
5473 ok(!strcmp_wa(V_BSTR(&v), "black"), "str=%s\n", wine_dbgstr_w(V_BSTR(&v)));
5477 static void test_default_selection(IHTMLDocument2 *doc)
5479 IHTMLSelectionObject *selection;
5480 IHTMLTxtRange *range;
5485 hres = IHTMLDocument2_get_selection(doc, &selection);
5486 ok(hres == S_OK, "get_selection failed: %08x\n", hres);
5488 hres = IHTMLSelectionObject_get_type(selection, &str);
5489 ok(hres == S_OK, "get_type failed: %08x\n", hres);
5490 ok(!strcmp_wa(str, "None"), "type = %s\n", wine_dbgstr_w(str));
5493 hres = IHTMLSelectionObject_createRange(selection, &disp);
5494 IHTMLSelectionObject_Release(selection);
5495 ok(hres == S_OK, "createRange failed: %08x\n", hres);
5497 hres = IDispatch_QueryInterface(disp, &IID_IHTMLTxtRange, (void**)&range);
5498 IDispatch_Release(disp);
5499 ok(hres == S_OK, "Could not get IHTMLTxtRange interface: %08x\n", hres);
5501 test_range_text(range, NULL);
5502 IHTMLTxtRange_Release(range);
5505 static void test_doc_elem(IHTMLDocument2 *doc)
5507 IHTMLDocument2 *doc_node, *owner_doc;
5509 IHTMLDocument3 *doc3;
5512 hres = IHTMLDocument2_QueryInterface(doc, &IID_IHTMLDocument3, (void**)&doc3);
5513 ok(hres == S_OK, "QueryInterface(IID_IHTMLDocument3) failed: %08x\n", hres);
5515 hres = IHTMLDocument3_get_documentElement(doc3, &elem);
5516 IHTMLDocument3_Release(doc3);
5517 ok(hres == S_OK, "get_documentElement failed: %08x\n", hres);
5519 test_node_name((IUnknown*)elem, "HTML");
5520 test_elem_tag((IUnknown*)elem, "HTML");
5522 doc_node = get_doc_node(doc);
5523 owner_doc = get_owner_doc((IUnknown*)elem);
5524 ok(iface_cmp((IUnknown *)doc_node, (IUnknown *)owner_doc), "doc_node != owner_doc\n");
5525 IHTMLDocument2_Release(owner_doc);
5527 owner_doc = get_owner_doc((IUnknown*)doc_node);
5528 ok(!owner_doc, "owner_doc = %p\n", owner_doc);
5529 IHTMLDocument2_Release(doc_node);
5531 test_elem_client_rect((IUnknown*)elem);
5533 IHTMLElement_Release(elem);
5536 static void test_default_body(IHTMLBodyElement *body)
5543 bstr = (void*)0xdeadbeef;
5544 hres = IHTMLBodyElement_get_background(body, &bstr);
5545 ok(hres == S_OK, "get_background failed: %08x\n", hres);
5546 ok(bstr == NULL, "bstr != NULL\n");
5548 l = elem_get_scroll_height((IUnknown*)body);
5549 ok(l != -1, "scrollHeight == -1\n");
5550 l = elem_get_scroll_width((IUnknown*)body);
5551 ok(l != -1, "scrollWidth == -1\n");
5552 l = elem_get_scroll_top((IUnknown*)body);
5553 ok(!l, "scrollTop = %d\n", l);
5554 elem_get_scroll_left((IUnknown*)body);
5556 /* get_text tests */
5557 hres = IHTMLBodyElement_get_text(body, &v);
5558 ok(hres == S_OK, "expect S_OK got 0x%08d\n", hres);
5559 ok(V_VT(&v) == VT_BSTR, "Expected VT_BSTR got %d\n", V_VT(&v));
5560 ok(bstr == NULL, "bstr != NULL\n");
5562 /* get_text - Invalid Text */
5564 V_BSTR(&v) = a2bstr("Invalid");
5565 hres = IHTMLBodyElement_put_text(body, v);
5566 ok(hres == S_OK, "expect S_OK got 0x%08d\n", hres);
5570 hres = IHTMLBodyElement_get_text(body, &v);
5571 ok(hres == S_OK, "expect S_OK got 0x%08d\n", hres);
5572 ok(V_VT(&v) == VT_BSTR, "Expected VT_BSTR got %d\n", V_VT(&v));
5573 ok(!strcmp_wa(V_BSTR(&v), "#00a0d0"), "v = %s, expected '#00a0d0'\n", wine_dbgstr_w(V_BSTR(&v)));
5576 /* get_text - Valid Text */
5578 V_BSTR(&v) = a2bstr("#FF0000");
5579 hres = IHTMLBodyElement_put_text(body, v);
5580 ok(hres == S_OK, "expect S_OK got 0x%08d\n", hres);
5584 hres = IHTMLBodyElement_get_text(body, &v);
5585 ok(hres == S_OK, "expect S_OK got 0x%08d\n", hres);
5586 ok(V_VT(&v) == VT_BSTR, "Expected VT_BSTR got %d\n", V_VT(&v));
5587 ok(!strcmp_wa(V_BSTR(&v), "#ff0000"), "v = %s, expected '#ff0000'\n", wine_dbgstr_w(V_BSTR(&v)));
5591 static void test_body_funs(IHTMLBodyElement *body)
5593 VARIANT vbg, vDefaultbg;
5596 hres = IHTMLBodyElement_get_bgColor(body, &vDefaultbg);
5597 ok(hres == S_OK, "get_bgColor failed: %08x\n", hres);
5598 ok(V_VT(&vDefaultbg) == VT_BSTR, "bstr != NULL\n");
5599 ok(!V_BSTR(&vDefaultbg), "V_BSTR(bgColor) = %s\n", wine_dbgstr_w(V_BSTR(&vDefaultbg)));
5601 V_VT(&vbg) = VT_BSTR;
5602 V_BSTR(&vbg) = a2bstr("red");
5603 hres = IHTMLBodyElement_put_bgColor(body, vbg);
5604 ok(hres == S_OK, "put_bgColor failed: %08x\n", hres);
5607 hres = IHTMLBodyElement_get_bgColor(body, &vbg);
5608 ok(hres == S_OK, "get_bgColor failed: %08x\n", hres);
5609 ok(V_VT(&vDefaultbg) == VT_BSTR, "V_VT(&vDefaultbg) != VT_BSTR\n");
5610 ok(!strcmp_wa(V_BSTR(&vbg), "#ff0000"), "Unexpected bgcolor %s\n", wine_dbgstr_w(V_BSTR(&vbg)));
5613 /* Restore Originial */
5614 hres = IHTMLBodyElement_put_bgColor(body, vDefaultbg);
5615 ok(hres == S_OK, "put_bgColor failed: %08x\n", hres);
5616 VariantClear(&vDefaultbg);
5619 static void test_window(IHTMLDocument2 *doc)
5621 IHTMLWindow2 *window, *window2, *self;
5622 IHTMLDocument2 *doc2 = NULL;
5628 hres = IHTMLDocument2_get_parentWindow(doc, &window);
5629 ok(hres == S_OK, "get_parentWindow failed: %08x\n", hres);
5630 test_ifaces((IUnknown*)window, window_iids);
5631 test_disp((IUnknown*)window, &DIID_DispHTMLWindow2, "[object]");
5633 hres = IHTMLWindow2_get_document(window, &doc2);
5634 ok(hres == S_OK, "get_document failed: %08x\n", hres);
5635 ok(doc2 != NULL, "doc2 == NULL\n");
5637 test_ifaces((IUnknown*)doc2, doc_node_iids);
5638 test_disp((IUnknown*)doc2, &DIID_DispHTMLDocument, "[object]");
5640 test_ifaces((IUnknown*)doc, doc_obj_iids);
5641 test_disp((IUnknown*)doc2, &DIID_DispHTMLDocument, "[object]");
5643 unk = (void*)0xdeadbeef;
5644 hres = IHTMLDocument2_QueryInterface(doc2, &IID_ICustomDoc, (void**)&unk);
5645 ok(hres == E_NOINTERFACE, "QueryInterface(IID_ICustomDoc) returned: %08x\n", hres);
5646 ok(!unk, "unk = %p\n", unk);
5648 IHTMLDocument_Release(doc2);
5650 hres = IHTMLWindow2_get_window(window, &window2);
5651 ok(hres == S_OK, "get_window failed: %08x\n", hres);
5652 ok(window2 != NULL, "window2 == NULL\n");
5654 hres = IHTMLWindow2_get_self(window, &self);
5655 ok(hres == S_OK, "get_self failed: %08x\n", hres);
5656 ok(window2 != NULL, "self == NULL\n");
5658 ok(self == window2, "self != window2\n");
5660 IHTMLWindow2_Release(window2);
5661 IHTMLWindow2_Release(self);
5664 hres = IHTMLDocument2_get_Script(doc, &disp);
5665 ok(hres == S_OK, "get_Script failed: %08x\n", hres);
5666 ok(disp == (void*)window, "disp != window\n");
5667 IDispatch_Release(disp);
5669 hres = IHTMLWindow2_toString(window, NULL);
5670 ok(hres == E_INVALIDARG, "toString failed: %08x\n", hres);
5673 hres = IHTMLWindow2_toString(window, &str);
5674 ok(hres == S_OK, "toString failed: %08x\n", hres);
5675 ok(!strcmp_wa(str, "[object]"), "toString returned %s\n", wine_dbgstr_w(str));
5678 test_window_name(window, NULL);
5679 set_window_name(window, "test");
5680 test_window_length(window, 0);
5681 test_screen(window);
5683 IHTMLWindow2_Release(window);
5686 static void test_defaults(IHTMLDocument2 *doc)
5688 IHTMLStyleSheetsCollection *stylesheetcol;
5689 IHTMLCurrentStyle *cstyle;
5690 IHTMLBodyElement *body;
5691 IHTMLElement2 *elem2;
5696 IHTMLElementCollection *collection;
5698 elem = doc_get_body(doc);
5700 hres = IHTMLDocument2_get_images(doc, NULL);
5701 ok(hres == E_INVALIDARG, "hres %08x\n", hres);
5703 hres = IHTMLDocument2_get_images(doc, &collection);
5704 ok(hres == S_OK, "get_images failed: %08x\n", hres);
5707 test_elem_collection((IUnknown*)collection, NULL, 0);
5708 IHTMLElementCollection_Release(collection);
5711 hres = IHTMLDocument2_get_applets(doc, NULL);
5712 ok(hres == E_INVALIDARG, "hres %08x\n", hres);
5714 hres = IHTMLDocument2_get_applets(doc, &collection);
5715 ok(hres == S_OK, "get_applets failed: %08x\n", hres);
5718 test_elem_collection((IUnknown*)collection, NULL, 0);
5719 IHTMLElementCollection_Release(collection);
5722 hres = IHTMLDocument2_get_links(doc, NULL);
5723 ok(hres == E_INVALIDARG, "hres %08x\n", hres);
5725 hres = IHTMLDocument2_get_links(doc, &collection);
5726 ok(hres == S_OK, "get_links failed: %08x\n", hres);
5729 test_elem_collection((IUnknown*)collection, NULL, 0);
5730 IHTMLElementCollection_Release(collection);
5733 hres = IHTMLDocument2_get_forms(doc, NULL);
5734 ok(hres == E_INVALIDARG, "hres %08x\n", hres);
5736 hres = IHTMLDocument2_get_forms(doc, &collection);
5737 ok(hres == S_OK, "get_forms failed: %08x\n", hres);
5740 test_elem_collection((IUnknown*)collection, NULL, 0);
5741 IHTMLElementCollection_Release(collection);
5744 hres = IHTMLDocument2_get_anchors(doc, NULL);
5745 ok(hres == E_INVALIDARG, "hres %08x\n", hres);
5747 hres = IHTMLDocument2_get_anchors(doc, &collection);
5748 ok(hres == S_OK, "get_anchors failed: %08x\n", hres);
5751 test_elem_collection((IUnknown*)collection, NULL, 0);
5752 IHTMLElementCollection_Release(collection);
5755 hres = IHTMLElement_QueryInterface(elem, &IID_IHTMLBodyElement, (void**)&body);
5756 ok(hres == S_OK, "Could not get IHTMBodyElement: %08x\n", hres);
5757 test_default_body(body);
5758 test_body_funs(body);
5759 IHTMLBodyElement_Release(body);
5761 hres = IHTMLElement_get_style(elem, &style);
5762 ok(hres == S_OK, "get_style failed: %08x\n", hres);
5764 test_default_style(style);
5766 test_compatmode(doc);
5768 test_navigator(doc);
5770 elem2 = get_elem2_iface((IUnknown*)elem);
5771 hres = IHTMLElement2_get_currentStyle(elem2, &cstyle);
5772 ok(hres == S_OK, "get_currentStyle failed: %08x\n", hres);
5773 if(SUCCEEDED(hres)) {
5774 test_current_style(cstyle);
5775 IHTMLCurrentStyle_Release(cstyle);
5777 IHTMLElement2_Release(elem2);
5779 IHTMLElement_Release(elem);
5781 test_set_csstext(style);
5782 IHTMLStyle_Release(style);
5784 hres = IHTMLDocument2_get_styleSheets(doc, &stylesheetcol);
5785 ok(hres == S_OK, "get_styleSheets failed: %08x\n", hres);
5788 hres = IHTMLStyleSheetsCollection_get_length(stylesheetcol, &l);
5789 ok(hres == S_OK, "get_length failed: %08x\n", hres);
5790 ok(l == 0, "length = %d\n", l);
5792 IHTMLStyleSheetsCollection_Release(stylesheetcol);
5794 hres = IHTMLElement_QueryInterface(elem, &IID_IHTMLFiltersCollection, (void**)&body);
5795 ok(hres == E_NOINTERFACE, "got interface IHTMLFiltersCollection\n");
5797 test_default_selection(doc);
5798 test_doc_title(doc, "");
5801 static void test_tr_elem(IHTMLElement *elem)
5803 IHTMLElementCollection *col;
5807 static const elem_type_t cell_types[] = {ET_TD,ET_TD};
5809 hres = IHTMLElement_QueryInterface(elem, &IID_IHTMLTableRow, (void**)&row);
5810 ok(hres == S_OK, "Could not get IHTMLTableRow iface: %08x\n", hres);
5815 hres = IHTMLTableRow_get_cells(row, &col);
5816 ok(hres == S_OK, "get_cells failed: %08x\n", hres);
5817 ok(col != NULL, "get_cells returned NULL\n");
5819 test_elem_collection((IUnknown*)col, cell_types, sizeof(cell_types)/sizeof(*cell_types));
5820 IHTMLElementCollection_Release(col);
5822 IHTMLTable_Release(row);
5825 static void test_table_elem(IHTMLElement *elem)
5827 IHTMLElementCollection *col;
5832 static const elem_type_t row_types[] = {ET_TR,ET_TR};
5833 static const elem_type_t all_types[] = {ET_TBODY,ET_TR,ET_TR,ET_TD,ET_TD};
5835 hres = IHTMLElement_QueryInterface(elem, &IID_IHTMLTable, (void**)&table);
5836 ok(hres == S_OK, "Could not get IHTMLTable iface: %08x\n", hres);
5841 hres = IHTMLTable_get_rows(table, &col);
5842 ok(hres == S_OK, "get_rows failed: %08x\n", hres);
5843 ok(col != NULL, "get_ros returned NULL\n");
5845 test_elem_collection((IUnknown*)col, row_types, sizeof(row_types)/sizeof(*row_types));
5846 IHTMLElementCollection_Release(col);
5848 test_elem_all((IUnknown*)table, all_types, sizeof(all_types)/sizeof(*all_types));
5850 node = clone_node((IUnknown*)table, VARIANT_TRUE);
5851 test_elem_tag((IUnknown*)node, "TABLE");
5852 test_elem_all((IUnknown*)node, all_types, sizeof(all_types)/sizeof(*all_types));
5853 IHTMLDOMNode_Release(node);
5855 node = clone_node((IUnknown*)table, VARIANT_FALSE);
5856 test_elem_tag((IUnknown*)node, "TABLE");
5857 test_elem_all((IUnknown*)node, NULL, 0);
5858 IHTMLDOMNode_Release(node);
5860 IHTMLTable_Release(table);
5863 static void doc_write(IHTMLDocument2 *doc, BOOL ln, const char *text)
5872 sa = SafeArrayCreate(VT_VARIANT, 1, &dim);
5873 SafeArrayAccessData(sa, (void**)&var);
5874 V_VT(var) = VT_BSTR;
5875 V_BSTR(var) = a2bstr(text);
5876 SafeArrayUnaccessData(sa);
5879 hres = IHTMLDocument2_writeln(doc, sa);
5881 hres = IHTMLDocument2_write(doc, sa);
5882 ok(hres == S_OK, "write failed: %08x\n", hres);
5884 SafeArrayDestroy(sa);
5887 static void test_frame_doc(IUnknown *frame_elem, BOOL iframe)
5889 IHTMLDocument2 *window_doc, *elem_doc;
5890 IHTMLFrameElement3 *frame_elem3;
5891 IHTMLWindow2 *content_window;
5894 content_window = get_frame_content_window(frame_elem);
5895 window_doc = get_window_doc(content_window);
5896 IHTMLWindow2_Release(content_window);
5898 elem_doc = get_elem_doc(frame_elem);
5899 ok(iface_cmp((IUnknown*)window_doc, (IUnknown*)elem_doc), "content_doc != elem_doc\n");
5902 hres = IUnknown_QueryInterface(frame_elem, &IID_IHTMLFrameElement3, (void**)&frame_elem3);
5903 if(SUCCEEDED(hres)) {
5904 IDispatch *disp = NULL;
5906 hres = IHTMLFrameElement3_get_contentDocument(frame_elem3, &disp);
5907 ok(hres == S_OK, "get_contentDocument failed: %08x\n", hres);
5908 ok(disp != NULL, "contentDocument == NULL\n");
5909 ok(iface_cmp((IUnknown*)disp, (IUnknown*)window_doc), "contentDocument != contentWindow.document\n");
5911 IDispatch_Release(disp);
5912 IHTMLFrameElement3_Release(frame_elem3);
5914 win_skip("IHTMLFrameElement3 not supported\n");
5918 IHTMLDocument2_Release(elem_doc);
5919 IHTMLDocument2_Release(window_doc);
5922 static void test_iframe_elem(IHTMLElement *elem)
5924 IHTMLDocument2 *content_doc, *owner_doc;
5925 IHTMLElementCollection *col;
5926 IHTMLWindow2 *content_window;
5932 static const elem_type_t all_types[] = {
5940 test_frame_doc((IUnknown*)elem, TRUE);
5942 content_window = get_frame_content_window((IUnknown*)elem);
5943 test_window_length(content_window, 0);
5945 content_doc = get_window_doc(content_window);
5946 IHTMLWindow2_Release(content_window);
5948 str = a2bstr("text/html");
5949 V_VT(&errv) = VT_ERROR;
5951 hres = IHTMLDocument2_open(content_doc, str, errv, errv, errv, &disp);
5953 ok(hres == S_OK, "open failed: %08x\n", hres);
5954 ok(disp != NULL, "disp == NULL\n");
5955 ok(iface_cmp((IUnknown*)disp, (IUnknown*)content_window), "disp != content_window\n");
5956 IDispatch_Release(disp);
5958 doc_write(content_doc, FALSE, "<html><head><title>test</title></head><body><br /></body>");
5959 doc_write(content_doc, TRUE, "</html>");
5961 hres = IHTMLDocument2_get_all(content_doc, &col);
5962 ok(hres == S_OK, "get_all failed: %08x\n", hres);
5963 test_elem_collection((IUnknown*)col, all_types, sizeof(all_types)/sizeof(all_types[0]));
5964 IHTMLElementCollection_Release(col);
5966 hres = IHTMLDocument2_close(content_doc);
5967 ok(hres == S_OK, "close failed: %08x\n", hres);
5969 owner_doc = get_owner_doc((IUnknown*)content_doc);
5970 ok(!owner_doc, "owner_doc = %p\n", owner_doc);
5972 IHTMLDocument2_Release(content_doc);
5975 static void test_stylesheet(IDispatch *disp)
5977 IHTMLStyleSheetRulesCollection *col = NULL;
5978 IHTMLStyleSheet *stylesheet;
5981 hres = IDispatch_QueryInterface(disp, &IID_IHTMLStyleSheet, (void**)&stylesheet);
5982 ok(hres == S_OK, "Could not get IHTMLStyleSheet: %08x\n", hres);
5984 hres = IHTMLStyleSheet_get_rules(stylesheet, &col);
5985 ok(hres == S_OK, "get_rules failed: %08x\n", hres);
5986 ok(col != NULL, "col == NULL\n");
5988 IHTMLStyleSheetRulesCollection_Release(col);
5989 IHTMLStyleSheet_Release(stylesheet);
5992 static void test_stylesheets(IHTMLDocument2 *doc)
5994 IHTMLStyleSheetsCollection *col = NULL;
5999 hres = IHTMLDocument2_get_styleSheets(doc, &col);
6000 ok(hres == S_OK, "get_styleSheets failed: %08x\n", hres);
6001 ok(col != NULL, "col == NULL\n");
6003 test_disp2((IUnknown*)col, &DIID_DispHTMLStyleSheetsCollection, &IID_IHTMLStyleSheetsCollection, "[object]");
6005 hres = IHTMLStyleSheetsCollection_get_length(col, &len);
6006 ok(hres == S_OK, "get_length failed: %08x\n", hres);
6007 ok(len == 1, "len=%d\n", len);
6013 hres = IHTMLStyleSheetsCollection_item(col, &idx, &res);
6014 ok(hres == S_OK, "item failed: %08x\n", hres);
6015 ok(V_VT(&res) == VT_DISPATCH, "V_VT(res) = %d\n", V_VT(&res));
6016 ok(V_DISPATCH(&res) != NULL, "V_DISPATCH(&res) == NULL\n");
6017 test_stylesheet(V_DISPATCH(&res));
6024 hres = IHTMLStyleSheetsCollection_item(col, &idx, &res);
6025 ok(hres == E_INVALIDARG, "item failed: %08x, expected E_INVALIDARG\n", hres);
6026 ok(V_VT(&res) == VT_EMPTY, "V_VT(res) = %d\n", V_VT(&res));
6027 ok(V_DISPATCH(&res) != NULL, "V_DISPATCH(&res) == NULL\n");
6030 IHTMLStyleSheetsCollection_Release(col);
6033 static void test_child_col_disp(IHTMLDOMChildrenCollection *col)
6035 IDispatchEx *dispex;
6037 DISPPARAMS dp = {NULL, NULL, 0, 0};
6045 static const WCHAR w0[] = {'0',0};
6046 static const WCHAR w100[] = {'1','0','0',0};
6048 hres = IHTMLDOMChildrenCollection_QueryInterface(col, &IID_IDispatchEx, (void**)&dispex);
6049 ok(hres == S_OK, "Could not get IDispatchEx: %08x\n", hres);
6051 bstr = SysAllocString(w0);
6052 hres = IDispatchEx_GetDispID(dispex, bstr, fdexNameCaseSensitive, &id);
6053 ok(hres == S_OK, "GetDispID failed: %08x\n", hres);
6054 SysFreeString(bstr);
6057 hres = IDispatchEx_InvokeEx(dispex, id, LOCALE_NEUTRAL, INVOKE_PROPERTYGET, &dp, &var, &ei, NULL);
6058 ok(hres == S_OK, "InvokeEx failed: %08x\n", hres);
6059 ok(V_VT(&var) == VT_DISPATCH, "V_VT(var)=%d\n", V_VT(&var));
6060 ok(V_DISPATCH(&var) != NULL, "V_DISPATCH(var) == NULL\n");
6061 node = get_node_iface((IUnknown*)V_DISPATCH(&var));
6062 type = get_node_type((IUnknown*)node);
6063 ok(type == 3, "type=%d\n", type);
6064 IHTMLDOMNode_Release(node);
6067 bstr = SysAllocString(w100);
6068 hres = IDispatchEx_GetDispID(dispex, bstr, fdexNameCaseSensitive, &id);
6069 ok(hres == DISP_E_UNKNOWNNAME, "GetDispID failed: %08x, expected DISP_E_UNKNOWNNAME\n", hres);
6070 SysFreeString(bstr);
6072 IDispatchEx_Release(dispex);
6077 static void test_elems(IHTMLDocument2 *doc)
6079 IHTMLElementCollection *col;
6080 IHTMLDOMChildrenCollection *child_col;
6081 IHTMLElement *elem, *elem2, *elem3;
6082 IHTMLDOMNode *node, *node2;
6083 IHTMLWindow2 *window;
6087 IHTMLElementCollection *collection;
6088 IHTMLDocument3 *doc3;
6091 static const elem_type_t all_types[] = {
6119 static const elem_type_t item_types[] = {
6125 hres = IHTMLDocument2_get_all(doc, &col);
6126 ok(hres == S_OK, "get_all failed: %08x\n", hres);
6127 test_elem_collection((IUnknown*)col, all_types, sizeof(all_types)/sizeof(all_types[0]));
6128 test_elem_col_item(col, "x", item_types, sizeof(item_types)/sizeof(item_types[0]));
6129 IHTMLElementCollection_Release(col);
6131 hres = IHTMLDocument2_get_images(doc, &collection);
6132 ok(hres == S_OK, "get_images failed: %08x\n", hres);
6135 static const elem_type_t images_types[] = {ET_IMG};
6136 test_elem_collection((IUnknown*)collection, images_types, 1);
6138 IHTMLElementCollection_Release(collection);
6141 hres = IHTMLDocument2_get_links(doc, &collection);
6142 ok(hres == S_OK, "get_links failed: %08x\n", hres);
6145 static const elem_type_t images_types[] = {ET_A};
6146 test_elem_collection((IUnknown*)collection, images_types, 1);
6148 IHTMLElementCollection_Release(collection);
6151 hres = IHTMLDocument2_get_anchors(doc, &collection);
6152 ok(hres == S_OK, "get_anchors failed: %08x\n", hres);
6155 static const elem_type_t anchor_types[] = {ET_A};
6156 test_elem_collection((IUnknown*)collection, anchor_types, 1);
6158 IHTMLElementCollection_Release(collection);
6161 elem = get_doc_elem(doc);
6162 test_elem_all((IUnknown*)elem, all_types+1, sizeof(all_types)/sizeof(all_types[0])-1);
6163 IHTMLElement_Release(elem);
6165 get_elem_by_id(doc, "xxx", FALSE);
6166 elem = get_doc_elem_by_id(doc, "xxx");
6167 ok(!elem, "elem != NULL\n");
6169 elem = get_doc_elem_by_id(doc, "s");
6170 ok(elem != NULL, "elem == NULL\n");
6172 test_elem_type((IUnknown*)elem, ET_SELECT);
6173 test_elem_attr(elem, "xxx", NULL);
6174 test_elem_attr(elem, "id", "s");
6175 test_elem_class((IUnknown*)elem, NULL);
6176 test_elem_set_class((IUnknown*)elem, "cl");
6177 test_elem_set_class((IUnknown*)elem, NULL);
6178 test_elem_tabindex((IUnknown*)elem, 0);
6179 test_elem_set_tabindex((IUnknown*)elem, 1);
6180 test_elem_filters((IUnknown*)elem);
6182 node = test_node_get_parent((IUnknown*)elem);
6183 ok(node != NULL, "node == NULL\n");
6184 test_node_name((IUnknown*)node, "BODY");
6185 node2 = test_node_get_parent((IUnknown*)node);
6186 IHTMLDOMNode_Release(node);
6187 ok(node2 != NULL, "node == NULL\n");
6188 test_node_name((IUnknown*)node2, "HTML");
6189 node = test_node_get_parent((IUnknown*)node2);
6190 IHTMLDOMNode_Release(node2);
6191 ok(node != NULL, "node == NULL\n");
6194 test_node_name((IUnknown*)node, "#document");
6195 type = get_node_type((IUnknown*)node);
6196 ok(type == 9, "type=%d, expected 9\n", type);
6197 node2 = test_node_get_parent((IUnknown*)node);
6198 IHTMLDOMNode_Release(node);
6199 ok(node2 == NULL, "node != NULL\n");
6202 elem2 = test_elem_get_parent((IUnknown*)elem);
6203 ok(elem2 != NULL, "elem2 == NULL\n");
6204 test_node_name((IUnknown*)elem2, "BODY");
6205 elem3 = test_elem_get_parent((IUnknown*)elem2);
6206 IHTMLElement_Release(elem2);
6207 ok(elem3 != NULL, "elem3 == NULL\n");
6208 test_node_name((IUnknown*)elem3, "HTML");
6209 elem2 = test_elem_get_parent((IUnknown*)elem3);
6210 IHTMLElement_Release(elem3);
6211 ok(elem2 == NULL, "elem2 != NULL\n");
6213 test_elem_getelembytag((IUnknown*)elem, ET_OPTION, 2);
6214 test_elem_getelembytag((IUnknown*)elem, ET_SELECT, 0);
6215 test_elem_getelembytag((IUnknown*)elem, ET_HTML, 0);
6217 test_elem_innertext(elem, "opt1opt2");
6219 IHTMLElement_Release(elem);
6222 elem = get_elem_by_id(doc, "s", TRUE);
6224 IHTMLSelectElement *select = get_select_iface((IUnknown*)elem);
6225 IHTMLDocument2 *doc_node, *elem_doc;
6227 test_select_elem(select);
6229 test_elem_title((IUnknown*)select, NULL);
6230 test_elem_set_title((IUnknown*)select, "Title");
6231 test_elem_title((IUnknown*)select, "Title");
6232 test_elem_offset((IUnknown*)select);
6233 test_elem_bounding_client_rect((IUnknown*)select);
6235 node = get_first_child((IUnknown*)select);
6236 ok(node != NULL, "node == NULL\n");
6238 test_elem_type((IUnknown*)node, ET_OPTION);
6239 IHTMLDOMNode_Release(node);
6242 type = get_node_type((IUnknown*)select);
6243 ok(type == 1, "type=%d\n", type);
6245 IHTMLSelectElement_Release(select);
6247 elem_doc = get_elem_doc((IUnknown*)elem);
6249 doc_node = get_doc_node(doc);
6250 ok(iface_cmp((IUnknown*)elem_doc, (IUnknown*)doc_node), "disp != doc\n");
6251 IHTMLDocument2_Release(doc_node);
6252 IHTMLDocument2_Release(elem_doc);
6254 IHTMLElement_Release(elem);
6257 elem = get_elem_by_id(doc, "sc", TRUE);
6259 IHTMLScriptElement *script;
6262 hres = IHTMLElement_QueryInterface(elem, &IID_IHTMLScriptElement, (void**)&script);
6263 ok(hres == S_OK, "Could not get IHTMLScriptElement interface: %08x\n", hres);
6269 hres = IHTMLScriptElement_put_type (script, NULL);
6270 ok(hres == S_OK, "put_type failed: %08x\n", hres);
6271 hres = IHTMLScriptElement_get_type(script, &type);
6272 ok(hres == S_OK, "get_type failed: %08x\n", hres);
6273 ok(type == NULL, "Unexpected type %s\n", wine_dbgstr_w(type));
6275 hres = IHTMLScriptElement_put_type (script, a2bstr ("text/javascript"));
6276 ok(hres == S_OK, "put_type failed: %08x\n", hres);
6277 hres = IHTMLScriptElement_get_type(script, &type);
6278 ok(hres == S_OK, "get_type failed: %08x\n", hres);
6279 ok(!strcmp_wa(type, "text/javascript"), "Unexpected type %s\n", wine_dbgstr_w(type));
6281 SysFreeString(type);
6284 hres = IHTMLScriptElement_put_defer(script, VARIANT_TRUE);
6285 ok(hres == S_OK, "put_defer failed: %08x\n", hres);
6287 hres = IHTMLScriptElement_get_defer(script, &vb);
6288 ok(hres == S_OK, "get_defer failed: %08x\n", hres);
6289 ok(vb == VARIANT_TRUE, "get_defer result is %08x\n", hres);
6291 hres = IHTMLScriptElement_put_defer(script, VARIANT_FALSE);
6292 ok(hres == S_OK, "put_defer failed: %08x\n", hres);
6294 str = (BSTR)0xdeadbeef;
6295 hres = IHTMLScriptElement_get_src(script, &str);
6296 ok(hres == S_OK, "get_src failed: %08x\n", hres);
6297 ok(!str, "src = %s\n", wine_dbgstr_w(str));
6300 IHTMLScriptElement_Release(script);
6303 elem = get_elem_by_id(doc, "in", TRUE);
6305 IHTMLInputElement *input;
6307 hres = IHTMLElement_QueryInterface(elem, &IID_IHTMLInputElement, (void**)&input);
6308 ok(hres == S_OK, "Could not get IHTMLInputElement: %08x\n", hres);
6310 test_elem_id((IUnknown*)elem, "in");
6311 test_elem_put_id((IUnknown*)elem, "newin");
6312 test_input_get_disabled(input, VARIANT_FALSE);
6313 test_input_set_disabled(input, VARIANT_TRUE);
6314 test_input_set_disabled(input, VARIANT_FALSE);
6315 test_elem3_set_disabled((IUnknown*)input, VARIANT_TRUE);
6316 test_input_get_disabled(input, VARIANT_TRUE);
6317 test_elem3_set_disabled((IUnknown*)input, VARIANT_FALSE);
6318 test_input_get_disabled(input, VARIANT_FALSE);
6319 test_elem_client_size((IUnknown*)elem);
6320 test_input_type(input, "text");
6322 test_node_get_value_str((IUnknown*)elem, NULL);
6323 test_node_put_value_str((IUnknown*)elem, "test");
6324 test_node_get_value_str((IUnknown*)elem, NULL);
6325 test_input_value((IUnknown*)elem, NULL);
6326 test_input_put_value((IUnknown*)elem, "test");
6327 test_input_value((IUnknown*)elem, NULL);
6328 test_elem_class((IUnknown*)elem, "testclass");
6329 test_elem_tabindex((IUnknown*)elem, 2);
6330 test_elem_set_tabindex((IUnknown*)elem, 3);
6331 test_elem_title((IUnknown*)elem, "test title");
6333 test_input_get_defaultchecked(input, VARIANT_FALSE);
6334 test_input_set_defaultchecked(input, VARIANT_TRUE);
6335 test_input_set_defaultchecked(input, VARIANT_FALSE);
6337 test_input_get_checked(input, VARIANT_FALSE);
6338 test_input_set_checked(input, VARIANT_TRUE);
6339 test_input_set_checked(input, VARIANT_FALSE);
6341 test_input_name(input, NULL);
6342 test_input_set_name(input, "test");
6344 test_input_src(input, NULL);
6345 test_input_set_src(input, "about:blank");
6347 IHTMLInputElement_Release(input);
6348 IHTMLElement_Release(elem);
6351 elem = get_elem_by_id(doc, "imgid", TRUE);
6353 test_img_src((IUnknown*)elem, "");
6354 test_img_set_src((IUnknown*)elem, "about:blank");
6355 test_img_alt((IUnknown*)elem, NULL);
6356 test_img_set_alt((IUnknown*)elem, "alt test");
6357 test_img_name((IUnknown*)elem, "WineImg");
6358 IHTMLElement_Release(elem);
6361 elem = get_elem_by_id(doc, "styleid", TRUE);
6363 test_style_media((IUnknown*)elem, NULL);
6364 test_style_put_media((IUnknown*)elem, "screen");
6365 test_style_type((IUnknown*)elem, NULL);
6366 test_style_put_type((IUnknown*)elem, "text/css");
6367 IHTMLElement_Release(elem);
6370 elem = get_doc_elem_by_id(doc, "tbl");
6371 ok(elem != NULL, "elem == NULL\n");
6373 test_table_elem(elem);
6374 IHTMLElement_Release(elem);
6377 elem = get_doc_elem_by_id(doc, "row2");
6378 ok(elem != NULL, "elem == NULL\n");
6381 IHTMLElement_Release(elem);
6384 elem = get_doc_elem_by_id(doc, "ifr");
6385 ok(elem != NULL, "elem == NULL\n");
6387 test_iframe_elem(elem);
6388 IHTMLElement_Release(elem);
6391 elem = get_doc_elem_by_id(doc, "objid");
6392 ok(elem != NULL, "elem == NULL\n");
6394 test_object_vspace((IUnknown*)elem, 100);
6395 IHTMLElement_Release(elem);
6398 elem = get_elem_by_id(doc, "a", TRUE);
6400 test_anchor_href((IUnknown*)elem, "http://test/");
6401 IHTMLElement_Release(elem);
6404 elem = doc_get_body(doc);
6406 node = get_first_child((IUnknown*)elem);
6407 ok(node != NULL, "node == NULL\n");
6409 test_ifaces((IUnknown*)node, text_iids);
6410 test_disp((IUnknown*)node, &DIID_DispHTMLDOMTextNode, "[object]");
6412 node2 = get_first_child((IUnknown*)node);
6413 ok(!node2, "node2 != NULL\n");
6415 type = get_node_type((IUnknown*)node);
6416 ok(type == 3, "type=%d\n", type);
6418 test_node_get_value_str((IUnknown*)node, "text test");
6419 test_node_put_value_str((IUnknown*)elem, "test text");
6420 test_node_get_value_str((IUnknown*)node, "text test");
6422 IHTMLDOMNode_Release(node);
6425 child_col = get_child_nodes((IUnknown*)elem);
6426 ok(child_col != NULL, "child_coll == NULL\n");
6430 test_disp((IUnknown*)child_col, &DIID_DispDOMChildrenCollection, "[object]");
6432 hres = IHTMLDOMChildrenCollection_get_length(child_col, &length);
6433 ok(hres == S_OK, "get_length failed: %08x\n", hres);
6434 ok(length, "length=0\n");
6437 node = get_child_item(child_col, 0);
6438 ok(node != NULL, "node == NULL\n");
6440 type = get_node_type((IUnknown*)node);
6441 ok(type == 3, "type=%d\n", type);
6442 node2 = node_get_next((IUnknown*)node);
6443 IHTMLDOMNode_Release(node);
6446 node = get_child_item(child_col, 1);
6447 ok(node != NULL, "node == NULL\n");
6449 type = get_node_type((IUnknown*)node);
6450 ok(type == 8, "type=%d\n", type);
6452 test_elem_id((IUnknown*)node, NULL);
6453 ok(iface_cmp((IUnknown*)node2, (IUnknown*)node), "node2 != node\n");
6454 IHTMLDOMNode_Release(node2);
6455 IHTMLDOMNode_Release(node);
6458 hres = IHTMLDOMChildrenCollection_item(child_col, length - 1, NULL);
6459 ok(hres == E_POINTER, "item failed: %08x, expected E_POINTER\n", hres);
6461 hres = IHTMLDOMChildrenCollection_item(child_col, length, NULL);
6462 ok(hres == E_POINTER, "item failed: %08x, expected E_POINTER\n", hres);
6464 hres = IHTMLDOMChildrenCollection_item(child_col, 6000, &disp);
6465 ok(hres == E_INVALIDARG, "item failed: %08x, expected E_INVALIDARG\n", hres);
6467 hres = IHTMLDOMChildrenCollection_item(child_col, length, &disp);
6468 ok(hres == E_INVALIDARG, "item failed: %08x, expected E_INVALIDARG\n", hres);
6470 test_child_col_disp(child_col);
6472 IHTMLDOMChildrenCollection_Release(child_col);
6475 test_elem3_get_disabled((IUnknown*)elem, VARIANT_FALSE);
6476 test_elem3_set_disabled((IUnknown*)elem, VARIANT_TRUE);
6477 test_elem3_set_disabled((IUnknown*)elem, VARIANT_FALSE);
6479 IHTMLElement_Release(elem);
6481 elem = get_doc_elem_by_id(doc, "frm");
6482 ok(elem != NULL, "elem == NULL\n");
6484 test_form_length((IUnknown*)elem, 0);
6485 IHTMLElement_Release(elem);
6488 test_stylesheets(doc);
6489 test_create_option_elem(doc);
6490 test_create_img_elem(doc);
6492 elem = get_doc_elem_by_id(doc, "tbl");
6493 ok(elem != NULL, "elem = NULL\n");
6494 test_elem_set_innertext(elem, "inner text");
6495 IHTMLElement_Release(elem);
6497 test_doc_title(doc, "test");
6498 test_doc_set_title(doc, "test title");
6499 test_doc_title(doc, "test title");
6502 hres = IHTMLDocument2_get_Script(doc, &disp);
6503 ok(hres == S_OK, "get_Script failed: %08x\n", hres);
6506 IDispatchEx *dispex;
6507 hres = IDispatch_QueryInterface(disp, &IID_IDispatchEx, (void**)&dispex);
6508 ok(hres == S_OK, "IDispatch_QueryInterface failed: %08x\n", hres);
6512 BSTR str = a2bstr("Testing");
6513 hres = IDispatchEx_GetDispID(dispex, str, 1, &pid);
6514 ok(hres == S_OK, "GetDispID failed: %08x\n", hres);
6515 ok(pid != -1, "pid == -1\n");
6517 IDispatchEx_Release(dispex);
6520 IDispatch_Release(disp);
6522 hres = IHTMLDocument2_QueryInterface(doc, &IID_IHTMLDocument3, (void**)&doc3);
6523 ok(hres == S_OK, "Could not get IHTMLDocument3 iface: %08x\n", hres);
6525 str = a2bstr("img");
6526 hres = IHTMLDocument3_getElementsByTagName(doc3, str, &col);
6527 ok(hres == S_OK, "getElementsByTagName(%s) failed: %08x\n", wine_dbgstr_w(str), hres);
6531 static const elem_type_t img_types[] = { ET_IMG };
6533 test_elem_collection((IUnknown*)col, img_types, sizeof(img_types)/sizeof(img_types[0]));
6534 IHTMLElementCollection_Release(col);
6537 elem = get_doc_elem_by_id(doc, "y");
6538 test_elem_set_innerhtml((IUnknown*)elem, "inner html");
6539 test_elem_innerhtml((IUnknown*)elem, "inner html");
6540 test_elem_set_innerhtml((IUnknown*)elem, "");
6541 test_elem_innerhtml((IUnknown*)elem, NULL);
6542 node = node_get_next((IUnknown*)elem);
6543 ok(!node, "node = %p\n", node);
6545 elem2 = get_doc_elem_by_id(doc, "x");
6546 test_elem_tag((IUnknown*)elem2, "A");
6547 node = node_get_next((IUnknown*)elem2);
6548 IHTMLDOMNode_Release(node);
6549 IHTMLElement_Release(elem2);
6550 IHTMLElement_Release(elem);
6552 IHTMLDocument3_Release(doc3);
6554 elem = get_elem_by_id(doc, "s", TRUE);
6556 static const elem_type_t select_types[] = { ET_OPTION, ET_OPTION, ET_OPTION };
6558 test_select_put_length((IUnknown*)elem, 3);
6559 test_elem_all((IUnknown*)elem, select_types, sizeof(select_types)/sizeof(*select_types));
6560 test_select_put_length((IUnknown*)elem, 1);
6561 test_elem_all((IUnknown*)elem, select_types, 1);
6562 IHTMLElement_Release(elem);
6565 window = get_doc_window(doc);
6566 test_window_name(window, NULL);
6567 set_window_name(window, "test name");
6568 test_window_length(window, 1);
6569 IHTMLWindow2_Release(window);
6572 static void test_elems2(IHTMLDocument2 *doc)
6574 IHTMLElement *elem, *elem2, *div;
6576 static const elem_type_t outer_types[] = {
6581 div = get_doc_elem_by_id(doc, "divid");
6583 test_elem_set_innerhtml((IUnknown*)div, "<div id=\"innerid\"></div>");
6584 elem2 = get_doc_elem_by_id(doc, "innerid");
6585 ok(elem2 != NULL, "elem2 == NULL\n");
6586 test_elem_set_outerhtml((IUnknown*)elem2, "<br><a href=\"about:blank\" id=\"aid\">a</a>");
6587 test_elem_all((IUnknown*)div, outer_types, sizeof(outer_types)/sizeof(*outer_types));
6588 IHTMLElement_Release(elem2);
6590 elem2 = get_doc_elem_by_id(doc, "aid");
6591 ok(elem2 != NULL, "elem2 == NULL\n");
6592 test_elem_set_outerhtml((IUnknown*)elem2, "");
6593 test_elem_all((IUnknown*)div, outer_types, 1);
6594 IHTMLElement_Release(elem2);
6596 test_elem_set_innerhtml((IUnknown*)div, "<textarea id=\"ta\"></textarea>");
6597 elem = get_elem_by_id(doc, "ta", TRUE);
6599 test_textarea_value((IUnknown*)elem, NULL);
6600 test_textarea_put_value((IUnknown*)elem, "test");
6601 test_textarea_readonly((IUnknown*)elem, VARIANT_FALSE);
6602 test_textarea_put_readonly((IUnknown*)elem, VARIANT_TRUE);
6603 test_textarea_put_readonly((IUnknown*)elem, VARIANT_FALSE);
6604 test_textarea_type((IUnknown*)elem);
6605 IHTMLElement_Release(elem);
6608 test_elem_set_innerhtml((IUnknown*)div,
6609 "<form id=\"form\"><input type=\"button\"></input><input type=\"text\"></input></textarea>");
6610 elem = get_elem_by_id(doc, "form", TRUE);
6612 test_form_length((IUnknown*)elem, 2);
6613 test_form_item(elem);
6614 test_form_action((IUnknown*)elem, NULL);
6615 test_form_put_action((IUnknown*)elem, "about:blank");
6616 test_form_method((IUnknown*)elem, "get");
6617 test_form_put_method((IUnknown*)elem, S_OK, "post");
6618 test_form_put_method((IUnknown*)elem, E_INVALIDARG, "put");
6619 test_form_method((IUnknown*)elem, "post");
6620 test_form_name((IUnknown*)elem, NULL);
6621 test_form_put_name((IUnknown*)elem, "Name");
6622 test_form_encoding((IUnknown*)elem, "application/x-www-form-urlencoded");
6623 test_form_put_encoding((IUnknown*)elem, S_OK, "text/plain");
6624 test_form_put_encoding((IUnknown*)elem, S_OK, "multipart/form-data");
6625 test_form_put_encoding((IUnknown*)elem, E_INVALIDARG, "image/png");
6626 test_form_encoding((IUnknown*)elem, "multipart/form-data");
6627 IHTMLElement_Release(elem);
6630 IHTMLElement_Release(div);
6633 static void test_create_elems(IHTMLDocument2 *doc)
6635 IHTMLElement *elem, *body, *elem2;
6636 IHTMLDOMNode *node, *node2, *node3, *comment;
6637 IHTMLDocument5 *doc5;
6644 static const elem_type_t types1[] = { ET_TESTG };
6646 elem = test_create_elem(doc, "TEST");
6647 test_elem_tag((IUnknown*)elem, "TEST");
6648 type = get_node_type((IUnknown*)elem);
6649 ok(type == 1, "type=%d\n", type);
6650 test_ifaces((IUnknown*)elem, elem_iids);
6651 test_disp((IUnknown*)elem, &DIID_DispHTMLGenericElement, "[object]");
6653 body = doc_get_body(doc);
6654 test_node_has_child((IUnknown*)body, VARIANT_FALSE);
6656 node = test_node_append_child((IUnknown*)body, (IUnknown*)elem);
6657 test_node_has_child((IUnknown*)body, VARIANT_TRUE);
6658 elem2 = get_elem_iface((IUnknown*)node);
6659 IHTMLElement_Release(elem2);
6661 hres = IHTMLElement_get_all(body, &disp);
6662 ok(hres == S_OK, "get_all failed: %08x\n", hres);
6663 test_elem_collection((IUnknown*)disp, types1, sizeof(types1)/sizeof(types1[0]));
6664 IDispatch_Release(disp);
6666 test_node_remove_child((IUnknown*)body, node);
6668 hres = IHTMLElement_get_all(body, &disp);
6669 ok(hres == S_OK, "get_all failed: %08x\n", hres);
6670 test_elem_collection((IUnknown*)disp, NULL, 0);
6671 IDispatch_Release(disp);
6672 test_node_has_child((IUnknown*)body, VARIANT_FALSE);
6674 IHTMLElement_Release(elem);
6675 IHTMLDOMNode_Release(node);
6677 node = test_create_text(doc, "test");
6678 test_ifaces((IUnknown*)node, text_iids);
6679 test_disp((IUnknown*)node, &DIID_DispHTMLDOMTextNode, "[object]");
6680 test_text_length((IUnknown*)node, 4);
6682 V_VT(&var) = VT_NULL;
6683 node2 = test_node_insertbefore((IUnknown*)body, node, &var);
6684 IHTMLDOMNode_Release(node);
6686 node = test_create_text(doc, "insert ");
6688 V_VT(&var) = VT_DISPATCH;
6689 V_DISPATCH(&var) = (IDispatch*)node2;
6690 node3 = test_node_insertbefore((IUnknown*)body, node, &var);
6691 IHTMLDOMNode_Release(node);
6692 IHTMLDOMNode_Release(node2);
6693 IHTMLDOMNode_Release(node3);
6695 test_elem_innertext(body, "insert test");
6696 test_elem_innerhtml((IUnknown*)body, "insert test");
6698 hres = IHTMLDocument2_QueryInterface(doc, &IID_IHTMLDocument5, (void**)&doc5);
6701 str = a2bstr("testing");
6702 hres = IHTMLDocument5_createComment(doc5, str, &comment);
6704 ok(hres == S_OK, "createComment failed: %08x\n", hres);
6707 type = get_node_type((IUnknown*)comment);
6708 ok(type == 8, "type=%d, expected 8\n", type);
6710 test_node_get_value_str((IUnknown*)comment, "testing");
6711 test_elem_title((IUnknown*)comment, NULL);
6712 test_elem_set_title((IUnknown*)comment, "comment title");
6713 test_elem_title((IUnknown*)comment, "comment title");
6714 test_comment_text((IUnknown*)comment, "<!--testing-->");
6715 test_elem_outerhtml((IUnknown*)comment, "<!--testing-->");
6717 IHTMLDOMNode_Release(comment);
6720 IHTMLDocument5_Release(doc5);
6723 IHTMLElement_Release(body);
6726 static void test_null_write(IHTMLDocument2 *doc)
6730 doc_write(doc, FALSE, NULL);
6731 doc_write(doc, TRUE, NULL);
6733 hres = IHTMLDocument2_write(doc, NULL);
6735 "Expected IHTMLDocument2::write to return S_OK, got 0x%08x\n", hres);
6737 hres = IHTMLDocument2_writeln(doc, NULL);
6739 "Expected IHTMLDocument2::writeln to return S_OK, got 0x%08x\n", hres);
6742 static void test_exec(IUnknown *unk, const GUID *grpid, DWORD cmdid, VARIANT *in, VARIANT *out)
6744 IOleCommandTarget *cmdtrg;
6747 hres = IHTMLTxtRange_QueryInterface(unk, &IID_IOleCommandTarget, (void**)&cmdtrg);
6748 ok(hres == S_OK, "Could not get IOleCommandTarget interface: %08x\n", hres);
6750 hres = IOleCommandTarget_Exec(cmdtrg, grpid, cmdid, 0, in, out);
6751 ok(hres == S_OK, "Exec failed: %08x\n", hres);
6753 IOleCommandTarget_Release(cmdtrg);
6756 static void test_indent(IHTMLDocument2 *doc)
6758 IHTMLElementCollection *col;
6759 IHTMLTxtRange *range;
6762 static const elem_type_t all_types[] = {
6771 static const elem_type_t indent_types[] = {
6782 hres = IHTMLDocument2_get_all(doc, &col);
6783 ok(hres == S_OK, "get_all failed: %08x\n", hres);
6784 test_elem_collection((IUnknown*)col, all_types, sizeof(all_types)/sizeof(all_types[0]));
6785 IHTMLElementCollection_Release(col);
6787 range = test_create_body_range(doc);
6788 test_exec((IUnknown*)range, &CGID_MSHTML, IDM_INDENT, NULL, NULL);
6789 IHTMLTxtRange_Release(range);
6791 hres = IHTMLDocument2_get_all(doc, &col);
6792 ok(hres == S_OK, "get_all failed: %08x\n", hres);
6793 test_elem_collection((IUnknown*)col, indent_types, sizeof(indent_types)/sizeof(indent_types[0]));
6794 IHTMLElementCollection_Release(col);
6797 static void test_cond_comment(IHTMLDocument2 *doc)
6799 IHTMLElementCollection *col;
6802 static const elem_type_t all_types[] = {
6810 hres = IHTMLDocument2_get_all(doc, &col);
6811 ok(hres == S_OK, "get_all failed: %08x\n", hres);
6812 test_elem_collection((IUnknown*)col, all_types, sizeof(all_types)/sizeof(all_types[0]));
6813 IHTMLElementCollection_Release(col);
6816 static void test_frame(IDispatch *disp, const char *exp_id)
6818 IHTMLWindow2 *frame2, *parent, *top;
6819 IHTMLDocument2 *parent_doc, *top_doc;
6820 IHTMLWindow4 *frame;
6821 IHTMLFrameBase *frame_elem;
6824 hres = IDispatch_QueryInterface(disp, &IID_IHTMLWindow4, (void**)&frame);
6825 ok(hres == S_OK, "Could not get IHTMLWindow4 interface: 0x%08x\n", hres);
6829 hres = IHTMLWindow4_get_frameElement(frame, &frame_elem);
6830 ok(hres == S_OK, "IHTMLWindow4_get_frameElement failed: 0x%08x\n", hres);
6831 IHTMLWindow4_Release(frame);
6835 test_elem_type((IUnknown*)frame_elem, ET_FRAME);
6836 test_frame_doc((IUnknown*)frame_elem, FALSE);
6837 test_elem_id((IUnknown*)frame_elem, exp_id);
6838 IHTMLElement_Release(frame_elem);
6840 hres = IDispatch_QueryInterface(disp, &IID_IHTMLWindow2, (void**)&frame2);
6841 ok(hres == S_OK, "Could not get IHTMLWindow2 interface: 0x%08x\n", hres);
6845 hres = IHTMLWindow2_get_parent(frame2, &parent);
6846 ok(hres == S_OK, "IHTMLWindow2_get_parent failed: 0x%08x\n", hres);
6848 IHTMLWindow2_Release(frame2);
6852 hres = IHTMLWindow2_get_document(parent, &parent_doc);
6853 ok(hres == S_OK, "IHTMLWindow2_get_document failed: 0x%08x\n", hres);
6854 IHTMLWindow2_Release(parent);
6856 IHTMLWindow2_Release(frame2);
6860 test_doc_title(parent_doc, "frameset test");
6861 IHTMLDocument2_Release(parent_doc);
6864 hres = IHTMLWindow2_get_top(frame2, &top);
6865 ok(hres == S_OK, "IHTMLWindow2_get_top failed: 0x%08x\n", hres);
6866 IHTMLWindow2_Release(frame2);
6870 hres = IHTMLWindow2_get_document(top, &top_doc);
6871 ok(hres == S_OK, "IHTMLWindow2_get_document failed: 0x%08x\n", hres);
6872 IHTMLWindow2_Release(top);
6876 test_doc_title(top_doc, "frameset test");
6877 IHTMLDocument2_Release(top_doc);
6880 static void test_frameset(IHTMLDocument2 *doc)
6882 IHTMLWindow2 *window;
6883 IHTMLFramesCollection2 *frames;
6885 IHTMLFrameBase *fbase;
6887 VARIANT index_var, result_var;
6891 window = get_doc_window(doc);
6893 /* test using IHTMLFramesCollection object */
6895 hres = IHTMLWindow2_get_frames(window, &frames);
6896 ok(hres == S_OK, "IHTMLWindow2_get_frames failed: 0x%08x\n", hres);
6897 IHTMLWindow2_Release(window);
6901 /* test result length */
6902 hres = IHTMLFramesCollection2_get_length(frames, &length);
6903 ok(hres == S_OK, "IHTMLFramesCollection2_get_length failed: 0x%08x\n", hres);
6904 ok(length == 3, "IHTMLFramesCollection2_get_length should have been 3, was: %d\n", length);
6906 /* test first frame */
6907 V_VT(&index_var) = VT_I4;
6908 V_I4(&index_var) = 0;
6909 hres = IHTMLFramesCollection2_item(frames, &index_var, &result_var);
6910 ok(hres == S_OK, "IHTMLFramesCollection2_item failed: 0x%08x\n", hres);
6911 if(SUCCEEDED(hres)) {
6912 ok(V_VT(&result_var) == VT_DISPATCH, "result type should have been VT_DISPATCH, was: 0x%x\n", V_VT(&result_var));
6913 test_frame((IDispatch*)V_DISPATCH(&result_var), "fr1");
6915 VariantClear(&result_var);
6917 /* test second frame */
6918 V_I4(&index_var) = 1;
6919 hres = IHTMLFramesCollection2_item(frames, &index_var, &result_var);
6920 ok(hres == S_OK, "IHTMLFramesCollection2_item failed: 0x%08x\n", hres);
6921 if(SUCCEEDED(hres)) {
6922 ok(V_VT(&result_var) == VT_DISPATCH, "result type should have been VT_DISPATCH, was: 0x%x\n", V_VT(&result_var));
6923 test_frame((IDispatch*)V_DISPATCH(&result_var), "fr2");
6925 VariantClear(&result_var);
6927 /* fail on next frame */
6928 V_I4(&index_var) = 3;
6929 hres = IHTMLFramesCollection2_item(frames, &index_var, &result_var);
6930 ok(hres == DISP_E_MEMBERNOTFOUND, "IHTMLFramesCollection2_item should have"
6931 "failed with DISP_E_MEMBERNOTFOUND, instead: 0x%08x\n", hres);
6932 VariantClear(&result_var);
6934 /* string argument (element id lookup) */
6935 V_VT(&index_var) = VT_BSTR;
6936 V_BSTR(&index_var) = a2bstr("fr1");
6937 hres = IHTMLFramesCollection2_item(frames, &index_var, &result_var);
6938 ok(hres == S_OK, "IHTMLFramesCollection2_item failed: 0x%08x\n", hres);
6939 if(SUCCEEDED(hres)) {
6940 ok(V_VT(&result_var) == VT_DISPATCH, "result type should have been VT_DISPATCH, was: 0x%x\n", V_VT(&result_var));
6941 test_frame(V_DISPATCH(&result_var), "fr1");
6943 VariantClear(&result_var);
6944 VariantClear(&index_var);
6946 /* invalid argument */
6947 V_VT(&index_var) = VT_BOOL;
6948 V_BOOL(&index_var) = VARIANT_TRUE;
6949 hres = IHTMLFramesCollection2_item(frames, &index_var, &result_var);
6950 ok(hres == E_INVALIDARG, "IHTMLFramesCollection2_item should have"
6951 "failed with E_INVALIDARG, instead: 0x%08x\n", hres);
6952 VariantClear(&result_var);
6954 IHTMLFramesCollection2_Release(frames);
6956 /* test using IHTMLWindow2 inheritance */
6958 /* test result length */
6959 hres = IHTMLWindow2_get_length(window, &length);
6960 ok(hres == S_OK, "IHTMLWindow2_get_length failed: 0x%08x\n", hres);
6961 ok(length == 3, "IHTMLWindow2_get_length should have been 3, was: %d\n", length);
6963 /* test first frame */
6964 V_VT(&index_var) = VT_I4;
6965 V_I4(&index_var) = 0;
6966 hres = IHTMLWindow2_item(window, &index_var, &result_var);
6967 ok(hres == S_OK, "IHTMLWindow2_item failed: 0x%08x\n", hres);
6968 if(SUCCEEDED(hres)) {
6969 ok(V_VT(&result_var) == VT_DISPATCH, "result type should have been VT_DISPATCH, was: 0x%x\n", V_VT(&result_var));
6970 test_frame((IDispatch*)V_DISPATCH(&result_var), "fr1");
6972 VariantClear(&result_var);
6974 /* test second frame */
6975 V_I4(&index_var) = 1;
6976 hres = IHTMLWindow2_item(window, &index_var, &result_var);
6977 ok(hres == S_OK, "IHTMLWindow2_item failed: 0x%08x\n", hres);
6978 if(SUCCEEDED(hres)) {
6979 ok(V_VT(&result_var) == VT_DISPATCH, "result type should have been VT_DISPATCH, was: 0x%x\n", V_VT(&result_var));
6980 test_frame((IDispatch*)V_DISPATCH(&result_var), "fr2");
6982 VariantClear(&result_var);
6984 /* fail on next frame */
6985 V_I4(&index_var) = 3;
6986 hres = IHTMLWindow2_item(window, &index_var, &result_var);
6987 ok(hres == DISP_E_MEMBERNOTFOUND, "IHTMLWindow2_item should have"
6988 "failed with DISP_E_MEMBERNOTFOUND, instead: 0x%08x\n", hres);
6989 VariantClear(&result_var);
6991 /* string argument (element id lookup) */
6992 V_VT(&index_var) = VT_BSTR;
6993 V_BSTR(&index_var) = a2bstr("fr2");
6994 hres = IHTMLWindow2_item(window, &index_var, &result_var);
6995 ok(hres == S_OK, "IHTMLWindow2_item failed: 0x%08x\n", hres);
6996 if(SUCCEEDED(hres)) {
6997 ok(V_VT(&result_var) == VT_DISPATCH, "result type should have been VT_DISPATCH, was: 0x%x\n", V_VT(&result_var));
6998 test_frame((IDispatch*)V_DISPATCH(&result_var), "fr2");
7000 VariantClear(&result_var);
7001 VariantClear(&index_var);
7003 /* invalid argument */
7004 V_VT(&index_var) = VT_BOOL;
7005 V_BOOL(&index_var) = VARIANT_TRUE;
7006 hres = IHTMLWindow2_item(window, &index_var, &result_var);
7007 ok(hres == E_INVALIDARG, "IHTMLWindow2_item should have"
7008 "failed with E_INVALIDARG, instead: 0x%08x\n", hres);
7009 VariantClear(&result_var);
7011 /* getElementById with node name attributes */
7012 elem = get_doc_elem_by_id(doc, "nm1");
7013 test_elem_id((IUnknown*)elem, "fr1");
7015 /* get/put scrolling */
7016 hres = IHTMLElement_QueryInterface(elem, &IID_IHTMLFrameBase, (void**)&fbase);
7017 ok(hres == S_OK, "Could not get IHTMLFrameBase interface: 0x%08x\n", hres);
7019 hres = IHTMLFrameBase_get_scrolling(fbase, &str);
7020 ok(hres == S_OK, "IHTMLFrameBase_get_scrolling failed: 0x%08x\n", hres);
7021 ok(!strcmp_wa(str, "auto"), "get_scrolling should have given 'auto', gave: %s\n", wine_dbgstr_w(str));
7025 hres = IHTMLFrameBase_put_scrolling(fbase, str);
7026 ok(hres == S_OK, "IHTMLFrameBase_put_scrolling failed: 0x%08x\n", hres);
7029 hres = IHTMLFrameBase_get_scrolling(fbase, &str);
7030 ok(hres == S_OK, "IHTMLFrameBase_get_scrolling failed: 0x%08x\n", hres);
7031 ok(!strcmp_wa(str, "no"), "get_scrolling should have given 'no', gave: %s\n", wine_dbgstr_w(str));
7034 str = a2bstr("junk");
7035 hres = IHTMLFrameBase_put_scrolling(fbase, str);
7036 ok(hres == E_INVALIDARG, "IHTMLFrameBase_put_scrolling should have failed "
7037 "with E_INVALIDARG, instead: 0x%08x\n", hres);
7040 hres = IHTMLFrameBase_get_scrolling(fbase, &str);
7041 ok(hres == S_OK, "IHTMLFrameBase_get_scrolling failed: 0x%08x\n", hres);
7042 ok(!strcmp_wa(str, "no"), "get_scrolling should have given 'no', gave: %s\n", wine_dbgstr_w(str));
7046 hres = IHTMLFrameBase_get_name(fbase, &str);
7047 ok(hres == S_OK, "IHTMLFrameBase_get_name failed: 0x%08x\n", hres);
7048 ok(!strcmp_wa(str, "nm1"), "get_name should have given 'nm1', gave: %s\n", wine_dbgstr_w(str));
7051 IHTMLFrameBase_Release(fbase);
7052 IHTMLElement_Release(elem);
7054 /* get_name with no name attr */
7055 elem = get_doc_elem_by_id(doc, "fr3");
7056 hres = IHTMLElement_QueryInterface(elem, &IID_IHTMLFrameBase, (void**)&fbase);
7057 ok(hres == S_OK, "Could not get IHTMLFrameBase interface: 0x%08x\n", hres);
7059 hres = IHTMLFrameBase_get_name(fbase, &str);
7060 ok(hres == S_OK, "IHTMLFrameBase_get_name failed: 0x%08x\n", hres);
7061 ok(str == NULL, "get_name should have given 'null', gave: %s\n", wine_dbgstr_w(str));
7064 IHTMLFrameBase_Release(fbase);
7065 IHTMLElement_Release(elem);
7068 static IHTMLDocument2 *create_docfrag(IHTMLDocument2 *doc)
7070 IHTMLDocument2 *frag;
7071 IHTMLDocument3 *doc3;
7074 hres = IHTMLDocument2_QueryInterface(doc, &IID_IHTMLDocument3, (void**)&doc3);
7075 ok(hres == S_OK, "Coult not get IHTMLDocument3 iface: %08x\n", hres);
7077 hres = IHTMLDocument3_createDocumentFragment(doc3, &frag);
7078 IHTMLDocument3_Release(doc3);
7079 ok(hres == S_OK, "createDocumentFragment failed: %08x\n", hres);
7080 ok(frag != NULL, "frag == NULL\n");
7085 static void test_docfrag(IHTMLDocument2 *doc)
7087 IHTMLElement *div, *body, *br;
7088 IHTMLElementCollection *col;
7089 IHTMLLocation *location;
7090 IHTMLDocument2 *frag;
7093 static const elem_type_t all_types[] = {
7102 frag = create_docfrag(doc);
7104 test_disp((IUnknown*)frag, &DIID_DispHTMLDocument, "[object]");
7106 body = (void*)0xdeadbeef;
7107 hres = IHTMLDocument2_get_body(frag, &body);
7108 ok(hres == S_OK, "get_body failed: %08x\n", hres);
7109 ok(!body, "body != NULL\n");
7111 location = (void*)0xdeadbeef;
7112 hres = IHTMLDocument2_get_location(frag, &location);
7113 ok(hres == E_UNEXPECTED, "get_location failed: %08x\n", hres);
7114 ok(location == (void*)0xdeadbeef, "location changed\n");
7116 br = test_create_elem(doc, "BR");
7117 test_node_append_child((IUnknown*)frag, (IUnknown*)br);
7118 IHTMLElement_Release(br);
7120 div = get_elem_by_id(doc, "divid", TRUE);
7121 test_node_append_child((IUnknown*)div, (IUnknown*)frag);
7122 IHTMLElement_Release(div);
7124 hres = IHTMLDocument2_get_all(doc, &col);
7125 ok(hres == S_OK, "get_all failed: %08x\n", hres);
7126 test_elem_collection((IUnknown*)col, all_types, sizeof(all_types)/sizeof(all_types[0]));
7127 IHTMLElementCollection_Release(col);
7129 IHTMLDocument2_Release(frag);
7132 static IHTMLDocument2 *notif_doc;
7133 static BOOL doc_complete;
7135 static HRESULT WINAPI PropertyNotifySink_QueryInterface(IPropertyNotifySink *iface,
7136 REFIID riid, void**ppv)
7138 if(IsEqualGUID(&IID_IPropertyNotifySink, riid)) {
7143 ok(0, "unexpected call\n");
7144 return E_NOINTERFACE;
7147 static ULONG WINAPI PropertyNotifySink_AddRef(IPropertyNotifySink *iface)
7152 static ULONG WINAPI PropertyNotifySink_Release(IPropertyNotifySink *iface)
7157 static HRESULT WINAPI PropertyNotifySink_OnChanged(IPropertyNotifySink *iface, DISPID dispID)
7159 if(dispID == DISPID_READYSTATE){
7163 hres = IHTMLDocument2_get_readyState(notif_doc, &state);
7164 ok(hres == S_OK, "get_readyState failed: %08x\n", hres);
7166 if(!strcmp_wa(state, "complete"))
7167 doc_complete = TRUE;
7169 SysFreeString(state);
7175 static HRESULT WINAPI PropertyNotifySink_OnRequestEdit(IPropertyNotifySink *iface, DISPID dispID)
7177 ok(0, "unexpected call\n");
7181 static IPropertyNotifySinkVtbl PropertyNotifySinkVtbl = {
7182 PropertyNotifySink_QueryInterface,
7183 PropertyNotifySink_AddRef,
7184 PropertyNotifySink_Release,
7185 PropertyNotifySink_OnChanged,
7186 PropertyNotifySink_OnRequestEdit
7189 static IPropertyNotifySink PropertyNotifySink = { &PropertyNotifySinkVtbl };
7191 static IHTMLDocument2 *create_doc_with_string(const char *str)
7193 IPersistStreamInit *init;
7195 IHTMLDocument2 *doc;
7199 notif_doc = doc = create_document();
7203 doc_complete = FALSE;
7205 mem = GlobalAlloc(0, len);
7206 memcpy(mem, str, len);
7207 CreateStreamOnHGlobal(mem, TRUE, &stream);
7209 IHTMLDocument2_QueryInterface(doc, &IID_IPersistStreamInit, (void**)&init);
7211 IPersistStreamInit_Load(init, stream);
7212 IPersistStreamInit_Release(init);
7213 IStream_Release(stream);
7218 static void do_advise(IUnknown *unk, REFIID riid, IUnknown *unk_advise)
7220 IConnectionPointContainer *container;
7221 IConnectionPoint *cp;
7225 hres = IUnknown_QueryInterface(unk, &IID_IConnectionPointContainer, (void**)&container);
7226 ok(hres == S_OK, "QueryInterface(IID_IConnectionPointContainer) failed: %08x\n", hres);
7228 hres = IConnectionPointContainer_FindConnectionPoint(container, riid, &cp);
7229 IConnectionPointContainer_Release(container);
7230 ok(hres == S_OK, "FindConnectionPoint failed: %08x\n", hres);
7232 hres = IConnectionPoint_Advise(cp, unk_advise, &cookie);
7233 IConnectionPoint_Release(cp);
7234 ok(hres == S_OK, "Advise failed: %08x\n", hres);
7237 typedef void (*domtest_t)(IHTMLDocument2*);
7239 static void run_domtest(const char *str, domtest_t test)
7241 IHTMLDocument2 *doc;
7245 doc = create_doc_with_string(str);
7249 do_advise((IUnknown*)doc, &IID_IPropertyNotifySink, (IUnknown*)&PropertyNotifySink);
7251 while(!doc_complete && GetMessage(&msg, NULL, 0, 0)) {
7252 TranslateMessage(&msg);
7253 DispatchMessage(&msg);
7258 ref = IHTMLDocument2_Release(doc);
7259 ok(!ref || broken(ref == 1), /* Vista */
7267 run_domtest(doc_str1, test_doc_elem);
7268 run_domtest(doc_str1, test_get_set_attr);
7269 run_domtest(range_test_str, test_txtrange);
7270 run_domtest(range_test2_str, test_txtrange2);
7271 if (winetest_interactive || ! is_ie_hardened()) {
7272 run_domtest(elem_test_str, test_elems);
7274 skip("IE running in Enhanced Security Configuration\n");
7276 run_domtest(elem_test2_str, test_elems2);
7277 run_domtest(doc_blank, test_create_elems);
7278 run_domtest(doc_blank, test_defaults);
7279 run_domtest(doc_blank, test_null_write);
7280 run_domtest(indent_test_str, test_indent);
7281 run_domtest(cond_comment_str, test_cond_comment);
7282 run_domtest(frameset_str, test_frameset);
7283 run_domtest(emptydiv_str, test_docfrag);