blob: f6466e84e5fc0dc842afc685a2bd941f468ff3c5 [file] [log] [blame]
<!--
Copyright 2020 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>
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>