Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
michael@0 | 1 | <!DOCTYPE HTML> |
michael@0 | 2 | <html class="reftest-wait"> |
michael@0 | 3 | <head> |
michael@0 | 4 | <title>bug 536421</title> |
michael@0 | 5 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
michael@0 | 6 | </head> |
michael@0 | 7 | <body onload="doTest()"> |
michael@0 | 8 | <input value="test" id="textbox" onfocus="triggerBug();" type="text"> |
michael@0 | 9 | <script type="text/javascript"> |
michael@0 | 10 | function finishTest() |
michael@0 | 11 | { |
michael@0 | 12 | document.documentElement.removeAttribute("class"); |
michael@0 | 13 | } |
michael@0 | 14 | function triggerBug() |
michael@0 | 15 | { |
michael@0 | 16 | finishTest(); |
michael@0 | 17 | } |
michael@0 | 18 | function doTest() |
michael@0 | 19 | { |
michael@0 | 20 | var t = document.getElementById("textbox"); |
michael@0 | 21 | t.focus(); |
michael@0 | 22 | } |
michael@0 | 23 | </script> |
michael@0 | 24 | </body> |
michael@0 | 25 | </html> |