| <!-- | |
| 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> |