summaryrefslogtreecommitdiffstats
path: root/layout/base/tests/bug1007065-1.html
blob: 174ffb888b4871e5b33b48ec02fa098eef45b576 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<html class="reftest-wait">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  </head>
  <body onload="start()">
    <input type="text" style="text-align:right; overflow:hidden; border-width:0;">
    <script>
      function start() {
        var input = document.querySelector("input");
        input.focus();
        document.documentElement.removeAttribute("class");
      }
    </script>
  </body>
</html>