Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / range / ValidityState-stepMismatch-range-expected.txt
blobbb6743599c9cce56d9da0652d2f6c3d2db701544
1 Check stepMismatch results for type=range.
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
6 Empty values
7 PASS stepMismatchFor("", null, null) is false
8 PASS stepMismatchFor("", "1.0", "0.1") is false
9 Integers
10 PASS stepMismatchFor("1", "2", "0") is false
11 PASS stepMismatchFor("-3", "2", "-4") is false
12 PASS input.max = "5"; stepMismatchFor("5", "3", "0") is false
13 PASS input.value is "3"
14 Invalid step values
15 PASS stepMismatchFor("-3", "-2", "-4") is false
16 PASS stepMismatchFor("-3", null, "-4") is false
17 PASS stepMismatchFor("-3", undefined, "-4") is false
18 Huge numbers and small step; uncomparable
19 PASS stepMismatchFor("3.40282347e+38", "3", "") is false
20 PASS stepMismatchFor("3.40282346e+38", "3", "") is false
21 PASS stepMismatchFor("3.40282345e+38", "3", "") is false
22 Huge numbers and huge step
23 PASS stepMismatchFor("3.20e+38", "0.20e+38", "") is false
24 PASS stepMismatchFor("3.20e+38", "0.22e+38", "") is false
25 Fractional numbers
26 PASS stepMismatchFor("0.9", "0.1", "") is false
27 PASS stepMismatchFor("0.9", "0.1000001", "") is false
28 PASS stepMismatchFor("0.9", "0.1000000000000001", "") is false
29 PASS stepMismatchFor("1.0", "0.3333333333333333", "") is false
30 Disabled
31 PASS stepMismatchFor("1", "2", "0", true) is false
32 PASS successfullyParsed is true
34 TEST COMPLETE