mirror of
https://github.com/classilla/tenfourfox.git
synced 2026-01-26 09:16:38 +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>
|