https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 1e3d55d6cf6991077e8a8711e9a979434b596b76 authored by ffxbld on 09 May 2012, 00:45:14 UTC
Added FENNEC_13_0b3_RELEASE FENNEC_13_0b3_BUILD1 tag(s) for changeset 435a483ffd84. DONTBUILD CLOSED TREE a=release
Tip revision: 1e3d55d
css-required-dyn-4.html
<!DOCTYPE html>
<html class="reftest-wait">
  <!-- Test: Remove the required attribute from an element to make it optional. -->
  <link rel='stylesheet' type='text/css' href='css-required-style.css'>

  <script type="text/javascript">
    function removeRequired()
    {
      document.getElementById('i').removeAttribute('required');
    }
    function disableReftestWait()
    {
      document.documentElement.className = '';
    }
  </script>

  <body onload="removeRequired(); disableReftestWait();">
    <input type="text" id="i" required>
  </body>
</html>
back to top