https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 917079928307fcb4a5d8744e3cad5c8db541e08d authored by B2G Bumper Bot on 11 September 2015, 10:15:46 UTC
Bumping manifests a=b2g-bump
Tip revision: 9170799
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