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

Unified Diff: third_party/WebKit/LayoutTests/css3/condition-cssom.html

Issue 2428223002: Remove the trailing whitespace in CSSMediaRule::cssText (Closed)
Patch Set: Fix test case Created 4 years, 2 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 | « no previous file | third_party/WebKit/LayoutTests/css3/device-adapt/viewport-at-rule-parsing.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/css3/condition-cssom.html
diff --git a/third_party/WebKit/LayoutTests/css3/condition-cssom.html b/third_party/WebKit/LayoutTests/css3/condition-cssom.html
index 66b965e8cd14b54ca08289ececf06efef5ee194b..0f5435a7215f67212afd47ee337970551d01deb7 100644
--- a/third_party/WebKit/LayoutTests/css3/condition-cssom.html
+++ b/third_party/WebKit/LayoutTests/css3/condition-cssom.html
@@ -31,7 +31,7 @@
assert_equals(rules[0].conditionText, "screen and (min-width: 480px)");
assert_equals(rules[0].media.mediaText,rules[0].conditionText);
assert_equals(rules[0].cssText,
- "@media screen and (min-width: 480px) { \n" +
+ "@media screen and (min-width: 480px) {\n" +
" body { background-color: lightgreen; }\n" +
"}");
}, "@media inherited from CSSConditionRule.");
@@ -45,7 +45,7 @@
assert_equals(rules[1].conditionText, "");
assert_equals(rules[1].media.mediaText,rules[1].conditionText);
assert_equals(rules[1].cssText,
- "@media { \n" +
+ "@media {\n" +
" body { background-color: red; }\n" +
"}");
}, "@media inherited from CSSConditionRule, empty media.");
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/css3/device-adapt/viewport-at-rule-parsing.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698