https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 44eea8cdbec29781b472cb1b0a62d261bb427a32 authored by calbld on 23 September 2011, 11:56:53 UTC
Added tag CALENDAR_1_0b7_RELEASE for changeset 273977a2c0ea. CLOSED TREE a=release
Tip revision: 44eea8c
css-required-dyn-2.html
<!DOCTYPE html>
<html class="reftest-wait">
  <!-- Test: Change an input element from required type
             to a non-required type. -->
  <link rel='stylesheet' type='text/css' href='css-required-style.css'>

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

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