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

Side by Side Diff: Source/core/dom/Element.idl

Issue 27133002: Add shared GlobalEventHandlers IDL (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@attrsync
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/Document.idl ('k') | Source/core/dom/GlobalEventHandlers.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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 128
129 // W3C version 129 // W3C version
130 [RuntimeEnabled=Fullscreen, PerWorldBindings, ActivityLogging=Access] void w ebkitRequestFullscreen(); 130 [RuntimeEnabled=Fullscreen, PerWorldBindings, ActivityLogging=Access] void w ebkitRequestFullscreen();
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 attributes
139 attribute EventHandler onabort;
140 attribute EventHandler onblur;
141 attribute EventHandler oncancel;
142 attribute EventHandler oncanplay;
143 attribute EventHandler oncanplaythrough;
144 attribute EventHandler onchange;
145 [ActivityLogging=Setter] attribute EventHandler onclick;
146 attribute EventHandler onclose;
147 attribute EventHandler oncontextmenu;
148 attribute EventHandler oncuechange;
149 [ActivityLogging=Setter] attribute EventHandler ondblclick;
150 [ActivityLogging=Setter] attribute EventHandler ondrag;
151 [ActivityLogging=Setter] attribute EventHandler ondragend;
152 [ActivityLogging=Setter] attribute EventHandler ondragenter;
153 [ActivityLogging=Setter] attribute EventHandler ondragleave;
154 [ActivityLogging=Setter] attribute EventHandler ondragover;
155 [ActivityLogging=Setter] attribute EventHandler ondragstart;
156 [ActivityLogging=Setter] attribute EventHandler ondrop;
157 attribute EventHandler ondurationchange;
158 attribute EventHandler onemptied;
159 attribute EventHandler onended;
160 attribute EventHandler onerror;
161 attribute EventHandler onfocus;
162 [ActivityLogging=Setter] attribute EventHandler oninput;
163 attribute EventHandler oninvalid;
164 [ActivityLogging=Setter] attribute EventHandler onkeydown;
165 [ActivityLogging=Setter] attribute EventHandler onkeypress;
166 [ActivityLogging=Setter] attribute EventHandler onkeyup;
167 attribute EventHandler onload;
168 attribute EventHandler onloadeddata;
169 attribute EventHandler onloadedmetadata;
170 attribute EventHandler onloadstart;
171 [ActivityLogging=Setter] attribute EventHandler onmousedown;
172 [ActivityLogging=Setter] attribute EventHandler onmouseenter;
173 [ActivityLogging=Setter] attribute EventHandler onmouseleave;
174 [ActivityLogging=Setter] attribute EventHandler onmousemove;
175 [ActivityLogging=Setter] attribute EventHandler onmouseout;
176 [ActivityLogging=Setter] attribute EventHandler onmouseover;
177 [ActivityLogging=Setter] attribute EventHandler onmouseup;
178 [ActivityLogging=Setter] attribute EventHandler onmousewheel; // Deprecated in favor of 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;
186 attribute EventHandler onscroll;
187 attribute EventHandler onseeked;
188 attribute EventHandler onseeking;
189 attribute EventHandler onselect;
190 attribute EventHandler onshow;
191 attribute EventHandler onstalled;
192 attribute EventHandler onsubmit;
193 attribute EventHandler onsuspend;
194 attribute EventHandler ontimeupdate;
195 attribute EventHandler onvolumechange;
196 attribute EventHandler onwaiting;
197
198 attribute EventHandler onbeforecopy; 139 attribute EventHandler onbeforecopy;
199 attribute EventHandler onbeforecut; 140 attribute EventHandler onbeforecut;
200 attribute EventHandler onbeforepaste; 141 attribute EventHandler onbeforepaste;
201 attribute EventHandler oncopy; 142 attribute EventHandler oncopy;
202 attribute EventHandler oncut; 143 attribute EventHandler oncut;
203 attribute EventHandler onpaste; 144 attribute EventHandler onpaste;
204 attribute EventHandler onsearch; 145 attribute EventHandler onsearch;
205 attribute EventHandler onselectstart; 146 attribute EventHandler onselectstart;
206 [RuntimeEnabled=Touch] attribute EventHandler ontouchcancel; 147 [RuntimeEnabled=Touch] attribute EventHandler ontouchcancel;
207 [RuntimeEnabled=Touch] attribute EventHandler ontouchend; 148 [RuntimeEnabled=Touch] attribute EventHandler ontouchend;
208 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove; 149 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove;
209 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart; 150 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart;
210 attribute EventHandler onwebkitfullscreenchange; 151 attribute EventHandler onwebkitfullscreenchange;
211 attribute EventHandler onwebkitfullscreenerror; 152 attribute EventHandler onwebkitfullscreenerror;
153 [ActivityLogging=Setter] attribute EventHandler onwheel;
212 }; 154 };
213 155
214 Element implements ParentNode; 156 Element implements ParentNode;
215 Element implements ChildNode; 157 Element implements ChildNode;
OLDNEW
« no previous file with comments | « Source/core/dom/Document.idl ('k') | Source/core/dom/GlobalEventHandlers.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698