OLD | NEW |
1 This tests that the 'autocomplete' attribute of form and input elements is bound
to a JavaScript property. | 1 This tests that the 'autocomplete' attribute of form and input elements is bound
to a JavaScript property. |
2 | 2 |
| 3 PASS successfullyParsed is true |
| 4 |
| 5 TEST COMPLETE |
3 PASS ('autocomplete' in form) is true | 6 PASS ('autocomplete' in form) is true |
4 PASS ('autocomplete' in field) is true | 7 PASS ('autocomplete' in field) is true |
5 PASS form.getAttribute('autocomplete') is null | 8 PASS form.getAttribute('autocomplete') is null |
6 PASS field.getAttribute('autocomplete') is null | 9 PASS field.getAttribute('autocomplete') is null |
7 PASS form.autocomplete is "" | 10 PASS form.autocomplete is "" |
8 PASS field.autocomplete is "" | 11 PASS field.autocomplete is "" |
9 PASS form.getAttribute('autocomplete') is "off" | 12 PASS form.getAttribute('autocomplete') is "off" |
10 PASS field.getAttribute('autocomplete') is "off" | 13 PASS field.getAttribute('autocomplete') is "off" |
11 PASS form.autocomplete is "on" | 14 PASS form.autocomplete is "on" |
12 PASS field.autocomplete is "on" | 15 PASS field.autocomplete is "on" |
13 PASS successfullyParsed is true | |
14 | 16 |
15 TEST COMPLETE | |
16 | |
OLD | NEW |