Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(505)

Unified Diff: Source/core/dom/Document.idl

Issue 27132002: Add missing event handler attributes (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@notenumerable
Patch Set: remove a commented out onshow Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/core/dom/Document.idl
diff --git a/Source/core/dom/Document.idl b/Source/core/dom/Document.idl
index 7fe8d2a9df282b161a0ce67fe17f215a3e51693f..a43cf21bc1782eb69d25069409521cc481ebf05d 100644
--- a/Source/core/dom/Document.idl
+++ b/Source/core/dom/Document.idl
@@ -172,9 +172,14 @@ callback CustomElementConstructor = Element ();
// 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;
@@ -183,6 +188,9 @@ callback CustomElementConstructor = Element ();
[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;
@@ -191,6 +199,9 @@ callback CustomElementConstructor = Element ();
[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;
@@ -200,10 +211,24 @@ callback CustomElementConstructor = Element ();
[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 onreadystatechange;
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;
@@ -212,7 +237,6 @@ callback CustomElementConstructor = Element ();
[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] attribute EventHandler onselectionchange;

Powered by Google App Engine
This is Rietveld 408576698