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

Side by Side Diff: Source/core/css/WebKitCSSMatrix.idl

Issue 927023003: Add TypeChecking=Unrestricted to the WebKitCSSMatrix interface (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | 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) 2008, 2010 Apple Inc. All Rights Reserved. 2 * Copyright (C) 2008, 2010 Apple Inc. All Rights Reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 11 matching lines...) Expand all
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */ 24 */
25 25
26 // Introduced in DOM Level ?: 26 // Introduced in DOM Level ?:
27 [ 27 [
28 Constructor(optional DOMString cssValue = null), 28 Constructor(optional DOMString cssValue = null),
29 ConstructorCallWith=ExecutionContext, 29 ConstructorCallWith=ExecutionContext,
30 ImplementedAs=CSSMatrix, 30 ImplementedAs=CSSMatrix,
31 RaisesException=Constructor, 31 RaisesException=Constructor,
32 TypeChecking=Unrestricted,
32 WillBeGarbageCollected 33 WillBeGarbageCollected
33 ] interface WebKitCSSMatrix { 34 ] interface WebKitCSSMatrix {
34 35
35 // These attributes are simple aliases for certain elements of the 4x4 matri x 36 // These attributes are simple aliases for certain elements of the 4x4 matri x
36 attribute double a; // alias for m11 37 attribute unrestricted double a; // alias for m11
37 attribute double b; // alias for m12 38 attribute unrestricted double b; // alias for m12
38 attribute double c; // alias for m21 39 attribute unrestricted double c; // alias for m21
39 attribute double d; // alias for m22 40 attribute unrestricted double d; // alias for m22
40 attribute double e; // alias for m41 41 attribute unrestricted double e; // alias for m41
41 attribute double f; // alias for m42 42 attribute unrestricted double f; // alias for m42
42 43
43 attribute double m11; 44 attribute unrestricted double m11;
44 attribute double m12; 45 attribute unrestricted double m12;
45 attribute double m13; 46 attribute unrestricted double m13;
46 attribute double m14; 47 attribute unrestricted double m14;
47 attribute double m21; 48 attribute unrestricted double m21;
48 attribute double m22; 49 attribute unrestricted double m22;
49 attribute double m23; 50 attribute unrestricted double m23;
50 attribute double m24; 51 attribute unrestricted double m24;
51 attribute double m31; 52 attribute unrestricted double m31;
52 attribute double m32; 53 attribute unrestricted double m32;
53 attribute double m33; 54 attribute unrestricted double m33;
54 attribute double m34; 55 attribute unrestricted double m34;
55 attribute double m41; 56 attribute unrestricted double m41;
56 attribute double m42; 57 attribute unrestricted double m42;
57 attribute double m43; 58 attribute unrestricted double m43;
58 attribute double m44; 59 attribute unrestricted double m44;
59 60
60 [RaisesException] void setMatrixValue([Default=Undefined] optional DOMString string); 61 [RaisesException] void setMatrixValue([Default=Undefined] optional DOMString string);
61 62
62 // Multiply this matrix by secondMatrix, on the right (result = this * secon dMatrix) 63 // Multiply this matrix by secondMatrix, on the right (result = this * secon dMatrix)
63 [Immutable] WebKitCSSMatrix multiply([Default=Undefined] optional WebKitCSSM atrix secondMatrix); 64 [Immutable] WebKitCSSMatrix multiply([Default=Undefined] optional WebKitCSSM atrix secondMatrix);
64 65
65 // Return the inverse of this matrix. Throw an exception if the matrix is no t invertible 66 // Return the inverse of this matrix. Throw an exception if the matrix is no t invertible
66 [Immutable, RaisesException] WebKitCSSMatrix inverse(); 67 [Immutable, RaisesException] WebKitCSSMatrix inverse();
67 68
68 // Return this matrix translated by the passed values. 69 // Return this matrix translated by the passed values.
69 // Passing a NaN will use a value of 0. This allows the 3D form to used for 2D operations 70 // Passing a NaN will use a value of 0. This allows the 3D form to used for 2D operations
70 [Immutable] WebKitCSSMatrix translate([Default=Undefined] optional double x, 71 [Immutable] WebKitCSSMatrix translate([Default=Undefined] optional unrestric ted double x,
71 [Default=Undefined] optional double y, 72 [Default=Undefined] optional unrestric ted double y,
72 [Default=Undefined] optional double z) ; 73 [Default=Undefined] optional unrestric ted double z);
73 74
74 // Returns this matrix scaled by the passed values. 75 // Returns this matrix scaled by the passed values.
75 // Passing scaleX or scaleZ as NaN uses a value of 1, but passing scaleY of NaN 76 // Passing scaleX or scaleZ as NaN uses a value of 1, but passing scaleY of NaN
76 // makes it the same as scaleX. This allows the 3D form to used for 2D opera tions 77 // makes it the same as scaleX. This allows the 3D form to used for 2D opera tions
77 [Immutable] WebKitCSSMatrix scale([Default=Undefined] optional double scaleX , 78 [Immutable] WebKitCSSMatrix scale([Default=Undefined] optional unrestricted double scaleX,
78 [Default=Undefined] optional double scaleY , 79 [Default=Undefined] optional unrestricted double scaleY,
79 [Default=Undefined] optional double scaleZ ); 80 [Default=Undefined] optional unrestricted double scaleZ);
80 81
81 // Returns this matrix rotated by the passed values. 82 // Returns this matrix rotated by the passed values.
82 // If rotY and rotZ are NaN, rotate about Z (rotX=0, rotateY=0, rotateZ=rotX ). 83 // If rotY and rotZ are NaN, rotate about Z (rotX=0, rotateY=0, rotateZ=rotX ).
83 // Otherwise use a rotation value of 0 for any passed NaN. 84 // Otherwise use a rotation value of 0 for any passed NaN.
84 [Immutable] WebKitCSSMatrix rotate([Default=Undefined] optional double rotX, 85 [Immutable] WebKitCSSMatrix rotate([Default=Undefined] optional unrestricted double rotX,
85 [Default=Undefined] optional double rotY, 86 [Default=Undefined] optional unrestricted double rotY,
86 [Default=Undefined] optional double rotZ) ; 87 [Default=Undefined] optional unrestricted double rotZ);
87 88
88 // Returns this matrix rotated about the passed axis by the passed angle. 89 // Returns this matrix rotated about the passed axis by the passed angle.
89 // Passing a NaN will use a value of 0. If the axis is (0,0,0) use a value 90 // Passing a NaN will use a value of 0. If the axis is (0,0,0) use a value
90 // of (0,0,1). 91 // of (0,0,1).
91 [Immutable] WebKitCSSMatrix rotateAxisAngle([Default=Undefined] optional dou ble x, 92 [Immutable] WebKitCSSMatrix rotateAxisAngle([Default=Undefined] optional unr estricted double x,
92 [Default=Undefined] optional dou ble y, 93 [Default=Undefined] optional unr estricted double y,
93 [Default=Undefined] optional dou ble z, 94 [Default=Undefined] optional unr estricted double z,
94 [Default=Undefined] optional dou ble angle); 95 [Default=Undefined] optional unr estricted double angle);
95 96
96 // Returns this matrix skewed along the X axis by the passed values. 97 // Returns this matrix skewed along the X axis by the passed values.
97 // Passing a NaN will use a value of 0. 98 // Passing a NaN will use a value of 0.
98 [Immutable] WebKitCSSMatrix skewX([Default=Undefined] optional double angle) ; 99 [Immutable] WebKitCSSMatrix skewX([Default=Undefined] optional unrestricted double angle);
99 100
100 // Returns this matrix skewed along the Y axis by the passed values. 101 // Returns this matrix skewed along the Y axis by the passed values.
101 // Passing a NaN will use a value of 0. 102 // Passing a NaN will use a value of 0.
102 [Immutable] WebKitCSSMatrix skewY([Default=Undefined] optional double angle) ; 103 [Immutable] WebKitCSSMatrix skewY([Default=Undefined] optional unrestricted double angle);
103 104
104 [NotEnumerable] stringifier; 105 [NotEnumerable] stringifier;
105 }; 106 };
106 107
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698