OLD | NEW |
1 set value attribute that violates maxlength (with pasted value) | 1 set value attribute that violates maxlength (with pasted value) |
2 PASS domValueOf('f') is '123' | 2 PASS domValueOf('f') is '123' |
3 PASS visibleValueOf('f') is '123' | 3 PASS visibleValueOf('f') is '123' |
4 set value property that violates maxlength (with pasted value) | 4 set value property that violates maxlength (with pasted value) |
5 PASS domValueOf('e') is '12345' | 5 PASS domValueOf('e') is '12345' |
6 PASS visibleValueOf('e') is '12345' | 6 PASS visibleValueOf('e') is '12345' |
7 set maxlength attribute that is smaller than pasted value | 7 set maxlength attribute that is smaller than pasted value |
8 PASS domValueOf('d') is '12345' | 8 PASS domValueOf('d') is '12345' |
9 PASS visibleValueOf('d') is '12345' | 9 PASS visibleValueOf('d') is '12345' |
10 set maxLength property that is smaller than pasted value | 10 set maxLength property that is smaller than pasted value |
(...skipping 16 matching lines...) Expand all Loading... |
27 PASS visibleValueOf('k') is '12' + fancyX + '4' | 27 PASS visibleValueOf('k') is '12' + fancyX + '4' |
28 pasting too much text with maxlength=0 | 28 pasting too much text with maxlength=0 |
29 PASS domValueOf('l') is '' | 29 PASS domValueOf('l') is '' |
30 PASS visibleValueOf('l') is '' | 30 PASS visibleValueOf('l') is '' |
31 empty maxlength should be ignored. | 31 empty maxlength should be ignored. |
32 PASS domValueOf('m') is '12' + fancyX + '45' | 32 PASS domValueOf('m') is '12' + fancyX + '45' |
33 PASS visibleValueOf('m') is '12' + fancyX + '45' | 33 PASS visibleValueOf('m') is '12' + fancyX + '45' |
34 invalid maxlength should be ignored. | 34 invalid maxlength should be ignored. |
35 PASS domValueOf('n') is '12' + fancyX + '45' | 35 PASS domValueOf('n') is '12' + fancyX + '45' |
36 PASS visibleValueOf('n') is '12' + fancyX + '45' | 36 PASS visibleValueOf('n') is '12' + fancyX + '45' |
| 37 PASS domValueOf('huge') is '12' + fancyX + '45' |
| 38 PASS visibleValueOf('huge') is '12' + fancyX + '45' |
37 PASS successfullyParsed is true | 39 PASS successfullyParsed is true |
38 | 40 |
39 TEST COMPLETE | 41 TEST COMPLETE |
40 | 42 |
OLD | NEW |