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