blob: 49b6dbfebff7c367674fd3662941caacfd5c9a39 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
<!DOCTYPE HTML>
<html class="reftest-wait">
<!-- Test: Create video, load, play. Add poster frame, load again, poster should show. -->
<script>
function runTest() {
var v = document.createElement('video');
var endTest = function() {
setTimeout(function(){document.documentElement.className = '';}, 0);
};
var play =
function() {
v.removeEventListener('loadeddata', play);
v.play();
}
var addPoster = function() {
v.removeEventListener('playing', addPoster);
v.poster = "blue140x100.png";
v.addEventListener('loadeddata', endTest);
v.load();
};
v.addEventListener('loadeddata',
play);
v.addEventListener('playing',
addPoster);
v.id = 'v';
v.src = "black140x100.ogv";
v.preload = "auto";
document.body.appendChild(v);
}
</script>
<body style="background:white;" onload="runTest();">
</body>
</html>
|