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

Side by Side Diff: Source/core/dom/Element.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/Element.h ('k') | Source/core/frame/DOMWindow.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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 131
132 void webkitRequestPointerLock(); 132 void webkitRequestPointerLock();
133 133
134 // CSS Regions API 134 // CSS Regions API
135 [RuntimeEnabled=CSSRegions, PerWorldBindings] readonly attribute DOMString w ebkitRegionOverset; 135 [RuntimeEnabled=CSSRegions, PerWorldBindings] readonly attribute DOMString w ebkitRegionOverset;
136 [RuntimeEnabled=CSSRegions] sequence<Range> webkitGetRegionFlowRanges(); 136 [RuntimeEnabled=CSSRegions] sequence<Range> webkitGetRegionFlowRanges();
137 137
138 // Event handler DOM attributes 138 // Event handler DOM attributes
139 attribute EventHandler onabort; 139 attribute EventHandler onabort;
140 attribute EventHandler onblur; 140 attribute EventHandler onblur;
141 attribute EventHandler oncancel;
142 attribute EventHandler oncanplay;
143 attribute EventHandler oncanplaythrough;
141 attribute EventHandler onchange; 144 attribute EventHandler onchange;
142 [ActivityLogging=Setter] attribute EventHandler onclick; 145 [ActivityLogging=Setter] attribute EventHandler onclick;
146 attribute EventHandler onclose;
143 attribute EventHandler oncontextmenu; 147 attribute EventHandler oncontextmenu;
148 attribute EventHandler oncuechange;
144 [ActivityLogging=Setter] attribute EventHandler ondblclick; 149 [ActivityLogging=Setter] attribute EventHandler ondblclick;
145 [ActivityLogging=Setter] attribute EventHandler ondrag; 150 [ActivityLogging=Setter] attribute EventHandler ondrag;
146 [ActivityLogging=Setter] attribute EventHandler ondragend; 151 [ActivityLogging=Setter] attribute EventHandler ondragend;
147 [ActivityLogging=Setter] attribute EventHandler ondragenter; 152 [ActivityLogging=Setter] attribute EventHandler ondragenter;
148 [ActivityLogging=Setter] attribute EventHandler ondragleave; 153 [ActivityLogging=Setter] attribute EventHandler ondragleave;
149 [ActivityLogging=Setter] attribute EventHandler ondragover; 154 [ActivityLogging=Setter] attribute EventHandler ondragover;
150 [ActivityLogging=Setter] attribute EventHandler ondragstart; 155 [ActivityLogging=Setter] attribute EventHandler ondragstart;
151 [ActivityLogging=Setter] attribute EventHandler ondrop; 156 [ActivityLogging=Setter] attribute EventHandler ondrop;
157 attribute EventHandler ondurationchange;
158 attribute EventHandler onemptied;
159 attribute EventHandler onended;
152 attribute EventHandler onerror; 160 attribute EventHandler onerror;
153 attribute EventHandler onfocus; 161 attribute EventHandler onfocus;
154 [ActivityLogging=Setter] attribute EventHandler oninput; 162 [ActivityLogging=Setter] attribute EventHandler oninput;
155 attribute EventHandler oninvalid; 163 attribute EventHandler oninvalid;
156 [ActivityLogging=Setter] attribute EventHandler onkeydown; 164 [ActivityLogging=Setter] attribute EventHandler onkeydown;
157 [ActivityLogging=Setter] attribute EventHandler onkeypress; 165 [ActivityLogging=Setter] attribute EventHandler onkeypress;
158 [ActivityLogging=Setter] attribute EventHandler onkeyup; 166 [ActivityLogging=Setter] attribute EventHandler onkeyup;
159 attribute EventHandler onload; 167 attribute EventHandler onload;
168 attribute EventHandler onloadeddata;
169 attribute EventHandler onloadedmetadata;
170 attribute EventHandler onloadstart;
160 [ActivityLogging=Setter] attribute EventHandler onmousedown; 171 [ActivityLogging=Setter] attribute EventHandler onmousedown;
161 [ActivityLogging=Setter] attribute EventHandler onmouseenter; 172 [ActivityLogging=Setter] attribute EventHandler onmouseenter;
162 [ActivityLogging=Setter] attribute EventHandler onmouseleave; 173 [ActivityLogging=Setter] attribute EventHandler onmouseleave;
163 [ActivityLogging=Setter] attribute EventHandler onmousemove; 174 [ActivityLogging=Setter] attribute EventHandler onmousemove;
164 [ActivityLogging=Setter] attribute EventHandler onmouseout; 175 [ActivityLogging=Setter] attribute EventHandler onmouseout;
165 [ActivityLogging=Setter] attribute EventHandler onmouseover; 176 [ActivityLogging=Setter] attribute EventHandler onmouseover;
166 [ActivityLogging=Setter] attribute EventHandler onmouseup; 177 [ActivityLogging=Setter] attribute EventHandler onmouseup;
167 [ActivityLogging=Setter] attribute EventHandler onmousewheel; // Deprecated in favor of onwheel. 178 [ActivityLogging=Setter] attribute EventHandler onmousewheel; // Deprecated in favor of onwheel.
168 [ActivityLogging=Setter] attribute EventHandler onwheel; 179 [ActivityLogging=Setter] attribute EventHandler onwheel;
180 attribute EventHandler onpause;
181 attribute EventHandler onplay;
182 attribute EventHandler onplaying;
183 attribute EventHandler onprogress;
184 attribute EventHandler onratechange;
169 attribute EventHandler onreset; 185 attribute EventHandler onreset;
170 attribute EventHandler onscroll; 186 attribute EventHandler onscroll;
187 attribute EventHandler onseeked;
188 attribute EventHandler onseeking;
171 attribute EventHandler onselect; 189 attribute EventHandler onselect;
190 attribute EventHandler onshow;
191 attribute EventHandler onstalled;
172 attribute EventHandler onsubmit; 192 attribute EventHandler onsubmit;
193 attribute EventHandler onsuspend;
194 attribute EventHandler ontimeupdate;
195 attribute EventHandler onvolumechange;
196 attribute EventHandler onwaiting;
173 197
174 attribute EventHandler onbeforecopy; 198 attribute EventHandler onbeforecopy;
175 attribute EventHandler onbeforecut; 199 attribute EventHandler onbeforecut;
176 attribute EventHandler onbeforepaste; 200 attribute EventHandler onbeforepaste;
177 attribute EventHandler oncopy; 201 attribute EventHandler oncopy;
178 attribute EventHandler oncut; 202 attribute EventHandler oncut;
179 attribute EventHandler onpaste; 203 attribute EventHandler onpaste;
180 attribute EventHandler onsearch; 204 attribute EventHandler onsearch;
181 attribute EventHandler onselectstart; 205 attribute EventHandler onselectstart;
182 [RuntimeEnabled=Touch] attribute EventHandler ontouchcancel; 206 [RuntimeEnabled=Touch] attribute EventHandler ontouchcancel;
183 [RuntimeEnabled=Touch] attribute EventHandler ontouchend; 207 [RuntimeEnabled=Touch] attribute EventHandler ontouchend;
184 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove; 208 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove;
185 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart; 209 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart;
186 attribute EventHandler onwebkitfullscreenchange; 210 attribute EventHandler onwebkitfullscreenchange;
187 attribute EventHandler onwebkitfullscreenerror; 211 attribute EventHandler onwebkitfullscreenerror;
188 }; 212 };
189 213
190 Element implements ParentNode; 214 Element implements ParentNode;
191 Element implements ChildNode; 215 Element implements ChildNode;
OLDNEW
« no previous file with comments | « Source/core/dom/Element.h ('k') | Source/core/frame/DOMWindow.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698