Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
501e680e
Commit
501e680e
authored
Oct 22, 2009
by
Jacek Caban
Committed by
Alexandre Julliard
Oct 23, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Call pop_mutation_queue in MUTATION_IFRAME handler.
parent
c593173d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
mutation.c
dlls/mshtml/mutation.c
+6
-1
No files found.
dlls/mshtml/mutation.c
View file @
501e680e
...
...
@@ -340,7 +340,8 @@ static nsresult NSAPI nsRunnable_Run(nsIRunnable *iface)
}
case
MUTATION_IFRAME
:
return
init_iframe_window
(
This
,
This
->
mutation_queue
->
nsiface
);
init_iframe_window
(
This
,
This
->
mutation_queue
->
nsiface
);
break
;
case
MUTATION_SCRIPT
:
{
nsIDOMHTMLScriptElement
*
nsscript
;
...
...
@@ -577,6 +578,8 @@ static void NSAPI nsDocumentObserver_BindToDocument(nsIDocumentObserver *iface,
nsres
=
nsISupports_QueryInterface
(
aContent
,
&
IID_nsIDOMHTMLIFrameElement
,
(
void
**
)
&
nsiframe
);
if
(
NS_SUCCEEDED
(
nsres
))
{
TRACE
(
"iframe node
\n
"
);
push_mutation_queue
(
This
,
MUTATION_IFRAME
,
(
nsISupports
*
)
nsiframe
);
nsIDOMHTMLIFrameElement_Release
(
nsiframe
);
add_script_runner
(
This
);
...
...
@@ -594,6 +597,8 @@ static void NSAPI nsDocumentObserver_DoneAddingChildren(nsIDocumentObserver *ifa
nsres
=
nsISupports_QueryInterface
(
aContent
,
&
IID_nsIDOMHTMLScriptElement
,
(
void
**
)
&
nsscript
);
if
(
NS_SUCCEEDED
(
nsres
))
{
TRACE
(
"script node
\n
"
);
push_mutation_queue
(
This
,
MUTATION_SCRIPT
,
(
nsISupports
*
)
nsscript
);
nsIDOMHTMLScriptElement_Release
(
nsscript
);
add_script_runner
(
This
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment