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

Unified Diff: LayoutTests/fast/css/parsing-text-emphasis.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/parsing-text-emphasis.html
diff --git a/LayoutTests/fast/css/parsing-text-emphasis.html b/LayoutTests/fast/css/parsing-text-emphasis.html
index 32f8f24500bda0177587bd5c88a929688f443fb5..d98a5e7f0a5773ccbdd56803f417db537cbc90d9 100644
--- a/LayoutTests/fast/css/parsing-text-emphasis.html
+++ b/LayoutTests/fast/css/parsing-text-emphasis.html
@@ -53,7 +53,7 @@
test('-webkit-text-emphasis-style: double-circle;', '', '', 'double-circle');
test('-webkit-text-emphasis-style: triangle;', '', '', 'triangle');
test('-webkit-text-emphasis-style: sesame;', '', '', 'sesame');
- test('-webkit-text-emphasis-style: "cheese";', '', '', 'cheese');
+ test('-webkit-text-emphasis-style: "cheese";', '', '', "'cheese'");
test('-webkit-text-emphasis-style: 1px;', '', '', '');
test('-webkit-text-emphasis-style: red;', '', '', '');
@@ -70,9 +70,9 @@
test('-webkit-text-emphasis: initial', 'initial', '', 'initial', 'initial');
test('-webkit-text-emphasis: inherit', 'inherit', '', 'inherit', 'inherit');
test('-webkit-text-emphasis: red', 'red', '', 'initial', 'red');
- test('-webkit-text-emphasis: "cheese"', 'initial', '', 'cheese', 'cheese');
- test('-webkit-text-emphasis: red "cheese"', 'red', '', 'cheese', 'cheese red');
- test('-webkit-text-emphasis: "cheese" red', 'red', '', 'cheese', 'cheese red');
+ test('-webkit-text-emphasis: "cheese"', 'initial', '', "'cheese'", "'cheese'");
+ test('-webkit-text-emphasis: red "cheese"', 'red', '', "'cheese'", "'cheese' red");
+ test('-webkit-text-emphasis: "cheese" red', 'red', '', "'cheese'", "'cheese' red");
test('-webkit-text-emphasis: filled sesame red', 'red', '', 'filled sesame', 'filled sesame red');
test('-webkit-text-emphasis: red filled sesame', 'red', '', 'filled sesame', 'filled sesame red');
test('-webkit-text-emphasis: filled red sesame', '', '', '');

Powered by Google App Engine
This is Rietveld 408576698