| 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.");
|
|
|