gecko-dev/layout/reftests/ogg-video/444-1.html
Florian Quèze 85611a7b6d Bug 1331081 - script generated patch to omit addEventListener/removeEventListener's third parameter when it's false, r=jaws.
--HG--
extra : rebase_source : a22344ee1569f58f1f0a01017bfe0d46a6a14602
2017-01-17 11:50:25 +01:00

21 lines
623 B
HTML

<!DOCTYPE HTML>
<html class="reftest-wait">
<body>
<video id="v1" style="position:absolute; left:0; top:0"></video>
<!-- hide bottom of video -->
<div style="position:absolute; top:120px; left:0; right:0; bottom:0; background:black"></div>
<script>
function doTest() {
// Set source now so that the loadeddata event can't fire before
// this function runs.
v1.src = "seek444.ogv";
v1.play();
v1.addEventListener("loadeddata", function() {
setTimeout(function() {
document.documentElement.removeAttribute('class');
}, 50);
});
}
document.addEventListener("MozReftestInvalidate", doTest);
</script>