haikuwebkit/ManualTests/audio-freed-during-reload.html

18 lines
507 B
HTML

<html>
<script>
function go() {
var a = new Audio();
a.autoplay = "1";
a.src = "../LayoutTests/media/content/test.wav";
}
</script>
<body onload="go()">
<p>
Load this page and open Activity Monitor, htop, chrome's task manager, or another resource monitor.
Reload the page a number of times and verify that the memory usage
doesn't keep climbing indefinitely per reload.
</p>
</body>
</html?