summaryrefslogtreecommitdiffstats
path: root/dom/html/reftests/autofocus/select-create.html
blob: fd9c29c954f3475b1bd2a138d3258844c0dc10df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html class="reftest-wait">
  <link rel='stylesheet' type='text/css' href='style.css'>
  <body>
    <script>
      var body = document.body;

      var i = document.createElement('select');
      i.autofocus = false;
      body.appendChild(i);

      i = document.createElement('select');
      i.autofocus = true;
      i.onfocus = function() { setTimeout(document.documentElement.removeAttribute('class'), 0); };
      body.appendChild(i);

      i = document.createElement('select');
      i.autofocus = true;
      i.onfocus = function() { setTimeout(document.documentElement.removeAttribute('class'), 0); };
      body.appendChild(i);
    </script>
  </body>
</html>