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

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

Issue 1485643002: Drop the [Immutable] IDL extended attribute (it is a no-op) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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/bindings/tests/idls/core/SVGTestInterface.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) 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 attribute unrestricted double m33; 53 attribute unrestricted double m33;
54 attribute unrestricted double m34; 54 attribute unrestricted double m34;
55 attribute unrestricted double m41; 55 attribute unrestricted double m41;
56 attribute unrestricted double m42; 56 attribute unrestricted double m42;
57 attribute unrestricted double m43; 57 attribute unrestricted double m43;
58 attribute unrestricted double m44; 58 attribute unrestricted double m44;
59 59
60 [RaisesException] void setMatrixValue([Default=Undefined] optional DOMString string); 60 [RaisesException] void setMatrixValue([Default=Undefined] optional DOMString string);
61 61
62 // Multiply this matrix by secondMatrix, on the right (result = this * secon dMatrix) 62 // Multiply this matrix by secondMatrix, on the right (result = this * secon dMatrix)
63 [Immutable, LegacyInterfaceTypeChecking] WebKitCSSMatrix multiply([Default=U ndefined] optional WebKitCSSMatrix secondMatrix); 63 [LegacyInterfaceTypeChecking] WebKitCSSMatrix multiply([Default=Undefined] o ptional WebKitCSSMatrix secondMatrix);
64 64
65 // Return the inverse of this matrix. Throw an exception if the matrix is no t invertible 65 // Return the inverse of this matrix. Throw an exception if the matrix is no t invertible
66 [Immutable, RaisesException] WebKitCSSMatrix inverse(); 66 [RaisesException] WebKitCSSMatrix inverse();
67 67
68 // Return this matrix translated by the passed values. 68 // 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 69 // 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 unrestric ted double x, 70 WebKitCSSMatrix translate([Default=Undefined] optional unrestricted double x ,
71 [Default=Undefined] optional unrestric ted double y, 71 [Default=Undefined] optional unrestricted double y ,
72 [Default=Undefined] optional unrestric ted double z); 72 [Default=Undefined] optional unrestricted double z );
73 73
74 // Returns this matrix scaled by the passed values. 74 // 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 75 // 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 76 // makes it the same as scaleX. This allows the 3D form to used for 2D opera tions
77 [Immutable] WebKitCSSMatrix scale([Default=Undefined] optional unrestricted double scaleX, 77 WebKitCSSMatrix scale([Default=Undefined] optional unrestricted double scale X,
78 [Default=Undefined] optional unrestricted double scaleY, 78 [Default=Undefined] optional unrestricted double scale Y,
79 [Default=Undefined] optional unrestricted double scaleZ); 79 [Default=Undefined] optional unrestricted double scale Z);
80 80
81 // Returns this matrix rotated by the passed values. 81 // Returns this matrix rotated by the passed values.
82 // If rotY and rotZ are NaN, rotate about Z (rotX=0, rotateY=0, rotateZ=rotX ). 82 // 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. 83 // Otherwise use a rotation value of 0 for any passed NaN.
84 [Immutable] WebKitCSSMatrix rotate([Default=Undefined] optional unrestricted double rotX, 84 WebKitCSSMatrix rotate([Default=Undefined] optional unrestricted double rotX ,
85 [Default=Undefined] optional unrestricted double rotY, 85 [Default=Undefined] optional unrestricted double rotY ,
86 [Default=Undefined] optional unrestricted double rotZ); 86 [Default=Undefined] optional unrestricted double rotZ );
87 87
88 // Returns this matrix rotated about the passed axis by the passed angle. 88 // 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 89 // Passing a NaN will use a value of 0. If the axis is (0,0,0) use a value
90 // of (0,0,1). 90 // of (0,0,1).
91 [Immutable] WebKitCSSMatrix rotateAxisAngle([Default=Undefined] optional unr estricted double x, 91 WebKitCSSMatrix rotateAxisAngle([Default=Undefined] optional unrestricted do uble x,
92 [Default=Undefined] optional unr estricted double y, 92 [Default=Undefined] optional unrestricted do uble y,
93 [Default=Undefined] optional unr estricted double z, 93 [Default=Undefined] optional unrestricted do uble z,
94 [Default=Undefined] optional unr estricted double angle); 94 [Default=Undefined] optional unrestricted do uble angle);
95 95
96 // Returns this matrix skewed along the X axis by the passed values. 96 // Returns this matrix skewed along the X axis by the passed values.
97 // Passing a NaN will use a value of 0. 97 // Passing a NaN will use a value of 0.
98 [Immutable] WebKitCSSMatrix skewX([Default=Undefined] optional unrestricted double angle); 98 WebKitCSSMatrix skewX([Default=Undefined] optional unrestricted double angle );
99 99
100 // Returns this matrix skewed along the Y axis by the passed values. 100 // Returns this matrix skewed along the Y axis by the passed values.
101 // Passing a NaN will use a value of 0. 101 // Passing a NaN will use a value of 0.
102 [Immutable] WebKitCSSMatrix skewY([Default=Undefined] optional unrestricted double angle); 102 WebKitCSSMatrix skewY([Default=Undefined] optional unrestricted double angle );
103 103
104 [NotEnumerable] stringifier; 104 [NotEnumerable] stringifier;
105 }; 105 };
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/bindings/tests/idls/core/SVGTestInterface.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698