summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/568441.html
blob: ae7ad552203ab873a719f286649f0604cc8a20c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE>
<html class="reftest-wait">
  <script>
    function onfocusHandler()
    {
      i.disabled = true;
      i.disabled = false;
      document.documentElement.className = '';
    }
  </script>
  <body onload="document.getElementById('i').focus();">
    <input id='i' onfocus='setTimeout(onfocusHandler,0);'>
  </body>
</html>