Index: third_party/WebKit/LayoutTests/typedcssom/cssRotation.html |
diff --git a/third_party/WebKit/LayoutTests/typedcssom/cssRotation.html b/third_party/WebKit/LayoutTests/typedcssom/cssRotation.html |
index df9372082514c697553cc7c7d227c618e2d38d89..32cc6bf80038d7c297404e4f45a97bd23639dd01 100644 |
--- a/third_party/WebKit/LayoutTests/typedcssom/cssRotation.html |
+++ b/third_party/WebKit/LayoutTests/typedcssom/cssRotation.html |
@@ -7,29 +7,29 @@ var EPSILON = 1e-6; // float epsilon |
var values = [ |
{input: new CSSRotation(0), angle: 0, x: 0, y: 0, z: 1, |
is2DComponent: true, cssString: "rotate(0deg)", |
- asMatrix: new Matrix(1, 0, 0, 1, 0, 0)}, |
+ asMatrix: new CSSMatrix(1, 0, 0, 1, 0, 0)}, |
{input: new CSSRotation(10), angle: 10, x: 0, y: 0, z: 1, |
is2DComponent: true, cssString: "rotate(10deg)", |
- asMatrix: new Matrix(0.9848077, 0.1736481, -0.1736481, 0.9848077, 0, 0)}, |
+ asMatrix: new CSSMatrix(0.9848077, 0.1736481, -0.1736481, 0.9848077, 0, 0)}, |
{input: new CSSRotation(-21), angle: -21, x: 0, y: 0, z: 1, |
is2DComponent: true, cssString: "rotate(-21deg)", |
- asMatrix: new Matrix(0.9335804, -0.3583679, 0.3583679, 0.9335804, 0, 0)}, |
+ asMatrix: new CSSMatrix(0.9335804, -0.3583679, 0.3583679, 0.9335804, 0, 0)}, |
{input: new CSSRotation(3.2), angle: 3.2, x: 0, y: 0, z: 1, |
is2DComponent: true, cssString: "rotate(3.2deg)", |
- asMatrix: new Matrix(0.9984407, 0.0558215, -0.0558215, 0.9984407, 0, 0)}, |
+ asMatrix: new CSSMatrix(0.9984407, 0.0558215, -0.0558215, 0.9984407, 0, 0)}, |
{input: new CSSRotation(90, 0, 0, 1), angle: 90, x: 0, y: 0, z: 1, |
is2DComponent: false, cssString: "rotate3d(0, 0, 1, 90deg)", |
- asMatrix: new Matrix(0, 1, 0, 0, -1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}, |
+ asMatrix: new CSSMatrix(0, 1, 0, 0, -1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}, |
{input: new CSSRotation(0, 2.7, -3, 4.4), angle: 0, x: 2.7, y: -3, z: 4.4, |
is2DComponent: false, cssString: "rotate3d(2.7, -3, 4.4, 0deg)", |
- asMatrix: new Matrix(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}, |
+ asMatrix: new CSSMatrix(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}, |
{input: new CSSRotation(10, 2, 3, 4), angle: 10, x: 2, y: 3, z: 4, |
is2DComponent: false, cssString: "rotate3d(2, 3, 4, 10deg)", |
- asMatrix: new Matrix(0.9869032, 0.1321258, -0.0925460, 0, -0.1258394, |
+ asMatrix: new CSSMatrix(0.9869032, 0.1321258, -0.0925460, 0, -0.1258394, |
0.9895225, 0.0707777, 0, 0.1009279, -0.0582048, 0.9931896, 0, 0, 0, 0, 1)}, |
{input: new CSSRotation(-1.2, 2, 3.7, -4), angle: -1.2, x: 2, y: 3.7, z: -4, |
is2DComponent: false, cssString: "rotate3d(2, 3.7, -4, -1.2deg)", |
- asMatrix: new Matrix(0.9998067, 0.01448049, 0.0132978, 0, -0.0143841, |
+ asMatrix: new CSSMatrix(0.9998067, 0.01448049, 0.0132978, 0, -0.0143841, |
0.9998698, -0.0073125, 0, -0.0134019, 0.0071198, 0.9998848, 0, 0, 0, 0, 1)} |
]; |