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

Unified Diff: third_party/WebKit/LayoutTests/typedcssom/cssSkew.html

Issue 2038453002: Typed CSSOM: Rename Matrix to CSSMatrix and MatrixTransformComponent to CSSMatrixTransformComponent (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/typedcssom/cssSkew.html
diff --git a/third_party/WebKit/LayoutTests/typedcssom/cssSkew.html b/third_party/WebKit/LayoutTests/typedcssom/cssSkew.html
index 4c7607c64d0370f0b3c4983f68c119613e1cc0a5..82896bad0862e5421cb7cf73c96d1d21d7a8b7d5 100644
--- a/third_party/WebKit/LayoutTests/typedcssom/cssSkew.html
+++ b/third_party/WebKit/LayoutTests/typedcssom/cssSkew.html
@@ -47,7 +47,7 @@ test(function() {
assert_true(inputAsMatrix.is2DComponent());
var tanAx = tanDegrees(input.ax);
var tanAy = tanDegrees(input.ay);
- var expectedMatrix = new Matrix(1, tanAy, tanAx, 1, 0, 0);
+ var expectedMatrix = new CSSMatrix(1, tanAy, tanAx, 1, 0, 0);
for (var attribute in expectedMatrix) {
if (typeof expectedMatrix[attribute] === "number") {
assert_approx_equals(inputAsMatrix[attribute], expectedMatrix[attribute], EPSILON);

Powered by Google App Engine
This is Rietveld 408576698