Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / ManualTests / audio-freed-during-reload.html
blobd661d915a4cd251a574612a006b6e6aa4855a3f5
1 <html>
2 <script>
3 function go() {
4 var a = new Audio();
5 a.autoplay = "1";
6 a.src = "../LayoutTests/media/content/test.wav";
8 </script>
10 <body onload="go()">
11 <p>
12 Load this page and open Activity Monitor, htop, chrome's task manager, or another resource monitor.
13 Reload the page a number of times and verify that the memory usage
14 doesn't keep climbing indefinitely per reload.
15 </p>
16 </body>
17 </html?