tor-browser

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

input-maxlength-valid-before-change.html (403B)


      1 <!DOCTYPE HTML>
      2 <html>
      3  <!-- Test: input with maxlength is valid until the user edits it, even if it's too long -->
      4  <head>
      5    <style>
      6      :valid { background-color:green; }
      7      :invalid { background-color:red; }
      8      * { background-color:white; }
      9    </style>
     10  </head>
     11  <body onload="document.documentElement.className=''">
     12    <input id="input" maxlength="2" value="foo">
     13  </body>
     14 </html>