tor-browser

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

textarea-maxlength-valid-before-change.html (414B)


      1 <!DOCTYPE HTML>
      2 <html>
      3  <!-- Test: textarea 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    <textarea id="textarea" maxlength="2">foo</textarea>
     13  </body>
     14 </html>