Index: Source/core/dom/Element.idl |
diff --git a/Source/core/dom/Element.idl b/Source/core/dom/Element.idl |
index c72b2bd17117961d3491bcb540f7a4fb65f43cae..b3af30af5865af058e390096c78c2e94cb703041 100644 |
--- a/Source/core/dom/Element.idl |
+++ b/Source/core/dom/Element.idl |
@@ -138,9 +138,14 @@ |
// Event handler DOM attributes |
attribute EventHandler onabort; |
attribute EventHandler onblur; |
+ attribute EventHandler oncancel; |
+ attribute EventHandler oncanplay; |
+ attribute EventHandler oncanplaythrough; |
attribute EventHandler onchange; |
[ActivityLogging=Setter] attribute EventHandler onclick; |
+ attribute EventHandler onclose; |
attribute EventHandler oncontextmenu; |
+ attribute EventHandler oncuechange; |
[ActivityLogging=Setter] attribute EventHandler ondblclick; |
[ActivityLogging=Setter] attribute EventHandler ondrag; |
[ActivityLogging=Setter] attribute EventHandler ondragend; |
@@ -149,6 +154,9 @@ |
[ActivityLogging=Setter] attribute EventHandler ondragover; |
[ActivityLogging=Setter] attribute EventHandler ondragstart; |
[ActivityLogging=Setter] attribute EventHandler ondrop; |
+ attribute EventHandler ondurationchange; |
+ attribute EventHandler onemptied; |
+ attribute EventHandler onended; |
attribute EventHandler onerror; |
attribute EventHandler onfocus; |
[ActivityLogging=Setter] attribute EventHandler oninput; |
@@ -157,6 +165,9 @@ |
[ActivityLogging=Setter] attribute EventHandler onkeypress; |
[ActivityLogging=Setter] attribute EventHandler onkeyup; |
attribute EventHandler onload; |
+ attribute EventHandler onloadeddata; |
+ attribute EventHandler onloadedmetadata; |
+ attribute EventHandler onloadstart; |
[ActivityLogging=Setter] attribute EventHandler onmousedown; |
[ActivityLogging=Setter] attribute EventHandler onmouseenter; |
[ActivityLogging=Setter] attribute EventHandler onmouseleave; |
@@ -166,9 +177,23 @@ |
[ActivityLogging=Setter] attribute EventHandler onmouseup; |
[ActivityLogging=Setter] attribute EventHandler onmousewheel; // Deprecated in favor of onwheel. |
[ActivityLogging=Setter] attribute EventHandler onwheel; |
+ attribute EventHandler onpause; |
+ attribute EventHandler onplay; |
+ attribute EventHandler onplaying; |
+ attribute EventHandler onprogress; |
+ attribute EventHandler onratechange; |
+ attribute EventHandler onreset; |
attribute EventHandler onscroll; |
+ attribute EventHandler onseeked; |
+ attribute EventHandler onseeking; |
attribute EventHandler onselect; |
+ attribute EventHandler onshow; |
+ attribute EventHandler onstalled; |
attribute EventHandler onsubmit; |
+ attribute EventHandler onsuspend; |
+ attribute EventHandler ontimeupdate; |
+ attribute EventHandler onvolumechange; |
+ attribute EventHandler onwaiting; |
// WebKit extensions |
[NotEnumerable] attribute EventHandler onbeforecut; |
@@ -177,7 +202,6 @@ |
[NotEnumerable] attribute EventHandler oncopy; |
[NotEnumerable] attribute EventHandler onbeforepaste; |
[NotEnumerable] attribute EventHandler onpaste; |
- [NotEnumerable] attribute EventHandler onreset; |
[NotEnumerable] attribute EventHandler onsearch; |
[NotEnumerable] attribute EventHandler onselectstart; |
[NotEnumerable, RuntimeEnabled=Touch] attribute EventHandler ontouchstart; |