mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-17 18:03:06 +09:00
16 lines
338 B
HTML
16 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>
|