Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
951780b8
Commit
951780b8
authored
Sep 29, 2022
by
Gabriel Ivăncescu
Committed by
Alexandre Julliard
Sep 29, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Use actual Gecko event type for MessageEvent and StorageEvent.
Signed-off-by:
Gabriel Ivăncescu
<
gabrielopcode@gmail.com
>
parent
f60127f0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
htmlevent.c
dlls/mshtml/htmlevent.c
+5
-3
No files found.
dlls/mshtml/htmlevent.c
View file @
951780b8
...
...
@@ -68,6 +68,7 @@ typedef enum {
EVENT_TYPE_DRAG
,
EVENT_TYPE_MESSAGE
,
EVENT_TYPE_PROGRESS
,
EVENT_TYPE_STORAGE
,
EVENT_TYPE_CLIPBOARD
}
event_type_t
;
...
...
@@ -78,8 +79,9 @@ static const WCHAR *event_types[] = {
L"MouseEvent"
,
L"Event"
,
/* FIXME */
L"Event"
,
/* FIXME */
L"
Event"
,
/* We don't use Gecko's message events */
L"
MessageEvent"
,
L"ProgressEvent"
,
L"StorageEvent"
,
L"Event"
/* FIXME */
};
...
...
@@ -191,9 +193,9 @@ static const event_info_t event_info[] = {
EVENT_FIXME
},
{
L"selectstart"
,
EVENT_TYPE_EVENT
,
DISPID_EVMETH_ONSELECTSTART
,
EVENT_FIXME
|
EVENT_BUBBLES
|
EVENT_CANCELABLE
},
{
L"storage"
,
EVENT_TYPE_
EVENT
,
DISPID_EVMETH_ONSTORAGE
,
{
L"storage"
,
EVENT_TYPE_
STORAGE
,
DISPID_EVMETH_ONSTORAGE
,
0
},
{
L"storagecommit"
,
EVENT_TYPE_
EVENT
,
DISPID_EVMETH_ONSTORAGECOMMIT
,
{
L"storagecommit"
,
EVENT_TYPE_
STORAGE
,
DISPID_EVMETH_ONSTORAGECOMMIT
,
0
},
{
L"submit"
,
EVENT_TYPE_EVENT
,
DISPID_EVMETH_ONSUBMIT
,
EVENT_DEFAULTLISTENER
|
EVENT_HASDEFAULTHANDLERS
|
EVENT_BUBBLES
|
EVENT_CANCELABLE
},
...
...
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