https://github.com/mozilla/gecko-dev
Raw File
Tip revision: d00f52912761a35d6767b6fda635fec0c9fc1007 authored by ffxbld on 01 March 2016, 08:35:42 UTC
Added FIREFOX_45_0_RELEASE FIREFOX_45_0_BUILD1 tag(s) for changeset 63bad80aea6e. DONTBUILD CLOSED TREE a=release
Tip revision: d00f529
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