gecko/content/media/test/crashtests/795892-1.html

18 lines
317 B
HTML
Raw Normal View History

2012-10-03 19:48:51 -07:00
<!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 onloadedmetadata="boom();">
</body>
</html>