bug1237236-2.html (811B)
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 document.body.offsetHeight; 11 document.documentElement.removeAttribute("class"); 12 } 13 function runTests() { 14 var pre = document.querySelector('pre'); 15 window.getSelection().collapse(pre.firstChild, 4/*after the newline*/) 16 pre.focus(); 17 document.body.offsetHeight; 18 } 19 </script> 20 </head> 21 <body> 22 23 <pre contenteditable tabindex=1 onfocus="test1()" spellcheck="false">abc 24 def</pre> 25 26 <script> 27 SimpleTest.waitForFocus(runTests); 28 </script> 29 </body> 30 </html>