mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-05-27 13:38:26 +00:00
17 lines
338 B
HTML
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>
|