https://github.com/mozilla/gecko-dev
Raw File
Tip revision: d00534b0ad1d32cf7ed204a458eed53a5dcf5cc7 authored by Till Schneidereit on 23 April 2013, 11:58:24 UTC
Bug 851788 - prevent jsd_SetExecutionHook from operating on self-hosted functions. a=philor
Tip revision: d00534b
css-required-dyn-3.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.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