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

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

Issue 2879233002: [css-typed-om] Replace cssText with stringifier at CSSTransformComponent (Closed)
Patch Set: [css-typed-om] replace cssText with toString at CSSTransformComponent Created 3 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/inlinestyle/transform-perspective.html
diff --git a/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/transform-perspective.html b/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/transform-perspective.html
index 004708f3151eea86bbbb0fcdf4482ffdf7a2b6b5..86dc3811f377d984b97f6ad4392401b0a89d3c58 100644
--- a/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/transform-perspective.html
+++ b/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/transform-perspective.html
@@ -35,7 +35,7 @@ test(function() {
var components = [...result.values()];
assert_equals(components.length, 1);
assert_equals(components[0].constructor.name, CSSPerspective.name);
- assert_equals(components[0].cssText, cssText);
+ assert_equals(components[0].toString(), cssText);
}
}, "Perspective read from a StyleMap is correct");

Powered by Google App Engine
This is Rietveld 408576698