1 <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? 18