https://github.com/mozilla/gecko-dev
Raw File
Tip revision: bf0ccace8b671cc93a381640eaa75ed025427239 authored by ffxbld on 19 November 2015, 10:46:23 UTC
Added FENNEC_42_0_1_RELEASE FENNEC_42_0_1_BUILD1 tag(s) for changeset a73c4abecdd0. DONTBUILD CLOSED TREE a=release
Tip revision: bf0ccac
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