blob: d661d915a4cd251a574612a006b6e6aa4855a3f5 [file] [log] [blame]
Torne (Richard Coles)5c87bf82012-11-14 11:46:17 +00001<html>
2 <script>
3 function go() {
4 var a = new Audio();
5 a.autoplay = "1";
6 a.src = "../LayoutTests/media/content/test.wav";
7 }
8 </script>
9
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?