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
ff127a34
Commit
ff127a34
authored
Aug 02, 2011
by
Jacek Caban
Committed by
Alexandre Julliard
Aug 02, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Always set onclick event handler during document initialization.
parent
2610ef9c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
1 deletion
+14
-1
htmlevent.c
dlls/mshtml/htmlevent.c
+14
-1
No files found.
dlls/mshtml/htmlevent.c
View file @
ff127a34
...
...
@@ -141,6 +141,7 @@ typedef struct {
#define EVENT_FORWARDBODY 0x0004
#define EVENT_NODEHANDLER 0x0008
#define EVENT_CANCELABLE 0x0010
#define EVENT_SETONINIT 0x0020
static
const
event_info_t
event_info
[]
=
{
{
beforeunloadW
,
onbeforeunloadW
,
EVENTT_NONE
,
DISPID_EVMETH_ONBEFOREUNLOAD
,
...
...
@@ -150,7 +151,7 @@ static const event_info_t event_info[] = {
{
changeW
,
onchangeW
,
EVENTT_HTML
,
DISPID_EVMETH_ONCHANGE
,
EVENT_DEFAULTLISTENER
|
EVENT_BUBBLE
},
{
clickW
,
onclickW
,
EVENTT_MOUSE
,
DISPID_EVMETH_ONCLICK
,
EVENT_DEFAULTLISTENER
|
EVENT_BUBBLE
|
EVENT_CANCELABLE
},
EVENT_DEFAULTLISTENER
|
EVENT_BUBBLE
|
EVENT_CANCELABLE
|
EVENT_SETONINIT
},
{
contextmenuW
,
oncontextmenuW
,
EVENTT_MOUSE
,
DISPID_EVMETH_ONCONTEXTMENU
,
EVENT_BUBBLE
|
EVENT_CANCELABLE
},
{
dblclickW
,
ondblclickW
,
EVENTT_MOUSE
,
DISPID_EVMETH_ONDBLCLICK
,
...
...
@@ -1371,11 +1372,23 @@ void check_event_attr(HTMLDocumentNode *doc, nsIDOMElement *nselem)
HRESULT
doc_init_events
(
HTMLDocumentNode
*
doc
)
{
unsigned
i
;
HRESULT
hres
;
doc
->
event_vector
=
heap_alloc_zero
(
EVENTID_LAST
*
sizeof
(
BOOL
));
if
(
!
doc
->
event_vector
)
return
E_OUTOFMEMORY
;
init_nsevents
(
doc
);
for
(
i
=
0
;
i
<
EVENTID_LAST
;
i
++
)
{
if
(
event_info
[
i
].
flags
&
EVENT_SETONINIT
)
{
hres
=
ensure_nsevent_handler
(
doc
,
NULL
,
NULL
,
i
);
if
(
FAILED
(
hres
))
return
hres
;
}
}
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