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

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: alphabetize 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.h ('k') | Source/core/dom/Element.h » ('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, 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;
203 attribute EventHandler onreadystatechange; 219 attribute EventHandler onreadystatechange;
204 attribute EventHandler onreset; 220 attribute EventHandler onreset;
205 attribute EventHandler onscroll; 221 attribute EventHandler onscroll;
222 attribute EventHandler onseeked;
223 attribute EventHandler onseeking;
206 attribute EventHandler onselect; 224 attribute EventHandler onselect;
225 attribute EventHandler onshow;
226 attribute EventHandler onstalled;
207 attribute EventHandler onsubmit; 227 attribute EventHandler onsubmit;
228 attribute EventHandler onsuspend;
229 attribute EventHandler ontimeupdate;
230 attribute EventHandler onvolumechange;
231 attribute EventHandler onwaiting;
208 232
209 attribute EventHandler onbeforecopy; 233 attribute EventHandler onbeforecopy;
210 attribute EventHandler onbeforecut; 234 attribute EventHandler onbeforecut;
211 attribute EventHandler onbeforepaste; 235 attribute EventHandler onbeforepaste;
212 attribute EventHandler oncopy; 236 attribute EventHandler oncopy;
213 attribute EventHandler oncut; 237 attribute EventHandler oncut;
214 attribute EventHandler onpaste; 238 attribute EventHandler onpaste;
215 attribute EventHandler onsearch; 239 attribute EventHandler onsearch;
216 [RuntimeEnabled=ExperimentalContentSecurityPolicyFeatures] attribute EventHa ndler onsecuritypolicyviolation; 240 [RuntimeEnabled=ExperimentalContentSecurityPolicyFeatures] attribute EventHa ndler onsecuritypolicyviolation;
217 attribute EventHandler onselectionchange; 241 attribute EventHandler onselectionchange;
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
249 readonly attribute boolean webkitHidden; 273 readonly attribute boolean webkitHidden;
250 274
251 // Security Policy API: http://dvcs.w3.org/hg/content-security-policy/raw-fi le/tip/csp-specification.dev.html#script-interfaces 275 // Security Policy API: http://dvcs.w3.org/hg/content-security-policy/raw-fi le/tip/csp-specification.dev.html#script-interfaces
252 [RuntimeEnabled=ExperimentalContentSecurityPolicyFeatures] readonly attribut e SecurityPolicy securityPolicy; 276 [RuntimeEnabled=ExperimentalContentSecurityPolicyFeatures] readonly attribut e SecurityPolicy securityPolicy;
253 277
254 readonly attribute HTMLScriptElement currentScript; 278 readonly attribute HTMLScriptElement currentScript;
255 }; 279 };
256 280
257 Document implements ParentNode; 281 Document implements ParentNode;
258 282
OLDNEW
« no previous file with comments | « Source/core/dom/Document.h ('k') | Source/core/dom/Element.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698