2 * Copyright 2006 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
31 #include "wine/debug.h"
33 #include "mshtml_private.h"
34 #include "htmlevent.h"
35 #include "htmlstyle.h"
37 WINE_DEFAULT_DEBUG_CHANNEL(mshtml
);
39 static const WCHAR aW
[] = {'A',0};
40 static const WCHAR bodyW
[] = {'B','O','D','Y',0};
41 static const WCHAR embedW
[] = {'E','M','B','E','D',0};
42 static const WCHAR formW
[] = {'F','O','R','M',0};
43 static const WCHAR frameW
[] = {'F','R','A','M','E',0};
44 static const WCHAR headW
[] = {'H','E','A','D',0};
45 static const WCHAR iframeW
[] = {'I','F','R','A','M','E',0};
46 static const WCHAR imgW
[] = {'I','M','G',0};
47 static const WCHAR inputW
[] = {'I','N','P','U','T',0};
48 static const WCHAR metaW
[] = {'M','E','T','A',0};
49 static const WCHAR objectW
[] = {'O','B','J','E','C','T',0};
50 static const WCHAR optionW
[] = {'O','P','T','I','O','N',0};
51 static const WCHAR scriptW
[] = {'S','C','R','I','P','T',0};
52 static const WCHAR selectW
[] = {'S','E','L','E','C','T',0};
53 static const WCHAR styleW
[] = {'S','T','Y','L','E',0};
54 static const WCHAR tableW
[] = {'T','A','B','L','E',0};
55 static const WCHAR tdW
[] = {'T','D',0};
56 static const WCHAR textareaW
[] = {'T','E','X','T','A','R','E','A',0};
57 static const WCHAR title_tagW
[]= {'T','I','T','L','E',0};
58 static const WCHAR trW
[] = {'T','R',0};
62 HRESULT (*constructor
)(HTMLDocumentNode
*,nsIDOMHTMLElement
*,HTMLElement
**);
65 static const tag_desc_t tag_descs
[] = {
66 {aW
, HTMLAnchorElement_Create
},
67 {bodyW
, HTMLBodyElement_Create
},
68 {embedW
, HTMLEmbedElement_Create
},
69 {formW
, HTMLFormElement_Create
},
70 {frameW
, HTMLFrameElement_Create
},
71 {headW
, HTMLHeadElement_Create
},
72 {iframeW
, HTMLIFrame_Create
},
73 {imgW
, HTMLImgElement_Create
},
74 {inputW
, HTMLInputElement_Create
},
75 {metaW
, HTMLMetaElement_Create
},
76 {objectW
, HTMLObjectElement_Create
},
77 {optionW
, HTMLOptionElement_Create
},
78 {scriptW
, HTMLScriptElement_Create
},
79 {selectW
, HTMLSelectElement_Create
},
80 {styleW
, HTMLStyleElement_Create
},
81 {tableW
, HTMLTable_Create
},
82 {tdW
, HTMLTableCell_Create
},
83 {textareaW
, HTMLTextAreaElement_Create
},
84 {title_tagW
, HTMLTitleElement_Create
},
85 {trW
, HTMLTableRow_Create
}
88 static const tag_desc_t
*get_tag_desc(const WCHAR
*tag_name
)
90 DWORD min
=0, max
=sizeof(tag_descs
)/sizeof(*tag_descs
)-1, i
;
95 r
= strcmpW(tag_name
, tag_descs
[i
].name
);
108 HRESULT
replace_node_by_html(nsIDOMHTMLDocument
*nsdoc
, nsIDOMNode
*nsnode
, const WCHAR
*html
)
110 nsIDOMDocumentFragment
*nsfragment
;
111 nsIDOMNode
*nsparent
;
117 nsres
= nsIDOMHTMLDocument_CreateRange(nsdoc
, &range
);
118 if(NS_FAILED(nsres
)) {
119 ERR("CreateRange failed: %08x\n", nsres
);
123 nsAString_InitDepend(&html_str
, html
);
124 nsIDOMRange_CreateContextualFragment(range
, &html_str
, &nsfragment
);
125 nsIDOMRange_Release(range
);
126 nsAString_Finish(&html_str
);
127 if(NS_FAILED(nsres
)) {
128 ERR("CreateContextualFragment failed: %08x\n", nsres
);
132 nsres
= nsIDOMNode_GetParentNode(nsnode
, &nsparent
);
133 if(NS_SUCCEEDED(nsres
) && nsparent
) {
136 nsres
= nsIDOMNode_ReplaceChild(nsparent
, (nsIDOMNode
*)nsfragment
, nsnode
, &nstmp
);
137 nsIDOMNode_Release(nsparent
);
138 if(NS_FAILED(nsres
)) {
139 ERR("ReplaceChild failed: %08x\n", nsres
);
142 nsIDOMNode_Release(nstmp
);
145 ERR("GetParentNode failed: %08x\n", nsres
);
149 nsIDOMDocumentFragment_Release(nsfragment
);
156 IHTMLFiltersCollection IHTMLFiltersCollection_iface
;
159 } HTMLFiltersCollection
;
161 static inline HTMLFiltersCollection
*impl_from_IHTMLFiltersCollection(IHTMLFiltersCollection
*iface
)
163 return CONTAINING_RECORD(iface
, HTMLFiltersCollection
, IHTMLFiltersCollection_iface
);
166 static IHTMLFiltersCollection
*HTMLFiltersCollection_Create(void);
168 static inline HTMLElement
*impl_from_IHTMLElement(IHTMLElement
*iface
)
170 return CONTAINING_RECORD(iface
, HTMLElement
, IHTMLElement_iface
);
173 HRESULT
create_nselem(HTMLDocumentNode
*doc
, const WCHAR
*tag
, nsIDOMHTMLElement
**ret
)
175 nsIDOMElement
*nselem
;
180 WARN("NULL nsdoc\n");
184 nsAString_InitDepend(&tag_str
, tag
);
185 nsres
= nsIDOMDocument_CreateElement(doc
->nsdoc
, &tag_str
, &nselem
);
186 nsAString_Finish(&tag_str
);
187 if(NS_FAILED(nsres
)) {
188 ERR("CreateElement failed: %08x\n", nsres
);
192 nsres
= nsIDOMElement_QueryInterface(nselem
, &IID_nsIDOMHTMLElement
, (void**)ret
);
193 nsIDOMElement_Release(nselem
);
194 if(NS_FAILED(nsres
)) {
195 ERR("Could not get nsIDOMHTMLElement iface: %08x\n", nsres
);
202 static HRESULT WINAPI
HTMLElement_QueryInterface(IHTMLElement
*iface
,
203 REFIID riid
, void **ppv
)
205 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
207 return IHTMLDOMNode_QueryInterface(&This
->node
.IHTMLDOMNode_iface
, riid
, ppv
);
210 static ULONG WINAPI
HTMLElement_AddRef(IHTMLElement
*iface
)
212 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
214 return IHTMLDOMNode_AddRef(&This
->node
.IHTMLDOMNode_iface
);
217 static ULONG WINAPI
HTMLElement_Release(IHTMLElement
*iface
)
219 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
221 return IHTMLDOMNode_Release(&This
->node
.IHTMLDOMNode_iface
);
224 static HRESULT WINAPI
HTMLElement_GetTypeInfoCount(IHTMLElement
*iface
, UINT
*pctinfo
)
226 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
227 return IDispatchEx_GetTypeInfoCount(&This
->node
.dispex
.IDispatchEx_iface
, pctinfo
);
230 static HRESULT WINAPI
HTMLElement_GetTypeInfo(IHTMLElement
*iface
, UINT iTInfo
,
231 LCID lcid
, ITypeInfo
**ppTInfo
)
233 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
234 return IDispatchEx_GetTypeInfo(&This
->node
.dispex
.IDispatchEx_iface
, iTInfo
, lcid
, ppTInfo
);
237 static HRESULT WINAPI
HTMLElement_GetIDsOfNames(IHTMLElement
*iface
, REFIID riid
,
238 LPOLESTR
*rgszNames
, UINT cNames
,
239 LCID lcid
, DISPID
*rgDispId
)
241 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
242 return IDispatchEx_GetIDsOfNames(&This
->node
.dispex
.IDispatchEx_iface
, riid
, rgszNames
, cNames
,
246 static HRESULT WINAPI
HTMLElement_Invoke(IHTMLElement
*iface
, DISPID dispIdMember
,
247 REFIID riid
, LCID lcid
, WORD wFlags
, DISPPARAMS
*pDispParams
,
248 VARIANT
*pVarResult
, EXCEPINFO
*pExcepInfo
, UINT
*puArgErr
)
250 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
251 return IDispatchEx_Invoke(&This
->node
.dispex
.IDispatchEx_iface
, dispIdMember
, riid
, lcid
,
252 wFlags
, pDispParams
, pVarResult
, pExcepInfo
, puArgErr
);
255 static HRESULT WINAPI
HTMLElement_setAttribute(IHTMLElement
*iface
, BSTR strAttributeName
,
256 VARIANT AttributeValue
, LONG lFlags
)
258 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
260 DISPID dispid
, dispidNamed
= DISPID_PROPERTYPUT
;
261 DISPPARAMS dispParams
;
264 TRACE("(%p)->(%s %s %08x)\n", This
, debugstr_w(strAttributeName
), debugstr_variant(&AttributeValue
), lFlags
);
266 hres
= IDispatchEx_GetDispID(&This
->node
.dispex
.IDispatchEx_iface
, strAttributeName
,
267 fdexNameCaseInsensitive
| fdexNameEnsure
, &dispid
);
271 dispParams
.cArgs
= 1;
272 dispParams
.cNamedArgs
= 1;
273 dispParams
.rgdispidNamedArgs
= &dispidNamed
;
274 dispParams
.rgvarg
= &AttributeValue
;
276 hres
= IDispatchEx_InvokeEx(&This
->node
.dispex
.IDispatchEx_iface
, dispid
,
277 LOCALE_SYSTEM_DEFAULT
, DISPATCH_PROPERTYPUT
, &dispParams
, NULL
, &excep
, NULL
);
281 static HRESULT WINAPI
HTMLElement_getAttribute(IHTMLElement
*iface
, BSTR strAttributeName
,
282 LONG lFlags
, VARIANT
*AttributeValue
)
284 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
287 DISPPARAMS dispParams
= {NULL
, NULL
, 0, 0};
290 TRACE("(%p)->(%s %08x %p)\n", This
, debugstr_w(strAttributeName
), lFlags
, AttributeValue
);
292 hres
= IDispatchEx_GetDispID(&This
->node
.dispex
.IDispatchEx_iface
, strAttributeName
,
293 fdexNameCaseInsensitive
, &dispid
);
294 if(hres
== DISP_E_UNKNOWNNAME
) {
295 V_VT(AttributeValue
) = VT_NULL
;
300 V_VT(AttributeValue
) = VT_NULL
;
304 hres
= IDispatchEx_InvokeEx(&This
->node
.dispex
.IDispatchEx_iface
, dispid
, LOCALE_SYSTEM_DEFAULT
,
305 DISPATCH_PROPERTYGET
, &dispParams
, AttributeValue
, &excep
, NULL
);
310 static HRESULT WINAPI
HTMLElement_removeAttribute(IHTMLElement
*iface
, BSTR strAttributeName
,
311 LONG lFlags
, VARIANT_BOOL
*pfSuccess
)
313 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
315 TRACE("(%p)->(%s %x %p)\n", This
, debugstr_w(strAttributeName
), lFlags
, pfSuccess
);
317 return remove_prop(&This
->node
.dispex
, strAttributeName
, pfSuccess
);
320 static HRESULT WINAPI
HTMLElement_put_className(IHTMLElement
*iface
, BSTR v
)
322 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
323 nsAString classname_str
;
326 TRACE("(%p)->(%s)\n", This
, debugstr_w(v
));
329 FIXME("NULL nselem\n");
333 nsAString_InitDepend(&classname_str
, v
);
334 nsres
= nsIDOMHTMLElement_SetClassName(This
->nselem
, &classname_str
);
335 nsAString_Finish(&classname_str
);
337 ERR("SetClassName failed: %08x\n", nsres
);
342 static HRESULT WINAPI
HTMLElement_get_className(IHTMLElement
*iface
, BSTR
*p
)
344 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
348 TRACE("(%p)->(%p)\n", This
, p
);
351 FIXME("NULL nselem\n");
355 nsAString_Init(&class_str
, NULL
);
356 nsres
= nsIDOMHTMLElement_GetClassName(This
->nselem
, &class_str
);
357 return return_nsstr(nsres
, &class_str
, p
);
360 static HRESULT WINAPI
HTMLElement_put_id(IHTMLElement
*iface
, BSTR v
)
362 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
366 TRACE("(%p)->(%s)\n", This
, debugstr_w(v
));
369 FIXME("nselem == NULL\n");
373 nsAString_InitDepend(&id_str
, v
);
374 nsres
= nsIDOMHTMLElement_SetId(This
->nselem
, &id_str
);
375 nsAString_Finish(&id_str
);
377 ERR("SetId failed: %08x\n", nsres
);
382 static HRESULT WINAPI
HTMLElement_get_id(IHTMLElement
*iface
, BSTR
*p
)
384 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
388 TRACE("(%p)->(%p)\n", This
, p
);
395 nsAString_Init(&id_str
, NULL
);
396 nsres
= nsIDOMHTMLElement_GetId(This
->nselem
, &id_str
);
397 return return_nsstr(nsres
, &id_str
, p
);
400 static HRESULT WINAPI
HTMLElement_get_tagName(IHTMLElement
*iface
, BSTR
*p
)
402 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
406 TRACE("(%p)->(%p)\n", This
, p
);
409 static const WCHAR comment_tagW
[] = {'!',0};
411 WARN("NULL nselem, assuming comment\n");
413 *p
= SysAllocString(comment_tagW
);
414 return *p
? S_OK
: E_OUTOFMEMORY
;
417 nsAString_Init(&tag_str
, NULL
);
418 nsres
= nsIDOMHTMLElement_GetTagName(This
->nselem
, &tag_str
);
419 return return_nsstr(nsres
, &tag_str
, p
);
422 static HRESULT WINAPI
HTMLElement_get_parentElement(IHTMLElement
*iface
, IHTMLElement
**p
)
424 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
428 TRACE("(%p)->(%p)\n", This
, p
);
430 hres
= IHTMLDOMNode_get_parentNode(&This
->node
.IHTMLDOMNode_iface
, &node
);
434 hres
= IHTMLDOMNode_QueryInterface(node
, &IID_IHTMLElement
, (void**)p
);
435 IHTMLDOMNode_Release(node
);
442 static HRESULT WINAPI
HTMLElement_get_style(IHTMLElement
*iface
, IHTMLStyle
**p
)
444 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
446 TRACE("(%p)->(%p)\n", This
, p
);
451 hres
= HTMLStyle_Create(This
, &This
->style
);
456 *p
= &This
->style
->IHTMLStyle_iface
;
457 IHTMLStyle_AddRef(*p
);
461 static HRESULT WINAPI
HTMLElement_put_onhelp(IHTMLElement
*iface
, VARIANT v
)
463 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
464 FIXME("(%p)->(%s)\n", This
, debugstr_variant(&v
));
468 static HRESULT WINAPI
HTMLElement_get_onhelp(IHTMLElement
*iface
, VARIANT
*p
)
470 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
471 FIXME("(%p)->(%p)\n", This
, p
);
475 static HRESULT WINAPI
HTMLElement_put_onclick(IHTMLElement
*iface
, VARIANT v
)
477 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
479 TRACE("(%p)->(%s)\n", This
, debugstr_variant(&v
));
481 return set_node_event(&This
->node
, EVENTID_CLICK
, &v
);
484 static HRESULT WINAPI
HTMLElement_get_onclick(IHTMLElement
*iface
, VARIANT
*p
)
486 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
488 TRACE("(%p)->(%p)\n", This
, p
);
490 return get_node_event(&This
->node
, EVENTID_CLICK
, p
);
493 static HRESULT WINAPI
HTMLElement_put_ondblclick(IHTMLElement
*iface
, VARIANT v
)
495 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
497 FIXME("(%p)->(%s)\n", This
, debugstr_variant(&v
));
499 return set_node_event(&This
->node
, EVENTID_DBLCLICK
, &v
);
502 static HRESULT WINAPI
HTMLElement_get_ondblclick(IHTMLElement
*iface
, VARIANT
*p
)
504 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
506 TRACE("(%p)->(%p)\n", This
, p
);
508 return get_node_event(&This
->node
, EVENTID_DBLCLICK
, p
);
511 static HRESULT WINAPI
HTMLElement_put_onkeydown(IHTMLElement
*iface
, VARIANT v
)
513 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
515 TRACE("(%p)->(%s)\n", This
, debugstr_variant(&v
));
517 return set_node_event(&This
->node
, EVENTID_KEYDOWN
, &v
);
520 static HRESULT WINAPI
HTMLElement_get_onkeydown(IHTMLElement
*iface
, VARIANT
*p
)
522 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
524 TRACE("(%p)->(%p)\n", This
, p
);
526 return get_node_event(&This
->node
, EVENTID_KEYDOWN
, p
);
529 static HRESULT WINAPI
HTMLElement_put_onkeyup(IHTMLElement
*iface
, VARIANT v
)
531 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
533 TRACE("(%p)->(%s)\n", This
, debugstr_variant(&v
));
535 return set_node_event(&This
->node
, EVENTID_KEYUP
, &v
);
538 static HRESULT WINAPI
HTMLElement_get_onkeyup(IHTMLElement
*iface
, VARIANT
*p
)
540 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
541 FIXME("(%p)->(%p)\n", This
, p
);
545 static HRESULT WINAPI
HTMLElement_put_onkeypress(IHTMLElement
*iface
, VARIANT v
)
547 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
549 TRACE("(%p)->(%s)\n", This
, debugstr_variant(&v
));
551 return set_node_event(&This
->node
, EVENTID_KEYPRESS
, &v
);
554 static HRESULT WINAPI
HTMLElement_get_onkeypress(IHTMLElement
*iface
, VARIANT
*p
)
556 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
558 TRACE("(%p)->(%p)\n", This
, p
);
560 return get_node_event(&This
->node
, EVENTID_KEYPRESS
, p
);
563 static HRESULT WINAPI
HTMLElement_put_onmouseout(IHTMLElement
*iface
, VARIANT v
)
565 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
567 TRACE("(%p)->(%s)\n", This
, debugstr_variant(&v
));
569 return set_node_event(&This
->node
, EVENTID_MOUSEOUT
, &v
);
572 static HRESULT WINAPI
HTMLElement_get_onmouseout(IHTMLElement
*iface
, VARIANT
*p
)
574 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
576 TRACE("(%p)->(%p)\n", This
, p
);
578 return get_node_event(&This
->node
, EVENTID_MOUSEOUT
, p
);
581 static HRESULT WINAPI
HTMLElement_put_onmouseover(IHTMLElement
*iface
, VARIANT v
)
583 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
585 TRACE("(%p)->(%s)\n", This
, debugstr_variant(&v
));
587 return set_node_event(&This
->node
, EVENTID_MOUSEOVER
, &v
);
590 static HRESULT WINAPI
HTMLElement_get_onmouseover(IHTMLElement
*iface
, VARIANT
*p
)
592 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
594 TRACE("(%p)->(%p)\n", This
, p
);
596 return get_node_event(&This
->node
, EVENTID_MOUSEOVER
, p
);
599 static HRESULT WINAPI
HTMLElement_put_onmousemove(IHTMLElement
*iface
, VARIANT v
)
601 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
603 TRACE("(%p)->(%s)\n", This
, debugstr_variant(&v
));
605 return set_node_event(&This
->node
, EVENTID_MOUSEMOVE
, &v
);
608 static HRESULT WINAPI
HTMLElement_get_onmousemove(IHTMLElement
*iface
, VARIANT
*p
)
610 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
612 TRACE("(%p)->(%p)\n", This
, p
);
614 return get_node_event(&This
->node
, EVENTID_MOUSEMOVE
, p
);
617 static HRESULT WINAPI
HTMLElement_put_onmousedown(IHTMLElement
*iface
, VARIANT v
)
619 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
621 TRACE("(%p)->(%s)\n", This
, debugstr_variant(&v
));
623 return set_node_event(&This
->node
, EVENTID_MOUSEDOWN
, &v
);
626 static HRESULT WINAPI
HTMLElement_get_onmousedown(IHTMLElement
*iface
, VARIANT
*p
)
628 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
630 TRACE("(%p)->(%p)\n", This
, p
);
632 return get_node_event(&This
->node
, EVENTID_MOUSEDOWN
, p
);
635 static HRESULT WINAPI
HTMLElement_put_onmouseup(IHTMLElement
*iface
, VARIANT v
)
637 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
639 TRACE("(%p)->(%s)\n", This
, debugstr_variant(&v
));
641 return set_node_event(&This
->node
, EVENTID_MOUSEUP
, &v
);
644 static HRESULT WINAPI
HTMLElement_get_onmouseup(IHTMLElement
*iface
, VARIANT
*p
)
646 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
648 TRACE("(%p)->(%p)\n", This
, p
);
650 return get_node_event(&This
->node
, EVENTID_MOUSEUP
, p
);
653 static HRESULT WINAPI
HTMLElement_get_document(IHTMLElement
*iface
, IDispatch
**p
)
655 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
657 TRACE("(%p)->(%p)\n", This
, p
);
662 if(This
->node
.vtbl
->get_document
)
663 return This
->node
.vtbl
->get_document(&This
->node
, p
);
665 *p
= (IDispatch
*)&This
->node
.doc
->basedoc
.IHTMLDocument2_iface
;
666 IDispatch_AddRef(*p
);
670 static const WCHAR titleW
[] = {'t','i','t','l','e',0};
672 static HRESULT WINAPI
HTMLElement_put_title(IHTMLElement
*iface
, BSTR v
)
674 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
678 TRACE("(%p)->(%s)\n", This
, debugstr_w(v
));
684 hres
= dispex_get_dprop_ref(&This
->node
.dispex
, titleW
, TRUE
, &var
);
690 V_BSTR(var
) = v
? SysAllocString(v
) : NULL
;
694 nsAString_InitDepend(&title_str
, v
);
695 nsres
= nsIDOMHTMLElement_SetTitle(This
->nselem
, &title_str
);
696 nsAString_Finish(&title_str
);
698 ERR("SetTitle failed: %08x\n", nsres
);
703 static HRESULT WINAPI
HTMLElement_get_title(IHTMLElement
*iface
, BSTR
*p
)
705 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
709 TRACE("(%p)->(%p)\n", This
, p
);
715 hres
= dispex_get_dprop_ref(&This
->node
.dispex
, titleW
, FALSE
, &var
);
716 if(hres
== DISP_E_UNKNOWNNAME
) {
718 }else if(V_VT(var
) != VT_BSTR
) {
719 FIXME("title = %s\n", debugstr_variant(var
));
722 *p
= V_BSTR(var
) ? SysAllocString(V_BSTR(var
)) : NULL
;
728 nsAString_Init(&title_str
, NULL
);
729 nsres
= nsIDOMHTMLElement_GetTitle(This
->nselem
, &title_str
);
730 return return_nsstr(nsres
, &title_str
, p
);
733 static HRESULT WINAPI
HTMLElement_put_language(IHTMLElement
*iface
, BSTR v
)
735 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
736 FIXME("(%p)->(%s)\n", This
, debugstr_w(v
));
740 static HRESULT WINAPI
HTMLElement_get_language(IHTMLElement
*iface
, BSTR
*p
)
742 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
743 FIXME("(%p)->(%p)\n", This
, p
);
747 static HRESULT WINAPI
HTMLElement_put_onselectstart(IHTMLElement
*iface
, VARIANT v
)
749 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
751 TRACE("(%p)->(%s)\n", This
, debugstr_variant(&v
));
753 return set_node_event(&This
->node
, EVENTID_SELECTSTART
, &v
);
756 static HRESULT WINAPI
HTMLElement_get_onselectstart(IHTMLElement
*iface
, VARIANT
*p
)
758 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
760 TRACE("(%p)->(%p)\n", This
, p
);
762 return get_node_event(&This
->node
, EVENTID_SELECTSTART
, p
);
765 static HRESULT WINAPI
HTMLElement_scrollIntoView(IHTMLElement
*iface
, VARIANT varargStart
)
767 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
768 FIXME("(%p)->(%s)\n", This
, debugstr_variant(&varargStart
));
772 static HRESULT WINAPI
HTMLElement_contains(IHTMLElement
*iface
, IHTMLElement
*pChild
,
773 VARIANT_BOOL
*pfResult
)
775 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
776 FIXME("(%p)->(%p %p)\n", This
, pChild
, pfResult
);
780 static HRESULT WINAPI
HTMLElement_get_sourceIndex(IHTMLElement
*iface
, LONG
*p
)
782 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
783 FIXME("(%p)->(%p)\n", This
, p
);
787 static HRESULT WINAPI
HTMLElement_get_recordNumber(IHTMLElement
*iface
, VARIANT
*p
)
789 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
790 FIXME("(%p)->(%p)\n", This
, p
);
794 static HRESULT WINAPI
HTMLElement_put_lang(IHTMLElement
*iface
, BSTR v
)
796 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
797 FIXME("(%p)->(%s)\n", This
, debugstr_w(v
));
801 static HRESULT WINAPI
HTMLElement_get_lang(IHTMLElement
*iface
, BSTR
*p
)
803 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
804 FIXME("(%p)->(%p)\n", This
, p
);
808 static HRESULT WINAPI
HTMLElement_get_offsetLeft(IHTMLElement
*iface
, LONG
*p
)
810 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
811 PRInt32 off_left
= 0;
814 TRACE("(%p)->(%p)\n", This
, p
);
816 nsres
= nsIDOMHTMLElement_GetOffsetLeft(This
->nselem
, &off_left
);
817 if(NS_FAILED(nsres
)) {
818 ERR("GetOffsetLeft failed: %08x\n", nsres
);
826 static HRESULT WINAPI
HTMLElement_get_offsetTop(IHTMLElement
*iface
, LONG
*p
)
828 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
832 TRACE("(%p)->(%p)\n", This
, p
);
834 nsres
= nsIDOMHTMLElement_GetOffsetTop(This
->nselem
, &top
);
835 if(NS_FAILED(nsres
)) {
836 ERR("GetOffsetTop failed: %08x\n", nsres
);
844 static HRESULT WINAPI
HTMLElement_get_offsetWidth(IHTMLElement
*iface
, LONG
*p
)
846 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
850 TRACE("(%p)->(%p)\n", This
, p
);
852 nsres
= nsIDOMHTMLElement_GetOffsetWidth(This
->nselem
, &offset
);
853 if(NS_FAILED(nsres
)) {
854 ERR("GetOffsetWidth failed: %08x\n", nsres
);
862 static HRESULT WINAPI
HTMLElement_get_offsetHeight(IHTMLElement
*iface
, LONG
*p
)
864 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
868 TRACE("(%p)->(%p)\n", This
, p
);
870 nsres
= nsIDOMHTMLElement_GetOffsetHeight(This
->nselem
, &offset
);
871 if(NS_FAILED(nsres
)) {
872 ERR("GetOffsetHeight failed: %08x\n", nsres
);
880 static HRESULT WINAPI
HTMLElement_get_offsetParent(IHTMLElement
*iface
, IHTMLElement
**p
)
882 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
883 nsIDOMElement
*nsparent
;
887 TRACE("(%p)->(%p)\n", This
, p
);
889 nsres
= nsIDOMHTMLElement_GetOffsetParent(This
->nselem
, &nsparent
);
890 if(NS_FAILED(nsres
)) {
891 ERR("GetOffsetParent failed: %08x\n", nsres
);
898 hres
= get_node(This
->node
.doc
, (nsIDOMNode
*)nsparent
, TRUE
, &node
);
899 nsIDOMElement_Release(nsparent
);
903 hres
= IHTMLDOMNode_QueryInterface(&node
->IHTMLDOMNode_iface
, &IID_IHTMLElement
, (void**)p
);
913 static HRESULT WINAPI
HTMLElement_put_innerHTML(IHTMLElement
*iface
, BSTR v
)
915 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
919 TRACE("(%p)->(%s)\n", This
, debugstr_w(v
));
922 FIXME("NULL nselem\n");
926 nsAString_InitDepend(&html_str
, v
);
927 nsres
= nsIDOMHTMLElement_SetInnerHTML(This
->nselem
, &html_str
);
928 nsAString_Finish(&html_str
);
929 if(NS_FAILED(nsres
)) {
930 FIXME("SetInnerHtml failed %08x\n", nsres
);
937 static HRESULT WINAPI
HTMLElement_get_innerHTML(IHTMLElement
*iface
, BSTR
*p
)
939 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
943 TRACE("(%p)->(%p)\n", This
, p
);
946 FIXME("NULL nselem\n");
950 nsAString_Init(&html_str
, NULL
);
951 nsres
= nsIDOMHTMLElement_GetInnerHTML(This
->nselem
, &html_str
);
952 return return_nsstr(nsres
, &html_str
, p
);
955 static HRESULT WINAPI
HTMLElement_put_innerText(IHTMLElement
*iface
, BSTR v
)
957 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
958 nsIDOMNode
*nschild
, *tmp
;
959 nsIDOMText
*text_node
;
963 TRACE("(%p)->(%s)\n", This
, debugstr_w(v
));
966 nsres
= nsIDOMHTMLElement_GetLastChild(This
->nselem
, &nschild
);
967 if(NS_FAILED(nsres
)) {
968 ERR("GetLastChild failed: %08x\n", nsres
);
974 nsres
= nsIDOMHTMLElement_RemoveChild(This
->nselem
, nschild
, &tmp
);
975 nsIDOMNode_Release(nschild
);
976 if(NS_FAILED(nsres
)) {
977 ERR("RemoveChild failed: %08x\n", nsres
);
980 nsIDOMNode_Release(tmp
);
983 nsAString_InitDepend(&text_str
, v
);
984 nsres
= nsIDOMHTMLDocument_CreateTextNode(This
->node
.doc
->nsdoc
, &text_str
, &text_node
);
985 nsAString_Finish(&text_str
);
986 if(NS_FAILED(nsres
)) {
987 ERR("CreateTextNode failed: %08x\n", nsres
);
991 nsres
= nsIDOMHTMLElement_AppendChild(This
->nselem
, (nsIDOMNode
*)text_node
, &tmp
);
992 if(NS_FAILED(nsres
)) {
993 ERR("AppendChild failed: %08x\n", nsres
);
997 nsIDOMNode_Release(tmp
);
1001 static HRESULT WINAPI
HTMLElement_get_innerText(IHTMLElement
*iface
, BSTR
*p
)
1003 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1005 TRACE("(%p)->(%p)\n", This
, p
);
1007 return get_node_text(&This
->node
, p
);
1010 static HRESULT WINAPI
HTMLElement_put_outerHTML(IHTMLElement
*iface
, BSTR v
)
1012 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1014 TRACE("(%p)->(%s)\n", This
, debugstr_w(v
));
1016 return replace_node_by_html(This
->node
.doc
->nsdoc
, This
->node
.nsnode
, v
);
1019 static HRESULT WINAPI
HTMLElement_get_outerHTML(IHTMLElement
*iface
, BSTR
*p
)
1021 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1025 WARN("(%p)->(%p) semi-stub\n", This
, p
);
1027 nsAString_Init(&html_str
, NULL
);
1028 hres
= nsnode_to_nsstring(This
->node
.nsnode
, &html_str
);
1029 if(SUCCEEDED(hres
)) {
1030 const PRUnichar
*html
;
1032 nsAString_GetData(&html_str
, &html
);
1033 *p
= SysAllocString(html
);
1035 hres
= E_OUTOFMEMORY
;
1038 nsAString_Finish(&html_str
);
1040 TRACE("ret %s\n", debugstr_w(*p
));
1044 static HRESULT WINAPI
HTMLElement_put_outerText(IHTMLElement
*iface
, BSTR v
)
1046 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1047 FIXME("(%p)->(%s)\n", This
, debugstr_w(v
));
1051 static HRESULT WINAPI
HTMLElement_get_outerText(IHTMLElement
*iface
, BSTR
*p
)
1053 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1054 FIXME("(%p)->(%p)\n", This
, p
);
1058 static HRESULT
HTMLElement_InsertAdjacentNode(HTMLElement
*This
, BSTR where
, nsIDOMNode
*nsnode
)
1060 static const WCHAR wszBeforeBegin
[] = {'b','e','f','o','r','e','B','e','g','i','n',0};
1061 static const WCHAR wszAfterBegin
[] = {'a','f','t','e','r','B','e','g','i','n',0};
1062 static const WCHAR wszBeforeEnd
[] = {'b','e','f','o','r','e','E','n','d',0};
1063 static const WCHAR wszAfterEnd
[] = {'a','f','t','e','r','E','n','d',0};
1066 if (!strcmpiW(where
, wszBeforeBegin
))
1070 nsres
= nsIDOMNode_GetParentNode(This
->node
.nsnode
, &parent
);
1071 if (!parent
) return E_INVALIDARG
;
1072 nsres
= nsIDOMNode_InsertBefore(parent
, nsnode
, This
->node
.nsnode
, &unused
);
1073 if (unused
) nsIDOMNode_Release(unused
);
1074 nsIDOMNode_Release(parent
);
1076 else if (!strcmpiW(where
, wszAfterBegin
))
1079 nsIDOMNode
*first_child
;
1080 nsIDOMNode_GetFirstChild(This
->node
.nsnode
, &first_child
);
1081 nsres
= nsIDOMNode_InsertBefore(This
->node
.nsnode
, nsnode
, first_child
, &unused
);
1082 if (unused
) nsIDOMNode_Release(unused
);
1083 if (first_child
) nsIDOMNode_Release(first_child
);
1085 else if (!strcmpiW(where
, wszBeforeEnd
))
1088 nsres
= nsIDOMNode_AppendChild(This
->node
.nsnode
, nsnode
, &unused
);
1089 if (unused
) nsIDOMNode_Release(unused
);
1091 else if (!strcmpiW(where
, wszAfterEnd
))
1094 nsIDOMNode
*next_sibling
;
1096 nsIDOMNode_GetParentNode(This
->node
.nsnode
, &parent
);
1097 if (!parent
) return E_INVALIDARG
;
1099 nsIDOMNode_GetNextSibling(This
->node
.nsnode
, &next_sibling
);
1102 nsres
= nsIDOMNode_InsertBefore(parent
, nsnode
, next_sibling
, &unused
);
1103 nsIDOMNode_Release(next_sibling
);
1106 nsres
= nsIDOMNode_AppendChild(parent
, nsnode
, &unused
);
1107 nsIDOMNode_Release(parent
);
1108 if (unused
) nsIDOMNode_Release(unused
);
1112 ERR("invalid where: %s\n", debugstr_w(where
));
1113 return E_INVALIDARG
;
1116 if (NS_FAILED(nsres
))
1122 static HRESULT WINAPI
HTMLElement_insertAdjacentHTML(IHTMLElement
*iface
, BSTR where
,
1125 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1132 TRACE("(%p)->(%s %s)\n", This
, debugstr_w(where
), debugstr_w(html
));
1134 if(!This
->node
.doc
->nsdoc
) {
1135 WARN("NULL nsdoc\n");
1136 return E_UNEXPECTED
;
1139 nsres
= nsIDOMHTMLDocument_CreateRange(This
->node
.doc
->nsdoc
, &range
);
1140 if(NS_FAILED(nsres
))
1142 ERR("CreateRange failed: %08x\n", nsres
);
1146 nsIDOMRange_SetStartBefore(range
, This
->node
.nsnode
);
1148 nsAString_InitDepend(&ns_html
, html
);
1149 nsres
= nsIDOMRange_CreateContextualFragment(range
, &ns_html
, (nsIDOMDocumentFragment
**)&nsnode
);
1150 nsAString_Finish(&ns_html
);
1151 nsIDOMRange_Release(range
);
1153 if(NS_FAILED(nsres
) || !nsnode
)
1155 ERR("CreateTextNode failed: %08x\n", nsres
);
1159 hr
= HTMLElement_InsertAdjacentNode(This
, where
, nsnode
);
1160 nsIDOMNode_Release(nsnode
);
1165 static HRESULT WINAPI
HTMLElement_insertAdjacentText(IHTMLElement
*iface
, BSTR where
,
1168 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1174 TRACE("(%p)->(%s %s)\n", This
, debugstr_w(where
), debugstr_w(text
));
1176 if(!This
->node
.doc
->nsdoc
) {
1177 WARN("NULL nsdoc\n");
1178 return E_UNEXPECTED
;
1182 nsAString_InitDepend(&ns_text
, text
);
1183 nsres
= nsIDOMDocument_CreateTextNode(This
->node
.doc
->nsdoc
, &ns_text
, (nsIDOMText
**)&nsnode
);
1184 nsAString_Finish(&ns_text
);
1186 if(NS_FAILED(nsres
) || !nsnode
)
1188 ERR("CreateTextNode failed: %08x\n", nsres
);
1192 hr
= HTMLElement_InsertAdjacentNode(This
, where
, nsnode
);
1193 nsIDOMNode_Release(nsnode
);
1198 static HRESULT WINAPI
HTMLElement_get_parentTextEdit(IHTMLElement
*iface
, IHTMLElement
**p
)
1200 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1201 FIXME("(%p)->(%p)\n", This
, p
);
1205 static HRESULT WINAPI
HTMLElement_get_isTextEdit(IHTMLElement
*iface
, VARIANT_BOOL
*p
)
1207 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1208 FIXME("(%p)->(%p)\n", This
, p
);
1212 static HRESULT WINAPI
HTMLElement_click(IHTMLElement
*iface
)
1214 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1216 TRACE("(%p)\n", This
);
1218 return call_fire_event(&This
->node
, EVENTID_CLICK
);
1221 static HRESULT WINAPI
HTMLElement_get_filters(IHTMLElement
*iface
,
1222 IHTMLFiltersCollection
**p
)
1224 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1225 TRACE("(%p)->(%p)\n", This
, p
);
1230 *p
= HTMLFiltersCollection_Create();
1235 static HRESULT WINAPI
HTMLElement_put_ondragstart(IHTMLElement
*iface
, VARIANT v
)
1237 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1238 FIXME("(%p)->(%s)\n", This
, debugstr_variant(&v
));
1242 static HRESULT WINAPI
HTMLElement_get_ondragstart(IHTMLElement
*iface
, VARIANT
*p
)
1244 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1245 FIXME("(%p)->(%p)\n", This
, p
);
1249 static HRESULT WINAPI
HTMLElement_toString(IHTMLElement
*iface
, BSTR
*String
)
1251 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1252 FIXME("(%p)->(%p)\n", This
, String
);
1256 static HRESULT WINAPI
HTMLElement_put_onbeforeupdate(IHTMLElement
*iface
, VARIANT v
)
1258 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1259 FIXME("(%p)->(%s)\n", This
, debugstr_variant(&v
));
1263 static HRESULT WINAPI
HTMLElement_get_onbeforeupdate(IHTMLElement
*iface
, VARIANT
*p
)
1265 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1266 FIXME("(%p)->(%p)\n", This
, p
);
1270 static HRESULT WINAPI
HTMLElement_put_onafterupdate(IHTMLElement
*iface
, VARIANT v
)
1272 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1273 FIXME("(%p)->(%s)\n", This
, debugstr_variant(&v
));
1277 static HRESULT WINAPI
HTMLElement_get_onafterupdate(IHTMLElement
*iface
, VARIANT
*p
)
1279 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1280 FIXME("(%p)->(%p)\n", This
, p
);
1284 static HRESULT WINAPI
HTMLElement_put_onerrorupdate(IHTMLElement
*iface
, VARIANT v
)
1286 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1287 FIXME("(%p)->(%s)\n", This
, debugstr_variant(&v
));
1291 static HRESULT WINAPI
HTMLElement_get_onerrorupdate(IHTMLElement
*iface
, VARIANT
*p
)
1293 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1294 FIXME("(%p)->(%p)\n", This
, p
);
1298 static HRESULT WINAPI
HTMLElement_put_onrowexit(IHTMLElement
*iface
, VARIANT v
)
1300 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1301 FIXME("(%p)->(%s)\n", This
, debugstr_variant(&v
));
1305 static HRESULT WINAPI
HTMLElement_get_onrowexit(IHTMLElement
*iface
, VARIANT
*p
)
1307 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1308 FIXME("(%p)->(%p)\n", This
, p
);
1312 static HRESULT WINAPI
HTMLElement_put_onrowenter(IHTMLElement
*iface
, VARIANT v
)
1314 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1315 FIXME("(%p)->(%s)\n", This
, debugstr_variant(&v
));
1319 static HRESULT WINAPI
HTMLElement_get_onrowenter(IHTMLElement
*iface
, VARIANT
*p
)
1321 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1322 FIXME("(%p)->(%p)\n", This
, p
);
1326 static HRESULT WINAPI
HTMLElement_put_ondatasetchanged(IHTMLElement
*iface
, VARIANT v
)
1328 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1329 FIXME("(%p)->(%s)\n", This
, debugstr_variant(&v
));
1333 static HRESULT WINAPI
HTMLElement_get_ondatasetchanged(IHTMLElement
*iface
, VARIANT
*p
)
1335 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1336 FIXME("(%p)->(%p)\n", This
, p
);
1340 static HRESULT WINAPI
HTMLElement_put_ondataavailable(IHTMLElement
*iface
, VARIANT v
)
1342 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1343 FIXME("(%p)->(%s)\n", This
, debugstr_variant(&v
));
1347 static HRESULT WINAPI
HTMLElement_get_ondataavailable(IHTMLElement
*iface
, VARIANT
*p
)
1349 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1350 FIXME("(%p)->(%p)\n", This
, p
);
1354 static HRESULT WINAPI
HTMLElement_put_ondatasetcomplete(IHTMLElement
*iface
, VARIANT v
)
1356 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1357 FIXME("(%p)->(%s)\n", This
, debugstr_variant(&v
));
1361 static HRESULT WINAPI
HTMLElement_get_ondatasetcomplete(IHTMLElement
*iface
, VARIANT
*p
)
1363 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1364 FIXME("(%p)->(%p)\n", This
, p
);
1368 static HRESULT WINAPI
HTMLElement_put_onfilterchange(IHTMLElement
*iface
, VARIANT v
)
1370 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1371 FIXME("(%p)->(%s)\n", This
, debugstr_variant(&v
));
1375 static HRESULT WINAPI
HTMLElement_get_onfilterchange(IHTMLElement
*iface
, VARIANT
*p
)
1377 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1378 FIXME("(%p)->(%p)\n", This
, p
);
1382 static HRESULT WINAPI
HTMLElement_get_children(IHTMLElement
*iface
, IDispatch
**p
)
1384 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1385 nsIDOMNodeList
*nsnode_list
;
1388 TRACE("(%p)->(%p)\n", This
, p
);
1390 nsres
= nsIDOMNode_GetChildNodes(This
->node
.nsnode
, &nsnode_list
);
1391 if(NS_FAILED(nsres
)) {
1392 ERR("GetChildNodes failed: %08x\n", nsres
);
1396 *p
= (IDispatch
*)create_collection_from_nodelist(This
->node
.doc
, nsnode_list
);
1398 nsIDOMNodeList_Release(nsnode_list
);
1402 static HRESULT WINAPI
HTMLElement_get_all(IHTMLElement
*iface
, IDispatch
**p
)
1404 HTMLElement
*This
= impl_from_IHTMLElement(iface
);
1406 TRACE("(%p)->(%p)\n", This
, p
);
1408 *p
= (IDispatch
*)create_all_collection(&This
->node
, FALSE
);
1412 static const IHTMLElementVtbl HTMLElementVtbl
= {
1413 HTMLElement_QueryInterface
,
1415 HTMLElement_Release
,
1416 HTMLElement_GetTypeInfoCount
,
1417 HTMLElement_GetTypeInfo
,
1418 HTMLElement_GetIDsOfNames
,
1420 HTMLElement_setAttribute
,
1421 HTMLElement_getAttribute
,
1422 HTMLElement_removeAttribute
,
1423 HTMLElement_put_className
,
1424 HTMLElement_get_className
,
1427 HTMLElement_get_tagName
,
1428 HTMLElement_get_parentElement
,
1429 HTMLElement_get_style
,
1430 HTMLElement_put_onhelp
,
1431 HTMLElement_get_onhelp
,
1432 HTMLElement_put_onclick
,
1433 HTMLElement_get_onclick
,
1434 HTMLElement_put_ondblclick
,
1435 HTMLElement_get_ondblclick
,
1436 HTMLElement_put_onkeydown
,
1437 HTMLElement_get_onkeydown
,
1438 HTMLElement_put_onkeyup
,
1439 HTMLElement_get_onkeyup
,
1440 HTMLElement_put_onkeypress
,
1441 HTMLElement_get_onkeypress
,
1442 HTMLElement_put_onmouseout
,
1443 HTMLElement_get_onmouseout
,
1444 HTMLElement_put_onmouseover
,
1445 HTMLElement_get_onmouseover
,
1446 HTMLElement_put_onmousemove
,
1447 HTMLElement_get_onmousemove
,
1448 HTMLElement_put_onmousedown
,
1449 HTMLElement_get_onmousedown
,
1450 HTMLElement_put_onmouseup
,
1451 HTMLElement_get_onmouseup
,
1452 HTMLElement_get_document
,
1453 HTMLElement_put_title
,
1454 HTMLElement_get_title
,
1455 HTMLElement_put_language
,
1456 HTMLElement_get_language
,
1457 HTMLElement_put_onselectstart
,
1458 HTMLElement_get_onselectstart
,
1459 HTMLElement_scrollIntoView
,
1460 HTMLElement_contains
,
1461 HTMLElement_get_sourceIndex
,
1462 HTMLElement_get_recordNumber
,
1463 HTMLElement_put_lang
,
1464 HTMLElement_get_lang
,
1465 HTMLElement_get_offsetLeft
,
1466 HTMLElement_get_offsetTop
,
1467 HTMLElement_get_offsetWidth
,
1468 HTMLElement_get_offsetHeight
,
1469 HTMLElement_get_offsetParent
,
1470 HTMLElement_put_innerHTML
,
1471 HTMLElement_get_innerHTML
,
1472 HTMLElement_put_innerText
,
1473 HTMLElement_get_innerText
,
1474 HTMLElement_put_outerHTML
,
1475 HTMLElement_get_outerHTML
,
1476 HTMLElement_put_outerText
,
1477 HTMLElement_get_outerText
,
1478 HTMLElement_insertAdjacentHTML
,
1479 HTMLElement_insertAdjacentText
,
1480 HTMLElement_get_parentTextEdit
,
1481 HTMLElement_get_isTextEdit
,
1483 HTMLElement_get_filters
,
1484 HTMLElement_put_ondragstart
,
1485 HTMLElement_get_ondragstart
,
1486 HTMLElement_toString
,
1487 HTMLElement_put_onbeforeupdate
,
1488 HTMLElement_get_onbeforeupdate
,
1489 HTMLElement_put_onafterupdate
,
1490 HTMLElement_get_onafterupdate
,
1491 HTMLElement_put_onerrorupdate
,
1492 HTMLElement_get_onerrorupdate
,
1493 HTMLElement_put_onrowexit
,
1494 HTMLElement_get_onrowexit
,
1495 HTMLElement_put_onrowenter
,
1496 HTMLElement_get_onrowenter
,
1497 HTMLElement_put_ondatasetchanged
,
1498 HTMLElement_get_ondatasetchanged
,
1499 HTMLElement_put_ondataavailable
,
1500 HTMLElement_get_ondataavailable
,
1501 HTMLElement_put_ondatasetcomplete
,
1502 HTMLElement_get_ondatasetcomplete
,
1503 HTMLElement_put_onfilterchange
,
1504 HTMLElement_get_onfilterchange
,
1505 HTMLElement_get_children
,
1509 HTMLElement
*unsafe_impl_from_IHTMLElement(IHTMLElement
*iface
)
1511 return iface
->lpVtbl
== &HTMLElementVtbl
? impl_from_IHTMLElement(iface
) : NULL
;
1514 static inline HTMLElement
*impl_from_HTMLDOMNode(HTMLDOMNode
*iface
)
1516 return CONTAINING_RECORD(iface
, HTMLElement
, node
);
1519 HRESULT
HTMLElement_QI(HTMLDOMNode
*iface
, REFIID riid
, void **ppv
)
1521 HTMLElement
*This
= impl_from_HTMLDOMNode(iface
);
1525 if(IsEqualGUID(&IID_IUnknown
, riid
)) {
1526 TRACE("(%p)->(IID_IUnknown %p)\n", This
, ppv
);
1527 *ppv
= &This
->IHTMLElement_iface
;
1528 }else if(IsEqualGUID(&IID_IDispatch
, riid
)) {
1529 TRACE("(%p)->(IID_IDispatch %p)\n", This
, ppv
);
1530 *ppv
= &This
->IHTMLElement_iface
;
1531 }else if(IsEqualGUID(&IID_IHTMLElement
, riid
)) {
1532 TRACE("(%p)->(IID_IHTMLElement %p)\n", This
, ppv
);
1533 *ppv
= &This
->IHTMLElement_iface
;
1534 }else if(IsEqualGUID(&IID_IHTMLElement2
, riid
)) {
1535 TRACE("(%p)->(IID_IHTMLElement2 %p)\n", This
, ppv
);
1536 *ppv
= &This
->IHTMLElement2_iface
;
1537 }else if(IsEqualGUID(&IID_IHTMLElement3
, riid
)) {
1538 TRACE("(%p)->(IID_IHTMLElement3 %p)\n", This
, ppv
);
1539 *ppv
= &This
->IHTMLElement3_iface
;
1540 }else if(IsEqualGUID(&IID_IHTMLElement4
, riid
)) {
1541 TRACE("(%p)->(IID_IHTMLElement4 %p)\n", This
, ppv
);
1542 *ppv
= &This
->IHTMLElement4_iface
;
1543 }else if(IsEqualGUID(&IID_IConnectionPointContainer
, riid
)) {
1544 TRACE("(%p)->(IID_IConnectionPointContainer %p)\n", This
, ppv
);
1545 *ppv
= &This
->cp_container
.IConnectionPointContainer_iface
;
1549 IHTMLElement_AddRef(&This
->IHTMLElement_iface
);
1553 return HTMLDOMNode_QI(&This
->node
, riid
, ppv
);
1556 void HTMLElement_destructor(HTMLDOMNode
*iface
)
1558 HTMLElement
*This
= impl_from_HTMLDOMNode(iface
);
1560 ConnectionPointContainer_Destroy(&This
->cp_container
);
1563 This
->style
->elem
= NULL
;
1564 IHTMLStyle_Release(&This
->style
->IHTMLStyle_iface
);
1567 HTMLDOMAttribute
*attr
;
1569 LIST_FOR_EACH_ENTRY(attr
, &This
->attrs
->attrs
, HTMLDOMAttribute
, entry
)
1572 This
->attrs
->elem
= NULL
;
1573 IHTMLAttributeCollection_Release(&This
->attrs
->IHTMLAttributeCollection_iface
);
1576 heap_free(This
->filter
);
1578 HTMLDOMNode_destructor(&This
->node
);
1581 HRESULT
HTMLElement_clone(HTMLDOMNode
*iface
, nsIDOMNode
*nsnode
, HTMLDOMNode
**ret
)
1583 HTMLElement
*This
= impl_from_HTMLDOMNode(iface
);
1584 HTMLElement
*new_elem
;
1587 hres
= HTMLElement_Create(This
->node
.doc
, nsnode
, FALSE
, &new_elem
);
1592 new_elem
->filter
= heap_strdupW(This
->filter
);
1593 if(!new_elem
->filter
) {
1594 IHTMLElement_Release(&This
->IHTMLElement_iface
);
1595 return E_OUTOFMEMORY
;
1599 *ret
= &new_elem
->node
;
1603 static const NodeImplVtbl HTMLElementImplVtbl
= {
1605 HTMLElement_destructor
,
1607 HTMLElement_get_attr_col
1610 static inline HTMLElement
*impl_from_DispatchEx(DispatchEx
*iface
)
1612 return CONTAINING_RECORD(iface
, HTMLElement
, node
.dispex
);
1615 static HRESULT
HTMLElement_get_dispid(DispatchEx
*dispex
, BSTR name
,
1616 DWORD grfdex
, DISPID
*pid
)
1618 HTMLElement
*This
= impl_from_DispatchEx(dispex
);
1620 if(This
->node
.vtbl
->get_dispid
)
1621 return This
->node
.vtbl
->get_dispid(&This
->node
, name
, grfdex
, pid
);
1623 return DISP_E_UNKNOWNNAME
;
1626 static HRESULT
HTMLElement_invoke(DispatchEx
*dispex
, DISPID id
, LCID lcid
,
1627 WORD flags
, DISPPARAMS
*params
, VARIANT
*res
, EXCEPINFO
*ei
,
1628 IServiceProvider
*caller
)
1630 HTMLElement
*This
= impl_from_DispatchEx(dispex
);
1632 if(This
->node
.vtbl
->invoke
)
1633 return This
->node
.vtbl
->invoke(&This
->node
, id
, lcid
, flags
,
1634 params
, res
, ei
, caller
);
1636 ERR("(%p): element has no invoke method\n", This
);
1640 static HRESULT
HTMLElement_populate_props(DispatchEx
*dispex
)
1642 HTMLElement
*This
= impl_from_DispatchEx(dispex
);
1643 nsIDOMNamedNodeMap
*attrs
;
1646 const PRUnichar
*str
;
1658 nsres
= nsIDOMHTMLElement_GetAttributes(This
->nselem
, &attrs
);
1659 if(NS_FAILED(nsres
))
1662 nsres
= nsIDOMNamedNodeMap_GetLength(attrs
, &len
);
1663 if(NS_FAILED(nsres
)) {
1664 nsIDOMNamedNodeMap_Release(attrs
);
1668 nsAString_Init(&nsstr
, NULL
);
1669 for(i
=0; i
<len
; i
++) {
1670 nsres
= nsIDOMNamedNodeMap_Item(attrs
, i
, &node
);
1671 if(NS_FAILED(nsres
))
1674 nsres
= nsIDOMNode_GetNodeName(node
, &nsstr
);
1675 if(NS_FAILED(nsres
)) {
1676 nsIDOMNode_Release(node
);
1680 nsAString_GetData(&nsstr
, &str
);
1681 name
= SysAllocString(str
);
1683 nsIDOMNode_Release(node
);
1687 hres
= IDispatchEx_GetDispID(&dispex
->IDispatchEx_iface
, name
, fdexNameCaseInsensitive
, &id
);
1688 if(hres
!= DISP_E_UNKNOWNNAME
) {
1689 nsIDOMNode_Release(node
);
1690 SysFreeString(name
);
1694 nsres
= nsIDOMNode_GetNodeValue(node
, &nsstr
);
1695 nsIDOMNode_Release(node
);
1696 if(NS_FAILED(nsres
)) {
1697 SysFreeString(name
);
1701 nsAString_GetData(&nsstr
, &str
);
1702 V_VT(&value
) = VT_BSTR
;
1704 V_BSTR(&value
) = SysAllocString(str
);
1705 if(!V_BSTR(&value
)) {
1706 SysFreeString(name
);
1710 V_BSTR(&value
) = NULL
;
1712 IHTMLElement_setAttribute(&This
->IHTMLElement_iface
, name
, value
, 0);
1713 SysFreeString(name
);
1714 VariantClear(&value
);
1716 nsAString_Finish(&nsstr
);
1718 nsIDOMNamedNodeMap_Release(attrs
);
1722 static const tid_t HTMLElement_iface_tids
[] = {
1727 static dispex_static_data_vtbl_t HTMLElement_dispex_vtbl
= {
1729 HTMLElement_get_dispid
,
1731 HTMLElement_populate_props
1734 static dispex_static_data_t HTMLElement_dispex
= {
1735 &HTMLElement_dispex_vtbl
,
1736 DispHTMLUnknownElement_tid
,
1738 HTMLElement_iface_tids
1741 void HTMLElement_Init(HTMLElement
*This
, HTMLDocumentNode
*doc
, nsIDOMHTMLElement
*nselem
, dispex_static_data_t
*dispex_data
)
1743 This
->IHTMLElement_iface
.lpVtbl
= &HTMLElementVtbl
;
1745 HTMLElement2_Init(This
);
1746 HTMLElement3_Init(This
);
1748 if(dispex_data
&& !dispex_data
->vtbl
)
1749 dispex_data
->vtbl
= &HTMLElement_dispex_vtbl
;
1750 init_dispex(&This
->node
.dispex
, (IUnknown
*)&This
->IHTMLElement_iface
,
1751 dispex_data
? dispex_data
: &HTMLElement_dispex
);
1754 HTMLDOMNode_Init(doc
, &This
->node
, (nsIDOMNode
*)nselem
);
1756 /* No AddRef, share reference with HTMLDOMNode */
1757 assert((nsIDOMNode
*)nselem
== This
->node
.nsnode
);
1758 This
->nselem
= nselem
;
1761 ConnectionPointContainer_Init(&This
->cp_container
, (IUnknown
*)&This
->IHTMLElement_iface
);
1764 HRESULT
HTMLElement_Create(HTMLDocumentNode
*doc
, nsIDOMNode
*nsnode
, BOOL use_generic
, HTMLElement
**ret
)
1766 nsIDOMHTMLElement
*nselem
;
1767 nsAString class_name_str
;
1768 const PRUnichar
*class_name
;
1769 const tag_desc_t
*tag
;
1774 nsres
= nsIDOMNode_QueryInterface(nsnode
, &IID_nsIDOMHTMLElement
, (void**)&nselem
);
1775 if(NS_FAILED(nsres
))
1778 nsAString_Init(&class_name_str
, NULL
);
1779 nsIDOMHTMLElement_GetTagName(nselem
, &class_name_str
);
1781 nsAString_GetData(&class_name_str
, &class_name
);
1783 tag
= get_tag_desc(class_name
);
1785 hres
= tag
->constructor(doc
, nselem
, &elem
);
1786 }else if(use_generic
) {
1787 hres
= HTMLGenericElement_Create(doc
, nselem
, &elem
);
1789 elem
= heap_alloc_zero(sizeof(HTMLElement
));
1791 HTMLElement_Init(elem
, doc
, nselem
, &HTMLElement_dispex
);
1792 elem
->node
.vtbl
= &HTMLElementImplVtbl
;
1795 hres
= E_OUTOFMEMORY
;
1799 TRACE("%s ret %p\n", debugstr_w(class_name
), elem
);
1801 nsIDOMElement_Release(nselem
);
1802 nsAString_Finish(&class_name_str
);
1810 /* interface IHTMLFiltersCollection */
1811 static HRESULT WINAPI
HTMLFiltersCollection_QueryInterface(IHTMLFiltersCollection
*iface
, REFIID riid
, void **ppv
)
1813 HTMLFiltersCollection
*This
= impl_from_IHTMLFiltersCollection(iface
);
1815 TRACE("%p %s %p\n", This
, debugstr_guid( riid
), ppv
);
1817 if(IsEqualGUID(&IID_IUnknown
, riid
)) {
1818 TRACE("(%p)->(IID_IUnknown %p)\n", This
, ppv
);
1819 *ppv
= &This
->IHTMLFiltersCollection_iface
;
1820 }else if(IsEqualGUID(&IID_IHTMLFiltersCollection
, riid
)) {
1821 TRACE("(%p)->(IID_IHTMLFiltersCollection %p)\n", This
, ppv
);
1822 *ppv
= &This
->IHTMLFiltersCollection_iface
;
1823 }else if(dispex_query_interface(&This
->dispex
, riid
, ppv
)) {
1824 return *ppv
? S_OK
: E_NOINTERFACE
;
1828 IUnknown_AddRef((IUnknown
*)*ppv
);
1832 FIXME("(%p)->(%s %p)\n", This
, debugstr_guid(riid
), ppv
);
1833 return E_NOINTERFACE
;
1836 static ULONG WINAPI
HTMLFiltersCollection_AddRef(IHTMLFiltersCollection
*iface
)
1838 HTMLFiltersCollection
*This
= impl_from_IHTMLFiltersCollection(iface
);
1839 LONG ref
= InterlockedIncrement(&This
->ref
);
1841 TRACE("(%p) ref=%d\n", This
, ref
);
1846 static ULONG WINAPI
HTMLFiltersCollection_Release(IHTMLFiltersCollection
*iface
)
1848 HTMLFiltersCollection
*This
= impl_from_IHTMLFiltersCollection(iface
);
1849 LONG ref
= InterlockedDecrement(&This
->ref
);
1851 TRACE("(%p) ref=%d\n", This
, ref
);
1861 static HRESULT WINAPI
HTMLFiltersCollection_GetTypeInfoCount(IHTMLFiltersCollection
*iface
, UINT
*pctinfo
)
1863 HTMLFiltersCollection
*This
= impl_from_IHTMLFiltersCollection(iface
);
1864 return IDispatchEx_GetTypeInfoCount(&This
->dispex
.IDispatchEx_iface
, pctinfo
);
1867 static HRESULT WINAPI
HTMLFiltersCollection_GetTypeInfo(IHTMLFiltersCollection
*iface
,
1868 UINT iTInfo
, LCID lcid
, ITypeInfo
**ppTInfo
)
1870 HTMLFiltersCollection
*This
= impl_from_IHTMLFiltersCollection(iface
);
1871 return IDispatchEx_GetTypeInfo(&This
->dispex
.IDispatchEx_iface
, iTInfo
, lcid
, ppTInfo
);
1874 static HRESULT WINAPI
HTMLFiltersCollection_GetIDsOfNames(IHTMLFiltersCollection
*iface
,
1875 REFIID riid
, LPOLESTR
*rgszNames
, UINT cNames
,
1876 LCID lcid
, DISPID
*rgDispId
)
1878 HTMLFiltersCollection
*This
= impl_from_IHTMLFiltersCollection(iface
);
1879 return IDispatchEx_GetIDsOfNames(&This
->dispex
.IDispatchEx_iface
, riid
, rgszNames
, cNames
,
1883 static HRESULT WINAPI
HTMLFiltersCollection_Invoke(IHTMLFiltersCollection
*iface
, DISPID dispIdMember
, REFIID riid
,
1884 LCID lcid
, WORD wFlags
, DISPPARAMS
*pDispParams
, VARIANT
*pVarResult
,
1885 EXCEPINFO
*pExcepInfo
, UINT
*puArgErr
)
1887 HTMLFiltersCollection
*This
= impl_from_IHTMLFiltersCollection(iface
);
1888 return IDispatchEx_Invoke(&This
->dispex
.IDispatchEx_iface
, dispIdMember
, riid
, lcid
,
1889 wFlags
, pDispParams
, pVarResult
, pExcepInfo
, puArgErr
);
1892 static HRESULT WINAPI
HTMLFiltersCollection_get_length(IHTMLFiltersCollection
*iface
, LONG
*p
)
1894 HTMLFiltersCollection
*This
= impl_from_IHTMLFiltersCollection(iface
);
1899 FIXME("(%p)->(%p) Always returning 0\n", This
, p
);
1905 static HRESULT WINAPI
HTMLFiltersCollection_get__newEnum(IHTMLFiltersCollection
*iface
, IUnknown
**p
)
1907 HTMLFiltersCollection
*This
= impl_from_IHTMLFiltersCollection(iface
);
1908 FIXME("(%p)->(%p)\n", This
, p
);
1912 static HRESULT WINAPI
HTMLFiltersCollection_item(IHTMLFiltersCollection
*iface
, VARIANT
*pvarIndex
, VARIANT
*pvarResult
)
1914 HTMLFiltersCollection
*This
= impl_from_IHTMLFiltersCollection(iface
);
1915 FIXME("(%p)->(%p, %p)\n", This
, pvarIndex
, pvarResult
);
1919 static const IHTMLFiltersCollectionVtbl HTMLFiltersCollectionVtbl
= {
1920 HTMLFiltersCollection_QueryInterface
,
1921 HTMLFiltersCollection_AddRef
,
1922 HTMLFiltersCollection_Release
,
1923 HTMLFiltersCollection_GetTypeInfoCount
,
1924 HTMLFiltersCollection_GetTypeInfo
,
1925 HTMLFiltersCollection_GetIDsOfNames
,
1926 HTMLFiltersCollection_Invoke
,
1927 HTMLFiltersCollection_get_length
,
1928 HTMLFiltersCollection_get__newEnum
,
1929 HTMLFiltersCollection_item
1932 static HRESULT
HTMLFiltersCollection_get_dispid(DispatchEx
*dispex
, BSTR name
, DWORD flags
, DISPID
*dispid
)
1937 for(ptr
= name
; *ptr
&& isdigitW(*ptr
); ptr
++)
1938 idx
= idx
*10 + (*ptr
-'0');
1940 return DISP_E_UNKNOWNNAME
;
1942 *dispid
= MSHTML_DISPID_CUSTOM_MIN
+ idx
;
1943 TRACE("ret %x\n", *dispid
);
1947 static HRESULT
HTMLFiltersCollection_invoke(DispatchEx
*dispex
, DISPID id
, LCID lcid
, WORD flags
, DISPPARAMS
*params
,
1948 VARIANT
*res
, EXCEPINFO
*ei
, IServiceProvider
*caller
)
1950 TRACE("(%p)->(%x %x %x %p %p %p)\n", dispex
, id
, lcid
, flags
, params
, res
, ei
);
1952 V_VT(res
) = VT_DISPATCH
;
1953 V_DISPATCH(res
) = NULL
;
1955 FIXME("always returning NULL\n");
1960 static const dispex_static_data_vtbl_t HTMLFiltersCollection_dispex_vtbl
= {
1962 HTMLFiltersCollection_get_dispid
,
1963 HTMLFiltersCollection_invoke
,
1967 static const tid_t HTMLFiltersCollection_iface_tids
[] = {
1968 IHTMLFiltersCollection_tid
,
1971 static dispex_static_data_t HTMLFiltersCollection_dispex
= {
1972 &HTMLFiltersCollection_dispex_vtbl
,
1973 IHTMLFiltersCollection_tid
,
1975 HTMLFiltersCollection_iface_tids
1978 static IHTMLFiltersCollection
*HTMLFiltersCollection_Create(void)
1980 HTMLFiltersCollection
*ret
= heap_alloc(sizeof(HTMLFiltersCollection
));
1982 ret
->IHTMLFiltersCollection_iface
.lpVtbl
= &HTMLFiltersCollectionVtbl
;
1985 init_dispex(&ret
->dispex
, (IUnknown
*)&ret
->IHTMLFiltersCollection_iface
,
1986 &HTMLFiltersCollection_dispex
);
1988 return &ret
->IHTMLFiltersCollection_iface
;
1991 /* interface IHTMLAttributeCollection */
1992 static inline HTMLAttributeCollection
*impl_from_IHTMLAttributeCollection(IHTMLAttributeCollection
*iface
)
1994 return CONTAINING_RECORD(iface
, HTMLAttributeCollection
, IHTMLAttributeCollection_iface
);
1997 static HRESULT WINAPI
HTMLAttributeCollection_QueryInterface(IHTMLAttributeCollection
*iface
, REFIID riid
, void **ppv
)
1999 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection(iface
);
2003 if(IsEqualGUID(&IID_IUnknown
, riid
)) {
2004 TRACE("(%p)->(IID_IUnknown %p)\n", This
, ppv
);
2005 *ppv
= &This
->IHTMLAttributeCollection_iface
;
2006 }else if(IsEqualGUID(&IID_IHTMLAttributeCollection
, riid
)) {
2007 TRACE("(%p)->(IID_IHTMLAttributeCollection %p)\n", This
, ppv
);
2008 *ppv
= &This
->IHTMLAttributeCollection_iface
;
2009 }else if(IsEqualGUID(&IID_IHTMLAttributeCollection2
, riid
)) {
2010 TRACE("(%p)->(IID_IHTMLAttributeCollection2 %p)\n", This
, ppv
);
2011 *ppv
= &This
->IHTMLAttributeCollection2_iface
;
2012 }else if(IsEqualGUID(&IID_IHTMLAttributeCollection3
, riid
)) {
2013 TRACE("(%p)->(IID_IHTMLAttributeCollection3 %p)\n", This
, ppv
);
2014 *ppv
= &This
->IHTMLAttributeCollection3_iface
;
2015 }else if(dispex_query_interface(&This
->dispex
, riid
, ppv
)) {
2016 return *ppv
? S_OK
: E_NOINTERFACE
;
2020 IUnknown_AddRef((IUnknown
*)*ppv
);
2024 WARN("(%p)->(%s %p)\n", This
, debugstr_guid(riid
), ppv
);
2025 return E_NOINTERFACE
;
2028 static ULONG WINAPI
HTMLAttributeCollection_AddRef(IHTMLAttributeCollection
*iface
)
2030 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection(iface
);
2031 LONG ref
= InterlockedIncrement(&This
->ref
);
2033 TRACE("(%p) ref=%d\n", This
, ref
);
2038 static ULONG WINAPI
HTMLAttributeCollection_Release(IHTMLAttributeCollection
*iface
)
2040 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection(iface
);
2041 LONG ref
= InterlockedDecrement(&This
->ref
);
2043 TRACE("(%p) ref=%d\n", This
, ref
);
2046 while(!list_empty(&This
->attrs
)) {
2047 HTMLDOMAttribute
*attr
= LIST_ENTRY(list_head(&This
->attrs
), HTMLDOMAttribute
, entry
);
2049 list_remove(&attr
->entry
);
2051 IHTMLDOMAttribute_Release(&attr
->IHTMLDOMAttribute_iface
);
2060 static HRESULT WINAPI
HTMLAttributeCollection_GetTypeInfoCount(IHTMLAttributeCollection
*iface
, UINT
*pctinfo
)
2062 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection(iface
);
2063 return IDispatchEx_GetTypeInfoCount(&This
->dispex
.IDispatchEx_iface
, pctinfo
);
2066 static HRESULT WINAPI
HTMLAttributeCollection_GetTypeInfo(IHTMLAttributeCollection
*iface
, UINT iTInfo
,
2067 LCID lcid
, ITypeInfo
**ppTInfo
)
2069 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection(iface
);
2070 return IDispatchEx_GetTypeInfo(&This
->dispex
.IDispatchEx_iface
, iTInfo
, lcid
, ppTInfo
);
2073 static HRESULT WINAPI
HTMLAttributeCollection_GetIDsOfNames(IHTMLAttributeCollection
*iface
, REFIID riid
,
2074 LPOLESTR
*rgszNames
, UINT cNames
, LCID lcid
, DISPID
*rgDispId
)
2076 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection(iface
);
2077 return IDispatchEx_GetIDsOfNames(&This
->dispex
.IDispatchEx_iface
, riid
, rgszNames
, cNames
,
2081 static HRESULT WINAPI
HTMLAttributeCollection_Invoke(IHTMLAttributeCollection
*iface
, DISPID dispIdMember
,
2082 REFIID riid
, LCID lcid
, WORD wFlags
, DISPPARAMS
*pDispParams
,
2083 VARIANT
*pVarResult
, EXCEPINFO
*pExcepInfo
, UINT
*puArgErr
)
2085 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection(iface
);
2086 return IDispatchEx_Invoke(&This
->dispex
.IDispatchEx_iface
, dispIdMember
, riid
, lcid
,
2087 wFlags
, pDispParams
, pVarResult
, pExcepInfo
, puArgErr
);
2090 static HRESULT
get_attr_dispid_by_idx(HTMLAttributeCollection
*This
, LONG
*idx
, DISPID
*dispid
)
2092 IDispatchEx
*dispex
= &This
->elem
->node
.dispex
.IDispatchEx_iface
;
2093 DISPID id
= DISPID_STARTENUM
;
2097 FIXME("filter non-enumerable attributes out\n");
2100 hres
= IDispatchEx_GetNextDispID(dispex
, fdexEnumAll
, id
, &id
);
2103 else if(hres
== S_FALSE
)
2113 return *idx
==len
? S_OK
: DISP_E_UNKNOWNNAME
;
2120 static inline HRESULT
get_attr_dispid_by_name(HTMLAttributeCollection
*This
, BSTR name
, DISPID
*id
)
2124 if(name
[0]>='0' && name
[0]<='9') {
2128 idx
= strtoulW(name
, &end_ptr
, 10);
2130 hres
= get_attr_dispid_by_idx(This
, &idx
, id
);
2137 WARN("NULL elem\n");
2138 return E_UNEXPECTED
;
2141 hres
= IDispatchEx_GetDispID(&This
->elem
->node
.dispex
.IDispatchEx_iface
,
2142 name
, fdexNameCaseInsensitive
, id
);
2146 static inline HRESULT
get_domattr(HTMLAttributeCollection
*This
, DISPID id
, LONG
*list_pos
, HTMLDOMAttribute
**attr
)
2148 HTMLDOMAttribute
*iter
;
2153 LIST_FOR_EACH_ENTRY(iter
, &This
->attrs
, HTMLDOMAttribute
, entry
) {
2154 if(iter
->dispid
== id
) {
2163 WARN("NULL elem\n");
2164 return E_UNEXPECTED
;
2168 hres
= HTMLDOMAttribute_Create(This
->elem
, id
, attr
);
2173 IHTMLDOMAttribute_AddRef(&(*attr
)->IHTMLDOMAttribute_iface
);
2179 static HRESULT WINAPI
HTMLAttributeCollection_get_length(IHTMLAttributeCollection
*iface
, LONG
*p
)
2181 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection(iface
);
2184 TRACE("(%p)->(%p)\n", This
, p
);
2187 hres
= get_attr_dispid_by_idx(This
, p
, NULL
);
2191 static HRESULT WINAPI
HTMLAttributeCollection__newEnum(IHTMLAttributeCollection
*iface
, IUnknown
**p
)
2193 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection(iface
);
2194 FIXME("(%p)->(%p)\n", This
, p
);
2198 static HRESULT WINAPI
HTMLAttributeCollection_item(IHTMLAttributeCollection
*iface
, VARIANT
*name
, IDispatch
**ppItem
)
2200 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection(iface
);
2201 HTMLDOMAttribute
*attr
;
2205 TRACE("(%p)->(%s %p)\n", This
, debugstr_variant(name
), ppItem
);
2207 switch(V_VT(name
)) {
2209 hres
= get_attr_dispid_by_idx(This
, &V_I4(name
), &id
);
2212 hres
= get_attr_dispid_by_name(This
, V_BSTR(name
), &id
);
2215 FIXME("unsupported name %s\n", debugstr_variant(name
));
2218 if(hres
== DISP_E_UNKNOWNNAME
)
2219 return E_INVALIDARG
;
2223 hres
= get_domattr(This
, id
, NULL
, &attr
);
2227 *ppItem
= (IDispatch
*)&attr
->IHTMLDOMAttribute_iface
;
2231 static const IHTMLAttributeCollectionVtbl HTMLAttributeCollectionVtbl
= {
2232 HTMLAttributeCollection_QueryInterface
,
2233 HTMLAttributeCollection_AddRef
,
2234 HTMLAttributeCollection_Release
,
2235 HTMLAttributeCollection_GetTypeInfoCount
,
2236 HTMLAttributeCollection_GetTypeInfo
,
2237 HTMLAttributeCollection_GetIDsOfNames
,
2238 HTMLAttributeCollection_Invoke
,
2239 HTMLAttributeCollection_get_length
,
2240 HTMLAttributeCollection__newEnum
,
2241 HTMLAttributeCollection_item
2244 static inline HTMLAttributeCollection
*impl_from_IHTMLAttributeCollection2(IHTMLAttributeCollection2
*iface
)
2246 return CONTAINING_RECORD(iface
, HTMLAttributeCollection
, IHTMLAttributeCollection2_iface
);
2249 static HRESULT WINAPI
HTMLAttributeCollection2_QueryInterface(IHTMLAttributeCollection2
*iface
, REFIID riid
, void **ppv
)
2251 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection2(iface
);
2252 return IHTMLAttributeCollection_QueryInterface(&This
->IHTMLAttributeCollection_iface
, riid
, ppv
);
2255 static ULONG WINAPI
HTMLAttributeCollection2_AddRef(IHTMLAttributeCollection2
*iface
)
2257 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection2(iface
);
2258 return IHTMLAttributeCollection_AddRef(&This
->IHTMLAttributeCollection_iface
);
2261 static ULONG WINAPI
HTMLAttributeCollection2_Release(IHTMLAttributeCollection2
*iface
)
2263 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection2(iface
);
2264 return IHTMLAttributeCollection_Release(&This
->IHTMLAttributeCollection_iface
);
2267 static HRESULT WINAPI
HTMLAttributeCollection2_GetTypeInfoCount(IHTMLAttributeCollection2
*iface
, UINT
*pctinfo
)
2269 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection2(iface
);
2270 return IDispatchEx_GetTypeInfoCount(&This
->dispex
.IDispatchEx_iface
, pctinfo
);
2273 static HRESULT WINAPI
HTMLAttributeCollection2_GetTypeInfo(IHTMLAttributeCollection2
*iface
, UINT iTInfo
,
2274 LCID lcid
, ITypeInfo
**ppTInfo
)
2276 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection2(iface
);
2277 return IDispatchEx_GetTypeInfo(&This
->dispex
.IDispatchEx_iface
, iTInfo
, lcid
, ppTInfo
);
2280 static HRESULT WINAPI
HTMLAttributeCollection2_GetIDsOfNames(IHTMLAttributeCollection2
*iface
, REFIID riid
,
2281 LPOLESTR
*rgszNames
, UINT cNames
, LCID lcid
, DISPID
*rgDispId
)
2283 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection2(iface
);
2284 return IDispatchEx_GetIDsOfNames(&This
->dispex
.IDispatchEx_iface
, riid
, rgszNames
, cNames
,
2288 static HRESULT WINAPI
HTMLAttributeCollection2_Invoke(IHTMLAttributeCollection2
*iface
, DISPID dispIdMember
,
2289 REFIID riid
, LCID lcid
, WORD wFlags
, DISPPARAMS
*pDispParams
,
2290 VARIANT
*pVarResult
, EXCEPINFO
*pExcepInfo
, UINT
*puArgErr
)
2292 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection2(iface
);
2293 return IDispatchEx_Invoke(&This
->dispex
.IDispatchEx_iface
, dispIdMember
, riid
, lcid
,
2294 wFlags
, pDispParams
, pVarResult
, pExcepInfo
, puArgErr
);
2297 static HRESULT WINAPI
HTMLAttributeCollection2_getNamedItem(IHTMLAttributeCollection2
*iface
, BSTR bstrName
,
2298 IHTMLDOMAttribute
**newretNode
)
2300 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection2(iface
);
2301 HTMLDOMAttribute
*attr
;
2305 TRACE("(%p)->(%s %p)\n", This
, debugstr_w(bstrName
), newretNode
);
2307 hres
= get_attr_dispid_by_name(This
, bstrName
, &id
);
2308 if(hres
== DISP_E_UNKNOWNNAME
) {
2311 } else if(FAILED(hres
)) {
2315 hres
= get_domattr(This
, id
, NULL
, &attr
);
2319 *newretNode
= &attr
->IHTMLDOMAttribute_iface
;
2323 static HRESULT WINAPI
HTMLAttributeCollection2_setNamedItem(IHTMLAttributeCollection2
*iface
,
2324 IHTMLDOMAttribute
*ppNode
, IHTMLDOMAttribute
**newretNode
)
2326 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection2(iface
);
2327 FIXME("(%p)->(%p %p)\n", This
, ppNode
, newretNode
);
2331 static HRESULT WINAPI
HTMLAttributeCollection2_removeNamedItem(IHTMLAttributeCollection2
*iface
,
2332 BSTR bstrName
, IHTMLDOMAttribute
**newretNode
)
2334 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection2(iface
);
2335 FIXME("(%p)->(%s %p)\n", This
, debugstr_w(bstrName
), newretNode
);
2339 static const IHTMLAttributeCollection2Vtbl HTMLAttributeCollection2Vtbl
= {
2340 HTMLAttributeCollection2_QueryInterface
,
2341 HTMLAttributeCollection2_AddRef
,
2342 HTMLAttributeCollection2_Release
,
2343 HTMLAttributeCollection2_GetTypeInfoCount
,
2344 HTMLAttributeCollection2_GetTypeInfo
,
2345 HTMLAttributeCollection2_GetIDsOfNames
,
2346 HTMLAttributeCollection2_Invoke
,
2347 HTMLAttributeCollection2_getNamedItem
,
2348 HTMLAttributeCollection2_setNamedItem
,
2349 HTMLAttributeCollection2_removeNamedItem
2352 static inline HTMLAttributeCollection
*impl_from_IHTMLAttributeCollection3(IHTMLAttributeCollection3
*iface
)
2354 return CONTAINING_RECORD(iface
, HTMLAttributeCollection
, IHTMLAttributeCollection3_iface
);
2357 static HRESULT WINAPI
HTMLAttributeCollection3_QueryInterface(IHTMLAttributeCollection3
*iface
, REFIID riid
, void **ppv
)
2359 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection3(iface
);
2360 return IHTMLAttributeCollection_QueryInterface(&This
->IHTMLAttributeCollection_iface
, riid
, ppv
);
2363 static ULONG WINAPI
HTMLAttributeCollection3_AddRef(IHTMLAttributeCollection3
*iface
)
2365 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection3(iface
);
2366 return IHTMLAttributeCollection_AddRef(&This
->IHTMLAttributeCollection_iface
);
2369 static ULONG WINAPI
HTMLAttributeCollection3_Release(IHTMLAttributeCollection3
*iface
)
2371 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection3(iface
);
2372 return IHTMLAttributeCollection_Release(&This
->IHTMLAttributeCollection_iface
);
2375 static HRESULT WINAPI
HTMLAttributeCollection3_GetTypeInfoCount(IHTMLAttributeCollection3
*iface
, UINT
*pctinfo
)
2377 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection3(iface
);
2378 return IDispatchEx_GetTypeInfoCount(&This
->dispex
.IDispatchEx_iface
, pctinfo
);
2381 static HRESULT WINAPI
HTMLAttributeCollection3_GetTypeInfo(IHTMLAttributeCollection3
*iface
, UINT iTInfo
,
2382 LCID lcid
, ITypeInfo
**ppTInfo
)
2384 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection3(iface
);
2385 return IDispatchEx_GetTypeInfo(&This
->dispex
.IDispatchEx_iface
, iTInfo
, lcid
, ppTInfo
);
2388 static HRESULT WINAPI
HTMLAttributeCollection3_GetIDsOfNames(IHTMLAttributeCollection3
*iface
, REFIID riid
,
2389 LPOLESTR
*rgszNames
, UINT cNames
, LCID lcid
, DISPID
*rgDispId
)
2391 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection3(iface
);
2392 return IDispatchEx_GetIDsOfNames(&This
->dispex
.IDispatchEx_iface
, riid
, rgszNames
, cNames
,
2396 static HRESULT WINAPI
HTMLAttributeCollection3_Invoke(IHTMLAttributeCollection3
*iface
, DISPID dispIdMember
,
2397 REFIID riid
, LCID lcid
, WORD wFlags
, DISPPARAMS
*pDispParams
,
2398 VARIANT
*pVarResult
, EXCEPINFO
*pExcepInfo
, UINT
*puArgErr
)
2400 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection3(iface
);
2401 return IDispatchEx_Invoke(&This
->dispex
.IDispatchEx_iface
, dispIdMember
, riid
, lcid
,
2402 wFlags
, pDispParams
, pVarResult
, pExcepInfo
, puArgErr
);
2405 static HRESULT WINAPI
HTMLAttributeCollection3_getNamedItem(IHTMLAttributeCollection3
*iface
, BSTR bstrName
,
2406 IHTMLDOMAttribute
**ppNodeOut
)
2408 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection3(iface
);
2409 return IHTMLAttributeCollection2_getNamedItem(&This
->IHTMLAttributeCollection2_iface
, bstrName
, ppNodeOut
);
2412 static HRESULT WINAPI
HTMLAttributeCollection3_setNamedItem(IHTMLAttributeCollection3
*iface
,
2413 IHTMLDOMAttribute
*pNodeIn
, IHTMLDOMAttribute
**ppNodeOut
)
2415 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection3(iface
);
2416 FIXME("(%p)->(%p %p)\n", This
, pNodeIn
, ppNodeOut
);
2420 static HRESULT WINAPI
HTMLAttributeCollection3_removeNamedItem(IHTMLAttributeCollection3
*iface
,
2421 BSTR bstrName
, IHTMLDOMAttribute
**ppNodeOut
)
2423 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection3(iface
);
2424 FIXME("(%p)->(%s %p)\n", This
, debugstr_w(bstrName
), ppNodeOut
);
2428 static HRESULT WINAPI
HTMLAttributeCollection3_item(IHTMLAttributeCollection3
*iface
, LONG index
, IHTMLDOMAttribute
**ppNodeOut
)
2430 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection3(iface
);
2431 HTMLDOMAttribute
*attr
;
2435 TRACE("(%p)->(%d %p)\n", This
, index
, ppNodeOut
);
2437 hres
= get_attr_dispid_by_idx(This
, &index
, &id
);
2438 if(hres
== DISP_E_UNKNOWNNAME
)
2439 return E_INVALIDARG
;
2443 hres
= get_domattr(This
, id
, NULL
, &attr
);
2447 *ppNodeOut
= &attr
->IHTMLDOMAttribute_iface
;
2451 static HRESULT WINAPI
HTMLAttributeCollection3_get_length(IHTMLAttributeCollection3
*iface
, LONG
*p
)
2453 HTMLAttributeCollection
*This
= impl_from_IHTMLAttributeCollection3(iface
);
2454 return IHTMLAttributeCollection_get_length(&This
->IHTMLAttributeCollection_iface
, p
);
2457 static const IHTMLAttributeCollection3Vtbl HTMLAttributeCollection3Vtbl
= {
2458 HTMLAttributeCollection3_QueryInterface
,
2459 HTMLAttributeCollection3_AddRef
,
2460 HTMLAttributeCollection3_Release
,
2461 HTMLAttributeCollection3_GetTypeInfoCount
,
2462 HTMLAttributeCollection3_GetTypeInfo
,
2463 HTMLAttributeCollection3_GetIDsOfNames
,
2464 HTMLAttributeCollection3_Invoke
,
2465 HTMLAttributeCollection3_getNamedItem
,
2466 HTMLAttributeCollection3_setNamedItem
,
2467 HTMLAttributeCollection3_removeNamedItem
,
2468 HTMLAttributeCollection3_item
,
2469 HTMLAttributeCollection3_get_length
2472 static inline HTMLAttributeCollection
*HTMLAttributeCollection_from_DispatchEx(DispatchEx
*iface
)
2474 return CONTAINING_RECORD(iface
, HTMLAttributeCollection
, dispex
);
2477 static HRESULT
HTMLAttributeCollection_get_dispid(DispatchEx
*dispex
, BSTR name
, DWORD flags
, DISPID
*dispid
)
2479 HTMLAttributeCollection
*This
= HTMLAttributeCollection_from_DispatchEx(dispex
);
2480 HTMLDOMAttribute
*attr
;
2484 TRACE("(%p)->(%s %x %p)\n", This
, debugstr_w(name
), flags
, dispid
);
2486 hres
= get_attr_dispid_by_name(This
, name
, dispid
);
2490 hres
= get_domattr(This
, *dispid
, &pos
, &attr
);
2493 IHTMLDOMAttribute_Release(&attr
->IHTMLDOMAttribute_iface
);
2495 *dispid
= MSHTML_DISPID_CUSTOM_MIN
+pos
;
2499 static HRESULT
HTMLAttributeCollection_invoke(DispatchEx
*dispex
, DISPID id
, LCID lcid
,
2500 WORD flags
, DISPPARAMS
*params
, VARIANT
*res
, EXCEPINFO
*ei
, IServiceProvider
*caller
)
2502 HTMLAttributeCollection
*This
= HTMLAttributeCollection_from_DispatchEx(dispex
);
2504 TRACE("(%p)->(%x %x %x %p %p %p %p)\n", This
, id
, lcid
, flags
, params
, res
, ei
, caller
);
2507 case DISPATCH_PROPERTYGET
: {
2508 HTMLDOMAttribute
*iter
;
2510 id
= id
-MSHTML_DISPID_CUSTOM_MIN
+1;
2512 LIST_FOR_EACH_ENTRY(iter
, &This
->attrs
, HTMLDOMAttribute
, entry
) {
2517 return E_INVALIDARG
;
2519 IHTMLDOMAttribute_AddRef(&iter
->IHTMLDOMAttribute_iface
);
2520 V_VT(res
) = VT_DISPATCH
;
2521 V_DISPATCH(res
) = (IDispatch
*)&iter
->IHTMLDOMAttribute_iface
;
2526 FIXME("unimplemented flags %x\n", flags
);
2531 static const dispex_static_data_vtbl_t HTMLAttributeCollection_dispex_vtbl
= {
2533 HTMLAttributeCollection_get_dispid
,
2534 HTMLAttributeCollection_invoke
,
2538 static const tid_t HTMLAttributeCollection_iface_tids
[] = {
2539 IHTMLAttributeCollection_tid
,
2540 IHTMLAttributeCollection2_tid
,
2541 IHTMLAttributeCollection3_tid
,
2545 static dispex_static_data_t HTMLAttributeCollection_dispex
= {
2546 &HTMLAttributeCollection_dispex_vtbl
,
2547 DispHTMLAttributeCollection_tid
,
2549 HTMLAttributeCollection_iface_tids
2552 HRESULT
HTMLElement_get_attr_col(HTMLDOMNode
*iface
, HTMLAttributeCollection
**ac
)
2554 HTMLElement
*This
= impl_from_HTMLDOMNode(iface
);
2557 IHTMLAttributeCollection_AddRef(&This
->attrs
->IHTMLAttributeCollection_iface
);
2562 This
->attrs
= heap_alloc_zero(sizeof(HTMLAttributeCollection
));
2564 return E_OUTOFMEMORY
;
2566 This
->attrs
->IHTMLAttributeCollection_iface
.lpVtbl
= &HTMLAttributeCollectionVtbl
;
2567 This
->attrs
->IHTMLAttributeCollection2_iface
.lpVtbl
= &HTMLAttributeCollection2Vtbl
;
2568 This
->attrs
->IHTMLAttributeCollection3_iface
.lpVtbl
= &HTMLAttributeCollection3Vtbl
;
2569 This
->attrs
->ref
= 2;
2571 This
->attrs
->elem
= This
;
2572 list_init(&This
->attrs
->attrs
);
2573 init_dispex(&This
->attrs
->dispex
, (IUnknown
*)&This
->attrs
->IHTMLAttributeCollection_iface
,
2574 &HTMLAttributeCollection_dispex
);