Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / number / number-validation-message-expected.txt
blobe41ce4722584373181e0fac10541f9f60a0b1391
1 Test for validationMessage IDL attribute for <input type=number>
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
6 No message
7 PASS testIt("", "", "") is ""
8 Value missing
9 PASS testIt("", "", "") is "Please fill out this field."
10 Type mismatch
11 PASS testIt("foo", "", "") is ""
12 Range overflow
13 PASS testIt("200", "", "100") is "Value must be less than or equal to 100."
14 PASS testIt("200", "", "100.4") is "Value must be less than or equal to 100,4."
15 PASS testIt("200", "", "100") is "Value must be less than or equal to ١٠٠."
16 Range underflow
17 PASS testIt("10", "50", "100") is "Value must be greater than or equal to 50."
18 PASS testIt("10", "50", "100") is "Value must be greater than or equal to ٥٠."
19 Step mismatch
20 PASS testIt("55", "0", "100", "10") is "Please enter a valid value. The two nearest valid values are 50 and 60."
21 PASS successfullyParsed is true
23 TEST COMPLETE