doc_allocs.html 552 B

123456789101112131415161718192021222324252627
  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. const allocs = [];
  13. function test() {
  14. for (let i = 0; i < 10; i++) {
  15. allocs.push({});
  16. }
  17. }
  18. // Prevent this script from being garbage collected.
  19. window.setInterval(test, 1);
  20. </script>
  21. </body>
  22. </html>