https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 3cd70cf272437edf2cde2c8112891d3e1110279a authored by ffxbld on 21 December 2015, 21:03:35 UTC
Added FIREFOX_43_0_2_RELEASE FIREFOX_43_0_2_BUILD1 tag(s) for changeset 937ac46261e2. DONTBUILD CLOSED TREE a=release
Tip revision: 3cd70cf
fieldset-add-invalid-barred.html
<!DOCTYPE html>
<!-- fieldset with invalid barred for constraint validation element -->
<html>
  <head>
    <style>
      fieldset:valid { display: none ;}
    </style>
    <script>
      function onloadHandler()
      {
        document.getElementById("fieldset").appendChild(document.getElementById('i'));
        document.documentElement.className = '';
      }
    </script>
  </head>
  <body onload="onloadHandler();">
    <input required readonly id="i">
    <fieldset id="fieldset">
    </fieldset>
  </body>
</html>

back to top