tor-browser

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

autocomplete-work-novalid.html (365B)


      1 <!DOCTYPE html>
      2 <html lang="en">
      3 <head>
      4 <meta charset=utf-8>
      5 <title>autocomplete attribute is invalid</title>
      6 </head>
      7 <body>
      8 
      9    <!-- work must come before field type -->
     10    <select autocomplete="country work">
     11        <option>US</option>
     12        <option>France</option>
     13        <option>UK</option>
     14        <option>Japan</option>
     15    </select>
     16 
     17 </body>
     18 </html>