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

Unified Diff: core/dom/GlobalEventHandlers.idl

Issue 1660113002: Updated to Chrome 45 (2454) moved from SVN to git. Base URL: https://github.com/dart-lang/webcore.git@roll_45
Patch Set: Created 4 years, 11 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
« no previous file with comments | « core/dom/FrameRequestCallback.idl ('k') | core/dom/Int16Array.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/dom/GlobalEventHandlers.idl
diff --git a/core/dom/GlobalEventHandlers.idl b/core/dom/GlobalEventHandlers.idl
index 6a7f1c1860e79d26894cd6e35902546ab1dc5149..685f3490c2a16fb953c179c7613d88b10a0e1e52 100644
--- a/core/dom/GlobalEventHandlers.idl
+++ b/core/dom/GlobalEventHandlers.idl
@@ -27,7 +27,7 @@
* OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-// http://www.whatwg.org/specs/web-apps/current-work/#globaleventhandlers
+// https://html.spec.whatwg.org/#globaleventhandlers
[
LegacyTreatAsPartialInterface,
@@ -57,6 +57,7 @@
attribute EventHandler ondurationchange;
attribute EventHandler onemptied;
attribute EventHandler onended;
+ // FIXME: onerror should be an OnErrorEventHandler.
attribute EventHandler onerror;
attribute EventHandler onfocus;
attribute EventHandler oninput;
@@ -69,8 +70,8 @@
attribute EventHandler onloadedmetadata;
attribute EventHandler onloadstart;
attribute EventHandler onmousedown;
- attribute EventHandler onmouseenter;
- attribute EventHandler onmouseleave;
+ [LenientThis] attribute EventHandler onmouseenter;
+ [LenientThis] attribute EventHandler onmouseleave;
attribute EventHandler onmousemove;
attribute EventHandler onmouseout;
attribute EventHandler onmouseover;
@@ -79,6 +80,14 @@
attribute EventHandler onpause;
attribute EventHandler onplay;
attribute EventHandler onplaying;
+ [RuntimeEnabled=PointerEvent] attribute EventHandler onpointercancel;
+ [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerdown;
+ [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerenter;
+ [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerleave;
+ [RuntimeEnabled=PointerEvent] attribute EventHandler onpointermove;
+ [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerout;
+ [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerover;
+ [RuntimeEnabled=PointerEvent] attribute EventHandler onpointerup;
attribute EventHandler onprogress;
attribute EventHandler onratechange;
attribute EventHandler onreset;
« no previous file with comments | « core/dom/FrameRequestCallback.idl ('k') | core/dom/Int16Array.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698