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

Side by Side Diff: LayoutTests/fast/backgrounds/repeat/parsing-background-repeat-expected.txt

Issue 764703002: Support unit-less lengths for white-list of properties only. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: min-width/height still accepts unitless lengths Created 5 years, 11 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 This tests checks that all of the input values for background-repeat parse corre ctly. 1 This tests checks that all of the input values for background-repeat parse corre ctly.
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 PASS test("background-repeat: repeat-x;") is "repeat-x" 6 PASS test("background-repeat: repeat-x;") is "repeat-x"
7 PASS test("background-repeat: repeat-y;") is "repeat-y" 7 PASS test("background-repeat: repeat-y;") is "repeat-y"
8 PASS test("background-repeat: repeat;") is "repeat" 8 PASS test("background-repeat: repeat;") is "repeat"
9 PASS test("background-repeat: no-repeat;") is "no-repeat" 9 PASS test("background-repeat: no-repeat;") is "no-repeat"
10 PASS test("background-repeat: round;") is "round" 10 PASS test("background-repeat: round;") is "round"
11 PASS test("background-repeat: space;") is "space" 11 PASS test("background-repeat: space;") is "space"
12 PASS test("background-repeat: repeat repeat;") is "repeat" 12 PASS test("background-repeat: repeat repeat;") is "repeat"
13 PASS test("background-repeat: no-repeat space;") is "no-repeat space" 13 PASS test("background-repeat: no-repeat space;") is "no-repeat space"
14 PASS test("background-repeat: round round;") is "round" 14 PASS test("background-repeat: round round;") is "round"
15 PASS test("background-repeat: space repeat;") is "space repeat" 15 PASS test("background-repeat: space repeat;") is "space repeat"
16 PASS test("background: purple url(resources/gradient.gif) repeat-x top left") is "repeat-x" 16 PASS test("background: purple url(resources/gradient.gif) repeat-x top left") is "repeat-x"
17 PASS test("background: purple url(resources/gradient.gif) repeat-y 50% 50%") is "repeat-y" 17 PASS test("background: purple url(resources/gradient.gif) repeat-y 50% 50%") is "repeat-y"
18 PASS test("background: purple url(resources/gradient.gif) repeat center") is "re peat" 18 PASS test("background: purple url(resources/gradient.gif) repeat center") is "re peat"
19 PASS test("background: purple url(resources/gradient.gif) no-repeat 12px") is "n o-repeat" 19 PASS test("background: purple url(resources/gradient.gif) no-repeat 12px") is "n o-repeat"
20 PASS test("background: purple url(resources/gradient.gif) round left 50") is "ro und" 20 PASS test("background: purple url(resources/gradient.gif) round left 50px") is " round"
21 PASS test("background: purple url(resources/gradient.gif) space 25 25") is "spac e" 21 PASS test("background: purple url(resources/gradient.gif) space 25px 25px") is " space"
22 PASS test("background-repeat: 45;") is null 22 PASS test("background-repeat: 45;") is null
23 PASS test("background-repeat: coconut;") is null 23 PASS test("background-repeat: coconut;") is null
24 PASS successfullyParsed is true 24 PASS successfullyParsed is true
25 25
26 TEST COMPLETE 26 TEST COMPLETE
27 27
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698