tenfourfox/dom/media/test/crashtests/795892-1.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

18 lines
336 B
HTML

<!DOCTYPE html>
<html class="reftest-wait">
<head>
<script>
function boom()
{
var a = document.getElementById("a");
a.play();
a.onplaying = function () { document.documentElement.className = ""; }
}
</script>
</head>
<body>
<video id="a" src="cors.webm" crossorigin preload="metadata" onloadedmetadata="boom();">
</body>
</html>