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

Unified Diff: LayoutTests/fast/css/nested-at-rules.html

Issue 973623002: Fix serialization of content property to always quote (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add another method Created 5 years, 10 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: LayoutTests/fast/css/nested-at-rules.html
diff --git a/LayoutTests/fast/css/nested-at-rules.html b/LayoutTests/fast/css/nested-at-rules.html
index d331e2155dbf102599ea577934593ce0b32ffc43..43d1955ae8e66cfe8a40bb33f7e34f75e4b62c74 100644
--- a/LayoutTests/fast/css/nested-at-rules.html
+++ b/LayoutTests/fast/css/nested-at-rules.html
@@ -57,6 +57,6 @@ shouldEvaluateTo("rules[1].cssRules[1].cssRules.length", 2);
shouldBe("rules[1].cssRules[1].cssRules[1].type", "CSSRule.MEDIA_RULE");
shouldBe("rules[1].cssRules[1].cssRules[1].cssRules[0].type", "CSSRule.PAGE_RULE");
-shouldBeEqualToString("getComputedStyle(document.getElementById('t0')).content", "APPLIED");
-shouldBeEqualToString("getComputedStyle(document.getElementById('t1')).content", "UNTOUCHED");
+shouldBeEqualToString("getComputedStyle(document.getElementById('t0')).content", "'APPLIED'");
+shouldBeEqualToString("getComputedStyle(document.getElementById('t1')).content", "'UNTOUCHED'");
</script>

Powered by Google App Engine
This is Rietveld 408576698