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

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: remove a commented out onshow 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
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;
185 attribute EventHandler onreset;
169 attribute EventHandler onscroll; 186 attribute EventHandler onscroll;
187 attribute EventHandler onseeked;
188 attribute EventHandler onseeking;
170 attribute EventHandler onselect; 189 attribute EventHandler onselect;
190 attribute EventHandler onshow;
191 attribute EventHandler onstalled;
171 attribute EventHandler onsubmit; 192 attribute EventHandler onsubmit;
193 attribute EventHandler onsuspend;
194 attribute EventHandler ontimeupdate;
195 attribute EventHandler onvolumechange;
196 attribute EventHandler onwaiting;
172 197
173 // WebKit extensions 198 // WebKit extensions
174 [NotEnumerable] attribute EventHandler onbeforecut; 199 [NotEnumerable] attribute EventHandler onbeforecut;
175 [NotEnumerable] attribute EventHandler oncut; 200 [NotEnumerable] attribute EventHandler oncut;
176 [NotEnumerable] attribute EventHandler onbeforecopy; 201 [NotEnumerable] attribute EventHandler onbeforecopy;
177 [NotEnumerable] attribute EventHandler oncopy; 202 [NotEnumerable] attribute EventHandler oncopy;
178 [NotEnumerable] attribute EventHandler onbeforepaste; 203 [NotEnumerable] attribute EventHandler onbeforepaste;
179 [NotEnumerable] attribute EventHandler onpaste; 204 [NotEnumerable] attribute EventHandler onpaste;
180 [NotEnumerable] attribute EventHandler onreset;
181 [NotEnumerable] attribute EventHandler onsearch; 205 [NotEnumerable] attribute EventHandler onsearch;
182 [NotEnumerable] attribute EventHandler onselectstart; 206 [NotEnumerable] attribute EventHandler onselectstart;
183 [NotEnumerable, RuntimeEnabled=Touch] attribute EventHandler ontouchstart; 207 [NotEnumerable, RuntimeEnabled=Touch] attribute EventHandler ontouchstart;
184 [NotEnumerable, RuntimeEnabled=Touch] attribute EventHandler ontouchmove; 208 [NotEnumerable, RuntimeEnabled=Touch] attribute EventHandler ontouchmove;
185 [NotEnumerable, RuntimeEnabled=Touch] attribute EventHandler ontouchend; 209 [NotEnumerable, RuntimeEnabled=Touch] attribute EventHandler ontouchend;
186 [NotEnumerable, RuntimeEnabled=Touch] attribute EventHandler ontouchcancel; 210 [NotEnumerable, RuntimeEnabled=Touch] attribute EventHandler ontouchcancel;
187 [NotEnumerable] attribute EventHandler onwebkitfullscreenchange; 211 [NotEnumerable] attribute EventHandler onwebkitfullscreenchange;
188 [NotEnumerable] attribute EventHandler onwebkitfullscreenerror; 212 [NotEnumerable] attribute EventHandler onwebkitfullscreenerror;
189 }; 213 };
190 214
191 Element implements ParentNode; 215 Element implements ParentNode;
192 Element implements ChildNode; 216 Element implements ChildNode;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698