mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
19 lines
525 B
HTML
19 lines
525 B
HTML
<!DOCTYPE HTML>
|
|
<html class="reftest-wait">
|
|
<!-- Test: Create video, add poster, load. Should display poster. -->
|
|
<script>
|
|
function runTest() {
|
|
var v = document.createElement('video');
|
|
v.addEventListener('loadeddata', function(){setTimeout(function(){document.documentElement.className = '';}, 0);}, false);
|
|
v.id = 'v';
|
|
v.src = "black140x100.ogv";
|
|
v.poster = "blue250x200.png";
|
|
v.autobuffer = true;
|
|
document.body.appendChild(v);
|
|
}
|
|
|
|
</script>
|
|
<body style="background:white;" onload="runTest();">
|
|
</body>
|
|
</html>
|