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

Side by Side Diff: Source/core/frame/Window.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/frame/DOMWindow.h ('k') | Source/core/html/HTMLAttributeNames.in » ('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, 2008, 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
3 * Copyright (C) 2011 Google Inc. All rights reserved. 3 * Copyright (C) 2011 Google Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 [MeasureAs=PrefixedRequestAnimationFrame] long webkitRequestAnimationFrame(R equestAnimationFrameCallback callback); 165 [MeasureAs=PrefixedRequestAnimationFrame] long webkitRequestAnimationFrame(R equestAnimationFrameCallback callback);
166 [ImplementedAs=cancelAnimationFrame] void webkitCancelAnimationFrame(long id ); 166 [ImplementedAs=cancelAnimationFrame] void webkitCancelAnimationFrame(long id );
167 [ImplementedAs=cancelAnimationFrame] void webkitCancelRequestAnimationFrame( long id); // This is a deprecated alias for webkitCancelAnimationFrame(). Remove this when removing vendor prefix. 167 [ImplementedAs=cancelAnimationFrame] void webkitCancelRequestAnimationFrame( long id); // This is a deprecated alias for webkitCancelAnimationFrame(). Remove this when removing vendor prefix.
168 168
169 [Replaceable] readonly attribute CSS CSS; 169 [Replaceable] readonly attribute CSS CSS;
170 170
171 // Events 171 // Events
172 attribute EventHandler onabort; 172 attribute EventHandler onabort;
173 attribute EventHandler onbeforeunload; 173 attribute EventHandler onbeforeunload;
174 attribute EventHandler onblur; 174 attribute EventHandler onblur;
175 attribute EventHandler oncancel;
175 attribute EventHandler oncanplay; 176 attribute EventHandler oncanplay;
176 attribute EventHandler oncanplaythrough; 177 attribute EventHandler oncanplaythrough;
177 attribute EventHandler onchange; 178 attribute EventHandler onchange;
178 [ActivityLogging=Setter] attribute EventHandler onclick; 179 [ActivityLogging=Setter] attribute EventHandler onclick;
180 attribute EventHandler onclose;
179 attribute EventHandler oncontextmenu; 181 attribute EventHandler oncontextmenu;
182 attribute EventHandler oncuechange;
180 [ActivityLogging=Setter] attribute EventHandler ondblclick; 183 [ActivityLogging=Setter] attribute EventHandler ondblclick;
181 [ActivityLogging=Setter] attribute EventHandler ondrag; 184 [ActivityLogging=Setter] attribute EventHandler ondrag;
182 [ActivityLogging=Setter] attribute EventHandler ondragend; 185 [ActivityLogging=Setter] attribute EventHandler ondragend;
183 [ActivityLogging=Setter] attribute EventHandler ondragenter; 186 [ActivityLogging=Setter] attribute EventHandler ondragenter;
184 [ActivityLogging=Setter] attribute EventHandler ondragleave; 187 [ActivityLogging=Setter] attribute EventHandler ondragleave;
185 [ActivityLogging=Setter] attribute EventHandler ondragover; 188 [ActivityLogging=Setter] attribute EventHandler ondragover;
186 [ActivityLogging=Setter] attribute EventHandler ondragstart; 189 [ActivityLogging=Setter] attribute EventHandler ondragstart;
187 [ActivityLogging=Setter] attribute EventHandler ondrop; 190 [ActivityLogging=Setter] attribute EventHandler ondrop;
188 attribute EventHandler ondurationchange; 191 attribute EventHandler ondurationchange;
189 attribute EventHandler onemptied; 192 attribute EventHandler onemptied;
(...skipping 23 matching lines...) Expand all
213 attribute EventHandler onoffline; 216 attribute EventHandler onoffline;
214 attribute EventHandler ononline; 217 attribute EventHandler ononline;
215 attribute EventHandler onpagehide; 218 attribute EventHandler onpagehide;
216 attribute EventHandler onpageshow; 219 attribute EventHandler onpageshow;
217 attribute EventHandler onpause; 220 attribute EventHandler onpause;
218 attribute EventHandler onplay; 221 attribute EventHandler onplay;
219 attribute EventHandler onplaying; 222 attribute EventHandler onplaying;
220 attribute EventHandler onpopstate; 223 attribute EventHandler onpopstate;
221 attribute EventHandler onprogress; 224 attribute EventHandler onprogress;
222 attribute EventHandler onratechange; 225 attribute EventHandler onratechange;
226 attribute EventHandler onreset;
223 attribute EventHandler onresize; 227 attribute EventHandler onresize;
224 attribute EventHandler onscroll; 228 attribute EventHandler onscroll;
225 attribute EventHandler onseeked; 229 attribute EventHandler onseeked;
226 attribute EventHandler onseeking; 230 attribute EventHandler onseeking;
227 attribute EventHandler onselect; 231 attribute EventHandler onselect;
232 attribute EventHandler onshow;
228 attribute EventHandler onstalled; 233 attribute EventHandler onstalled;
229 attribute EventHandler onstorage; 234 attribute EventHandler onstorage;
230 attribute EventHandler onsubmit; 235 attribute EventHandler onsubmit;
231 attribute EventHandler onsuspend; 236 attribute EventHandler onsuspend;
232 attribute EventHandler ontimeupdate; 237 attribute EventHandler ontimeupdate;
233 attribute EventHandler onunload; 238 attribute EventHandler onunload;
234 attribute EventHandler onvolumechange; 239 attribute EventHandler onvolumechange;
235 attribute EventHandler onwaiting; 240 attribute EventHandler onwaiting;
236 241
237 // Not implemented yet. 242 // Not implemented yet.
238 // attribute EventHandler onafterprint; 243 // attribute EventHandler onafterprint;
239 // attribute EventHandler onbeforeprint; 244 // attribute EventHandler onbeforeprint;
240 // attribute EventHandler onreadystatechange; 245 // attribute EventHandler onreadystatechange;
241 // attribute EventHandler onredo; 246 // attribute EventHandler onredo;
242 // attribute EventHandler onshow;
243 // attribute EventHandler onundo; 247 // attribute EventHandler onundo;
244 248
245 // Webkit extensions 249 // Webkit extensions
246 attribute EventHandler onreset;
247 attribute EventHandler onsearch; 250 attribute EventHandler onsearch;
248 [RuntimeEnabled=CSSAnimationUnprefixed] attribute EventHandler onanimationen d; 251 [RuntimeEnabled=CSSAnimationUnprefixed] attribute EventHandler onanimationen d;
249 [RuntimeEnabled=CSSAnimationUnprefixed] attribute EventHandler onanimationit eration; 252 [RuntimeEnabled=CSSAnimationUnprefixed] attribute EventHandler onanimationit eration;
250 [RuntimeEnabled=CSSAnimationUnprefixed] attribute EventHandler onanimationst art; 253 [RuntimeEnabled=CSSAnimationUnprefixed] attribute EventHandler onanimationst art;
251 attribute EventHandler onwebkitanimationend; 254 attribute EventHandler onwebkitanimationend;
252 attribute EventHandler onwebkitanimationiteration; 255 attribute EventHandler onwebkitanimationiteration;
253 attribute EventHandler onwebkitanimationstart; 256 attribute EventHandler onwebkitanimationstart;
254 attribute EventHandler onwebkittransitionend; 257 attribute EventHandler onwebkittransitionend;
255 attribute EventHandler ontransitionend; 258 attribute EventHandler ontransitionend;
256 [Conditional=ORIENTATION_EVENTS] attribute EventHandler onorientationchange; 259 [Conditional=ORIENTATION_EVENTS] attribute EventHandler onorientationchange;
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
306 // window.toString() requires special handling in V8 309 // window.toString() requires special handling in V8
307 [DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString t oString(); 310 [DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString t oString();
308 311
309 [ImplementedAs=anonymousIndexedGetter, NotEnumerable] getter Window(unsigned long index); 312 [ImplementedAs=anonymousIndexedGetter, NotEnumerable] getter Window(unsigned long index);
310 [Custom, NotEnumerable] getter Window (DOMString name); 313 [Custom, NotEnumerable] getter Window (DOMString name);
311 }; 314 };
312 315
313 Window implements ImageBitmapFactories; 316 Window implements ImageBitmapFactories;
314 Window implements WindowTimers; 317 Window implements WindowTimers;
315 Window implements WindowBase64; 318 Window implements WindowBase64;
OLDNEW
« no previous file with comments | « Source/core/frame/DOMWindow.h ('k') | Source/core/html/HTMLAttributeNames.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698