mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
30dd58b388
--HG-- extra : rebase_source : fcd356c20768bddc6723c8f9b3143f3a3e559262
13 lines
439 B
HTML
13 lines
439 B
HTML
<!DOCTYPE HTML>
|
|
<html class="reftest-wait">
|
|
<body style="background:white;">
|
|
<!-- Test that if we seek to the end of a video we get the last frame displayed -->
|
|
<video src="frames.webm"
|
|
preload="auto"
|
|
id="v"
|
|
onloadedmetadata="document.getElementById('v').currentTime=document.getElementById('v').duration"
|
|
onseeked="setTimeout(function(){document.documentElement.className = '';}, 0);"
|
|
</video>
|
|
</body>
|
|
</html>
|