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

Side by Side Diff: third_party/WebKit/Source/core/frame/Window.idl

Issue 2936263003: Move onwheel to GlobalEventHandlers.idl (Closed)
Patch Set: add missing OWNER file for mac/virtual/stable/webexposed/ Created 3 years, 5 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 | « third_party/WebKit/Source/core/frame/LocalDOMWindow.h ('k') | no next file » | 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 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 // Event handler attributes 193 // Event handler attributes
194 attribute EventHandler onanimationend; 194 attribute EventHandler onanimationend;
195 attribute EventHandler onanimationiteration; 195 attribute EventHandler onanimationiteration;
196 attribute EventHandler onanimationstart; 196 attribute EventHandler onanimationstart;
197 attribute EventHandler onsearch; 197 attribute EventHandler onsearch;
198 attribute EventHandler ontransitionend; 198 attribute EventHandler ontransitionend;
199 attribute EventHandler onwebkitanimationend; 199 attribute EventHandler onwebkitanimationend;
200 attribute EventHandler onwebkitanimationiteration; 200 attribute EventHandler onwebkitanimationiteration;
201 attribute EventHandler onwebkitanimationstart; 201 attribute EventHandler onwebkitanimationstart;
202 attribute EventHandler onwebkittransitionend; 202 attribute EventHandler onwebkittransitionend;
203 attribute EventHandler onwheel;
204 203
205 // https://w3c.github.io/webappsec/specs/powerfulfeatures/#monkey-patching-g lobal-object 204 // https://w3c.github.io/webappsec/specs/powerfulfeatures/#monkey-patching-g lobal-object
206 readonly attribute boolean isSecureContext; 205 readonly attribute boolean isSecureContext;
207 206
208 attribute DOMMatrixConstructor WebKitCSSMatrix; 207 attribute DOMMatrixConstructor WebKitCSSMatrix;
209 }; 208 };
210 209
211 // https://html.spec.whatwg.org/#transferable-objects 210 // https://html.spec.whatwg.org/#transferable-objects
212 // 211 //
213 // Expressing the Transferable typedef in IDL depends on https://crbug.com/24017 6. 212 // Expressing the Transferable typedef in IDL depends on https://crbug.com/24017 6.
214 // The postMessage() methods taking a Transferable array argument have custom 213 // The postMessage() methods taking a Transferable array argument have custom
215 // binding code that is able to handle the Transferables that we currently 214 // binding code that is able to handle the Transferables that we currently
216 // recognize. To be able to declare a postMessage() signature that matches 215 // recognize. To be able to declare a postMessage() signature that matches
217 // the implementation, we provide a Transferable typedef but with an 216 // the implementation, we provide a Transferable typedef but with an
218 // incomplete type. 217 // incomplete type.
219 // 218 //
220 // FIXME: make this typedef accurate once enough of https://crbug.com/240176 219 // FIXME: make this typedef accurate once enough of https://crbug.com/240176
221 // is in place. 220 // is in place.
222 // FIXME: consider putting this typedef in an .idl file containing spec-wide 221 // FIXME: consider putting this typedef in an .idl file containing spec-wide
223 // utility type definitions. 222 // utility type definitions.
224 typedef MessagePort Transferable; 223 typedef MessagePort Transferable;
225 224
226 Window implements GlobalEventHandlers; 225 Window implements GlobalEventHandlers;
227 Window implements WindowBase64; 226 Window implements WindowBase64;
228 Window implements WindowEventHandlers; 227 Window implements WindowEventHandlers;
229 Window implements WindowTimers; 228 Window implements WindowTimers;
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/frame/LocalDOMWindow.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698