1
0
Fork 0
firefox/testing/web-platform/tests/conformance-checkers/textarea/autocomplete-isvalid.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

80 lines
1.7 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset=utf-8>
<title>autocomplete attribute is valid</title>
</head>
<body>
<textarea autocomplete="on"></textarea>
<textarea autocomplete="off"></textarea>
<!-- country -->
<textarea autocomplete="country">
</textarea>
<textarea autocomplete="billing country">
</textarea>
<textarea autocomplete="section-blue country">
</textarea>
<textarea autocomplete="section-blue billing country">
</textarea>
<!-- cc-type -->
<textarea autocomplete="cc-type">
</textarea>
<textarea autocomplete="billing cc-type">
</textarea>
<textarea autocomplete="section-blue cc-type">
</textarea>
<textarea autocomplete="section-blue billing cc-type">
</textarea>
<!-- cc-exp-month -->
<textarea autocomplete="cc-exp-month">
</textarea>
<textarea autocomplete="billing cc-exp-month">
</textarea>
<textarea autocomplete="section-blue cc-exp-month">
</textarea>
<textarea autocomplete="section-blue billing cc-exp-month">
</textarea>
<!-- cc-exp-year -->
<textarea autocomplete="cc-exp-year">
</textarea>
<textarea autocomplete="billing cc-exp-year">
</textarea>
<textarea autocomplete="section-blue cc-exp-year">
</textarea>
<textarea autocomplete="section-blue billing cc-exp-year">
</textarea>
<!-- tel-country-code -->
<textarea autocomplete="work tel-country-code">
</textarea>
<textarea autocomplete="billing work tel-country-code">
</textarea>
<textarea autocomplete="section-blue work tel-country-code">
</textarea>
<textarea autocomplete="section-blue billing work tel-country-code">
</textarea>
</body>
</html>