dynamic-text-1b.html 447 B

123456789101112131415161718192021
  1. <!DOCTYPE html>
  2. <html class="reftest-wait">
  3. <head>
  4. <body style="white-space:pre"> FG
  5. JK
  6. <script>
  7. document.body.offsetTop;
  8. var t = document.body.firstChild;
  9. var sel = window.getSelection();
  10. sel.collapse(t, 1);
  11. sel.extend(t, 3);
  12. function doTest() {
  13. t.insertData(0, ' BC \n');
  14. document.documentElement.removeAttribute('class');
  15. }
  16. document.addEventListener("MozReftestInvalidate", doTest, false);
  17. </script>
  18. </body>
  19. </html>