dbghelp: Check for NULL return from process_find_by_handle (Coverity).
[wine] / dlls / mshtml / mutation.c
1 /*
2  * Copyright 2008 Jacek Caban for CodeWeavers
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
23 #define COBJMACROS
24
25 #include "windef.h"
26 #include "winbase.h"
27 #include "winuser.h"
28 #include "winreg.h"
29 #include "ole2.h"
30 #include "shlguid.h"
31
32 #include "mshtml_private.h"
33 #include "htmlevent.h"
34
35 #include "wine/debug.h"
36
37 WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
38
39 enum {
40     MUTATION_BINDTOTREE,
41     MUTATION_COMMENT,
42     MUTATION_ENDLOAD,
43     MUTATION_SCRIPT
44 };
45
46 #define IE_MAJOR_VERSION 7
47 #define IE_MINOR_VERSION 0
48
49 static BOOL handle_insert_comment(HTMLDocumentNode *doc, const PRUnichar *comment)
50 {
51     DWORD len;
52     int majorv = 0, minorv = 0;
53     const PRUnichar *ptr, *end;
54     nsAString nsstr;
55     PRUnichar *buf;
56     nsresult nsres;
57
58     enum {
59         CMP_EQ,
60         CMP_LT,
61         CMP_LTE,
62         CMP_GT,
63         CMP_GTE
64     } cmpt = CMP_EQ;
65
66     static const PRUnichar endifW[] = {'<','!','[','e','n','d','i','f',']'};
67
68     if(comment[0] != '[' || comment[1] != 'i' || comment[2] != 'f')
69         return FALSE;
70
71     ptr = comment+3;
72     while(isspaceW(*ptr))
73         ptr++;
74
75     if(ptr[0] == 'l' && ptr[1] == 't') {
76         ptr += 2;
77         if(*ptr == 'e') {
78             cmpt = CMP_LTE;
79             ptr++;
80         }else {
81             cmpt = CMP_LT;
82         }
83     }else if(ptr[0] == 'g' && ptr[1] == 't') {
84         ptr += 2;
85         if(*ptr == 'e') {
86             cmpt = CMP_GTE;
87             ptr++;
88         }else {
89             cmpt = CMP_GT;
90         }
91     }
92
93     if(!isspaceW(*ptr++))
94         return FALSE;
95     while(isspaceW(*ptr))
96         ptr++;
97
98     if(ptr[0] != 'I' || ptr[1] != 'E')
99         return FALSE;
100
101     ptr +=2;
102     if(!isspaceW(*ptr++))
103         return FALSE;
104     while(isspaceW(*ptr))
105         ptr++;
106
107     if(!isdigitW(*ptr))
108         return FALSE;
109     while(isdigitW(*ptr))
110         majorv = majorv*10 + (*ptr++ - '0');
111
112     if(*ptr == '.') {
113         ptr++;
114         if(!isdigitW(*ptr))
115             return FALSE;
116         while(isdigitW(*ptr))
117             minorv = minorv*10 + (*ptr++ - '0');
118     }
119
120     while(isspaceW(*ptr))
121         ptr++;
122     if(ptr[0] != ']' || ptr[1] != '>')
123         return FALSE;
124     ptr += 2;
125
126     len = strlenW(ptr);
127     if(len < sizeof(endifW)/sizeof(WCHAR))
128         return FALSE;
129
130     end = ptr + len-sizeof(endifW)/sizeof(WCHAR);
131     if(memcmp(end, endifW, sizeof(endifW)))
132         return FALSE;
133
134     switch(cmpt) {
135     case CMP_EQ:
136         if(majorv == IE_MAJOR_VERSION && minorv == IE_MINOR_VERSION)
137             break;
138         return FALSE;
139     case CMP_LT:
140         if(majorv > IE_MAJOR_VERSION)
141             break;
142         if(majorv == IE_MAJOR_VERSION && minorv > IE_MINOR_VERSION)
143             break;
144         return FALSE;
145     case CMP_LTE:
146         if(majorv > IE_MAJOR_VERSION)
147             break;
148         if(majorv == IE_MAJOR_VERSION && minorv >= IE_MINOR_VERSION)
149             break;
150         return FALSE;
151     case CMP_GT:
152         if(majorv < IE_MAJOR_VERSION)
153             break;
154         if(majorv == IE_MAJOR_VERSION && minorv < IE_MINOR_VERSION)
155             break;
156         return FALSE;
157     case CMP_GTE:
158         if(majorv < IE_MAJOR_VERSION)
159             break;
160         if(majorv == IE_MAJOR_VERSION && minorv <= IE_MINOR_VERSION)
161             break;
162         return FALSE;
163     }
164
165     buf = heap_alloc((end-ptr+1)*sizeof(WCHAR));
166     if(!buf)
167         return FALSE;
168
169     memcpy(buf, ptr, (end-ptr)*sizeof(WCHAR));
170     buf[end-ptr] = 0;
171     nsAString_Init(&nsstr, buf);
172     heap_free(buf);
173
174     /* FIXME: Find better way to insert HTML to document. */
175     nsres = nsIDOMHTMLDocument_Write(doc->nsdoc, &nsstr);
176     nsAString_Finish(&nsstr);
177     if(NS_FAILED(nsres)) {
178         ERR("Write failed: %08x\n", nsres);
179         return FALSE;
180     }
181
182     return TRUE;
183 }
184
185 static void add_script_runner(HTMLDocumentNode *This)
186 {
187     nsIDOMNSDocument *nsdoc;
188     nsresult nsres;
189
190     nsres = nsIDOMHTMLDocument_QueryInterface(This->nsdoc, &IID_nsIDOMNSDocument, (void**)&nsdoc);
191     if(NS_FAILED(nsres)) {
192         ERR("Could not get nsIDOMNSDocument: %08x\n", nsres);
193         return;
194     }
195
196     nsIDOMNSDocument_WineAddScriptRunner(nsdoc, NSRUNNABLE(This));
197     nsIDOMNSDocument_Release(nsdoc);
198 }
199
200 #define NSRUNNABLE_THIS(iface) DEFINE_THIS(HTMLDocumentNode, IRunnable, iface)
201
202 static nsresult NSAPI nsRunnable_QueryInterface(nsIRunnable *iface,
203         nsIIDRef riid, nsQIResult result)
204 {
205     HTMLDocumentNode *This = NSRUNNABLE_THIS(iface);
206
207     if(IsEqualGUID(riid, &IID_nsISupports)) {
208         TRACE("(%p)->(IID_nsISupports %p)\n", This, result);
209         *result = NSRUNNABLE(This);
210     }else if(IsEqualGUID(riid, &IID_nsIRunnable)) {
211         TRACE("(%p)->(IID_nsIRunnable %p)\n", This, result);
212         *result = NSRUNNABLE(This);
213     }else {
214         *result = NULL;
215         WARN("(%p)->(%s %p)\n", This, debugstr_guid(riid), result);
216         return NS_NOINTERFACE;
217     }
218
219     nsISupports_AddRef((nsISupports*)*result);
220     return NS_OK;
221 }
222
223 static nsrefcnt NSAPI nsRunnable_AddRef(nsIRunnable *iface)
224 {
225     HTMLDocumentNode *This = NSRUNNABLE_THIS(iface);
226     return htmldoc_addref(&This->basedoc);
227 }
228
229 static nsrefcnt NSAPI nsRunnable_Release(nsIRunnable *iface)
230 {
231     HTMLDocumentNode *This = NSRUNNABLE_THIS(iface);
232     return htmldoc_release(&This->basedoc);
233 }
234
235 static void push_mutation_queue(HTMLDocumentNode *doc, DWORD type, nsISupports *nsiface)
236 {
237     mutation_queue_t *elem;
238
239     elem = heap_alloc(sizeof(mutation_queue_t));
240     if(!elem)
241         return;
242
243     elem->next = NULL;
244     elem->type = type;
245     elem->nsiface = nsiface;
246     if(nsiface)
247         nsISupports_AddRef(nsiface);
248
249     if(doc->mutation_queue_tail) {
250         doc->mutation_queue_tail = doc->mutation_queue_tail->next = elem;
251     }else {
252         doc->mutation_queue = doc->mutation_queue_tail = elem;
253         add_script_runner(doc);
254     }
255 }
256
257 static void pop_mutation_queue(HTMLDocumentNode *doc)
258 {
259     mutation_queue_t *tmp = doc->mutation_queue;
260
261     if(!tmp)
262         return;
263
264     doc->mutation_queue = tmp->next;
265     if(!tmp->next)
266         doc->mutation_queue_tail = NULL;
267
268     if(tmp->nsiface)
269         nsISupports_Release(tmp->nsiface);
270     heap_free(tmp);
271 }
272
273 static void bind_to_tree(HTMLDocumentNode *doc, nsISupports *nsiface)
274 {
275     nsIDOMNode *nsnode;
276     HTMLDOMNode *node;
277     nsresult nsres;
278
279     nsres = nsISupports_QueryInterface(nsiface, &IID_nsIDOMNode, (void**)&nsnode);
280     if(NS_FAILED(nsres))
281         return;
282
283     node = get_node(doc, nsnode, TRUE);
284     nsIDOMNode_Release(nsnode);
285     if(!node) {
286         ERR("Could not get node\n");
287         return;
288     }
289
290     if(node->vtbl->bind_to_tree)
291         node->vtbl->bind_to_tree(node);
292 }
293
294 /* Calls undocumented 69 cmd of CGID_Explorer */
295 static void call_explorer_69(HTMLDocumentObj *doc)
296 {
297     IOleCommandTarget *olecmd;
298     VARIANT var;
299     HRESULT hres;
300
301     if(!doc->client)
302         return;
303
304     hres = IOleClientSite_QueryInterface(doc->client, &IID_IOleCommandTarget, (void**)&olecmd);
305     if(FAILED(hres))
306         return;
307
308     VariantInit(&var);
309     hres = IOleCommandTarget_Exec(olecmd, &CGID_Explorer, 69, 0, NULL, &var);
310     IOleCommandTarget_Release(olecmd);
311     if(SUCCEEDED(hres) && V_VT(&var) != VT_NULL)
312         FIXME("handle result\n");
313 }
314
315 static void parse_complete_proc(task_t *task)
316 {
317     HTMLDocumentObj *doc = ((docobj_task_t*)task)->doc;
318
319     TRACE("(%p)\n", doc);
320
321     if(doc->usermode == EDITMODE)
322         init_editor(&doc->basedoc);
323
324     call_explorer_69(doc);
325     call_property_onchanged(&doc->basedoc.cp_propnotif, 1005);
326     call_explorer_69(doc);
327
328     /* FIXME: IE7 calls EnableModelless(TRUE), EnableModelless(FALSE) and sets interactive state here */
329
330     set_ready_state(doc->basedoc.window, READYSTATE_INTERACTIVE);
331 }
332
333 static void handle_end_load(HTMLDocumentNode *This)
334 {
335     docobj_task_t *task;
336
337     TRACE("\n");
338
339     if(This != This->basedoc.doc_obj->basedoc.doc_node) {
340         set_ready_state(This->basedoc.window, READYSTATE_INTERACTIVE);
341         return;
342     }
343
344     task = heap_alloc(sizeof(docobj_task_t));
345     if(!task)
346         return;
347
348     task->doc = This->basedoc.doc_obj;
349
350     /*
351      * This should be done in the worker thread that parses HTML,
352      * but we don't have such thread (Gecko parses HTML for us).
353      */
354     push_task(&task->header, &parse_complete_proc, This->basedoc.doc_obj->basedoc.task_magic);
355 }
356
357 static nsresult NSAPI nsRunnable_Run(nsIRunnable *iface)
358 {
359     HTMLDocumentNode *This = NSRUNNABLE_THIS(iface);
360     nsresult nsres;
361
362     TRACE("(%p)\n", This);
363
364     while(This->mutation_queue) {
365         switch(This->mutation_queue->type) {
366         case MUTATION_BINDTOTREE:
367             bind_to_tree(This, This->mutation_queue->nsiface);
368             break;
369
370         case MUTATION_COMMENT: {
371             nsIDOMComment *nscomment;
372             nsAString comment_str;
373             BOOL remove_comment = FALSE;
374
375             nsres = nsISupports_QueryInterface(This->mutation_queue->nsiface, &IID_nsIDOMComment, (void**)&nscomment);
376             if(NS_FAILED(nsres)) {
377                 ERR("Could not get nsIDOMComment iface:%08x\n", nsres);
378                 return NS_OK;
379             }
380
381             nsAString_Init(&comment_str, NULL);
382             nsres = nsIDOMComment_GetData(nscomment, &comment_str);
383             if(NS_SUCCEEDED(nsres)) {
384                 const PRUnichar *comment;
385
386                 nsAString_GetData(&comment_str, &comment);
387                 remove_comment = handle_insert_comment(This, comment);
388             }
389
390             nsAString_Finish(&comment_str);
391
392             if(remove_comment) {
393                 nsIDOMNode *nsparent, *tmp;
394                 nsAString magic_str;
395
396                 static const PRUnichar remove_comment_magicW[] =
397                     {'#','!','w','i','n','e', 'r','e','m','o','v','e','!','#',0};
398
399                 nsAString_Init(&magic_str, remove_comment_magicW);
400                 nsres = nsIDOMComment_SetData(nscomment, &magic_str);
401                 nsAString_Finish(&magic_str);
402                 if(NS_FAILED(nsres))
403                     ERR("SetData failed: %08x\n", nsres);
404
405                 nsIDOMComment_GetParentNode(nscomment, &nsparent);
406                 if(nsparent) {
407                     nsIDOMNode_RemoveChild(nsparent, (nsIDOMNode*)nscomment, &tmp);
408                     nsIDOMNode_Release(nsparent);
409                     nsIDOMNode_Release(tmp);
410                 }
411             }
412
413             nsIDOMComment_Release(nscomment);
414             break;
415         }
416
417         case MUTATION_ENDLOAD:
418             handle_end_load(This);
419             break;
420
421         case MUTATION_SCRIPT: {
422             nsIDOMHTMLScriptElement *nsscript;
423
424             nsres = nsISupports_QueryInterface(This->mutation_queue->nsiface, &IID_nsIDOMHTMLScriptElement,
425                                                (void**)&nsscript);
426             if(NS_FAILED(nsres)) {
427                 ERR("Could not get nsIDOMHTMLScriptElement: %08x\n", nsres);
428                 break;
429             }
430
431             doc_insert_script(This->basedoc.window, nsscript);
432             nsIDOMHTMLScriptElement_Release(nsscript);
433             break;
434         }
435
436         default:
437             ERR("invalid type %d\n", This->mutation_queue->type);
438         }
439
440         pop_mutation_queue(This);
441     }
442
443     return S_OK;
444 }
445
446 #undef NSRUNNABLE_THIS
447
448 static const nsIRunnableVtbl nsRunnableVtbl = {
449     nsRunnable_QueryInterface,
450     nsRunnable_AddRef,
451     nsRunnable_Release,
452     nsRunnable_Run
453 };
454
455 #define NSDOCOBS_THIS(iface) DEFINE_THIS(HTMLDocumentNode, IDocumentObserver, iface)
456
457 static nsresult NSAPI nsDocumentObserver_QueryInterface(nsIDocumentObserver *iface,
458         nsIIDRef riid, nsQIResult result)
459 {
460     HTMLDocumentNode *This = NSDOCOBS_THIS(iface);
461
462     if(IsEqualGUID(&IID_nsISupports, riid)) {
463         TRACE("(%p)->(IID_nsISupports, %p)\n", This, result);
464         *result = NSDOCOBS(This);
465     }else if(IsEqualGUID(&IID_nsIMutationObserver, riid)) {
466         TRACE("(%p)->(IID_nsIMutationObserver %p)\n", This, result);
467         *result = NSDOCOBS(This);
468     }else if(IsEqualGUID(&IID_nsIDocumentObserver, riid)) {
469         TRACE("(%p)->(IID_nsIDocumentObserver %p)\n", This, result);
470         *result = NSDOCOBS(This);
471     }else {
472         *result = NULL;
473         TRACE("(%p)->(%s %p)\n", This, debugstr_guid(riid), result);
474         return NS_NOINTERFACE;
475     }
476
477     htmldoc_addref(&This->basedoc);
478     return NS_OK;
479 }
480
481 static nsrefcnt NSAPI nsDocumentObserver_AddRef(nsIDocumentObserver *iface)
482 {
483     HTMLDocumentNode *This = NSDOCOBS_THIS(iface);
484     return htmldoc_addref(&This->basedoc);
485 }
486
487 static nsrefcnt NSAPI nsDocumentObserver_Release(nsIDocumentObserver *iface)
488 {
489     HTMLDocumentNode *This = NSDOCOBS_THIS(iface);
490     return htmldoc_release(&This->basedoc);
491 }
492
493 static void NSAPI nsDocumentObserver_CharacterDataWillChange(nsIDocumentObserver *iface,
494         nsIDocument *aDocument, nsIContent *aContent, void /*CharacterDataChangeInfo*/ *aInfo)
495 {
496 }
497
498 static void NSAPI nsDocumentObserver_CharacterDataChanged(nsIDocumentObserver *iface,
499         nsIDocument *aDocument, nsIContent *aContent, void /*CharacterDataChangeInfo*/ *aInfo)
500 {
501 }
502
503 static void NSAPI nsDocumentObserver_AttributeWillChange(nsIDocumentObserver *iface, nsIDocument *aDocument,
504         nsIContent *aContent, PRInt32 aNameSpaceID, nsIAtom *aAttribute, PRInt32 aModType)
505 {
506 }
507
508 static void NSAPI nsDocumentObserver_AttributeChanged(nsIDocumentObserver *iface, nsIDocument *aDocument,
509         nsIContent *aContent, PRInt32 aNameSpaceID, nsIAtom *aAttribute, PRInt32 aModType, PRUint32 aStateMask)
510 {
511 }
512
513 static void NSAPI nsDocumentObserver_ContentAppended(nsIDocumentObserver *iface, nsIDocument *aDocument,
514         nsIContent *aContainer, PRInt32 aNewIndexInContainer)
515 {
516 }
517
518 static void NSAPI nsDocumentObserver_ContentInserted(nsIDocumentObserver *iface, nsIDocument *aDocument,
519         nsIContent *aContainer, nsIContent *aChild, PRInt32 aIndexInContainer)
520 {
521 }
522
523 static void NSAPI nsDocumentObserver_ContentRemoved(nsIDocumentObserver *iface, nsIDocument *aDocument,
524         nsIContent *aContainer, nsIContent *aChild, PRInt32 aIndexInContainer)
525 {
526 }
527
528 static void NSAPI nsDocumentObserver_NodeWillBeDestroyed(nsIDocumentObserver *iface, const nsINode *aNode)
529 {
530 }
531
532 static void NSAPI nsDocumentObserver_ParentChainChanged(nsIDocumentObserver *iface, nsIContent *aContent)
533 {
534 }
535
536 static void NSAPI nsDocumentObserver_BeginUpdate(nsIDocumentObserver *iface, nsIDocument *aDocument,
537         nsUpdateType aUpdateType)
538 {
539 }
540
541 static void NSAPI nsDocumentObserver_EndUpdate(nsIDocumentObserver *iface, nsIDocument *aDocument,
542         nsUpdateType aUpdateType)
543 {
544 }
545
546 static void NSAPI nsDocumentObserver_BeginLoad(nsIDocumentObserver *iface, nsIDocument *aDocument)
547 {
548 }
549
550 static void NSAPI nsDocumentObserver_EndLoad(nsIDocumentObserver *iface, nsIDocument *aDocument)
551 {
552     HTMLDocumentNode *This = NSDOCOBS_THIS(iface);
553
554     TRACE("\n");
555
556     This->content_ready = TRUE;
557     push_mutation_queue(This, MUTATION_ENDLOAD, NULL);
558 }
559
560 static void NSAPI nsDocumentObserver_ContentStatesChanged(nsIDocumentObserver *iface, nsIDocument *aDocument,
561         nsIContent *aContent1, nsIContent *aContent2, PRInt32 aStateMask)
562 {
563 }
564
565 static void NSAPI nsDocumentObserver_StyleSheetAdded(nsIDocumentObserver *iface, nsIDocument *aDocument,
566         nsIStyleSheet *aStyleSheet, PRBool aDocumentSheet)
567 {
568 }
569
570 static void NSAPI nsDocumentObserver_StyleSheetRemoved(nsIDocumentObserver *iface, nsIDocument *aDocument,
571         nsIStyleSheet *aStyleSheet, PRBool aDocumentSheet)
572 {
573 }
574
575 static void NSAPI nsDocumentObserver_StyleSheetApplicableStateChanged(nsIDocumentObserver *iface,
576         nsIDocument *aDocument, nsIStyleSheet *aStyleSheet, PRBool aApplicable)
577 {
578 }
579
580 static void NSAPI nsDocumentObserver_StyleRuleChanged(nsIDocumentObserver *iface, nsIDocument *aDocument,
581         nsIStyleSheet *aStyleSheet, nsIStyleRule *aOldStyleRule, nsIStyleSheet *aNewStyleRule)
582 {
583 }
584
585 static void NSAPI nsDocumentObserver_StyleRuleAdded(nsIDocumentObserver *iface, nsIDocument *aDocument,
586         nsIStyleSheet *aStyleSheet, nsIStyleRule *aStyleRule)
587 {
588 }
589
590 static void NSAPI nsDocumentObserver_StyleRuleRemoved(nsIDocumentObserver *iface, nsIDocument *aDocument,
591         nsIStyleSheet *aStyleSheet, nsIStyleRule *aStyleRule)
592 {
593 }
594
595 static void NSAPI nsDocumentObserver_BindToDocument(nsIDocumentObserver *iface, nsIDocument *aDocument,
596         nsIContent *aContent)
597 {
598     HTMLDocumentNode *This = NSDOCOBS_THIS(iface);
599     nsIDOMHTMLIFrameElement *nsiframe;
600     nsIDOMHTMLFrameElement *nsframe;
601     nsIDOMComment *nscomment;
602     nsIDOMElement *nselem;
603     nsresult nsres;
604
605     TRACE("(%p)\n", This);
606
607     nsres = nsISupports_QueryInterface(aContent, &IID_nsIDOMElement, (void**)&nselem);
608     if(NS_SUCCEEDED(nsres)) {
609         check_event_attr(This, nselem);
610         nsIDOMElement_Release(nselem);
611     }
612
613     nsres = nsISupports_QueryInterface(aContent, &IID_nsIDOMComment, (void**)&nscomment);
614     if(NS_SUCCEEDED(nsres)) {
615         TRACE("comment node\n");
616
617         push_mutation_queue(This, MUTATION_COMMENT, (nsISupports*)nscomment);
618         nsIDOMComment_Release(nscomment);
619     }
620
621     nsres = nsISupports_QueryInterface(aContent, &IID_nsIDOMHTMLIFrameElement, (void**)&nsiframe);
622     if(NS_SUCCEEDED(nsres)) {
623         TRACE("iframe node\n");
624
625         push_mutation_queue(This, MUTATION_BINDTOTREE, (nsISupports*)nsiframe);
626         nsIDOMHTMLIFrameElement_Release(nsiframe);
627     }
628
629     nsres = nsISupports_QueryInterface(aContent, &IID_nsIDOMHTMLFrameElement, (void**)&nsframe);
630     if(NS_SUCCEEDED(nsres)) {
631         TRACE("frame node\n");
632
633         push_mutation_queue(This, MUTATION_BINDTOTREE, (nsISupports*)nsframe);
634         nsIDOMHTMLFrameElement_Release(nsframe);
635     }
636 }
637
638 static void NSAPI nsDocumentObserver_DoneAddingChildren(nsIDocumentObserver *iface, nsIContent *aContent,
639         PRBool aHaveNotified)
640 {
641     HTMLDocumentNode *This = NSDOCOBS_THIS(iface);
642     nsIDOMHTMLScriptElement *nsscript;
643     nsresult nsres;
644
645     TRACE("(%p)->(%p %x)\n", This, aContent, aHaveNotified);
646
647     nsres = nsISupports_QueryInterface(aContent, &IID_nsIDOMHTMLScriptElement, (void**)&nsscript);
648     if(NS_SUCCEEDED(nsres)) {
649         TRACE("script node\n");
650
651         push_mutation_queue(This, MUTATION_SCRIPT, (nsISupports*)nsscript);
652         nsIDOMHTMLScriptElement_Release(nsscript);
653     }
654 }
655
656 #undef NSMUTATIONOBS_THIS
657
658 static const nsIDocumentObserverVtbl nsDocumentObserverVtbl = {
659     nsDocumentObserver_QueryInterface,
660     nsDocumentObserver_AddRef,
661     nsDocumentObserver_Release,
662     nsDocumentObserver_CharacterDataWillChange,
663     nsDocumentObserver_CharacterDataChanged,
664     nsDocumentObserver_AttributeWillChange,
665     nsDocumentObserver_AttributeChanged,
666     nsDocumentObserver_ContentAppended,
667     nsDocumentObserver_ContentInserted,
668     nsDocumentObserver_ContentRemoved,
669     nsDocumentObserver_NodeWillBeDestroyed,
670     nsDocumentObserver_ParentChainChanged,
671     nsDocumentObserver_BeginUpdate,
672     nsDocumentObserver_EndUpdate,
673     nsDocumentObserver_BeginLoad,
674     nsDocumentObserver_EndLoad,
675     nsDocumentObserver_ContentStatesChanged,
676     nsDocumentObserver_StyleSheetAdded,
677     nsDocumentObserver_StyleSheetRemoved,
678     nsDocumentObserver_StyleSheetApplicableStateChanged,
679     nsDocumentObserver_StyleRuleChanged,
680     nsDocumentObserver_StyleRuleAdded,
681     nsDocumentObserver_StyleRuleRemoved,
682     nsDocumentObserver_BindToDocument,
683     nsDocumentObserver_DoneAddingChildren
684 };
685
686 void init_mutation(HTMLDocumentNode *doc)
687 {
688     nsIDOMNSDocument *nsdoc;
689     nsresult nsres;
690
691     doc->lpIDocumentObserverVtbl  = &nsDocumentObserverVtbl;
692     doc->lpIRunnableVtbl          = &nsRunnableVtbl;
693
694     nsres = nsIDOMHTMLDocument_QueryInterface(doc->nsdoc, &IID_nsIDOMNSDocument, (void**)&nsdoc);
695     if(NS_FAILED(nsres)) {
696         ERR("Could not get nsIDOMNSDocument: %08x\n", nsres);
697         return;
698     }
699
700     nsIDOMNSDocument_WineAddObserver(nsdoc, NSDOCOBS(doc));
701     nsIDOMNSDocument_Release(nsdoc);
702 }
703
704 void release_mutation(HTMLDocumentNode *doc)
705 {
706     nsIDOMNSDocument *nsdoc;
707     nsresult nsres;
708
709     nsres = nsIDOMHTMLDocument_QueryInterface(doc->nsdoc, &IID_nsIDOMNSDocument, (void**)&nsdoc);
710     if(NS_FAILED(nsres)) {
711         ERR("Could not get nsIDOMNSDocument: %08x\n", nsres);
712         return;
713     }
714
715     nsIDOMNSDocument_WineRemoveObserver(nsdoc, NSDOCOBS(doc));
716     nsIDOMNSDocument_Release(nsdoc);
717 }