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

Unified Diff: LayoutTests/fast/css/counters/counter-cssText.html

Issue 1102373002: Fix counters() separator serialization (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix test failure Created 5 years, 8 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 | LayoutTests/fast/css/counters/counter-cssText-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/css/counters/counter-cssText.html
diff --git a/LayoutTests/fast/css/counters/counter-cssText.html b/LayoutTests/fast/css/counters/counter-cssText.html
index 82f7895eca5ec12768bab27ebbe4c34185f79948..5ae632986216817c0c79a54088413e5d6e465560 100644
--- a/LayoutTests/fast/css/counters/counter-cssText.html
+++ b/LayoutTests/fast/css/counters/counter-cssText.html
@@ -30,9 +30,9 @@ h4:before {
description("Test the cssText output of counter-valued CSSPrimitiveValues");
var rules = document.styleSheets[0].cssRules;
shouldBeEqualToString("rules[2].style.cssText", "content: counter(section, decimal);");
-shouldBeEqualToString("rules[3].style.cssText", "content: counters(section, ':', decimal);");
+shouldBeEqualToString("rules[3].style.cssText", "content: counters(section, \":\", decimal);");
shouldBeEqualToString("rules[4].style.cssText", "content: counter(section, lower-roman);");
-shouldBeEqualToString("rules[5].style.cssText", "content: counters(section, ',', upper-roman);");
+shouldBeEqualToString("rules[5].style.cssText", "content: counters(section, \",\", upper-roman);");
shouldBeEqualToString("rules[6].style.cssText", "content: counter(section, none);");
</script>
</body>
« no previous file with comments | « no previous file | LayoutTests/fast/css/counters/counter-cssText-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698