diff options
Diffstat (limited to 'testing/web-platform/tests/conformance-checkers/select/autocomplete-address-novalid.html')
-rw-r--r-- | testing/web-platform/tests/conformance-checkers/select/autocomplete-address-novalid.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/testing/web-platform/tests/conformance-checkers/select/autocomplete-address-novalid.html b/testing/web-platform/tests/conformance-checkers/select/autocomplete-address-novalid.html new file mode 100644 index 0000000000..7e4087ab37 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/select/autocomplete-address-novalid.html @@ -0,0 +1,20 @@ +<!DOCTYPE html> +<html lang="en"> +<head> +<meta charset=utf-8> +<title>autocomplete attribute is invalid</title> +</head> +<body> + + <!-- address type must come before field type --> + <select autocomplete="country shipping"> + <option>US</option> + <option>France</option> + <option>UK</option> + <option>Japan</option> + </select> + +</body> +</html> + + |