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

Side by Side 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, 2 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 unified diff | Download patch
OLDNEW
1 Test the parsing of the cursor property when used with -webkit-image-set. 1 Test the parsing of the cursor property when used with -webkit-image-set.
2 2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4 4
5 5
6 Bug 99493 6 Bug 99493
7 7
8 Test a bunch of cursor rules which should round-trip exactly. 8 Test a bunch of cursor rules which should round-trip exactly.
9 PASS roundtripCssRule("cursor: -webkit-image-set(url(file:///foo.png) 1x), auto; ") is "cursor: -webkit-image-set(url(file:///foo.png) 1x), auto;" 9 PASS roundtripCssRule(`cursor: -webkit-image-set(url("file:///foo.png") 1x), aut o;`) is "cursor: -webkit-image-set(url(\"file:///foo.png\") 1x), auto;"
10 PASS roundtripCssRule("cursor: -webkit-image-set(url(file:///foo.png) 1x, url(fi le:///foo2x.png) 2x), auto;") is "cursor: -webkit-image-set(url(file:///foo.png) 1x, url(file:///foo2x.png) 2x), auto;" 10 PASS roundtripCssRule(`cursor: -webkit-image-set(url("file:///foo.png") 1x, url( "file:///foo2x.png") 2x), auto;`) is "cursor: -webkit-image-set(url(\"file:///fo o.png\") 1x, url(\"file:///foo2x.png\") 2x), auto;"
11 PASS roundtripCssRule("cursor: -webkit-image-set(url(file:///foo.png) 1x, url(fi le:///foo2x.png) 2x) 2 3, auto;") is "cursor: -webkit-image-set(url(file:///foo. png) 1x, url(file:///foo2x.png) 2x) 2 3, auto;" 11 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;"
12 PASS roundtripCssRule("cursor: -webkit-image-set(url(file:///foo03.png) 0.3x, ur l(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, u rl(file:///foo.png) 12 3, pointer;" 12 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 "cu rsor: -webkit-image-set(url(\"file:///foo03.png\") 0.3x, url(\"file:///foo5x.png \") 5x) 6 5, url(\"file:///foo.png\") 12 3, pointer;"
13 PASS successfullyParsed is true 13 PASS successfullyParsed is true
14 14
15 TEST COMPLETE 15 TEST COMPLETE
16 16
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698