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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/css/image-set-parsing-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 -webkit-image-set function. 1 Test the parsing of the -webkit-image-set function.
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 6
7 Single value for background-image : url(#a) 1x 7 Single value for background-image : url("#a") 1x
8 PASS result is "-webkit-image-set(url(#a) 1x)" 8 PASS result is "-webkit-image-set(url(\"#a\") 1x)"
9 9
10 Multiple values for background-image : url(#a) 1x, url(#b) 2x 10 Multiple values for background-image : url("#a") 1x, url("#b") 2x
11 PASS result is "-webkit-image-set(url(#a) 1x, url(#b) 2x)" 11 PASS result is "-webkit-image-set(url(\"#a\") 1x, url(\"#b\") 2x)"
12 12
13 Multiple values for background-image, out of order : url(#c) 3x, url(#b) 2x, url (#a) 1x 13 Multiple values for background-image, out of order : url("#c") 3x, url("#b") 2x, url("#a") 1x
14 PASS result is "-webkit-image-set(url(#c) 3x, url(#b) 2x, url(#a) 1x)" 14 PASS result is "-webkit-image-set(url(\"#c\") 3x, url(\"#b\") 2x, url(\"#a\") 1x )"
15 15
16 Single value for content : url(#a) 1x 16 Single value for content : url("#a") 1x
17 PASS result is "-webkit-image-set(url(#a) 1x)" 17 PASS result is "-webkit-image-set(url(\"#a\") 1x)"
18 18
19 Multiple values for content : url(#a) 1x, url(#b) 2x 19 Multiple values for content : url("#a") 1x, url("#b") 2x
20 PASS result is "-webkit-image-set(url(#a) 1x, url(#b) 2x)" 20 PASS result is "-webkit-image-set(url(\"#a\") 1x, url(\"#b\") 2x)"
21 21
22 Single value for border-image : url(#a) 1x 22 Single value for border-image : url("#a") 1x
23 PASS result is "-webkit-image-set(url(#a) 1x)" 23 PASS result is "-webkit-image-set(url(\"#a\") 1x)"
24 24
25 Multiple values for border-image : url(#a) 1x, url(#b) 2x 25 Multiple values for border-image : url("#a") 1x, url("#b") 2x
26 PASS result is "-webkit-image-set(url(#a) 1x, url(#b) 2x)" 26 PASS result is "-webkit-image-set(url(\"#a\") 1x, url(\"#b\") 2x)"
27 27
28 Single value for -webkit-mask-box-image-source : url(#a) 1x 28 Single value for -webkit-mask-box-image-source : url("#a") 1x
29 PASS result is "-webkit-image-set(url(#a) 1x)" 29 PASS result is "-webkit-image-set(url(\"#a\") 1x)"
30 30
31 Multiple values for -webkit-mask-box-image-source : url(#a) 1x, url(#b) 2x 31 Multiple values for -webkit-mask-box-image-source : url("#a") 1x, url("#b") 2x
32 PASS result is "-webkit-image-set(url(#a) 1x, url(#b) 2x)" 32 PASS result is "-webkit-image-set(url(\"#a\") 1x, url(\"#b\") 2x)"
33 PASS successfullyParsed is true 33 PASS successfullyParsed is true
34 34
35 TEST COMPLETE 35 TEST COMPLETE
36 36
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698