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

Unified Diff: LayoutTests/fast/css/parsing-text-emphasis.html

Issue 1090423007: Serialize <string> with double quotes (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Patch for landing 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
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 d98a5e7f0a5773ccbdd56803f417db537cbc90d9..263fe30a919cd6c0dd2ed121e5265dd623f01604 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', '', '', '');
« no previous file with comments | « LayoutTests/fast/css/nested-at-rules-expected.txt ('k') | LayoutTests/fast/css/parsing-text-emphasis-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698