tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

autocomplete-text-isvalid.html (1271B)


      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    <!-- country -->
     10    <input autocomplete="country">
     11    <input autocomplete="billing country">
     12    <input autocomplete="section-blue country">
     13    <input autocomplete="section-blue billing country">
     14 
     15    <!-- cc-type -->
     16    <input autocomplete="cc-type">
     17    <input autocomplete="billing cc-type">
     18    <input autocomplete="section-blue cc-type">
     19    <input autocomplete="section-blue billing cc-type">
     20 
     21    <!-- cc-exp-month -->
     22    <input autocomplete="cc-exp-month">
     23    <input autocomplete="billing cc-exp-month">
     24    <input autocomplete="section-blue cc-exp-month">
     25    <input autocomplete="section-blue billing cc-exp-month">
     26 
     27    <!-- cc-exp-year -->
     28    <input autocomplete="cc-exp-year">
     29    <input autocomplete="billing cc-exp-year">
     30    <input autocomplete="section-blue cc-exp-year">
     31    <input autocomplete="section-blue billing cc-exp-year">
     32    <!-- tel-country-code -->
     33    <input autocomplete="work tel-country-code">
     34    <input autocomplete="billing work tel-country-code">
     35    <input autocomplete="section-blue work tel-country-code">
     36    <input autocomplete="section-blue billing work tel-country-code">
     37 
     38 </body>
     39 </html>