Bug 1389304 - Add crashtest. r=me

This commit is contained in:
Ryan VanderMeulen 2017-11-08 08:47:10 -05:00
Родитель d8977a82a8
Коммит 73bad38c3d
3 изменённых файлов: 33 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,32 @@
<!DOCTYPE HTML>
<html>
<head>
<title>Media test: Negative duration.</title>
</head>
<body>
<video id="v" controls src="1389304.mp4">
</video>
<p id="msg"></p>
<script type="text/javascript">
function log(x) {
msg.innerHTML = x + "<br>";
}
v.play();
v.onended = function() {
log("endded!");
let seekable = v.seekable;
for (let i = 0; i < seekable.length; ++i) {
let start = seekable.start(i);
let end = seekable.end(i);
log(`[${i}]: start=${start} end=${end}`);
}
}
</script>
</body>
</html>

Двоичные данные
dom/media/test/crashtests/1389304.mp4 Normal file

Двоичный файл не отображается.

Просмотреть файл

@ -94,6 +94,7 @@ load 1368490.html
load 1291702.html
load 1378826.html
load 1384248.html
load 1389304.html
load 1393272.webm
load disconnect-wrong-destination.html
load analyser-channels-1.html