Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / backgrounds / size / parsing-background-size-values-expected.txt
blob58c3bc067930bcc05199bede3ee0b0e21bc793ab
1 This tests checks that all of the input values for background-size parse correctly.
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
6 PASS test("background-size: contain;") is "contain"
7 PASS test("background-size: cover;") is "cover"
8 PASS test("background-size: 100 100;") is ""
9 PASS test("background-size: 100px 100px;") is "100px 100px"
10 PASS test("background-size: auto 50px;") is "auto 50px"
11 PASS test("background-size: 50px auto;") is "50px"
12 PASS test("background-size: auto auto;") is "auto"
13 PASS test("background-size: 30% 20%;") is "30% 20%"
14 PASS test("background-size: 4em auto;") is "4em"
15 PASS test("background-size: 5em;") is "5em"
16 PASS test("-webkit-background-size: 5em ;") is "5em 5em"
17 PASS test("background-size: 100px 100px 100px;") is ""
18 PASS test("background-size: coconut;") is ""
19 PASS test("background-size: 100px,;") is ""
20 PASS test("background-size: 100px, 50%;") is "100px, 50%"
21 PASS test("-webkit-background-size: 100px, 50%;") is "100px, 50% 50%"
22 PASS test("background-size: 50% 100px, 2em, 100px 50%;") is "50% 100px, 2em, 100px 50%"
23 PASS test("-webkit-background-size: 50% 100px, 2em, 100px 50%;") is "50% 100px, 2em, 100px 50%"
24 PASS successfullyParsed is true
26 TEST COMPLETE