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

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

Issue 26535005: Drop PerWorldBindings for the on* event handler IDL attributes (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@PerWorldBindings-base
Patch Set: rebase 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
« no previous file with comments | « no previous file | Source/core/dom/Element.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/Document.idl
diff --git a/Source/core/dom/Document.idl b/Source/core/dom/Document.idl
index 4f17844e9847c45fd401290ce1f059159e0cf345..010eb4440bc3bba1f160d264d066705d599ea9dc 100644
--- a/Source/core/dom/Document.idl
+++ b/Source/core/dom/Document.idl
@@ -173,33 +173,33 @@ callback CustomElementConstructor = Element ();
[NotEnumerable] attribute EventHandler onabort;
[NotEnumerable] attribute EventHandler onblur;
[NotEnumerable] attribute EventHandler onchange;
- [NotEnumerable, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute EventHandler onclick;
+ [NotEnumerable, ActivityLogging=Setter] attribute EventHandler onclick;
[NotEnumerable] attribute EventHandler oncontextmenu;
- [NotEnumerable, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute EventHandler ondblclick;
- [NotEnumerable, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute EventHandler ondrag;
- [NotEnumerable, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute EventHandler ondragend;
- [NotEnumerable, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute EventHandler ondragenter;
- [NotEnumerable, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute EventHandler ondragleave;
- [NotEnumerable, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute EventHandler ondragover;
- [NotEnumerable, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute EventHandler ondragstart;
- [NotEnumerable, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute EventHandler ondrop;
+ [NotEnumerable, ActivityLogging=Setter] attribute EventHandler ondblclick;
+ [NotEnumerable, ActivityLogging=Setter] attribute EventHandler ondrag;
+ [NotEnumerable, ActivityLogging=Setter] attribute EventHandler ondragend;
+ [NotEnumerable, ActivityLogging=Setter] attribute EventHandler ondragenter;
+ [NotEnumerable, ActivityLogging=Setter] attribute EventHandler ondragleave;
+ [NotEnumerable, ActivityLogging=Setter] attribute EventHandler ondragover;
+ [NotEnumerable, ActivityLogging=Setter] attribute EventHandler ondragstart;
+ [NotEnumerable, ActivityLogging=Setter] attribute EventHandler ondrop;
[NotEnumerable] attribute EventHandler onerror;
[NotEnumerable] attribute EventHandler onfocus;
- [NotEnumerable, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute EventHandler oninput;
+ [NotEnumerable, ActivityLogging=Setter] attribute EventHandler oninput;
[NotEnumerable] attribute EventHandler oninvalid;
- [NotEnumerable, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute EventHandler onkeydown;
- [NotEnumerable, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute EventHandler onkeypress;
- [NotEnumerable, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute EventHandler onkeyup;
+ [NotEnumerable, ActivityLogging=Setter] attribute EventHandler onkeydown;
+ [NotEnumerable, ActivityLogging=Setter] attribute EventHandler onkeypress;
+ [NotEnumerable, ActivityLogging=Setter] attribute EventHandler onkeyup;
[NotEnumerable] attribute EventHandler onload;
- [NotEnumerable, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute EventHandler onmousedown;
- [NotEnumerable, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute EventHandler onmouseenter;
- [NotEnumerable, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute EventHandler onmouseleave;
- [NotEnumerable, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute EventHandler onmousemove;
- [NotEnumerable, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute EventHandler onmouseout;
- [NotEnumerable, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute EventHandler onmouseover;
- [NotEnumerable, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute EventHandler onmouseup;
- [NotEnumerable, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute EventHandler onmousewheel; // Deprecated in favor of onwheel.
- [NotEnumerable, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] attribute EventHandler onwheel;
+ [NotEnumerable, ActivityLogging=Setter] attribute EventHandler onmousedown;
+ [NotEnumerable, ActivityLogging=Setter] attribute EventHandler onmouseenter;
+ [NotEnumerable, ActivityLogging=Setter] attribute EventHandler onmouseleave;
+ [NotEnumerable, ActivityLogging=Setter] attribute EventHandler onmousemove;
+ [NotEnumerable, ActivityLogging=Setter] attribute EventHandler onmouseout;
+ [NotEnumerable, ActivityLogging=Setter] attribute EventHandler onmouseover;
+ [NotEnumerable, ActivityLogging=Setter] attribute EventHandler onmouseup;
+ [NotEnumerable, ActivityLogging=Setter] attribute EventHandler onmousewheel; // Deprecated in favor of onwheel.
+ [NotEnumerable, ActivityLogging=Setter] attribute EventHandler onwheel;
[NotEnumerable] attribute EventHandler onreadystatechange;
[NotEnumerable] attribute EventHandler onscroll;
[NotEnumerable] attribute EventHandler onselect;
« no previous file with comments | « no previous file | Source/core/dom/Element.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698