bug1237236-2-ref.html (774B)
1 <!DOCTYPE HTML> 2 <html class="reftest-wait"> 3 <head> 4 <script src="/tests/SimpleTest/SimpleTest.js"></script> 5 <script src="/tests/SimpleTest/EventUtils.js"></script> 6 <meta charset="utf-8"> 7 <title>Testcase #2 for bug 1237236</title> 8 <script> 9 function test1() { 10 synthesizeKey("KEY_ArrowRight", {repeat: 4}); 11 document.body.offsetHeight; 12 document.documentElement.removeAttribute("class"); 13 } 14 function runTests() { 15 document.querySelector('pre').focus(); 16 document.body.offsetHeight; 17 } 18 </script> 19 </head> 20 <body> 21 22 <pre contenteditable tabindex=1 onfocus="setTimeout(test1, 0)" spellcheck="false">abc 23 def</pre> 24 25 <script> 26 SimpleTest.waitForFocus(runTests); 27 </script> 28 </body> 29 </html>