OLD | NEW |
1 <!-- Whitespace should be trimmed; case should be normalized. --> | 1 <!-- Whitespace should be trimmed; case should be normalized. --> |
2 <form action="autocompletetype.html" method="post"> | 2 <form action="autocompletetype.html" method="post"> |
3 <input id="1.n" autocomplete=" NAME "><br> | 3 <input id="1.n" autocomplete=" NAME "><br> |
4 <input id="1.e" autocomplete=" WoRk eMaIl"><br> | 4 <input id="1.e" autocomplete=" WoRk eMaIl"><br> |
5 <input id="1.a" autocomplete=" SECTION-one SHIPping street-address» "><br> | 5 <input id="1.a" autocomplete=" SECTION-one SHIPping address-line1» "><br> |
6 </form> | 6 </form> |
7 | 7 |
8 <!-- The presence of at least one type hint should disable all other forms of | 8 <!-- The presence of at least one type hint should disable all other forms of |
9 heuristics. --> | 9 heuristics. --> |
10 <form action="autocompletetype.html" method="post"> | 10 <form action="autocompletetype.html" method="post"> |
11 <input id="2.name"><br> | 11 <input id="2.name"><br> |
12 <input id="2.email"><br> | 12 <input id="2.email"><br> |
13 <input id="2.t" autocomplete="tel"><br> | 13 <input id="2.t" autocomplete="tel"><br> |
14 <input id="2.address"><br> | 14 <input id="2.address"><br> |
15 </form> | 15 </form> |
16 | 16 |
17 <!-- This is true even if the attribute value is invalid. --> | 17 <!-- This is true even if the attribute value is invalid. --> |
18 <form action="autocompletetype.html" method="post"> | 18 <form action="autocompletetype.html" method="post"> |
19 <input id="3.name"><br> | 19 <input id="3.name"><br> |
20 <input id="3.email"><br> | 20 <input id="3.email"><br> |
21 <input id="3.o" autocomplete="other"><br> | 21 <input id="3.o" autocomplete="other"><br> |
22 <input id="3.address"><br> | 22 <input id="3.address"><br> |
23 </form> | 23 </form> |
24 | 24 |
25 <!-- But special values like "on" or "off" should have no effect. --> | 25 <!-- But special values like "on" or "off" should have no effect. --> |
26 <form action="autocompletetype.html" method="post"> | 26 <form action="autocompletetype.html" method="post"> |
27 <input id="4.phone"><br> | 27 <input id="4.phone"><br> |
28 <input id="4.email"><br> | 28 <input id="4.email"><br> |
29 <input id="4.a" autocomplete="on"><br> | 29 <input id="4.a" autocomplete="on"><br> |
30 <input id="4.b" autocomplete="oFf "><br> | 30 <input id="4.b" autocomplete="oFf "><br> |
31 <input id="4.c" autocomplete=""><br> | 31 <input id="4.c" autocomplete=""><br> |
32 <input id="4.city"><br> | 32 <input id="4.city"><br> |
33 </form> | 33 </form> |
OLD | NEW |