795892-1.html (503B)
1 <!DOCTYPE html> 2 <html class="reftest-wait"> 3 <head> 4 <script> 5 function boom() 6 { 7 var a = document.getElementById("a"); 8 a.play(); 9 a.onplaying = function () { 10 a.onplaying = null; 11 // Note we reset 'src' to release decoder resources and cubeb streams to 12 // prevent OOM or OpenCubeb() failures. 13 a.src = ""; 14 document.documentElement.className = ""; 15 } 16 } 17 </script> 18 </head> 19 20 <body> 21 <video id="a" src="cors.webm" crossorigin preload="metadata" onloadedmetadata="boom();"> 22 </body> 23 </html>