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

Unified Diff: third_party/WebKit/LayoutTests/fast/css/background-serialize-expected.txt

Issue 1363233003: Make sure <url>s are being serialized according to spec (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix interpolation tests Created 5 years, 3 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: third_party/WebKit/LayoutTests/fast/css/background-serialize-expected.txt
diff --git a/third_party/WebKit/LayoutTests/fast/css/background-serialize-expected.txt b/third_party/WebKit/LayoutTests/fast/css/background-serialize-expected.txt
index 8a0f091f8b39cea87c726d2a52564c918dcc2846..640f6004e360691b8e92eeb05c2ac63823b467ea 100644
--- a/third_party/WebKit/LayoutTests/fast/css/background-serialize-expected.txt
+++ b/third_party/WebKit/LayoutTests/fast/css/background-serialize-expected.txt
@@ -18,8 +18,8 @@ PASS test('.test { background-position-x: 5%; }') is ".test { background-positio
PASS test('.test { background-position-y: 5%; }') is ".test { background-position-y: 5%; }"
PASS test('.test { background-position-x: 5%; background-position-y: 10%; }') is ".test { background-position: 5% 10%; }"
PASS test('.test { background-position-x: 5%; background-position-y: 10% !important; }') is ".test { background-position-x: 5%; background-position-y: 10% !important; }"
-PASS test('.test { background: url(dummy://test.png); }') is ".test { background: url(dummy://test.png); }"
-PASS test('.test { background: url(dummy://test.png); background-color: black; }') is ".test { background: url(dummy://test.png) black; }"
+PASS test('.test { background: url(dummy://test.png); }') is ".test { background: url(\"dummy://test.png\"); }"
+PASS test('.test { background: url(dummy://test.png); background-color: black; }') is ".test { background: url(\"dummy://test.png\") black; }"
PASS successfullyParsed is true
TEST COMPLETE

Powered by Google App Engine
This is Rietveld 408576698