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

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

Issue 2096893002: [Typed OM] Rename is2DComponent to is2D in TransformComponents (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: sync to head Created 4 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/cssSkew.html
diff --git a/third_party/WebKit/LayoutTests/typedcssom/cssSkew.html b/third_party/WebKit/LayoutTests/typedcssom/cssSkew.html
index fc7d5cf12b9df1993661fc56b06b5c90d5c28bb6..ac843bdbdbaf68770245dac2ad6f2a28cd5ff61a 100644
--- a/third_party/WebKit/LayoutTests/typedcssom/cssSkew.html
+++ b/third_party/WebKit/LayoutTests/typedcssom/cssSkew.html
@@ -20,9 +20,9 @@ test(function() {
test(function() {
for (var i = 0; i < values.length; ++i) {
- assert_true(values[i].input.is2DComponent());
+ assert_true(values[i].input.is2D());
}
-}, "Test that the is2DComponent values for CSSSkew is correct.");
+}, "Test that the is2D values for CSSSkew is correct.");
test(function() {
for (var i = 0; i < values.length; ++i) {
@@ -44,7 +44,7 @@ test(function() {
for (var i = 0; i < values.length; ++i) {
var input = values[i].input;
var inputAsMatrix = input.asMatrix();
- assert_true(inputAsMatrix.is2DComponent());
+ assert_true(inputAsMatrix.is2D());
var tanAx = tanDegrees(input.ax);
var tanAy = tanDegrees(input.ay);
var expectedMatrix = new CSSMatrix(1, tanAy, tanAx, 1, 0, 0);
« no previous file with comments | « third_party/WebKit/LayoutTests/typedcssom/cssScale.html ('k') | third_party/WebKit/LayoutTests/typedcssom/cssTranslation.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698