https://github.com/mozilla/gecko-dev
Raw File
Tip revision: cf369d4e95a1230f82a8192d98fb6fa1c8054b57 authored by ffxbld on 28 March 2015, 10:32:56 UTC
No bug, Automated HSTS preload list update from host bld-linux64-spot-1001 - a=hsts-update
Tip revision: cf369d4
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