autocomplete-isvalid.html (1777B)
1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset=utf-8> 5 <title>autocomplete attribute is valid</title> 6 </head> 7 <body> 8 9 <textarea autocomplete="on"></textarea> 10 <textarea autocomplete="off"></textarea> 11 12 <!-- country --> 13 <textarea autocomplete="country"> 14 </textarea> 15 16 <textarea autocomplete="billing country"> 17 </textarea> 18 19 <textarea autocomplete="section-blue country"> 20 </textarea> 21 22 <textarea autocomplete="section-blue billing country"> 23 </textarea> 24 25 <!-- cc-type --> 26 <textarea autocomplete="cc-type"> 27 </textarea> 28 29 <textarea autocomplete="billing cc-type"> 30 </textarea> 31 32 <textarea autocomplete="section-blue cc-type"> 33 </textarea> 34 35 <textarea autocomplete="section-blue billing cc-type"> 36 </textarea> 37 38 <!-- cc-exp-month --> 39 <textarea autocomplete="cc-exp-month"> 40 </textarea> 41 42 <textarea autocomplete="billing cc-exp-month"> 43 </textarea> 44 45 <textarea autocomplete="section-blue cc-exp-month"> 46 </textarea> 47 48 <textarea autocomplete="section-blue billing cc-exp-month"> 49 </textarea> 50 51 <!-- cc-exp-year --> 52 <textarea autocomplete="cc-exp-year"> 53 </textarea> 54 55 <textarea autocomplete="billing cc-exp-year"> 56 </textarea> 57 58 <textarea autocomplete="section-blue cc-exp-year"> 59 </textarea> 60 61 <textarea autocomplete="section-blue billing cc-exp-year"> 62 </textarea> 63 64 <!-- tel-country-code --> 65 <textarea autocomplete="work tel-country-code"> 66 </textarea> 67 68 <textarea autocomplete="billing work tel-country-code"> 69 </textarea> 70 71 <textarea autocomplete="section-blue work tel-country-code"> 72 </textarea> 73 74 <textarea autocomplete="section-blue billing work tel-country-code"> 75 </textarea> 76 77 </body> 78 </html>