Commit 0848cc97 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml: Added keyup event support.

parent 7057d7a9
...@@ -38,6 +38,9 @@ struct event_target_t { ...@@ -38,6 +38,9 @@ struct event_target_t {
static const WCHAR clickW[] = {'c','l','i','c','k',0}; static const WCHAR clickW[] = {'c','l','i','c','k',0};
static const WCHAR onclickW[] = {'o','n','c','l','i','c','k',0}; static const WCHAR onclickW[] = {'o','n','c','l','i','c','k',0};
static const WCHAR keyupW[] = {'k','e','y','u','p',0};
static const WCHAR onkeyupW[] = {'o','n','k','e','y','u','p',0};
static const WCHAR loadW[] = {'l','o','a','d',0}; static const WCHAR loadW[] = {'l','o','a','d',0};
static const WCHAR onloadW[] = {'o','n','l','o','a','d',0}; static const WCHAR onloadW[] = {'o','n','l','o','a','d',0};
...@@ -51,6 +54,7 @@ typedef struct { ...@@ -51,6 +54,7 @@ typedef struct {
static const event_info_t event_info[] = { static const event_info_t event_info[] = {
{clickW, onclickW, EVENT_DEFAULTLISTENER}, {clickW, onclickW, EVENT_DEFAULTLISTENER},
{keyupW, onkeyupW, EVENT_DEFAULTLISTENER},
{loadW, onloadW, 0} {loadW, onloadW, 0}
}; };
......
...@@ -100,6 +100,7 @@ typedef enum { ...@@ -100,6 +100,7 @@ typedef enum {
typedef enum { typedef enum {
EVENTID_CLICK, EVENTID_CLICK,
EVENTID_KEYUP,
EVENTID_LOAD, EVENTID_LOAD,
EVENTID_LAST EVENTID_LAST
} eventid_t; } eventid_t;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment