601427.html 555 B

12345678910111213141516171819202122232425262728293031
  1. <!DOCTYPE html>
  2. <html class="reftest-wait">
  3. <script>
  4. var onPaintFunctions =
  5. [
  6. function() { document.documentElement.style.MozAppearance = "treeheadersortarrow"; },
  7. function() { document.documentElement.style.position = "fixed"; },
  8. function() { document.documentElement.removeAttribute("class"); }
  9. ];
  10. var i = 0;
  11. function advance()
  12. {
  13. var f = onPaintFunctions[i++];
  14. if (f)
  15. f();
  16. }
  17. function start()
  18. {
  19. window.addEventListener("MozAfterPaint", advance, true);
  20. advance();
  21. }
  22. window.addEventListener("load", start, false);
  23. </script>
  24. </html>