OLD | NEW |
(Empty) | |
| 1 This tests checks that all of the input values for -webkit-object-fit parse corr
ectly. |
| 2 |
| 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". |
| 4 |
| 5 |
| 6 PASS testComputedStyle(";") is "fill" |
| 7 PASS test("object-fit: inherit;") is "inherit" |
| 8 PASS test("object-fit: initial;") is "initial" |
| 9 PASS test("object-fit: fill;") is "fill" |
| 10 PASS test("object-fit: contain;") is "contain" |
| 11 PASS test("object-fit: cover;") is "cover" |
| 12 PASS test("object-fit: none;") is "none" |
| 13 PASS test("object-fit: scale-down;") is "scale-down" |
| 14 PASS test("object-fit: fill contain;") is null |
| 15 PASS test("object-fit: bananas;") is null |
| 16 PASS test("object-fit: 23px;") is null |
| 17 PASS test("object-fit: 20%;") is null |
| 18 PASS successfullyParsed is true |
| 19 |
| 20 TEST COMPLETE |
| 21 |
OLD | NEW |