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

Side by Side Diff: Source/core/page/Window.idl

Issue 22859012: Add support for DOM Level 3 WheelEvent (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rename prefixedType() to legacyType() Created 7 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/page/DOMWindow.cpp ('k') | Source/core/svg/SVGElementInstance.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, 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 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 attribute EventHandler onloadedmetadata; 201 attribute EventHandler onloadedmetadata;
202 attribute EventHandler onloadstart; 202 attribute EventHandler onloadstart;
203 attribute EventHandler onmessage; 203 attribute EventHandler onmessage;
204 [PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attribute EventHandl er onmousedown; 204 [PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attribute EventHandl er onmousedown;
205 [PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attribute EventHandl er onmouseenter; 205 [PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attribute EventHandl er onmouseenter;
206 [PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attribute EventHandl er onmouseleave; 206 [PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attribute EventHandl er onmouseleave;
207 [PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attribute EventHandl er onmousemove; 207 [PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attribute EventHandl er onmousemove;
208 [PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attribute EventHandl er onmouseout; 208 [PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attribute EventHandl er onmouseout;
209 [PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attribute EventHandl er onmouseover; 209 [PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attribute EventHandl er onmouseover;
210 [PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attribute EventHandl er onmouseup; 210 [PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attribute EventHandl er onmouseup;
211 [PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attribute EventHandl er onmousewheel; 211 [PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attribute EventHandl er onmousewheel; // Deprecated in favor of onwheel.
212 [PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attribute EventHandl er onwheel;
212 attribute EventHandler onoffline; 213 attribute EventHandler onoffline;
213 attribute EventHandler ononline; 214 attribute EventHandler ononline;
214 attribute EventHandler onpagehide; 215 attribute EventHandler onpagehide;
215 attribute EventHandler onpageshow; 216 attribute EventHandler onpageshow;
216 attribute EventHandler onpause; 217 attribute EventHandler onpause;
217 attribute EventHandler onplay; 218 attribute EventHandler onplay;
218 attribute EventHandler onplaying; 219 attribute EventHandler onplaying;
219 attribute EventHandler onpopstate; 220 attribute EventHandler onpopstate;
220 attribute EventHandler onprogress; 221 attribute EventHandler onprogress;
221 attribute EventHandler onratechange; 222 attribute EventHandler onratechange;
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
301 // window.toString() requires special handling in V8 302 // window.toString() requires special handling in V8
302 [DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString t oString(); 303 [DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString t oString();
303 304
304 [ImplementedAs=anonymousIndexedGetter, NotEnumerable] getter Window(unsigned long index); 305 [ImplementedAs=anonymousIndexedGetter, NotEnumerable] getter Window(unsigned long index);
305 [Custom, NotEnumerable] getter Window (DOMString name); 306 [Custom, NotEnumerable] getter Window (DOMString name);
306 }; 307 };
307 308
308 Window implements ImageBitmapFactories; 309 Window implements ImageBitmapFactories;
309 Window implements WindowTimers; 310 Window implements WindowTimers;
310 Window implements WindowBase64; 311 Window implements WindowBase64;
OLDNEW
« no previous file with comments | « Source/core/page/DOMWindow.cpp ('k') | Source/core/svg/SVGElementInstance.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698