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

Side by Side Diff: Source/core/dom/Element.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 unified diff | Download patch
« no previous file with comments | « Source/core/dom/Document.idl ('k') | Source/core/frame/Window.idl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2009 Apple Inc. All rights reserved.
3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> 3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com>
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 // W3C version 129 // W3C version
130 [RuntimeEnabled=Fullscreen, PerWorldBindings, ActivityLogging=Access] void w ebkitRequestFullscreen(); 130 [RuntimeEnabled=Fullscreen, PerWorldBindings, ActivityLogging=Access] void w ebkitRequestFullscreen();
131 131
132 void webkitRequestPointerLock(); 132 void webkitRequestPointerLock();
133 133
134 // CSS Regions API 134 // CSS Regions API
135 [RuntimeEnabled=CSSRegions, PerWorldBindings] readonly attribute DOMString w ebkitRegionOverset; 135 [RuntimeEnabled=CSSRegions, PerWorldBindings] readonly attribute DOMString w ebkitRegionOverset;
136 [RuntimeEnabled=CSSRegions] sequence<Range> webkitGetRegionFlowRanges(); 136 [RuntimeEnabled=CSSRegions] sequence<Range> webkitGetRegionFlowRanges();
137 137
138 // Event handler DOM attributes 138 // Event handler DOM attributes
139 [NotEnumerable, PerWorldBindings] attribute EventHandler onabort; 139 [NotEnumerable] attribute EventHandler onabort;
140 [NotEnumerable, PerWorldBindings] attribute EventHandler onblur; 140 [NotEnumerable] attribute EventHandler onblur;
141 [NotEnumerable, PerWorldBindings] attribute EventHandler onchange; 141 [NotEnumerable] attribute EventHandler onchange;
142 [NotEnumerable, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] a ttribute EventHandler onclick; 142 [NotEnumerable, ActivityLogging=Setter] attribute EventHandler onclick;
143 [NotEnumerable, PerWorldBindings] attribute EventHandler oncontextmenu; 143 [NotEnumerable] attribute EventHandler oncontextmenu;
144 [NotEnumerable, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] a ttribute EventHandler ondblclick; 144 [NotEnumerable, ActivityLogging=Setter] attribute EventHandler ondblclick;
145 [NotEnumerable, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] a ttribute EventHandler ondrag; 145 [NotEnumerable, ActivityLogging=Setter] attribute EventHandler ondrag;
146 [NotEnumerable, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] a ttribute EventHandler ondragend; 146 [NotEnumerable, ActivityLogging=Setter] attribute EventHandler ondragend;
147 [NotEnumerable, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] a ttribute EventHandler ondragenter; 147 [NotEnumerable, ActivityLogging=Setter] attribute EventHandler ondragenter;
148 [NotEnumerable, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] a ttribute EventHandler ondragleave; 148 [NotEnumerable, ActivityLogging=Setter] attribute EventHandler ondragleave;
149 [NotEnumerable, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] a ttribute EventHandler ondragover; 149 [NotEnumerable, ActivityLogging=Setter] attribute EventHandler ondragover;
150 [NotEnumerable, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] a ttribute EventHandler ondragstart; 150 [NotEnumerable, ActivityLogging=Setter] attribute EventHandler ondragstart;
151 [NotEnumerable, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] a ttribute EventHandler ondrop; 151 [NotEnumerable, ActivityLogging=Setter] attribute EventHandler ondrop;
152 [NotEnumerable, PerWorldBindings] attribute EventHandler onerror; 152 [NotEnumerable] attribute EventHandler onerror;
153 [NotEnumerable, PerWorldBindings] attribute EventHandler onfocus; 153 [NotEnumerable] attribute EventHandler onfocus;
154 [NotEnumerable, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] a ttribute EventHandler oninput; 154 [NotEnumerable, ActivityLogging=Setter] attribute EventHandler oninput;
155 [NotEnumerable, PerWorldBindings] attribute EventHandler oninvalid; 155 [NotEnumerable] attribute EventHandler oninvalid;
156 [NotEnumerable, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] a ttribute EventHandler onkeydown; 156 [NotEnumerable, ActivityLogging=Setter] attribute EventHandler onkeydown;
157 [NotEnumerable, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] a ttribute EventHandler onkeypress; 157 [NotEnumerable, ActivityLogging=Setter] attribute EventHandler onkeypress;
158 [NotEnumerable, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] a ttribute EventHandler onkeyup; 158 [NotEnumerable, ActivityLogging=Setter] attribute EventHandler onkeyup;
159 [NotEnumerable, PerWorldBindings] attribute EventHandler onload; 159 [NotEnumerable] attribute EventHandler onload;
160 [NotEnumerable, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] a ttribute EventHandler onmousedown; 160 [NotEnumerable, ActivityLogging=Setter] attribute EventHandler onmousedown;
161 [NotEnumerable, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] a ttribute EventHandler onmouseenter; 161 [NotEnumerable, ActivityLogging=Setter] attribute EventHandler onmouseenter;
162 [NotEnumerable, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] a ttribute EventHandler onmouseleave; 162 [NotEnumerable, ActivityLogging=Setter] attribute EventHandler onmouseleave;
163 [NotEnumerable, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] a ttribute EventHandler onmousemove; 163 [NotEnumerable, ActivityLogging=Setter] attribute EventHandler onmousemove;
164 [NotEnumerable, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] a ttribute EventHandler onmouseout; 164 [NotEnumerable, ActivityLogging=Setter] attribute EventHandler onmouseout;
165 [NotEnumerable, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] a ttribute EventHandler onmouseover; 165 [NotEnumerable, ActivityLogging=Setter] attribute EventHandler onmouseover;
166 [NotEnumerable, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] a ttribute EventHandler onmouseup; 166 [NotEnumerable, ActivityLogging=Setter] attribute EventHandler onmouseup;
167 [NotEnumerable, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] a ttribute EventHandler onmousewheel; // Deprecated in favor of onwheel. 167 [NotEnumerable, ActivityLogging=Setter] attribute EventHandler onmousewheel; // Deprecated in favor of onwheel.
168 [NotEnumerable, PerWorldBindings, ActivityLogging=SetterForIsolatedWorlds] a ttribute EventHandler onwheel; 168 [NotEnumerable, ActivityLogging=Setter] attribute EventHandler onwheel;
169 [NotEnumerable, PerWorldBindings] attribute EventHandler onscroll; 169 [NotEnumerable] attribute EventHandler onscroll;
170 [NotEnumerable, PerWorldBindings] attribute EventHandler onselect; 170 [NotEnumerable] attribute EventHandler onselect;
171 [NotEnumerable, PerWorldBindings] attribute EventHandler onsubmit; 171 [NotEnumerable] attribute EventHandler onsubmit;
172 172
173 // attribute [NotEnumerable] EventHandler oncanplay; 173 // attribute [NotEnumerable] EventHandler oncanplay;
174 // attribute [NotEnumerable] EventHandler oncanplaythrough; 174 // attribute [NotEnumerable] EventHandler oncanplaythrough;
175 // attribute [NotEnumerable] EventHandler ondurationchange; 175 // attribute [NotEnumerable] EventHandler ondurationchange;
176 // attribute [NotEnumerable] EventHandler onemptied; 176 // attribute [NotEnumerable] EventHandler onemptied;
177 // attribute [NotEnumerable] EventHandler onended; 177 // attribute [NotEnumerable] EventHandler onended;
178 // attribute [NotEnumerable] EventHandler onloadeddata; 178 // attribute [NotEnumerable] EventHandler onloadeddata;
179 // attribute [NotEnumerable] EventHandler onloadedmetadata; 179 // attribute [NotEnumerable] EventHandler onloadedmetadata;
180 // attribute [NotEnumerable] EventHandler onloadstart; 180 // attribute [NotEnumerable] EventHandler onloadstart;
181 // attribute [NotEnumerable] EventHandler onpause; 181 // attribute [NotEnumerable] EventHandler onpause;
182 // attribute [NotEnumerable] EventHandler onplay; 182 // attribute [NotEnumerable] EventHandler onplay;
183 // attribute [NotEnumerable] EventHandler onplaying; 183 // attribute [NotEnumerable] EventHandler onplaying;
184 // attribute [NotEnumerable] EventHandler onprogress; 184 // attribute [NotEnumerable] EventHandler onprogress;
185 // attribute [NotEnumerable] EventHandler onratechange; 185 // attribute [NotEnumerable] EventHandler onratechange;
186 // attribute [NotEnumerable] EventHandler onreadystatechange; 186 // attribute [NotEnumerable] EventHandler onreadystatechange;
187 // attribute [NotEnumerable] EventHandler onseeked; 187 // attribute [NotEnumerable] EventHandler onseeked;
188 // attribute [NotEnumerable] EventHandler onseeking; 188 // attribute [NotEnumerable] EventHandler onseeking;
189 // attribute [NotEnumerable] EventHandler onshow; 189 // attribute [NotEnumerable] EventHandler onshow;
190 // attribute [NotEnumerable] EventHandler onstalled; 190 // attribute [NotEnumerable] EventHandler onstalled;
191 // attribute [NotEnumerable] EventHandler onsuspend; 191 // attribute [NotEnumerable] EventHandler onsuspend;
192 // attribute [NotEnumerable] EventHandler ontimeupdate; 192 // attribute [NotEnumerable] EventHandler ontimeupdate;
193 // attribute [NotEnumerable] EventHandler onvolumechange; 193 // attribute [NotEnumerable] EventHandler onvolumechange;
194 // attribute [NotEnumerable] EventHandler onwaiting; 194 // attribute [NotEnumerable] EventHandler onwaiting;
195 195
196 // WebKit extensions 196 // WebKit extensions
197 [NotEnumerable, PerWorldBindings] attribute EventHandler onbeforecut; 197 [NotEnumerable] attribute EventHandler onbeforecut;
198 [NotEnumerable, PerWorldBindings] attribute EventHandler oncut; 198 [NotEnumerable] attribute EventHandler oncut;
199 [NotEnumerable, PerWorldBindings] attribute EventHandler onbeforecopy; 199 [NotEnumerable] attribute EventHandler onbeforecopy;
200 [NotEnumerable, PerWorldBindings] attribute EventHandler oncopy; 200 [NotEnumerable] attribute EventHandler oncopy;
201 [NotEnumerable, PerWorldBindings] attribute EventHandler onbeforepaste; 201 [NotEnumerable] attribute EventHandler onbeforepaste;
202 [NotEnumerable, PerWorldBindings] attribute EventHandler onpaste; 202 [NotEnumerable] attribute EventHandler onpaste;
203 [NotEnumerable, PerWorldBindings] attribute EventHandler onreset; 203 [NotEnumerable] attribute EventHandler onreset;
204 [NotEnumerable, PerWorldBindings] attribute EventHandler onsearch; 204 [NotEnumerable] attribute EventHandler onsearch;
205 [NotEnumerable, PerWorldBindings] attribute EventHandler onselectstart; 205 [NotEnumerable] attribute EventHandler onselectstart;
206 [NotEnumerable, RuntimeEnabled=Touch, PerWorldBindings] attribute EventHandl er ontouchstart; 206 [NotEnumerable, RuntimeEnabled=Touch] attribute EventHandler ontouchstart;
207 [NotEnumerable, RuntimeEnabled=Touch, PerWorldBindings] attribute EventHandl er ontouchmove; 207 [NotEnumerable, RuntimeEnabled=Touch] attribute EventHandler ontouchmove;
208 [NotEnumerable, RuntimeEnabled=Touch, PerWorldBindings] attribute EventHandl er ontouchend; 208 [NotEnumerable, RuntimeEnabled=Touch] attribute EventHandler ontouchend;
209 [NotEnumerable, RuntimeEnabled=Touch, PerWorldBindings] attribute EventHandl er ontouchcancel; 209 [NotEnumerable, RuntimeEnabled=Touch] attribute EventHandler ontouchcancel;
210 [NotEnumerable, PerWorldBindings] attribute EventHandler onwebkitfullscreenc hange; 210 [NotEnumerable] attribute EventHandler onwebkitfullscreenchange;
211 [NotEnumerable, PerWorldBindings] attribute EventHandler onwebkitfullscreene rror; 211 [NotEnumerable] attribute EventHandler onwebkitfullscreenerror;
212 }; 212 };
213 213
214 Element implements ParentNode; 214 Element implements ParentNode;
215 Element implements ChildNode; 215 Element implements ChildNode;
OLDNEW
« no previous file with comments | « Source/core/dom/Document.idl ('k') | Source/core/frame/Window.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698