summaryrefslogtreecommitdiffstats
path: root/dom/html/reftests/autofocus/select-load.html
blob: 976005bec23f2a3cba937c1d070bd4db92ea06e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<!DOCTYPE html>
<html class="reftest-wait">
  <link rel='stylesheet' type='text/css' href='style.css'>
  <script>
    function focusHandler()
    {
      setTimeout(document.documentElement.removeAttribute('class'), 0);
    }
  </script>
  <body>
    <select></select><select autofocus onfocus="focusHandler();"></select><select autofocus onfocus="focusHandler();"></select>
  </body>
</html>