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

Unified Diff: third_party/WebKit/LayoutTests/fast/css/cursor-parsing-image-set-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/cursor-parsing-image-set-expected.txt
diff --git a/third_party/WebKit/LayoutTests/fast/css/cursor-parsing-image-set-expected.txt b/third_party/WebKit/LayoutTests/fast/css/cursor-parsing-image-set-expected.txt
index 72643c65b102d9eff4ce28ac211b9718dbc39fe5..1e58f3c2e4917682a7cad9f6195d55adf4b333df 100644
--- a/third_party/WebKit/LayoutTests/fast/css/cursor-parsing-image-set-expected.txt
+++ b/third_party/WebKit/LayoutTests/fast/css/cursor-parsing-image-set-expected.txt
@@ -6,10 +6,10 @@ On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
Bug 99493
Test a bunch of cursor rules which should round-trip exactly.
-PASS roundtripCssRule("cursor: -webkit-image-set(url(file:///foo.png) 1x), auto;") is "cursor: -webkit-image-set(url(file:///foo.png) 1x), auto;"
-PASS roundtripCssRule("cursor: -webkit-image-set(url(file:///foo.png) 1x, url(file:///foo2x.png) 2x), auto;") is "cursor: -webkit-image-set(url(file:///foo.png) 1x, url(file:///foo2x.png) 2x), auto;"
-PASS roundtripCssRule("cursor: -webkit-image-set(url(file:///foo.png) 1x, url(file:///foo2x.png) 2x) 2 3, auto;") is "cursor: -webkit-image-set(url(file:///foo.png) 1x, url(file:///foo2x.png) 2x) 2 3, auto;"
-PASS roundtripCssRule("cursor: -webkit-image-set(url(file:///foo03.png) 0.3x, url(file:///foo5x.png) 5x) 6 5, url(file:///foo.png) 12 3, pointer;") is "cursor: -webkit-image-set(url(file:///foo03.png) 0.3x, url(file:///foo5x.png) 5x) 6 5, url(file:///foo.png) 12 3, pointer;"
+PASS roundtripCssRule(`cursor: -webkit-image-set(url("file:///foo.png") 1x), auto;`) is "cursor: -webkit-image-set(url(\"file:///foo.png\") 1x), auto;"
+PASS roundtripCssRule(`cursor: -webkit-image-set(url("file:///foo.png") 1x, url("file:///foo2x.png") 2x), auto;`) is "cursor: -webkit-image-set(url(\"file:///foo.png\") 1x, url(\"file:///foo2x.png\") 2x), auto;"
+PASS roundtripCssRule(`cursor: -webkit-image-set(url("file:///foo.png") 1x, url("file:///foo2x.png") 2x) 2 3, auto;`) is "cursor: -webkit-image-set(url(\"file:///foo.png\") 1x, url(\"file:///foo2x.png\") 2x) 2 3, auto;"
+PASS roundtripCssRule(`cursor: -webkit-image-set(url("file:///foo03.png") 0.3x, url("file:///foo5x.png") 5x) 6 5, url("file:///foo.png") 12 3, pointer;`) is "cursor: -webkit-image-set(url(\"file:///foo03.png\") 0.3x, url(\"file:///foo5x.png\") 5x) 6 5, url(\"file:///foo.png\") 12 3, pointer;"
PASS successfullyParsed is true
TEST COMPLETE

Powered by Google App Engine
This is Rietveld 408576698