16 lines
262 B
HTML
16 lines
262 B
HTML
<!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 -->
|
|
<textarea autocomplete="country shipping">
|
|
</textarea>
|
|
|
|
</body>
|
|
</html>
|
|
|
|
|