mshtml: Store current moniker in HTMLDocument.
[wine] / dlls / mshtml / htmldoc.c
1 /*
2  * Copyright 2005 Jacek Caban
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
17  */
18
19 #include "config.h"
20
21 #include <stdarg.h>
22 #include <stdio.h>
23
24 #define COBJMACROS
25
26 #include "windef.h"
27 #include "winbase.h"
28 #include "winuser.h"
29 #include "ole2.h"
30
31 #include "wine/debug.h"
32
33 #include "mshtml_private.h"
34
35 WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
36
37 #define HTMLDOC_THIS(iface) DEFINE_THIS(HTMLDocument, HTMLDocument2, iface)
38
39 static HRESULT WINAPI HTMLDocument_QueryInterface(IHTMLDocument2 *iface, REFIID riid, void **ppvObject)
40 {
41     HTMLDocument *This = HTMLDOC_THIS(iface);
42
43     *ppvObject = NULL;
44     if(IsEqualGUID(&IID_IUnknown, riid)) {
45         TRACE("(%p)->(IID_IUnknown, %p)\n", This, ppvObject);
46         *ppvObject = HTMLDOC(This);
47     }else if(IsEqualGUID(&IID_IDispatch, riid)) {
48         TRACE("(%p)->(IID_IDispatch, %p)\n", This, ppvObject);
49         *ppvObject = HTMLDOC(This);
50     }else if(IsEqualGUID(&IID_IHTMLDocument, riid)) {
51         TRACE("(%p)->(IID_IHTMLDocument, %p)\n", This, ppvObject);
52         *ppvObject = HTMLDOC(This);
53     }else if(IsEqualGUID(&IID_IHTMLDocument2, riid)) {
54         TRACE("(%p)->(IID_IHTMLDocument2, %p)\n", This, ppvObject);
55         *ppvObject = HTMLDOC(This);
56     }else if(IsEqualGUID(&IID_IHTMLDocument3, riid)) {
57         TRACE("(%p)->(IID_IHTMLDocument3, %p)\n", This, ppvObject);
58         *ppvObject = HTMLDOC3(This);
59     }else if(IsEqualGUID(&IID_IPersist, riid)) {
60         TRACE("(%p)->(IID_IPersist, %p)\n", This, ppvObject);
61         *ppvObject = PERSIST(This);
62     }else if(IsEqualGUID(&IID_IPersistMoniker, riid)) {
63         TRACE("(%p)->(IID_IPersistMoniker, %p)\n", This, ppvObject);
64         *ppvObject = PERSISTMON(This);
65     }else if(IsEqualGUID(&IID_IPersistFile, riid)) {
66         TRACE("(%p)->(IID_IPersistFile, %p)\n", This, ppvObject);
67         *ppvObject = PERSISTFILE(This);
68     }else if(IsEqualGUID(&IID_IMonikerProp, riid)) {
69         TRACE("(%p)->(IID_IMonikerProp, %p)\n", This, ppvObject);
70         *ppvObject = MONPROP(This);
71     }else if(IsEqualGUID(&IID_IOleObject, riid)) {
72         TRACE("(%p)->(IID_IOleObject, %p)\n", This, ppvObject);
73         *ppvObject = OLEOBJ(This);
74     }else if(IsEqualGUID(&IID_IOleDocument, riid)) {
75         TRACE("(%p)->(IID_IOleDocument, %p)\n", This, ppvObject);
76         *ppvObject = OLEDOC(This);
77     }else if(IsEqualGUID(&IID_IOleDocumentView, riid)) {
78         TRACE("(%p)->(IID_IOleDocumentView, %p)\n", This, ppvObject);
79         *ppvObject = DOCVIEW(This);
80     }else if(IsEqualGUID(&IID_IOleInPlaceActiveObject, riid)) {
81         TRACE("(%p)->(IID_IOleInPlaceActiveObject, %p)\n", This, ppvObject);
82         *ppvObject = ACTOBJ(This);
83     }else if(IsEqualGUID(&IID_IViewObject, riid)) {
84         TRACE("(%p)->(IID_IViewObject, %p)\n", This, ppvObject);
85         *ppvObject = VIEWOBJ(This);
86     }else if(IsEqualGUID(&IID_IViewObject2, riid)) {
87         TRACE("(%p)->(IID_IViewObject2, %p)\n", This, ppvObject);
88         *ppvObject = VIEWOBJ2(This);
89     }else if(IsEqualGUID(&IID_IOleWindow, riid)) {
90         TRACE("(%p)->(IID_IOleWindow, %p)\n", This, ppvObject);
91         *ppvObject = OLEWIN(This);
92     }else if(IsEqualGUID(&IID_IOleInPlaceObject, riid)) {
93         TRACE("(%p)->(IID_IOleInPlaceObject, %p)\n", This, ppvObject);
94         *ppvObject = INPLACEOBJ(This);
95     }else if(IsEqualGUID(&IID_IOleInPlaceObjectWindowless, riid)) {
96         TRACE("(%p)->(IID_IOleInPlaceObjectWindowless, %p)\n", This, ppvObject);
97         *ppvObject = INPLACEWIN(This);
98     }else if(IsEqualGUID(&IID_IServiceProvider, riid)) {
99         TRACE("(%p)->(IID_IServiceProvider, %p)\n", This, ppvObject);
100         *ppvObject = SERVPROV(This);
101     }else if(IsEqualGUID(&IID_IOleCommandTarget, riid)) {
102         TRACE("(%p)->(IID_IOleCommandTarget, %p)\n", This, ppvObject);
103         *ppvObject = CMDTARGET(This);
104     }else if(IsEqualGUID(&IID_IOleControl, riid)) {
105         TRACE("(%p)->(IID_IOleControl, %p)\n", This, ppvObject);
106         *ppvObject = CONTROL(This);
107     }else if(IsEqualGUID(&IID_IHlinkTarget, riid)) {
108         TRACE("(%p)->(IID_IHlinkTarget, %p)\n", This, ppvObject);
109         *ppvObject = HLNKTARGET(This);
110     }else if(IsEqualGUID(&IID_IConnectionPointContainer, riid)) {
111         TRACE("(%p)->(IID_IConnectionPointContainer %p)\n", This, ppvObject);
112         *ppvObject = CONPTCONT(This);
113     }else if(IsEqualGUID(&IID_IPersistStreamInit, riid)) {
114         TRACE("(%p)->(IID_IPersistStreamInit %p)\n", This, ppvObject);
115         *ppvObject = PERSTRINIT(This);
116     }else if(IsEqualGUID(&DIID_DispHTMLDocument, riid)) {
117         TRACE("(%p)->(DIID_DispHTMLDocument %p)\n", This, ppvObject);
118         *ppvObject = HTMLDOC(This);
119     }else if(IsEqualGUID(&CLSID_CMarkup, riid)) {
120         FIXME("(%p)->(CLSID_CMarkup %p)\n", This, ppvObject);
121         return E_NOINTERFACE;
122     }else if(IsEqualGUID(&IID_IRunnableObject, riid)) {
123         TRACE("(%p)->(IID_IRunnableObject %p) returning NULL\n", This, ppvObject);
124         return E_NOINTERFACE;
125     }
126
127     if(*ppvObject) {
128         IHTMLDocument2_AddRef(iface);
129         return S_OK;
130     }
131
132     FIXME("(%p)->(%s %p) interface not supported\n", This, debugstr_guid(riid), ppvObject);
133     return E_NOINTERFACE;
134 }
135
136 static ULONG WINAPI HTMLDocument_AddRef(IHTMLDocument2 *iface)
137 {
138     HTMLDocument *This = HTMLDOC_THIS(iface);
139     ULONG ref = InterlockedIncrement(&This->ref);
140     TRACE("(%p) ref = %u\n", This, ref);
141     return ref;
142 }
143
144 static ULONG WINAPI HTMLDocument_Release(IHTMLDocument2 *iface)
145 {
146     HTMLDocument *This = HTMLDOC_THIS(iface);
147     ULONG ref = InterlockedDecrement(&This->ref);
148
149     TRACE("(%p) ref = %u\n", This, ref);
150
151     if(!ref) {
152         remove_doc_tasks(This);
153
154         if(This->client)
155             IOleObject_SetClientSite(OLEOBJ(This), NULL);
156         if(This->in_place_active)
157             IOleInPlaceObjectWindowless_InPlaceDeactivate(INPLACEWIN(This));
158         if(This->ipsite)
159             IOleDocumentView_SetInPlaceSite(DOCVIEW(This), NULL);
160
161         set_document_bscallback(This, NULL);
162         set_current_mon(This, NULL);
163
164         if(This->tooltips_hwnd)
165             DestroyWindow(This->tooltips_hwnd);
166         if(This->hwnd)
167             DestroyWindow(This->hwnd);
168
169         if(This->window)
170             IHTMLWindow2_Release(HTMLWINDOW2(This->window));
171
172         release_nodes(This);
173
174         HTMLDocument_ConnectionPoints_Destroy(This);
175
176         if(This->nscontainer)
177             NSContainer_Release(This->nscontainer);
178
179         mshtml_free(This);
180
181         UNLOCK_MODULE();
182     }
183
184     return ref;
185 }
186
187 static HRESULT WINAPI HTMLDocument_GetTypeInfoCount(IHTMLDocument2 *iface, UINT *pctinfo)
188 {
189     FIXME("(%p)->(%p)\n", iface, pctinfo);
190     return E_NOTIMPL;
191 }
192
193 static HRESULT WINAPI HTMLDocument_GetTypeInfo(IHTMLDocument2 *iface, UINT iTInfo,
194                                                 LCID lcid, ITypeInfo **ppTInfo)
195 {
196     FIXME("(%p)->(%u %u %p)\n", iface, iTInfo, lcid, ppTInfo);
197     return E_NOTIMPL;
198 }
199
200 static HRESULT WINAPI HTMLDocument_GetIDsOfNames(IHTMLDocument2 *iface, REFIID riid,
201                                                 LPOLESTR *rgszNames, UINT cNames,
202                                                 LCID lcid, DISPID *rgDispId)
203 {
204     FIXME("(%p)->(%s %p %u %u %p)\n", iface, debugstr_guid(riid), rgszNames, cNames,
205                                         lcid, rgDispId);
206     return E_NOTIMPL;
207 }
208
209 static HRESULT WINAPI HTMLDocument_Invoke(IHTMLDocument2 *iface, DISPID dispIdMember,
210                             REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams,
211                             VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)
212 {
213     FIXME("(%p)->(%d %s %d %d %p %p %p %p)\n", iface, dispIdMember, debugstr_guid(riid),
214             lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
215     return E_NOTIMPL;
216 }
217
218 static HRESULT WINAPI HTMLDocument_get_Script(IHTMLDocument2 *iface, IDispatch **p)
219 {
220     FIXME("(%p)->(%p)\n", iface, p);
221     return E_NOTIMPL;
222 }
223
224 static HRESULT WINAPI HTMLDocument_get_all(IHTMLDocument2 *iface, IHTMLElementCollection **p)
225 {
226     HTMLDocument *This = HTMLDOC_THIS(iface);
227     IHTMLElement *doc;
228     IDispatch *disp;
229     HRESULT hres;
230
231     TRACE("(%p)->(%p)\n", This, p);
232
233     hres = IHTMLDocument3_get_documentElement(HTMLDOC3(This), &doc);
234     if(FAILED(hres))
235         return hres;
236
237     hres = IHTMLElement_get_all(doc, &disp);
238     IHTMLElement_Release(doc);
239     if(FAILED(hres))
240         return hres;
241
242     hres = IDispatch_QueryInterface(disp, &IID_IHTMLElementCollection, (void**)p);
243     IDispatch_Release(disp);
244
245     return hres;
246 }
247
248 static HRESULT WINAPI HTMLDocument_get_body(IHTMLDocument2 *iface, IHTMLElement **p)
249 {
250     HTMLDocument *This = HTMLDOC_THIS(iface);
251     nsIDOMDocument *nsdoc;
252     nsIDOMHTMLDocument *nshtmldoc;
253     nsIDOMHTMLElement *nsbody = NULL;
254     HTMLDOMNode *node;
255     nsresult nsres;
256
257     TRACE("(%p)->(%p)\n", This, p);
258
259     *p = NULL;
260
261     if(!This->nscontainer)
262         return S_OK;
263
264     nsres = nsIWebNavigation_GetDocument(This->nscontainer->navigation, &nsdoc);
265     if(NS_FAILED(nsres)) {
266         ERR("GetDocument failed: %08x\n", nsres);
267         return S_OK;
268     }
269
270     if(NS_FAILED(nsres) || !nsdoc) 
271         return S_OK;
272
273     nsIDOMDocument_QueryInterface(nsdoc, &IID_nsIDOMHTMLDocument, (void**)&nshtmldoc);
274     nsIDOMDocument_Release(nsdoc);
275
276     nsres = nsIDOMHTMLDocument_GetBody(nshtmldoc, &nsbody);
277     nsIDOMHTMLDocument_Release(nshtmldoc);
278
279     if(NS_FAILED(nsres) || !nsbody) {
280         TRACE("Could not get body: %08x\n", nsres);
281         return S_OK;
282     }
283
284     node = get_node(This, (nsIDOMNode*)nsbody);
285     nsIDOMHTMLElement_Release(nsbody);
286
287     IHTMLDOMNode_QueryInterface(HTMLDOMNODE(node), &IID_IHTMLElement, (void**)p);
288
289     TRACE("*p = %p\n", *p);
290     return S_OK;
291 }
292
293 static HRESULT WINAPI HTMLDocument_get_activeElement(IHTMLDocument2 *iface, IHTMLElement **p)
294 {
295     FIXME("(%p)->(%p)\n", iface, p);
296     return E_NOTIMPL;
297 }
298
299 static HRESULT WINAPI HTMLDocument_get_images(IHTMLDocument2 *iface, IHTMLElementCollection **p)
300 {
301     FIXME("(%p)->(%p)\n", iface, p);
302     return E_NOTIMPL;
303 }
304
305 static HRESULT WINAPI HTMLDocument_get_applets(IHTMLDocument2 *iface, IHTMLElementCollection **p)
306 {
307     FIXME("(%p)->(%p)\n", iface, p);
308     return E_NOTIMPL;
309 }
310
311 static HRESULT WINAPI HTMLDocument_get_links(IHTMLDocument2 *iface, IHTMLElementCollection **p)
312 {
313     FIXME("(%p)->(%p)\n", iface, p);
314     return E_NOTIMPL;
315 }
316
317 static HRESULT WINAPI HTMLDocument_get_forms(IHTMLDocument2 *iface, IHTMLElementCollection **p)
318 {
319     FIXME("(%p)->(%p)\n", iface, p);
320     return E_NOTIMPL;
321 }
322
323 static HRESULT WINAPI HTMLDocument_get_anchors(IHTMLDocument2 *iface, IHTMLElementCollection **p)
324 {
325     FIXME("(%p)->(%p)\n", iface, p);
326     return E_NOTIMPL;
327 }
328
329 static HRESULT WINAPI HTMLDocument_put_title(IHTMLDocument2 *iface, BSTR v)
330 {
331     FIXME("(%p)->(%s)\n", iface, debugstr_w(v));
332     return E_NOTIMPL;
333 }
334
335 static HRESULT WINAPI HTMLDocument_get_title(IHTMLDocument2 *iface, BSTR *p)
336 {
337     FIXME("(%p)->(%p)\n", iface, p);
338     return E_NOTIMPL;
339 }
340
341 static HRESULT WINAPI HTMLDocument_get_scripts(IHTMLDocument2 *iface, IHTMLElementCollection **p)
342 {
343     FIXME("(%p)->(%p)\n", iface, p);
344     return E_NOTIMPL;
345 }
346
347 static HRESULT WINAPI HTMLDocument_put_designMode(IHTMLDocument2 *iface, BSTR v)
348 {
349     FIXME("(%p)->(%s)\n", iface, debugstr_w(v));
350     return E_NOTIMPL;
351 }
352
353 static HRESULT WINAPI HTMLDocument_get_designMode(IHTMLDocument2 *iface, BSTR *p)
354 {
355     FIXME("(%p)->(%p)\n", iface, p);
356     return E_NOTIMPL;
357 }
358
359 static HRESULT WINAPI HTMLDocument_get_selection(IHTMLDocument2 *iface, IHTMLSelectionObject **p)
360 {
361     HTMLDocument *This = HTMLDOC_THIS(iface);
362     nsISelection *nsselection = NULL;
363
364     TRACE("(%p)->(%p)\n", This, p);
365
366     if(This->nscontainer) {
367         nsIDOMWindow *dom_window = NULL;
368
369         nsIWebBrowser_GetContentDOMWindow(This->nscontainer->webbrowser, &dom_window);
370         if(dom_window) {
371             nsIDOMWindow_GetSelection(dom_window, &nsselection);
372             nsIDOMWindow_Release(dom_window);
373         }
374     }
375
376     *p = HTMLSelectionObject_Create(nsselection);
377     return S_OK;
378 }
379
380 static HRESULT WINAPI HTMLDocument_get_readyState(IHTMLDocument2 *iface, BSTR *p)
381 {
382     HTMLDocument *This = HTMLDOC_THIS(iface);
383
384     static const WCHAR wszUninitialized[] = {'u','n','i','n','i','t','i','a','l','i','z','e','d',0};
385     static const WCHAR wszLoading[] = {'l','o','a','d','i','n','g',0};
386     static const WCHAR wszLoaded[] = {'l','o','a','d','e','d',0};
387     static const WCHAR wszInteractive[] = {'i','n','t','e','r','a','c','t','i','v','e',0};
388     static const WCHAR wszComplete[] = {'c','o','m','p','l','e','t','e',0};
389
390     static const LPCWSTR readystate_str[] = {
391         wszUninitialized,
392         wszLoading,
393         wszLoaded,
394         wszInteractive,
395         wszComplete
396     };
397
398     TRACE("(%p)->(%p)\n", iface, p);
399
400     if(!p)
401         return E_POINTER;
402
403     *p = SysAllocString(readystate_str[This->readystate]);
404     return S_OK;
405 }
406
407 static HRESULT WINAPI HTMLDocument_get_frames(IHTMLDocument2 *iface, IHTMLFramesCollection2 **p)
408 {
409     FIXME("(%p)->(%p)\n", iface, p);
410     return E_NOTIMPL;
411 }
412
413 static HRESULT WINAPI HTMLDocument_get_embeds(IHTMLDocument2 *iface, IHTMLElementCollection **p)
414 {
415     FIXME("(%p)->(%p)\n", iface, p);
416     return E_NOTIMPL;
417 }
418
419 static HRESULT WINAPI HTMLDocument_get_plugins(IHTMLDocument2 *iface, IHTMLElementCollection **p)
420 {
421     FIXME("(%p)->(%p)\n", iface, p);
422     return E_NOTIMPL;
423 }
424
425 static HRESULT WINAPI HTMLDocument_put_alinkColor(IHTMLDocument2 *iface, VARIANT v)
426 {
427     FIXME("(%p)\n", iface);
428     return E_NOTIMPL;
429 }
430
431 static HRESULT WINAPI HTMLDocument_get_alinkColor(IHTMLDocument2 *iface, VARIANT *p)
432 {
433     FIXME("(%p)->(%p)\n", iface, p);
434     return E_NOTIMPL;
435 }
436
437 static HRESULT WINAPI HTMLDocument_put_bgColor(IHTMLDocument2 *iface, VARIANT v)
438 {
439     FIXME("(%p)\n", iface);
440     return E_NOTIMPL;
441 }
442
443 static HRESULT WINAPI HTMLDocument_get_bgColor(IHTMLDocument2 *iface, VARIANT *p)
444 {
445     FIXME("(%p)->(%p)\n", iface, p);
446     return E_NOTIMPL;
447 }
448
449 static HRESULT WINAPI HTMLDocument_put_fgColor(IHTMLDocument2 *iface, VARIANT v)
450 {
451     FIXME("(%p)\n", iface);
452     return E_NOTIMPL;
453 }
454
455 static HRESULT WINAPI HTMLDocument_get_fgColor(IHTMLDocument2 *iface, VARIANT *p)
456 {
457     FIXME("(%p)->(%p)\n", iface, p);
458     return E_NOTIMPL;
459 }
460
461 static HRESULT WINAPI HTMLDocument_put_linkColor(IHTMLDocument2 *iface, VARIANT v)
462 {
463     FIXME("(%p)->()\n", iface);
464     return E_NOTIMPL;
465 }
466
467 static HRESULT WINAPI HTMLDocument_get_linkColor(IHTMLDocument2 *iface, VARIANT *p)
468 {
469     FIXME("(%p)->(%p)\n", iface, p);
470     return E_NOTIMPL;
471 }
472
473 static HRESULT WINAPI HTMLDocument_put_vlinkColor(IHTMLDocument2 *iface, VARIANT v)
474 {
475     FIXME("(%p)\n", iface);
476     return E_NOTIMPL;
477 }
478
479 static HRESULT WINAPI HTMLDocument_get_vlinkColor(IHTMLDocument2 *iface, VARIANT *p)
480 {
481     FIXME("(%p)->(%p)\n", iface, p);
482     return E_NOTIMPL;
483 }
484
485 static HRESULT WINAPI HTMLDocument_get_referrer(IHTMLDocument2 *iface, BSTR *p)
486 {
487     FIXME("(%p)->(%p)\n", iface, p);
488     return E_NOTIMPL;
489 }
490
491 static HRESULT WINAPI HTMLDocument_get_location(IHTMLDocument2 *iface, IHTMLLocation **p)
492 {
493     FIXME("(%p)->(%p)\n", iface, p);
494     return E_NOTIMPL;
495 }
496
497 static HRESULT WINAPI HTMLDocument_get_lastModified(IHTMLDocument2 *iface, BSTR *p)
498 {
499     FIXME("(%p)->(%p)\n", iface, p);
500     return E_NOTIMPL;
501 }
502
503 static HRESULT WINAPI HTMLDocument_put_URL(IHTMLDocument2 *iface, BSTR v)
504 {
505     FIXME("(%p)->(%s)\n", iface, debugstr_w(v));
506     return E_NOTIMPL;
507 }
508
509 static HRESULT WINAPI HTMLDocument_get_URL(IHTMLDocument2 *iface, BSTR *p)
510 {
511     FIXME("(%p)->(%p)\n", iface, p);
512     return E_NOTIMPL;
513 }
514
515 static HRESULT WINAPI HTMLDocument_put_domain(IHTMLDocument2 *iface, BSTR v)
516 {
517     FIXME("(%p)->(%s)\n", iface, debugstr_w(v));
518     return E_NOTIMPL;
519 }
520
521 static HRESULT WINAPI HTMLDocument_get_domain(IHTMLDocument2 *iface, BSTR *p)
522 {
523     FIXME("(%p)->(%p)\n", iface, p);
524     return E_NOTIMPL;
525 }
526
527 static HRESULT WINAPI HTMLDocument_put_cookie(IHTMLDocument2 *iface, BSTR v)
528 {
529     FIXME("(%p)->(%s)\n", iface, debugstr_w(v));
530     return E_NOTIMPL;
531 }
532
533 static HRESULT WINAPI HTMLDocument_get_cookie(IHTMLDocument2 *iface, BSTR *p)
534 {
535     FIXME("(%p)->(%p)\n", iface, p);
536     return E_NOTIMPL;
537 }
538
539 static HRESULT WINAPI HTMLDocument_put_expando(IHTMLDocument2 *iface, VARIANT_BOOL v)
540 {
541     FIXME("(%p)->(%x)\n", iface, v);
542     return E_NOTIMPL;
543 }
544
545 static HRESULT WINAPI HTMLDocument_get_expando(IHTMLDocument2 *iface, VARIANT_BOOL *p)
546 {
547     FIXME("(%p)->(%p)\n", iface, p);
548     return E_NOTIMPL;
549 }
550
551 static HRESULT WINAPI HTMLDocument_put_charset(IHTMLDocument2 *iface, BSTR v)
552 {
553     FIXME("(%p)->(%s)\n", iface, debugstr_w(v));
554     return E_NOTIMPL;
555 }
556
557 static HRESULT WINAPI HTMLDocument_get_charset(IHTMLDocument2 *iface, BSTR *p)
558 {
559     FIXME("(%p)->(%p)\n", iface, p);
560     return E_NOTIMPL;
561 }
562
563 static HRESULT WINAPI HTMLDocument_put_defaultCharset(IHTMLDocument2 *iface, BSTR v)
564 {
565     FIXME("(%p)->(%s)\n", iface, debugstr_w(v));
566     return E_NOTIMPL;
567 }
568
569 static HRESULT WINAPI HTMLDocument_get_defaultCharset(IHTMLDocument2 *iface, BSTR *p)
570 {
571     FIXME("(%p)->(%p)\n", iface, p);
572     return E_NOTIMPL;
573 }
574
575 static HRESULT WINAPI HTMLDocument_get_mimeType(IHTMLDocument2 *iface, BSTR *p)
576 {
577     FIXME("(%p)->(%p)\n", iface, p);
578     return E_NOTIMPL;
579 }
580
581 static HRESULT WINAPI HTMLDocument_get_fileSize(IHTMLDocument2 *iface, BSTR *p)
582 {
583     FIXME("(%p)->(%p)\n", iface, p);
584     return E_NOTIMPL;
585 }
586
587 static HRESULT WINAPI HTMLDocument_get_fileCreatedDate(IHTMLDocument2 *iface, BSTR *p)
588 {
589     FIXME("(%p)->(%p)\n", iface, p);
590     return E_NOTIMPL;
591 }
592
593 static HRESULT WINAPI HTMLDocument_get_fileModifiedDate(IHTMLDocument2 *iface, BSTR *p)
594 {
595     FIXME("(%p)->(%p)\n", iface, p);
596     return E_NOTIMPL;
597 }
598
599 static HRESULT WINAPI HTMLDocument_get_fileUpdatedDate(IHTMLDocument2 *iface, BSTR *p)
600 {
601     FIXME("(%p)->(%p)\n", iface, p);
602     return E_NOTIMPL;
603 }
604
605 static HRESULT WINAPI HTMLDocument_get_security(IHTMLDocument2 *iface, BSTR *p)
606 {
607     FIXME("(%p)->(%p)\n", iface, p);
608     return E_NOTIMPL;
609 }
610
611 static HRESULT WINAPI HTMLDocument_get_protocol(IHTMLDocument2 *iface, BSTR *p)
612 {
613     FIXME("(%p)->(%p)\n", iface, p);
614     return E_NOTIMPL;
615 }
616
617 static HRESULT WINAPI HTMLDocument_get_nameProp(IHTMLDocument2 *iface, BSTR *p)
618 {
619     FIXME("(%p)->(%p)\n", iface, p);
620     return E_NOTIMPL;
621 }
622
623 static HRESULT WINAPI HTMLDocument_write(IHTMLDocument2 *iface, SAFEARRAY *psarray)
624 {
625     FIXME("(%p)->(%p)\n", iface, psarray);
626     return E_NOTIMPL;
627 }
628
629 static HRESULT WINAPI HTMLDocument_writeln(IHTMLDocument2 *iface, SAFEARRAY *psarray)
630 {
631     FIXME("(%p)->(%p)\n", iface, psarray);
632     return E_NOTIMPL;
633 }
634
635 static HRESULT WINAPI HTMLDocument_open(IHTMLDocument2 *iface, BSTR url, VARIANT name,
636                         VARIANT features, VARIANT replace, IDispatch **pomWindowResult)
637 {
638     FIXME("(%p)->(%s %p)\n", iface, debugstr_w(url), pomWindowResult);
639     return E_NOTIMPL;
640 }
641
642 static HRESULT WINAPI HTMLDocument_close(IHTMLDocument2 *iface)
643 {
644     FIXME("(%p)\n", iface);
645     return E_NOTIMPL;
646 }
647
648 static HRESULT WINAPI HTMLDocument_clear(IHTMLDocument2 *iface)
649 {
650     FIXME("(%p)\n", iface);
651     return E_NOTIMPL;
652 }
653
654 static HRESULT WINAPI HTMLDocument_queryCommandSupported(IHTMLDocument2 *iface, BSTR cmdID,
655                                                         VARIANT_BOOL *pfRet)
656 {
657     FIXME("(%p)->(%s %p)\n", iface, debugstr_w(cmdID), pfRet);
658     return E_NOTIMPL;
659 }
660
661 static HRESULT WINAPI HTMLDocument_queryCommandEnabled(IHTMLDocument2 *iface, BSTR cmdID,
662                                                         VARIANT_BOOL *pfRet)
663 {
664     FIXME("(%p)->(%s %p)\n", iface, debugstr_w(cmdID), pfRet);
665     return E_NOTIMPL;
666 }
667
668 static HRESULT WINAPI HTMLDocument_queryCommandState(IHTMLDocument2 *iface, BSTR cmdID,
669                                                         VARIANT_BOOL *pfRet)
670 {
671     FIXME("(%p)->(%s %p)\n", iface, debugstr_w(cmdID), pfRet);
672     return E_NOTIMPL;
673 }
674
675 static HRESULT WINAPI HTMLDocument_queryCommandIndeterm(IHTMLDocument2 *iface, BSTR cmdID,
676                                                         VARIANT_BOOL *pfRet)
677 {
678     FIXME("(%p)->(%s %p)\n", iface, debugstr_w(cmdID), pfRet);
679     return E_NOTIMPL;
680 }
681
682 static HRESULT WINAPI HTMLDocument_queryCommandText(IHTMLDocument2 *iface, BSTR cmdID,
683                                                         BSTR *pfRet)
684 {
685     FIXME("(%p)->(%s %p)\n", iface, debugstr_w(cmdID), pfRet);
686     return E_NOTIMPL;
687 }
688
689 static HRESULT WINAPI HTMLDocument_queryCommandValue(IHTMLDocument2 *iface, BSTR cmdID,
690                                                         VARIANT *pfRet)
691 {
692     FIXME("(%p)->(%s %p)\n", iface, debugstr_w(cmdID), pfRet);
693     return E_NOTIMPL;
694 }
695
696 static HRESULT WINAPI HTMLDocument_execCommand(IHTMLDocument2 *iface, BSTR cmdID,
697                                 VARIANT_BOOL showUI, VARIANT value, VARIANT_BOOL *pfRet)
698 {
699     FIXME("(%p)->(%s %x %p)\n", iface, debugstr_w(cmdID), showUI, pfRet);
700     return E_NOTIMPL;
701 }
702
703 static HRESULT WINAPI HTMLDocument_execCommandShowHelp(IHTMLDocument2 *iface, BSTR cmdID,
704                                                         VARIANT_BOOL *pfRet)
705 {
706     FIXME("(%p)->(%s %p)\n", iface, debugstr_w(cmdID), pfRet);
707     return E_NOTIMPL;
708 }
709
710 static HRESULT WINAPI HTMLDocument_createElement(IHTMLDocument2 *iface, BSTR eTag,
711                                                     IHTMLElement **newElem)
712 {
713     FIXME("(%p)->(%s %p)\n", iface, debugstr_w(eTag), newElem);
714     return E_NOTIMPL;
715 }
716
717 static HRESULT WINAPI HTMLDocument_put_onhelp(IHTMLDocument2 *iface, VARIANT v)
718 {
719     FIXME("(%p)\n", iface);
720     return E_NOTIMPL;
721 }
722
723 static HRESULT WINAPI HTMLDocument_get_onhelp(IHTMLDocument2 *iface, VARIANT *p)
724 {
725     FIXME("(%p)->(%p)\n", iface, p);
726     return E_NOTIMPL;
727 }
728
729 static HRESULT WINAPI HTMLDocument_put_onclick(IHTMLDocument2 *iface, VARIANT v)
730 {
731     FIXME("(%p)\n", iface);
732     return E_NOTIMPL;
733 }
734
735 static HRESULT WINAPI HTMLDocument_get_onclick(IHTMLDocument2 *iface, VARIANT *p)
736 {
737     FIXME("(%p)->(%p)\n", iface, p);
738     return E_NOTIMPL;
739 }
740
741 static HRESULT WINAPI HTMLDocument_put_ondblclick(IHTMLDocument2 *iface, VARIANT v)
742 {
743     FIXME("(%p)\n", iface);
744     return E_NOTIMPL;
745 }
746
747 static HRESULT WINAPI HTMLDocument_get_ondblclick(IHTMLDocument2 *iface, VARIANT *p)
748 {
749     FIXME("(%p)->(%p)\n", iface, p);
750     return E_NOTIMPL;
751 }
752
753 static HRESULT WINAPI HTMLDocument_put_onkeyup(IHTMLDocument2 *iface, VARIANT v)
754 {
755     FIXME("(%p)\n", iface);
756     return E_NOTIMPL;
757 }
758
759 static HRESULT WINAPI HTMLDocument_get_onkeyup(IHTMLDocument2 *iface, VARIANT *p)
760 {
761     FIXME("(%p)->(%p)\n", iface, p);
762     return E_NOTIMPL;
763 }
764
765 static HRESULT WINAPI HTMLDocument_put_onkeydown(IHTMLDocument2 *iface, VARIANT v)
766 {
767     FIXME("(%p)\n", iface);
768     return E_NOTIMPL;
769 }
770
771 static HRESULT WINAPI HTMLDocument_get_onkeydown(IHTMLDocument2 *iface, VARIANT *p)
772 {
773     FIXME("(%p)->(%p)\n", iface, p);
774     return E_NOTIMPL;
775 }
776
777 static HRESULT WINAPI HTMLDocument_put_onkeypress(IHTMLDocument2 *iface, VARIANT v)
778 {
779     FIXME("(%p)\n", iface);
780     return E_NOTIMPL;
781 }
782
783 static HRESULT WINAPI HTMLDocument_get_onkeypress(IHTMLDocument2 *iface, VARIANT *p)
784 {
785     FIXME("(%p)->(%p)\n", iface, p);
786     return E_NOTIMPL;
787 }
788
789 static HRESULT WINAPI HTMLDocument_put_onmouseup(IHTMLDocument2 *iface, VARIANT v)
790 {
791     FIXME("(%p)\n", iface);
792     return E_NOTIMPL;
793 }
794
795 static HRESULT WINAPI HTMLDocument_get_onmouseup(IHTMLDocument2 *iface, VARIANT *p)
796 {
797     FIXME("(%p)->(%p)\n", iface, p);
798     return E_NOTIMPL;
799 }
800
801 static HRESULT WINAPI HTMLDocument_put_onmousedown(IHTMLDocument2 *iface, VARIANT v)
802 {
803     FIXME("(%p)\n", iface);
804     return E_NOTIMPL;
805 }
806
807 static HRESULT WINAPI HTMLDocument_get_onmousedown(IHTMLDocument2 *iface, VARIANT *p)
808 {
809     FIXME("(%p)->(%p)\n", iface, p);
810     return E_NOTIMPL;
811 }
812
813 static HRESULT WINAPI HTMLDocument_put_onmousemove(IHTMLDocument2 *iface, VARIANT v)
814 {
815     FIXME("(%p)\n", iface);
816     return E_NOTIMPL;
817 }
818
819 static HRESULT WINAPI HTMLDocument_get_onmousemove(IHTMLDocument2 *iface, VARIANT *p)
820 {
821     FIXME("(%p)->(%p)\n", iface, p);
822     return E_NOTIMPL;
823 }
824
825 static HRESULT WINAPI HTMLDocument_put_onmouseout(IHTMLDocument2 *iface, VARIANT v)
826 {
827     FIXME("(%p)\n", iface);
828     return E_NOTIMPL;
829 }
830
831 static HRESULT WINAPI HTMLDocument_get_onmouseout(IHTMLDocument2 *iface, VARIANT *p)
832 {
833     FIXME("(%p)->(%p)\n", iface, p);
834     return E_NOTIMPL;
835 }
836
837 static HRESULT WINAPI HTMLDocument_put_onmouseover(IHTMLDocument2 *iface, VARIANT v)
838 {
839     FIXME("(%p)\n", iface);
840     return E_NOTIMPL;
841 }
842
843 static HRESULT WINAPI HTMLDocument_get_onmouseover(IHTMLDocument2 *iface, VARIANT *p)
844 {
845     FIXME("(%p)->(%p)\n", iface, p);
846     return E_NOTIMPL;
847 }
848
849 static HRESULT WINAPI HTMLDocument_put_onreadystatechange(IHTMLDocument2 *iface, VARIANT v)
850 {
851     FIXME("(%p)\n", iface);
852     return E_NOTIMPL;
853 }
854
855 static HRESULT WINAPI HTMLDocument_get_onreadystatechange(IHTMLDocument2 *iface, VARIANT *p)
856 {
857     FIXME("(%p)->(%p)\n", iface, p);
858     return E_NOTIMPL;
859 }
860
861 static HRESULT WINAPI HTMLDocument_put_onafterupdate(IHTMLDocument2 *iface, VARIANT v)
862 {
863     FIXME("(%p)\n", iface);
864     return E_NOTIMPL;
865 }
866
867 static HRESULT WINAPI HTMLDocument_get_onafterupdate(IHTMLDocument2 *iface, VARIANT *p)
868 {
869     FIXME("(%p)->(%p)\n", iface, p);
870     return E_NOTIMPL;
871 }
872
873 static HRESULT WINAPI HTMLDocument_put_onrowexit(IHTMLDocument2 *iface, VARIANT v)
874 {
875     FIXME("(%p)\n", iface);
876     return E_NOTIMPL;
877 }
878
879 static HRESULT WINAPI HTMLDocument_get_onrowexit(IHTMLDocument2 *iface, VARIANT *p)
880 {
881     FIXME("(%p)->(%p)\n", iface, p);
882     return E_NOTIMPL;
883 }
884
885 static HRESULT WINAPI HTMLDocument_put_onrowenter(IHTMLDocument2 *iface, VARIANT v)
886 {
887     FIXME("(%p)\n", iface);
888     return E_NOTIMPL;
889 }
890
891 static HRESULT WINAPI HTMLDocument_get_onrowenter(IHTMLDocument2 *iface, VARIANT *p)
892 {
893     FIXME("(%p)->(%p)\n", iface, p);
894     return E_NOTIMPL;
895 }
896
897 static HRESULT WINAPI HTMLDocument_put_ondragstart(IHTMLDocument2 *iface, VARIANT v)
898 {
899     FIXME("(%p)\n", iface);
900     return E_NOTIMPL;
901 }
902
903 static HRESULT WINAPI HTMLDocument_get_ondragstart(IHTMLDocument2 *iface, VARIANT *p)
904 {
905     FIXME("(%p)->(%p)\n", iface, p);
906     return E_NOTIMPL;
907 }
908
909 static HRESULT WINAPI HTMLDocument_put_onselectstart(IHTMLDocument2 *iface, VARIANT v)
910 {
911     FIXME("(%p)\n", iface);
912     return E_NOTIMPL;
913 }
914
915 static HRESULT WINAPI HTMLDocument_get_onselectstart(IHTMLDocument2 *iface, VARIANT *p)
916 {
917     FIXME("(%p)->(%p)\n", iface, p);
918     return E_NOTIMPL;
919 }
920
921 static HRESULT WINAPI HTMLDocument_elementFromPoint(IHTMLDocument2 *iface, long x, long y,
922                                                         IHTMLElement **elementHit)
923 {
924     FIXME("(%p)->(%ld %ld %p)\n", iface, x, y, elementHit);
925     return E_NOTIMPL;
926 }
927
928 static HRESULT WINAPI HTMLDocument_get_parentWindow(IHTMLDocument2 *iface, IHTMLWindow2 **p)
929 {
930     HTMLDocument *This = HTMLDOC_THIS(iface);
931
932     TRACE("(%p)->(%p)\n", This, p);
933
934     *p = HTMLWINDOW2(This->window);
935     IHTMLWindow2_AddRef(*p);
936     return S_OK;
937 }
938
939 static HRESULT WINAPI HTMLDocument_get_styleSheets(IHTMLDocument2 *iface,
940                                                     IHTMLStyleSheetsCollection **p)
941 {
942     FIXME("(%p)->(%p)\n", iface, p);
943     return E_NOTIMPL;
944 }
945
946 static HRESULT WINAPI HTMLDocument_put_onbeforeupdate(IHTMLDocument2 *iface, VARIANT v)
947 {
948     FIXME("(%p)\n", iface);
949     return E_NOTIMPL;
950 }
951
952 static HRESULT WINAPI HTMLDocument_get_onbeforeupdate(IHTMLDocument2 *iface, VARIANT *p)
953 {
954     FIXME("(%p)->(%p)\n", iface, p);
955     return E_NOTIMPL;
956 }
957
958 static HRESULT WINAPI HTMLDocument_put_onerrorupdate(IHTMLDocument2 *iface, VARIANT v)
959 {
960     FIXME("(%p)\n", iface);
961     return E_NOTIMPL;
962 }
963
964 static HRESULT WINAPI HTMLDocument_get_onerrorupdate(IHTMLDocument2 *iface, VARIANT *p)
965 {
966     FIXME("(%p)->(%p)\n", iface, p);
967     return E_NOTIMPL;
968 }
969
970 static HRESULT WINAPI HTMLDocument_toString(IHTMLDocument2 *iface, BSTR *String)
971 {
972     FIXME("(%p)->(%p)\n", iface, String);
973     return E_NOTIMPL;
974 }
975
976 static HRESULT WINAPI HTMLDocument_createStyleSheet(IHTMLDocument2 *iface, BSTR bstrHref,
977                                             long lIndex, IHTMLStyleSheet **ppnewStyleSheet)
978 {
979     HTMLDocument *This = HTMLDOC_THIS(iface);
980
981     FIXME("(%p)->(%s %ld %p) semi-stub\n", This, debugstr_w(bstrHref), lIndex, ppnewStyleSheet);
982
983     *ppnewStyleSheet = HTMLStyleSheet_Create();
984     return S_OK;
985 }
986
987 static const IHTMLDocument2Vtbl HTMLDocumentVtbl = {
988     HTMLDocument_QueryInterface,
989     HTMLDocument_AddRef,
990     HTMLDocument_Release,
991     HTMLDocument_GetTypeInfoCount,
992     HTMLDocument_GetTypeInfo,
993     HTMLDocument_GetIDsOfNames,
994     HTMLDocument_Invoke,
995     HTMLDocument_get_Script,
996     HTMLDocument_get_all,
997     HTMLDocument_get_body,
998     HTMLDocument_get_activeElement,
999     HTMLDocument_get_images,
1000     HTMLDocument_get_applets,
1001     HTMLDocument_get_links,
1002     HTMLDocument_get_forms,
1003     HTMLDocument_get_anchors,
1004     HTMLDocument_put_title,
1005     HTMLDocument_get_title,
1006     HTMLDocument_get_scripts,
1007     HTMLDocument_put_designMode,
1008     HTMLDocument_get_designMode,
1009     HTMLDocument_get_selection,
1010     HTMLDocument_get_readyState,
1011     HTMLDocument_get_frames,
1012     HTMLDocument_get_embeds,
1013     HTMLDocument_get_plugins,
1014     HTMLDocument_put_alinkColor,
1015     HTMLDocument_get_alinkColor,
1016     HTMLDocument_put_bgColor,
1017     HTMLDocument_get_bgColor,
1018     HTMLDocument_put_fgColor,
1019     HTMLDocument_get_fgColor,
1020     HTMLDocument_put_linkColor,
1021     HTMLDocument_get_linkColor,
1022     HTMLDocument_put_vlinkColor,
1023     HTMLDocument_get_vlinkColor,
1024     HTMLDocument_get_referrer,
1025     HTMLDocument_get_location,
1026     HTMLDocument_get_lastModified,
1027     HTMLDocument_put_URL,
1028     HTMLDocument_get_URL,
1029     HTMLDocument_put_domain,
1030     HTMLDocument_get_domain,
1031     HTMLDocument_put_cookie,
1032     HTMLDocument_get_cookie,
1033     HTMLDocument_put_expando,
1034     HTMLDocument_get_expando,
1035     HTMLDocument_put_charset,
1036     HTMLDocument_get_charset,
1037     HTMLDocument_put_defaultCharset,
1038     HTMLDocument_get_defaultCharset,
1039     HTMLDocument_get_mimeType,
1040     HTMLDocument_get_fileSize,
1041     HTMLDocument_get_fileCreatedDate,
1042     HTMLDocument_get_fileModifiedDate,
1043     HTMLDocument_get_fileUpdatedDate,
1044     HTMLDocument_get_security,
1045     HTMLDocument_get_protocol,
1046     HTMLDocument_get_nameProp,
1047     HTMLDocument_write,
1048     HTMLDocument_writeln,
1049     HTMLDocument_open,
1050     HTMLDocument_close,
1051     HTMLDocument_clear,
1052     HTMLDocument_queryCommandSupported,
1053     HTMLDocument_queryCommandEnabled,
1054     HTMLDocument_queryCommandState,
1055     HTMLDocument_queryCommandIndeterm,
1056     HTMLDocument_queryCommandText,
1057     HTMLDocument_queryCommandValue,
1058     HTMLDocument_execCommand,
1059     HTMLDocument_execCommandShowHelp,
1060     HTMLDocument_createElement,
1061     HTMLDocument_put_onhelp,
1062     HTMLDocument_get_onhelp,
1063     HTMLDocument_put_onclick,
1064     HTMLDocument_get_onclick,
1065     HTMLDocument_put_ondblclick,
1066     HTMLDocument_get_ondblclick,
1067     HTMLDocument_put_onkeyup,
1068     HTMLDocument_get_onkeyup,
1069     HTMLDocument_put_onkeydown,
1070     HTMLDocument_get_onkeydown,
1071     HTMLDocument_put_onkeypress,
1072     HTMLDocument_get_onkeypress,
1073     HTMLDocument_put_onmouseup,
1074     HTMLDocument_get_onmouseup,
1075     HTMLDocument_put_onmousedown,
1076     HTMLDocument_get_onmousedown,
1077     HTMLDocument_put_onmousemove,
1078     HTMLDocument_get_onmousemove,
1079     HTMLDocument_put_onmouseout,
1080     HTMLDocument_get_onmouseout,
1081     HTMLDocument_put_onmouseover,
1082     HTMLDocument_get_onmouseover,
1083     HTMLDocument_put_onreadystatechange,
1084     HTMLDocument_get_onreadystatechange,
1085     HTMLDocument_put_onafterupdate,
1086     HTMLDocument_get_onafterupdate,
1087     HTMLDocument_put_onrowexit,
1088     HTMLDocument_get_onrowexit,
1089     HTMLDocument_put_onrowenter,
1090     HTMLDocument_get_onrowenter,
1091     HTMLDocument_put_ondragstart,
1092     HTMLDocument_get_ondragstart,
1093     HTMLDocument_put_onselectstart,
1094     HTMLDocument_get_onselectstart,
1095     HTMLDocument_elementFromPoint,
1096     HTMLDocument_get_parentWindow,
1097     HTMLDocument_get_styleSheets,
1098     HTMLDocument_put_onbeforeupdate,
1099     HTMLDocument_get_onbeforeupdate,
1100     HTMLDocument_put_onerrorupdate,
1101     HTMLDocument_get_onerrorupdate,
1102     HTMLDocument_toString,
1103     HTMLDocument_createStyleSheet
1104 };
1105
1106 HRESULT HTMLDocument_Create(IUnknown *pUnkOuter, REFIID riid, void** ppvObject)
1107 {
1108     HTMLDocument *ret;
1109     HRESULT hres;
1110
1111     TRACE("(%p %s %p)\n", pUnkOuter, debugstr_guid(riid), ppvObject);
1112
1113     ret = mshtml_alloc(sizeof(HTMLDocument));
1114     ret->lpHTMLDocument2Vtbl = &HTMLDocumentVtbl;
1115     ret->ref = 0;
1116     ret->nscontainer = NULL;
1117     ret->nodes = NULL;
1118     ret->readystate = READYSTATE_UNINITIALIZED;
1119     ret->window = NULL;
1120
1121     hres = IHTMLDocument_QueryInterface(HTMLDOC(ret), riid, ppvObject);
1122     if(FAILED(hres)) {
1123         mshtml_free(ret);
1124         return hres;
1125     }
1126
1127     LOCK_MODULE();
1128
1129     HTMLDocument_HTMLDocument3_Init(ret);
1130     HTMLDocument_Persist_Init(ret);
1131     HTMLDocument_OleCmd_Init(ret);
1132     HTMLDocument_OleObj_Init(ret);
1133     HTMLDocument_View_Init(ret);
1134     HTMLDocument_Window_Init(ret);
1135     HTMLDocument_Service_Init(ret);
1136     HTMLDocument_Hlink_Init(ret);
1137     HTMLDocument_ConnectionPoints_Init(ret);
1138
1139     ret->nscontainer = NSContainer_Create(ret, NULL);
1140     ret->window = HTMLWindow_Create(ret);
1141
1142     get_thread_hwnd();
1143
1144     return hres;
1145 }