https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 089de372071771ee4875646bb6edd8e2a9757446 authored by ffxbld on 03 May 2015, 22:07:44 UTC
Added FIREFOX_38_0_RELEASE FIREFOX_38_0_BUILD1 tag(s) for changeset cadca20b227a. DONTBUILD CLOSED TREE a=release
Tip revision: 089de37
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