1
0
mirror of https://github.com/roytam1/UXP.git synced 2026-05-27 09:09:55 +00:00
Files

22 lines
311 B
HTML

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