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

Side by Side Diff: Source/core/dom/Element.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/dom/Element.h ('k') | Source/core/dom/EventNames.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, 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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventHandler onkeypress; 155 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventHandler onkeypress;
156 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventHandler onkeyup; 156 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventHandler onkeyup;
157 [NotEnumerable, PerWorldBindings] attribute EventHandler onload; 157 [NotEnumerable, PerWorldBindings] attribute EventHandler onload;
158 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventHandler onmousedown; 158 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventHandler onmousedown;
159 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventHandler onmouseenter; 159 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventHandler onmouseenter;
160 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventHandler onmouseleave; 160 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventHandler onmouseleave;
161 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventHandler onmousemove; 161 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventHandler onmousemove;
162 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventHandler onmouseout; 162 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventHandler onmouseout;
163 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventHandler onmouseover; 163 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventHandler onmouseover;
164 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventHandler onmouseup; 164 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventHandler onmouseup;
165 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventHandler onmousewheel; 165 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventHandler onmousewheel; // Deprecated in favor of onwheel.
166 [NotEnumerable, PerWorldBindings, ActivityLog=SetterForIsolatedWorlds] attri bute EventHandler onwheel;
166 [NotEnumerable, PerWorldBindings] attribute EventHandler onscroll; 167 [NotEnumerable, PerWorldBindings] attribute EventHandler onscroll;
167 [NotEnumerable, PerWorldBindings] attribute EventHandler onselect; 168 [NotEnumerable, PerWorldBindings] attribute EventHandler onselect;
168 [NotEnumerable, PerWorldBindings] attribute EventHandler onsubmit; 169 [NotEnumerable, PerWorldBindings] attribute EventHandler onsubmit;
169 170
170 // attribute [NotEnumerable] EventHandler oncanplay; 171 // attribute [NotEnumerable] EventHandler oncanplay;
171 // attribute [NotEnumerable] EventHandler oncanplaythrough; 172 // attribute [NotEnumerable] EventHandler oncanplaythrough;
172 // attribute [NotEnumerable] EventHandler ondurationchange; 173 // attribute [NotEnumerable] EventHandler ondurationchange;
173 // attribute [NotEnumerable] EventHandler onemptied; 174 // attribute [NotEnumerable] EventHandler onemptied;
174 // attribute [NotEnumerable] EventHandler onended; 175 // attribute [NotEnumerable] EventHandler onended;
175 // attribute [NotEnumerable] EventHandler onloadeddata; 176 // attribute [NotEnumerable] EventHandler onloadeddata;
(...skipping 27 matching lines...) Expand all
203 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventHan dler ontouchstart; 204 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventHan dler ontouchstart;
204 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventHan dler ontouchmove; 205 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventHan dler ontouchmove;
205 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventHan dler ontouchend; 206 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventHan dler ontouchend;
206 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventHan dler ontouchcancel; 207 [NotEnumerable, EnabledAtRuntime=touch, PerWorldBindings] attribute EventHan dler ontouchcancel;
207 [NotEnumerable, PerWorldBindings] attribute EventHandler onwebkitfullscreenc hange; 208 [NotEnumerable, PerWorldBindings] attribute EventHandler onwebkitfullscreenc hange;
208 [NotEnumerable, PerWorldBindings] attribute EventHandler onwebkitfullscreene rror; 209 [NotEnumerable, PerWorldBindings] attribute EventHandler onwebkitfullscreene rror;
209 }; 210 };
210 211
211 Element implements ParentNode; 212 Element implements ParentNode;
212 Element implements ChildNode; 213 Element implements ChildNode;
OLDNEW
« no previous file with comments | « Source/core/dom/Element.h ('k') | Source/core/dom/EventNames.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698