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
d054357c
Commit
d054357c
authored
Oct 16, 2017
by
Jacek Caban
Committed by
Alexandre Julliard
Oct 17, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Fire message event with window as a target.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
e38c2ceb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
htmlevent.c
dlls/mshtml/htmlevent.c
+1
-1
htmlwindow.c
dlls/mshtml/htmlwindow.c
+1
-1
No files found.
dlls/mshtml/htmlevent.c
View file @
d054357c
...
@@ -153,7 +153,7 @@ static const event_info_t event_info[] = {
...
@@ -153,7 +153,7 @@ static const event_info_t event_info[] = {
{
loadW
,
EVENTT_HTML
,
DISPID_EVMETH_ONLOAD
,
{
loadW
,
EVENTT_HTML
,
DISPID_EVMETH_ONLOAD
,
EVENT_BIND_TO_BODY
},
EVENT_BIND_TO_BODY
},
{
messageW
,
EVENTT_NONE
,
DISPID_EVMETH_ONMESSAGE
,
{
messageW
,
EVENTT_NONE
,
DISPID_EVMETH_ONMESSAGE
,
EVENT_BUBBLE
/* FIXME: remove when we get the target right */
},
0
},
{
mousedownW
,
EVENTT_MOUSE
,
DISPID_EVMETH_ONMOUSEDOWN
,
{
mousedownW
,
EVENTT_MOUSE
,
DISPID_EVMETH_ONMOUSEDOWN
,
EVENT_DEFAULTLISTENER
|
EVENT_BUBBLE
|
EVENT_CANCELABLE
},
EVENT_DEFAULTLISTENER
|
EVENT_BUBBLE
|
EVENT_CANCELABLE
},
{
mousemoveW
,
EVENTT_MOUSE
,
DISPID_EVMETH_ONMOUSEMOVE
,
{
mousemoveW
,
EVENTT_MOUSE
,
DISPID_EVMETH_ONMOUSEMOVE
,
...
...
dlls/mshtml/htmlwindow.c
View file @
d054357c
...
@@ -2155,7 +2155,7 @@ static HRESULT WINAPI HTMLWindow6_postMessage(IHTMLWindow6 *iface, BSTR msg, VAR
...
@@ -2155,7 +2155,7 @@ static HRESULT WINAPI HTMLWindow6_postMessage(IHTMLWindow6 *iface, BSTR msg, VAR
return
E_FAIL
;
return
E_FAIL
;
}
}
fire_event
(
This
->
inner_window
->
doc
,
EVENTID_MESSAGE
,
TRUE
,
&
This
->
inner_window
->
doc
->
node
,
NULL
,
NULL
);
fire_event
(
This
->
inner_window
->
doc
,
EVENTID_MESSAGE
,
TRUE
,
NULL
,
NULL
,
NULL
);
return
S_OK
;
return
S_OK
;
}
}
...
...
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