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

Unified Diff: third_party/WebKit/LayoutTests/typedcssom/cssTranslation.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/cssTranslation.html
diff --git a/third_party/WebKit/LayoutTests/typedcssom/cssTranslation.html b/third_party/WebKit/LayoutTests/typedcssom/cssTranslation.html
index 24b1e9364e856ef6442bd607d59803a23373a8af..b971ddee72ef1316751d79f97ef6685bf055c5c8 100644
--- a/third_party/WebKit/LayoutTests/typedcssom/cssTranslation.html
+++ b/third_party/WebKit/LayoutTests/typedcssom/cssTranslation.html
@@ -79,9 +79,9 @@ test(function() {
test(function() {
for (var i = 0; i < values.length; ++i) {
- assert_equals(values[i].input.cssText, expectedCssString(values[i]));
+ assert_equals(values[i].input.toString(), expectedCssString(values[i]));
}
-}, "Test that cssText values for CSSTranslation is correct.");
+}, "Test that toString values for CSSTranslation is correct.");
test(function() {
assert_throws(null, function() { new CSSTranslation(simpleLength, simpleLength, simplePercent); });

Powered by Google App Engine
This is Rietveld 408576698