| This tests that the 'autocomplete' attribute of form and input elements is bound to a JavaScript property. | |
| PASS ('autocomplete' in form) is true | |
| PASS ('autocomplete' in field) is true | |
| PASS form.getAttribute('autocomplete') is null | |
| PASS field.getAttribute('autocomplete') is null | |
| PASS form.autocomplete is "" | |
| PASS field.autocomplete is "" | |
| PASS form.getAttribute('autocomplete') is "off" | |
| PASS field.getAttribute('autocomplete') is "off" | |
| PASS form.autocomplete is "on" | |
| PASS field.autocomplete is "on" | |