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

Side by Side Diff: Source/core/dom/Element.idl

Issue 26117003: Drop NotEnumerable for the on* event handler IDL attributes (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@svgtest
Patch Set: 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
« Source/core/dom/Document.idl ('K') | « Source/core/dom/Document.idl ('k') | no next file » | 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] attribute EventHandler onabort; 139 attribute EventHandler onabort;
140 [NotEnumerable] attribute EventHandler onblur; 140 attribute EventHandler onblur;
141 [NotEnumerable] attribute EventHandler onchange; 141 attribute EventHandler onchange;
142 [NotEnumerable, ActivityLogging=Setter] attribute EventHandler onclick; 142 [ActivityLogging=Setter] attribute EventHandler onclick;
143 [NotEnumerable] attribute EventHandler oncontextmenu; 143 attribute EventHandler oncontextmenu;
144 [NotEnumerable, ActivityLogging=Setter] attribute EventHandler ondblclick; 144 [ActivityLogging=Setter] attribute EventHandler ondblclick;
145 [NotEnumerable, ActivityLogging=Setter] attribute EventHandler ondrag; 145 [ActivityLogging=Setter] attribute EventHandler ondrag;
146 [NotEnumerable, ActivityLogging=Setter] attribute EventHandler ondragend; 146 [ActivityLogging=Setter] attribute EventHandler ondragend;
147 [NotEnumerable, ActivityLogging=Setter] attribute EventHandler ondragenter; 147 [ActivityLogging=Setter] attribute EventHandler ondragenter;
148 [NotEnumerable, ActivityLogging=Setter] attribute EventHandler ondragleave; 148 [ActivityLogging=Setter] attribute EventHandler ondragleave;
149 [NotEnumerable, ActivityLogging=Setter] attribute EventHandler ondragover; 149 [ActivityLogging=Setter] attribute EventHandler ondragover;
150 [NotEnumerable, ActivityLogging=Setter] attribute EventHandler ondragstart; 150 [ActivityLogging=Setter] attribute EventHandler ondragstart;
151 [NotEnumerable, ActivityLogging=Setter] attribute EventHandler ondrop; 151 [ActivityLogging=Setter] attribute EventHandler ondrop;
152 [NotEnumerable] attribute EventHandler onerror; 152 attribute EventHandler onerror;
153 [NotEnumerable] attribute EventHandler onfocus; 153 attribute EventHandler onfocus;
154 [NotEnumerable, ActivityLogging=Setter] attribute EventHandler oninput; 154 [ActivityLogging=Setter] attribute EventHandler oninput;
155 [NotEnumerable] attribute EventHandler oninvalid; 155 attribute EventHandler oninvalid;
156 [NotEnumerable, ActivityLogging=Setter] attribute EventHandler onkeydown; 156 [ActivityLogging=Setter] attribute EventHandler onkeydown;
157 [NotEnumerable, ActivityLogging=Setter] attribute EventHandler onkeypress; 157 [ActivityLogging=Setter] attribute EventHandler onkeypress;
158 [NotEnumerable, ActivityLogging=Setter] attribute EventHandler onkeyup; 158 [ActivityLogging=Setter] attribute EventHandler onkeyup;
159 [NotEnumerable] attribute EventHandler onload; 159 attribute EventHandler onload;
160 [NotEnumerable, ActivityLogging=Setter] attribute EventHandler onmousedown; 160 [ActivityLogging=Setter] attribute EventHandler onmousedown;
161 [NotEnumerable, ActivityLogging=Setter] attribute EventHandler onmouseenter; 161 [ActivityLogging=Setter] attribute EventHandler onmouseenter;
162 [NotEnumerable, ActivityLogging=Setter] attribute EventHandler onmouseleave; 162 [ActivityLogging=Setter] attribute EventHandler onmouseleave;
163 [NotEnumerable, ActivityLogging=Setter] attribute EventHandler onmousemove; 163 [ActivityLogging=Setter] attribute EventHandler onmousemove;
164 [NotEnumerable, ActivityLogging=Setter] attribute EventHandler onmouseout; 164 [ActivityLogging=Setter] attribute EventHandler onmouseout;
165 [NotEnumerable, ActivityLogging=Setter] attribute EventHandler onmouseover; 165 [ActivityLogging=Setter] attribute EventHandler onmouseover;
166 [NotEnumerable, ActivityLogging=Setter] attribute EventHandler onmouseup; 166 [ActivityLogging=Setter] attribute EventHandler onmouseup;
167 [NotEnumerable, ActivityLogging=Setter] attribute EventHandler onmousewheel; // Deprecated in favor of onwheel. 167 [ActivityLogging=Setter] attribute EventHandler onmousewheel; // Deprecated in favor of onwheel.
168 [NotEnumerable, ActivityLogging=Setter] attribute EventHandler onwheel; 168 [ActivityLogging=Setter] attribute EventHandler onwheel;
169 [NotEnumerable] attribute EventHandler onscroll; 169 attribute EventHandler onscroll;
170 [NotEnumerable] attribute EventHandler onselect; 170 attribute EventHandler onselect;
171 [NotEnumerable] attribute EventHandler onsubmit; 171 attribute EventHandler onsubmit;
172
173 // attribute [NotEnumerable] EventHandler oncanplay;
174 // attribute [NotEnumerable] EventHandler oncanplaythrough;
175 // attribute [NotEnumerable] EventHandler ondurationchange;
176 // attribute [NotEnumerable] EventHandler onemptied;
177 // attribute [NotEnumerable] EventHandler onended;
178 // attribute [NotEnumerable] EventHandler onloadeddata;
179 // attribute [NotEnumerable] EventHandler onloadedmetadata;
180 // attribute [NotEnumerable] EventHandler onloadstart;
181 // attribute [NotEnumerable] EventHandler onpause;
182 // attribute [NotEnumerable] EventHandler onplay;
183 // attribute [NotEnumerable] EventHandler onplaying;
184 // attribute [NotEnumerable] EventHandler onprogress;
185 // attribute [NotEnumerable] EventHandler onratechange;
186 // attribute [NotEnumerable] EventHandler onreadystatechange;
187 // attribute [NotEnumerable] EventHandler onseeked;
188 // attribute [NotEnumerable] EventHandler onseeking;
189 // attribute [NotEnumerable] EventHandler onshow;
190 // attribute [NotEnumerable] EventHandler onstalled;
191 // attribute [NotEnumerable] EventHandler onsuspend;
192 // attribute [NotEnumerable] EventHandler ontimeupdate;
193 // attribute [NotEnumerable] EventHandler onvolumechange;
194 // attribute [NotEnumerable] EventHandler onwaiting;
195 172
196 // WebKit extensions 173 // WebKit extensions
abarth-chromium 2013/10/15 16:58:52 ditto
philipj_slow 2013/10/15 20:14:10 Done.
197 [NotEnumerable] attribute EventHandler onbeforecut; 174 [NotEnumerable] attribute EventHandler onbeforecut;
198 [NotEnumerable] attribute EventHandler oncut; 175 [NotEnumerable] attribute EventHandler oncut;
199 [NotEnumerable] attribute EventHandler onbeforecopy; 176 [NotEnumerable] attribute EventHandler onbeforecopy;
200 [NotEnumerable] attribute EventHandler oncopy; 177 [NotEnumerable] attribute EventHandler oncopy;
201 [NotEnumerable] attribute EventHandler onbeforepaste; 178 [NotEnumerable] attribute EventHandler onbeforepaste;
202 [NotEnumerable] attribute EventHandler onpaste; 179 [NotEnumerable] attribute EventHandler onpaste;
203 [NotEnumerable] attribute EventHandler onreset; 180 [NotEnumerable] attribute EventHandler onreset;
204 [NotEnumerable] attribute EventHandler onsearch; 181 [NotEnumerable] attribute EventHandler onsearch;
205 [NotEnumerable] attribute EventHandler onselectstart; 182 [NotEnumerable] attribute EventHandler onselectstart;
206 [NotEnumerable, RuntimeEnabled=Touch] attribute EventHandler ontouchstart; 183 [NotEnumerable, RuntimeEnabled=Touch] attribute EventHandler ontouchstart;
207 [NotEnumerable, RuntimeEnabled=Touch] attribute EventHandler ontouchmove; 184 [NotEnumerable, RuntimeEnabled=Touch] attribute EventHandler ontouchmove;
208 [NotEnumerable, RuntimeEnabled=Touch] attribute EventHandler ontouchend; 185 [NotEnumerable, RuntimeEnabled=Touch] attribute EventHandler ontouchend;
209 [NotEnumerable, RuntimeEnabled=Touch] attribute EventHandler ontouchcancel; 186 [NotEnumerable, RuntimeEnabled=Touch] attribute EventHandler ontouchcancel;
210 [NotEnumerable] attribute EventHandler onwebkitfullscreenchange; 187 [NotEnumerable] attribute EventHandler onwebkitfullscreenchange;
211 [NotEnumerable] attribute EventHandler onwebkitfullscreenerror; 188 [NotEnumerable] attribute EventHandler onwebkitfullscreenerror;
212 }; 189 };
213 190
214 Element implements ParentNode; 191 Element implements ParentNode;
215 Element implements ChildNode; 192 Element implements ChildNode;
OLDNEW
« Source/core/dom/Document.idl ('K') | « Source/core/dom/Document.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698