doc_simple-test.html 615 B

12345678910111213141516171819202122232425262728
  1. <!-- Any copyright is dedicated to the Public Domain.
  2. http://creativecommons.org/publicdomain/zero/1.0/ -->
  3. <!doctype html>
  4. <html>
  5. <head>
  6. <meta charset="utf-8"/>
  7. <title>Performance test page</title>
  8. </head>
  9. <body>
  10. <script type="text/javascript">
  11. "use strict";
  12. let x = 1;
  13. function test() {
  14. document.body.style.borderTop = x + "px solid red";
  15. x = 1 ^ x;
  16. // flush pending reflows
  17. document.body.innerHeight;
  18. }
  19. // Prevent this script from being garbage collected.
  20. window.setInterval(test, 1);
  21. </script>
  22. </body>
  23. </html>