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

Side by Side 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2011 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2011 Apple Inc. All rights reserved.
3 * Copyright (C) 2006, 2007 Samuel Weinig <sam@webkit.org> 3 * Copyright (C) 2006, 2007 Samuel Weinig <sam@webkit.org>
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 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 void webkitExitPointerLock(); 165 void webkitExitPointerLock();
166 readonly attribute Element webkitPointerLockElement; 166 readonly attribute Element webkitPointerLockElement;
167 167
168 [RuntimeEnabled=CSSRegions] WebKitNamedFlowCollection webkitGetNamedFlows(); 168 [RuntimeEnabled=CSSRegions] WebKitNamedFlowCollection webkitGetNamedFlows();
169 169
170 [RuntimeEnabled=FontLoadEvents] readonly attribute FontFaceSet fonts; 170 [RuntimeEnabled=FontLoadEvents] readonly attribute FontFaceSet fonts;
171 171
172 // Event handler DOM attributes 172 // Event handler DOM attributes
173 attribute EventHandler onabort; 173 attribute EventHandler onabort;
174 attribute EventHandler onblur; 174 attribute EventHandler onblur;
175 attribute EventHandler oncancel;
176 attribute EventHandler oncanplay;
177 attribute EventHandler oncanplaythrough;
175 attribute EventHandler onchange; 178 attribute EventHandler onchange;
176 [ActivityLogging=Setter] attribute EventHandler onclick; 179 [ActivityLogging=Setter] attribute EventHandler onclick;
180 attribute EventHandler onclose;
177 attribute EventHandler oncontextmenu; 181 attribute EventHandler oncontextmenu;
182 attribute EventHandler oncuechange;
178 [ActivityLogging=Setter] attribute EventHandler ondblclick; 183 [ActivityLogging=Setter] attribute EventHandler ondblclick;
179 [ActivityLogging=Setter] attribute EventHandler ondrag; 184 [ActivityLogging=Setter] attribute EventHandler ondrag;
180 [ActivityLogging=Setter] attribute EventHandler ondragend; 185 [ActivityLogging=Setter] attribute EventHandler ondragend;
181 [ActivityLogging=Setter] attribute EventHandler ondragenter; 186 [ActivityLogging=Setter] attribute EventHandler ondragenter;
182 [ActivityLogging=Setter] attribute EventHandler ondragleave; 187 [ActivityLogging=Setter] attribute EventHandler ondragleave;
183 [ActivityLogging=Setter] attribute EventHandler ondragover; 188 [ActivityLogging=Setter] attribute EventHandler ondragover;
184 [ActivityLogging=Setter] attribute EventHandler ondragstart; 189 [ActivityLogging=Setter] attribute EventHandler ondragstart;
185 [ActivityLogging=Setter] attribute EventHandler ondrop; 190 [ActivityLogging=Setter] attribute EventHandler ondrop;
191 attribute EventHandler ondurationchange;
192 attribute EventHandler onemptied;
193 attribute EventHandler onended;
186 attribute EventHandler onerror; 194 attribute EventHandler onerror;
187 attribute EventHandler onfocus; 195 attribute EventHandler onfocus;
188 [ActivityLogging=Setter] attribute EventHandler oninput; 196 [ActivityLogging=Setter] attribute EventHandler oninput;
189 attribute EventHandler oninvalid; 197 attribute EventHandler oninvalid;
190 [ActivityLogging=Setter] attribute EventHandler onkeydown; 198 [ActivityLogging=Setter] attribute EventHandler onkeydown;
191 [ActivityLogging=Setter] attribute EventHandler onkeypress; 199 [ActivityLogging=Setter] attribute EventHandler onkeypress;
192 [ActivityLogging=Setter] attribute EventHandler onkeyup; 200 [ActivityLogging=Setter] attribute EventHandler onkeyup;
193 attribute EventHandler onload; 201 attribute EventHandler onload;
202 attribute EventHandler onloadeddata;
203 attribute EventHandler onloadedmetadata;
204 attribute EventHandler onloadstart;
194 [ActivityLogging=Setter] attribute EventHandler onmousedown; 205 [ActivityLogging=Setter] attribute EventHandler onmousedown;
195 [ActivityLogging=Setter] attribute EventHandler onmouseenter; 206 [ActivityLogging=Setter] attribute EventHandler onmouseenter;
196 [ActivityLogging=Setter] attribute EventHandler onmouseleave; 207 [ActivityLogging=Setter] attribute EventHandler onmouseleave;
197 [ActivityLogging=Setter] attribute EventHandler onmousemove; 208 [ActivityLogging=Setter] attribute EventHandler onmousemove;
198 [ActivityLogging=Setter] attribute EventHandler onmouseout; 209 [ActivityLogging=Setter] attribute EventHandler onmouseout;
199 [ActivityLogging=Setter] attribute EventHandler onmouseover; 210 [ActivityLogging=Setter] attribute EventHandler onmouseover;
200 [ActivityLogging=Setter] attribute EventHandler onmouseup; 211 [ActivityLogging=Setter] attribute EventHandler onmouseup;
201 [ActivityLogging=Setter] attribute EventHandler onmousewheel; // Deprecated in favor of onwheel. 212 [ActivityLogging=Setter] attribute EventHandler onmousewheel; // Deprecated in favor of onwheel.
202 [ActivityLogging=Setter] attribute EventHandler onwheel; 213 [ActivityLogging=Setter] attribute EventHandler onwheel;
214 attribute EventHandler onpause;
215 attribute EventHandler onplay;
216 attribute EventHandler onplaying;
217 attribute EventHandler onprogress;
218 attribute EventHandler onratechange;
219 attribute EventHandler onreset;
203 attribute EventHandler onreadystatechange; 220 attribute EventHandler onreadystatechange;
204 attribute EventHandler onscroll; 221 attribute EventHandler onscroll;
222 attribute EventHandler onseeked;
223 attribute EventHandler onseeking;
205 attribute EventHandler onselect; 224 attribute EventHandler onselect;
225 attribute EventHandler onshow;
226 attribute EventHandler onstalled;
206 attribute EventHandler onsubmit; 227 attribute EventHandler onsubmit;
228 attribute EventHandler onsuspend;
229 attribute EventHandler ontimeupdate;
230 attribute EventHandler onvolumechange;
231 attribute EventHandler onwaiting;
207 232
208 // WebKit extensions 233 // WebKit extensions
209 [NotEnumerable] attribute EventHandler onbeforecut; 234 [NotEnumerable] attribute EventHandler onbeforecut;
210 [NotEnumerable] attribute EventHandler oncut; 235 [NotEnumerable] attribute EventHandler oncut;
211 [NotEnumerable] attribute EventHandler onbeforecopy; 236 [NotEnumerable] attribute EventHandler onbeforecopy;
212 [NotEnumerable] attribute EventHandler oncopy; 237 [NotEnumerable] attribute EventHandler oncopy;
213 [NotEnumerable] attribute EventHandler onbeforepaste; 238 [NotEnumerable] attribute EventHandler onbeforepaste;
214 [NotEnumerable] attribute EventHandler onpaste; 239 [NotEnumerable] attribute EventHandler onpaste;
215 [NotEnumerable] attribute EventHandler onreset;
216 [NotEnumerable] attribute EventHandler onsearch; 240 [NotEnumerable] attribute EventHandler onsearch;
217 [NotEnumerable] attribute EventHandler onselectstart; 241 [NotEnumerable] attribute EventHandler onselectstart;
218 [NotEnumerable] attribute EventHandler onselectionchange; 242 [NotEnumerable] attribute EventHandler onselectionchange;
219 [NotEnumerable, RuntimeEnabled=Touch] attribute EventHandler ontouchstart; 243 [NotEnumerable, RuntimeEnabled=Touch] attribute EventHandler ontouchstart;
220 [NotEnumerable, RuntimeEnabled=Touch] attribute EventHandler ontouchmove; 244 [NotEnumerable, RuntimeEnabled=Touch] attribute EventHandler ontouchmove;
221 [NotEnumerable, RuntimeEnabled=Touch] attribute EventHandler ontouchend; 245 [NotEnumerable, RuntimeEnabled=Touch] attribute EventHandler ontouchend;
222 [NotEnumerable, RuntimeEnabled=Touch] attribute EventHandler ontouchcancel; 246 [NotEnumerable, RuntimeEnabled=Touch] attribute EventHandler ontouchcancel;
223 [NotEnumerable] attribute EventHandler onwebkitfullscreenchange; 247 [NotEnumerable] attribute EventHandler onwebkitfullscreenchange;
224 [NotEnumerable] attribute EventHandler onwebkitfullscreenerror; 248 [NotEnumerable] attribute EventHandler onwebkitfullscreenerror;
225 [NotEnumerable] attribute EventHandler onwebkitpointerlockchange; 249 [NotEnumerable] attribute EventHandler onwebkitpointerlockchange;
(...skipping 24 matching lines...) Expand all
250 readonly attribute boolean webkitHidden; 274 readonly attribute boolean webkitHidden;
251 275
252 // Security Policy API: http://dvcs.w3.org/hg/content-security-policy/raw-fi le/tip/csp-specification.dev.html#script-interfaces 276 // Security Policy API: http://dvcs.w3.org/hg/content-security-policy/raw-fi le/tip/csp-specification.dev.html#script-interfaces
253 [RuntimeEnabled=ExperimentalContentSecurityPolicyFeatures] readonly attribut e SecurityPolicy securityPolicy; 277 [RuntimeEnabled=ExperimentalContentSecurityPolicyFeatures] readonly attribut e SecurityPolicy securityPolicy;
254 278
255 readonly attribute HTMLScriptElement currentScript; 279 readonly attribute HTMLScriptElement currentScript;
256 }; 280 };
257 281
258 Document implements ParentNode; 282 Document implements ParentNode;
259 283
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698