summaryrefslogtreecommitdiffstats
path: root/editor/reftests/input-text-notheme-onfocus-reframe-ref.html
blob: e97f55f1602e68b1d1be440be42be921e6e181f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE HTML>
<html class="reftest-wait">
<head>
	<title>bug 536421</title>
	<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<style>
input { border:1px solid blue; }
</style>
</head>
<body onload="doTest()">
  <input value="test" id="textbox" onfocus="triggerBug();" type="text">
  <script type="text/javascript">
    function finishTest()
    {
      document.documentElement.removeAttribute("class");
    }
    function triggerBug()
    {
      finishTest();
    }
    function doTest()
    {
      var t = document.getElementById("textbox");
      t.focus();
    }
  </script>
</body>
</html>