https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 9d6a6b37dd4bfa2dc5bf04d3c4c8f2db74607152 authored by ffxbld on 20 February 2013, 13:03:16 UTC
Added FIREFOX_20_0b1_RELEASE FIREFOX_20_0b1_BUILD1 tag(s) for changeset 3324030359a4. DONTBUILD CLOSED TREE a=release
Tip revision: 9d6a6b3
css-required-dyn-5.html
<!DOCTYPE html>
<html class="reftest-wait">
  <!-- Test: Add the required attribute to an element to make it required. -->
  <link rel='stylesheet' type='text/css' href='css-required-style-2.css'>

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

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