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
57c2c41d
Commit
57c2c41d
authored
Feb 26, 2024
by
Brendan McGrath
Committed by
Alexandre Julliard
Feb 29, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Don't handle special case when doc != node->doc.
parent
74ff9f23
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
nsevents.c
dlls/mshtml/nsevents.c
+2
-2
No files found.
dlls/mshtml/nsevents.c
View file @
57c2c41d
...
...
@@ -416,6 +416,7 @@ static nsresult handle_htmlevent(HTMLDocumentNode *doc, nsIDOMEvent *nsevent)
nsIDOMEventTarget
*
event_target
;
EventTarget
*
target
;
nsIDOMNode
*
nsnode
;
HTMLDOMNode
*
node
=
NULL
;
DOMEvent
*
event
;
nsresult
nsres
;
HRESULT
hres
;
...
...
@@ -436,7 +437,6 @@ static nsresult handle_htmlevent(HTMLDocumentNode *doc, nsIDOMEvent *nsevent)
target
=
&
doc
->
window
->
event_target
;
IHTMLWindow2_AddRef
(
&
doc
->
window
->
base
.
IHTMLWindow2_iface
);
}
else
{
HTMLDOMNode
*
node
;
hres
=
get_node
(
nsnode
,
TRUE
,
&
node
);
nsIDOMNode_Release
(
nsnode
);
if
(
FAILED
(
hres
))
...
...
@@ -451,7 +451,7 @@ static nsresult handle_htmlevent(HTMLDocumentNode *doc, nsIDOMEvent *nsevent)
}
/* If we fine need for more special cases here, we may consider handling it in a more generic way. */
if
(
event
->
event_id
==
EVENTID_FOCUS
||
event
->
event_id
==
EVENTID_BLUR
)
{
if
(
(
!
node
||
doc
==
node
->
doc
)
&&
(
event
->
event_id
==
EVENTID_FOCUS
||
event
->
event_id
==
EVENTID_BLUR
)
)
{
DOMEvent
*
focus_event
;
hres
=
create_document_event
(
doc
,
event
->
event_id
==
EVENTID_FOCUS
?
EVENTID_FOCUSIN
:
EVENTID_FOCUSOUT
,
&
focus_event
);
...
...
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