summaryrefslogtreecommitdiffstats
path: root/editor/reftests/input-text-onfocus-reframe.html
blob: 339ef95c66578982f7ebfa749d82c2f0031992d1 (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
29
<!DOCTYPE HTML>
<html class="reftest-wait">
<head>
	<title>bug 536421</title>
	<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</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()
    {
      var t = document.getElementById("textbox");
      t.style.display = "none";
      document.body.offsetWidth;
      t.style.display = "";
      finishTest();
    }
    function doTest()
    {
      var t = document.getElementById("textbox");
      t.focus();
    }
  </script>
</body>
</html>