Bug 1852461 - Fix broken crashtest landed in bug 1830206. r=karlt

Differential Revision: https://phabricator.services.mozilla.com/D188470
This commit is contained in:
Paul Adenot 2023-09-20 16:38:46 +00:00
Родитель 73d10cac2a
Коммит 9a400afd70
1 изменённых файлов: 7 добавлений и 6 удалений

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

@ -1,11 +1,12 @@
<html class="reftest-wait">
<video id='a'>
<source src='testcase.mp4'>
<source src='1830206.mp4'>
</video>
<script>
function done() {
document.documentElement.removeAttribute("class");
}
a.addEventListener('error', done, true)
a.addEventListener('canplay', v.play, true)
function done() {
document.documentElement.removeAttribute("class");
}
a.addEventListener('error', done, true)
a.addEventListener('ended', done, true)
a.addEventListener('canplay', a.play, true)
</script>