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

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

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-expected.txt
diff --git a/LayoutTests/fast/css/parsing-text-emphasis-expected.txt b/LayoutTests/fast/css/parsing-text-emphasis-expected.txt
index 1f1e8d8a27a8f0ee2ffcbb85aa6ed7c640a67ed1..6535f7ed043588f9ce37fbf3b12b978053887f36 100644
--- a/LayoutTests/fast/css/parsing-text-emphasis-expected.txt
+++ b/LayoutTests/fast/css/parsing-text-emphasis-expected.txt
@@ -24,7 +24,7 @@ PASS: '-webkit-text-emphasis-style: circle;' parsed as ['', '', 'circle', '']
PASS: '-webkit-text-emphasis-style: double-circle;' parsed as ['', '', 'double-circle', '']
PASS: '-webkit-text-emphasis-style: triangle;' parsed as ['', '', 'triangle', '']
PASS: '-webkit-text-emphasis-style: sesame;' parsed as ['', '', 'sesame', '']
-PASS: '-webkit-text-emphasis-style: "cheese";' parsed as ['', '', 'cheese', '']
+PASS: '-webkit-text-emphasis-style: "cheese";' parsed as ['', '', ''cheese'', '']
PASS: '-webkit-text-emphasis-style: 1px;' parsed as ['', '', '', '']
PASS: '-webkit-text-emphasis-style: red;' parsed as ['', '', '', '']
PASS: '-webkit-text-emphasis-style: open dot;' parsed as ['', '', 'open dot', '']
@@ -39,9 +39,9 @@ PASS: '-webkit-text-emphasis-style: open "cheese";' parsed as ['', '', '', '']
PASS: '-webkit-text-emphasis: initial' parsed as ['initial', '', 'initial', 'initial']
PASS: '-webkit-text-emphasis: inherit' parsed as ['inherit', '', 'inherit', 'inherit']
PASS: '-webkit-text-emphasis: red' parsed as ['red', '', 'initial', 'red']
-PASS: '-webkit-text-emphasis: "cheese"' parsed as ['initial', '', 'cheese', 'cheese']
-PASS: '-webkit-text-emphasis: red "cheese"' parsed as ['red', '', 'cheese', 'cheese red']
-PASS: '-webkit-text-emphasis: "cheese" red' parsed as ['red', '', 'cheese', 'cheese red']
+PASS: '-webkit-text-emphasis: "cheese"' parsed as ['initial', '', ''cheese'', ''cheese'']
+PASS: '-webkit-text-emphasis: red "cheese"' parsed as ['red', '', ''cheese'', ''cheese' red']
+PASS: '-webkit-text-emphasis: "cheese" red' parsed as ['red', '', ''cheese'', ''cheese' red']
PASS: '-webkit-text-emphasis: filled sesame red' parsed as ['red', '', 'filled sesame', 'filled sesame red']
PASS: '-webkit-text-emphasis: red filled sesame' parsed as ['red', '', 'filled sesame', 'filled sesame red']
PASS: '-webkit-text-emphasis: filled red sesame' parsed as ['', '', '', '']

Powered by Google App Engine
This is Rietveld 408576698