1
0
Fork 0
firefox/devtools/server/tests/browser/doc_allocations.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

23 lines
318 B
HTML

<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<script>
"use strict";
window.allocs = [];
window.onload = function() {
function allocator() {
for (let i = 0; i < 1000; i++) {
window.allocs.push({});
}
}
window.setInterval(allocator, 1);
};
</script>
</pre>
</body>
</html>