https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 9df0be271edf06f4c4978268a7d73c4cea47230b authored by ffxbld on 28 October 2015, 00:02:50 UTC
Added FIREFOX_38_4_0esr_RELEASE FIREFOX_38_4_0esr_BUILD2 tag(s) for changeset 6afcba951b0f. DONTBUILD CLOSED TREE a=release
Tip revision: 9df0be2
fieldset-dynamic-invalid-barred.html
<!DOCTYPE html>
<!-- fieldset with one invalid element and dynamically made it element with
barred constraints -->
<html class='reftest-wait'>
  <head>
    <style>
      fieldset:valid { display: none; }
    </style>
  </head>
  <script>
    function onloadHandler()
    {
      document.getElementById('i').readOnly = true;
      document.documentElement.className = '';
    }
  </script>
  <body onload='onloadHandler();'>
    <fieldset id="fieldset">
      <input id='i' required>
    </fieldset>
  </body>
</html>
back to top