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

16 lines
337 B
HTML

<!DOCTYPE html>
<html>
<body>
<script>
window.big = (function makeBig(depth = 0) {
var big = Array(5);
big.fill(undefined);
if (depth < 5) {
big = big.map(_ => makeBig(depth + 1));
}
return big;
}());
</script>
</body>
</html>