| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <script> | 2 <script> |
| 3 function go() { | 3 function go() { |
| 4 var a = new Audio(); | 4 var a = new Audio(); |
| 5 a.autoplay = "1"; | 5 a.autoplay = "1"; |
| 6 a.src = "../LayoutTests/media/content/test.wav"; | 6 a.src = "../LayoutTests/media/content/test.wav"; |
| 7 } | 7 } |
| 8 </script> | 8 </script> |
| 9 | 9 |
| 10 <body onload="go()"> | 10 <body onload="go()"> |
| 11 <p> | 11 <p> |
| 12 Load this page and open Activity Monitor, htop, chrome's task manage
r, or another resource monitor. | 12 Load this page and open Activity Monitor, htop, chrome's task manage
r, or another resource monitor. |
| 13 Reload the page a number of times and verify that the memory usage | 13 Reload the page a number of times and verify that the memory usage |
| 14 doesn't keep climbing indefinitely per reload. | 14 doesn't keep climbing indefinitely per reload. |
| 15 </p> | 15 </p> |
| 16 </body> | 16 </body> |
| 17 </html? | 17 </html? |
| OLD | NEW |