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

Unified Diff: third_party/WebKit/LayoutTests/typedcssom/inlinestyle/transform-rotation.html

Issue 2104713002: [Typed OM] Fix missing renames that broke the build (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update other renames 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
« no previous file with comments | « third_party/WebKit/LayoutTests/typedcssom/inlinestyle/transform.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/typedcssom/inlinestyle/transform-rotation.html
diff --git a/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/transform-rotation.html b/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/transform-rotation.html
index aec3a178784c3e32707e2f04652637b15e5fcef5..ba654ee8485cbbf1280a4e67ee4f9b0d02c97ba0 100644
--- a/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/transform-rotation.html
+++ b/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/transform-rotation.html
@@ -7,16 +7,16 @@
var EPSILON = 1e-6; // float epsilon
-function validateTransformWithSingleRotation(transform, x, y, z, angle, cssString) {
- assert_equals(transform.cssString, cssString);
+function validateTransformWithSingleRotation(transform, x, y, z, angle, cssText) {
+ assert_equals(transform.cssText, cssText);
// Shouldn't be base StyleValue as for unsupported values.
- assert_true(transform instanceof TransformValue);
+ assert_true(transform instanceof CSSTransformValue);
var components = [...transform.values()];
assert_equals(components.length, 1);
assert_true(components[0] instanceof CSSRotation);
- assert_equals(components[0].cssString, cssString);
+ assert_equals(components[0].cssText, cssText);
assert_approx_equals(components[0].angle, angle, EPSILON);
assert_approx_equals(components[0].x, x, EPSILON);
« no previous file with comments | « third_party/WebKit/LayoutTests/typedcssom/inlinestyle/transform.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698