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

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

Issue 2943213002: Revert of Make WebKitCSSMatrix an alias of DOMMatrix (Closed)
Patch Set: Revert of Make WebKitCSSMatrix an alias of DOMMatrix (patchset #16 id:300001 of https://codereview.… Created 3 years, 6 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/css/WebKitCSSMatrix.idl ('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 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
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; 203 attribute EventHandler onwheel;
204 204
205 // https://w3c.github.io/webappsec/specs/powerfulfeatures/#monkey-patching-g lobal-object 205 // https://w3c.github.io/webappsec/specs/powerfulfeatures/#monkey-patching-g lobal-object
206 readonly attribute boolean isSecureContext; 206 readonly attribute boolean isSecureContext;
207
208 attribute DOMMatrixConstructor WebKitCSSMatrix;
209 }; 207 };
210 208
211 // https://html.spec.whatwg.org/#transferable-objects 209 // https://html.spec.whatwg.org/#transferable-objects
212 // 210 //
213 // Expressing the Transferable typedef in IDL depends on https://crbug.com/24017 6. 211 // Expressing the Transferable typedef in IDL depends on https://crbug.com/24017 6.
214 // The postMessage() methods taking a Transferable array argument have custom 212 // The postMessage() methods taking a Transferable array argument have custom
215 // binding code that is able to handle the Transferables that we currently 213 // binding code that is able to handle the Transferables that we currently
216 // recognize. To be able to declare a postMessage() signature that matches 214 // recognize. To be able to declare a postMessage() signature that matches
217 // the implementation, we provide a Transferable typedef but with an 215 // the implementation, we provide a Transferable typedef but with an
218 // incomplete type. 216 // incomplete type.
219 // 217 //
220 // FIXME: make this typedef accurate once enough of https://crbug.com/240176 218 // FIXME: make this typedef accurate once enough of https://crbug.com/240176
221 // is in place. 219 // is in place.
222 // FIXME: consider putting this typedef in an .idl file containing spec-wide 220 // FIXME: consider putting this typedef in an .idl file containing spec-wide
223 // utility type definitions. 221 // utility type definitions.
224 typedef MessagePort Transferable; 222 typedef MessagePort Transferable;
225 223
226 Window implements GlobalEventHandlers; 224 Window implements GlobalEventHandlers;
227 Window implements WindowBase64; 225 Window implements WindowBase64;
228 Window implements WindowEventHandlers; 226 Window implements WindowEventHandlers;
229 Window implements WindowTimers; 227 Window implements WindowTimers;
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/css/WebKitCSSMatrix.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698