blob: e85c88e4e8f5f7587076290120a7f06057d36f9d [file] [log] [blame]
<!--
Copyright 2021 The Chromium Authors
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<h1>Memory Panel (Heap profiler) Test</h1>
<script>
class MyFoo {
constructor(a, b) {
this.a = a;
this.b = b;
}
}
setInterval(() => {
window.alist = window.alist || [];
for (let i = 0; i < 100000; ++i) {
window.alist[i] = new MyFoo(12, {});
}
}, 5)
</script>