blob: f6c48d27439e497b499f726ad54f72e6993523f6 [file]
<!--
Copyright 2020 The Chromium Authors. All rights reserved.
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>
function run() {
function leaking() {
console.log('leaking');
}
var div = document.createElement('div');
document.body.appendChild(div);
div.addEventListener('click', leaking, true);
document.body.addEventListener('click', leaking, true);
}
run();
</script>