https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 8091ee5004dc6abf2a53cbfaaafc810fee24d360 authored by ffxbld on 30 November 2016, 02:29:08 UTC
Added FENNEC_50_0_2_RELEASE FENNEC_50_0_2_BUILD1 tag(s) for changeset ce8c24de5d25. DONTBUILD CLOSED TREE a=release
Tip revision: 8091ee5
fieldset-add-valid-with-no-element.html
<!DOCTYPE html>
<!--fieldset with no valid element and another valid one is added dynamically -->
<html class='reftest-wait'>
  <head>
    <style>
      fieldset:valid { display: none; }
    </style>
  </head>
  <script>
    function onloadHandler()
    {
      document.getElementById("fieldset").appendChild(document.getElementById('i'));
      document.documentElement.className = '';
    }
  </script>
  <body onload='onloadHandler();'>
    <input id='i' type='text' value='foo'>
    <fieldset id="fieldset">
    </fieldset>
  </body>
</html>
back to top