OLD | NEW |
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 |
OLD | NEW |