https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 63254fa16f70a245e6d33bfd4bcc94018c1b300b authored by ffxbld on 14 February 2017, 01:04:26 UTC
Added FENNEC_51_0_4_RELEASE FENNEC_51_0_4_BUILD1 tag(s) for changeset a622e89121a7. DONTBUILD CLOSED TREE a=release
Tip revision: 63254fa
input-minlength-valid-before-change.html
<!DOCTYPE HTML>
<html>
  <!-- Test: input with minlength is valid until the user edits it, even if it's too short -->
  <head>
    <style>
      :valid { background-color:green; }
      :invalid { background-color:red; }
      * { background-color:white; }
    </style>
  </head>
  <body onload="document.documentElement.className=''">
    <input id="input" minlength="5" value="foo">
  </body>
</html>

back to top