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

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

Issue 2933473003: Remove asMatrix as a JS-exposed method in CSSTransformComponents. (Closed)
Patch Set: update skew expectation for missing "s" Created 3 years, 6 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/cssMatrixComponent.html
diff --git a/third_party/WebKit/LayoutTests/typedcssom/cssMatrixComponent.html b/third_party/WebKit/LayoutTests/typedcssom/cssMatrixComponent.html
index 80c5c1c2bf334f2be6e695290f7ab1ba21ff61e4..64dcc9440e1d96995b7d0b1bbf4d8e3744bbced8 100644
--- a/third_party/WebKit/LayoutTests/typedcssom/cssMatrixComponent.html
+++ b/third_party/WebKit/LayoutTests/typedcssom/cssMatrixComponent.html
@@ -110,18 +110,4 @@ test(() => {
assert_throws(new TypeError(), () => { new CSSMatrixComponent(undefined); });
}, "invalid number of arguments to the constructor throws");
-for (let params of testParams) {
- test(() => {
- var attributeValues = attributeValues2D.concat(attributeValues3D);
- var inputAsMatrix = params.input.asMatrix();
- for (var j = 0; j < attributeValues.length; ++j) {
- var attribute = attributeValues[j];
- assert_equals(inputAsMatrix[attribute], params.input[attribute]);
- }
- assert_equals(inputAsMatrix.is2D(), params.input.is2D());
- assert_equals(inputAsMatrix.toString(), params.input.toString());
- }, "asMatrix has all the same properties as the original " +
- "CSSMatrixComponent for " + params.cssText);
-}
-
</script>

Powered by Google App Engine
This is Rietveld 408576698