OLD | NEW |
1 Check stepUp() and stepDown() behavior for type=date. | 1 Check stepUp() and stepDown() behavior for type=date. |
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 Invalid value | 6 Invalid value |
7 PASS stepUp("", null, null) is "1970-01-02" | 7 PASS stepUp("", null, null) is "1970-01-02" |
8 PASS stepDown("", null, null) is "1969-12-31" | 8 PASS stepDown("", null, null) is "1969-12-31" |
9 Non-number arguments | 9 Non-number arguments |
10 PASS stepUp("2010-02-10", null, null, "0") is "2010-02-10" | 10 PASS stepUp("2010-02-10", null, null, "0") is "2010-02-10" |
11 PASS stepDown("2010-02-10", null, null, "0") is "2010-02-10" | 11 PASS stepDown("2010-02-10", null, null, "0") is "2010-02-10" |
12 PASS stepUp("2010-02-10", null, null, "foo") is "2010-02-10" | 12 PASS stepUp("2010-02-10", null, null, "foo") is "2010-02-10" |
13 PASS stepDown("2010-02-10", null, null, "foo") is "2010-02-10" | 13 PASS stepDown("2010-02-10", null, null, "foo") is "2010-02-10" |
14 PASS stepUp("2010-02-10", null, null, null) is "2010-02-10" | 14 PASS stepUp("2010-02-10", null, null, null) is "2010-02-10" |
15 PASS stepDown("2010-02-10", null, null, null) is "2010-02-10" | 15 PASS stepDown("2010-02-10", null, null, null) is "2010-02-10" |
16 Normal cases | 16 Normal cases |
17 PASS stepDown("1970-01-04", "2", null) is "1970-01-03" | 17 PASS stepDown("1970-01-04", "2", null) is "1970-01-03" |
18 PASS stepUp("2010-02-10", null, null) is "2010-02-11" | 18 PASS stepUp("2010-02-10", null, null) is "2010-02-11" |
19 PASS stepDown("2010-02-10", null, null) is "2010-02-09" | 19 PASS stepDown("2010-02-10", null, null) is "2010-02-09" |
20 PASS stepUp("2010-02-10", null, null, 10) is "2010-02-20" | 20 PASS stepUp("2010-02-10", null, null, 10) is "2010-02-20" |
21 PASS stepDown("2010-02-10", null, null, 11) is "2010-01-30" | 21 PASS stepDown("2010-02-10", null, null, 11) is "2010-01-30" |
22 PASS stepUp("1970-01-01", "4", null, 2) is "1970-01-09" | 22 PASS stepUp("1970-01-01", "4", null, 2) is "1970-01-09" |
23 PASS stepDown("1970-01-01", "4", null, 3) is "1969-12-20" | 23 PASS stepDown("1970-01-01", "4", null, 3) is "1969-12-20" |
24 Step=any | 24 Step=any |
25 PASS stepUp("2010-02-10", "any", null) threw exception InvalidStateError: Failed
to execute 'stepUp' on 'HTMLInputElement': This form element does not have an a
llowed value step.. | 25 PASS stepUp("2010-02-10", "any", null) threw exception InvalidStateError: Failed
to execute 'stepUp' on 'HTMLInputElement': This form element does not have an a
llowed value step.. |
26 PASS stepDown("2010-02-10", "any", null) threw exception InvalidStateError: Fail
ed to execute 'stepDown' on 'HTMLInputElement': This form element does not have
an allowed value step.. | 26 PASS stepDown("2010-02-10", "any", null) threw exception InvalidStateError: Fail
ed to execute 'stepDown' on 'HTMLInputElement': This form element does not have
an allowed value step.. |
27 Overflow/underflow | 27 Overflow/underflow |
28 PASS stepUp("2010-02-10", "3.40282346e+38", null) is "275760-09-13" | 28 FAIL stepUp("2010-02-10", "3.40282346e+38", null) should be 2010-02-10. Was 1970
-01-01. |
29 PASS stepDown("2010-02-10", "3.40282346e+38", null) is "1970-01-01" | 29 FAIL stepDown("2010-02-10", "3.40282346e+38", null) should be 2010-02-10. Was 19
70-01-01. |
30 PASS stepUp("2010-02-10", "1", "2010-02-10") is "2010-02-10" | 30 PASS stepUp("2010-02-10", "1", "2010-02-10") is "2010-02-10" |
31 PASS stepDown("2010-02-10", "1", "2010-02-10") is "2010-02-10" | 31 PASS stepDown("2010-02-10", "1", "2010-02-10") is "2010-02-10" |
32 | 32 |
33 PASS successfullyParsed is true | 33 PASS successfullyParsed is true |
34 | 34 |
35 TEST COMPLETE | 35 TEST COMPLETE |
36 | 36 |
OLD | NEW |