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

Side by Side Diff: third_party/WebKit/Source/core/geometry/DOMMatrixReadOnly.idl

Issue 2868953002: Stop accepting string constructor of DOMMatrix on workers (Closed)
Patch Set: x Created 3 years, 7 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/geometry/DOMMatrixReadOnly.cpp ('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 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // https://dev.w3.org/fxtf/geometry/#DOMMatrix 5 // https://dev.w3.org/fxtf/geometry/#DOMMatrix
6 6
7 [ 7 [
8 Constructor(optional (DOMString or sequence<unrestricted double>) init), 8 Constructor(optional (DOMString or sequence<unrestricted double>) init),
9 RaisesException=Constructor, 9 RaisesException=Constructor,
10 ConstructorCallWith=ExecutionContext,
10 Exposed=(Window,Worker), 11 Exposed=(Window,Worker),
11 RuntimeEnabled=GeometryInterfaces, 12 RuntimeEnabled=GeometryInterfaces,
12 ] interface DOMMatrixReadOnly { 13 ] interface DOMMatrixReadOnly {
13 [RaisesException, NewObject] static DOMMatrixReadOnly fromMatrix(optional DO MMatrixInit other); 14 [RaisesException, NewObject] static DOMMatrixReadOnly fromMatrix(optional DO MMatrixInit other);
14 [RaisesException, NewObject] static DOMMatrixReadOnly fromFloat32Array(Float 32Array array32); 15 [RaisesException, NewObject] static DOMMatrixReadOnly fromFloat32Array(Float 32Array array32);
15 [RaisesException, NewObject] static DOMMatrixReadOnly fromFloat64Array(Float 64Array array64); 16 [RaisesException, NewObject] static DOMMatrixReadOnly fromFloat64Array(Float 64Array array64);
16 17
17 // These attributes are simple aliases for certain elements of the 4x4 matri x 18 // These attributes are simple aliases for certain elements of the 4x4 matri x
18 readonly attribute unrestricted double a; 19 readonly attribute unrestricted double a;
19 readonly attribute unrestricted double b; 20 readonly attribute unrestricted double b;
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 DOMMatrix flipX(); 72 DOMMatrix flipX();
72 DOMMatrix flipY(); 73 DOMMatrix flipY();
73 DOMMatrix inverse(); 74 DOMMatrix inverse();
74 75
75 DOMPoint transformPoint(optional DOMPointInit point); 76 DOMPoint transformPoint(optional DOMPointInit point);
76 Float32Array toFloat32Array(); 77 Float32Array toFloat32Array();
77 Float64Array toFloat64Array(); 78 Float64Array toFloat64Array();
78 stringifier; 79 stringifier;
79 serializer = { attribute }; 80 serializer = { attribute };
80 }; 81 };
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/geometry/DOMMatrixReadOnly.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698