gecko-dev/dom/media/test/crashtests/1267263.html
2017-11-08 08:47:07 -05:00

20 lines
278 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<script>
function boom()
{
vid.setMediaKeys(null);
vid.fastSeek(111);
}
</script>
</head>
<body onload="boom();">
<video id="vid" src="../../../../layout/reftests/webm-video/frames.webm"></video>
</body>
</html>