1
0
mirror of https://github.com/roytam1/UXP.git synced 2026-05-27 09:09:55 +00:00
Files
UXP/devtools/client/memory/test/browser/doc_steady_allocation.html
T

17 lines
338 B
HTML

<!DOCTYPE html>
<html>
<body>
<script>
var objects = window.objects = [];
var allocate = this.allocate = function allocate() {
for (var i = 0; i < 100; i++)
objects.push({});
setTimeout(allocate, 10);
}
allocate();
</script>
</body>
</html>