blob: 40f60e49619a1468384bea49c62ac868ccc2003c (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Test cloneElementVisually with poster</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<script type="application/javascript" src="https://example.com:443/tests/dom/media/test/cloneElementVisually_helpers.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css">
</head>
<body>
<div id="content">
<h1>Original</h1>
<video id="original"></video>
<h1>Clone</h1>
</div>
<div id="results">
<h1>Results</h1>
<canvas id="left"></canvas>
<canvas id="right"></canvas>
</div>
<script type="application/javascript">
/* import-globals-from cloneElementVisually_helpers.js */
/**
* Test that when we clone a video with a poster, the poster does not prevent
* the cloned video from displaying properly (as in bug 1532692).
*/
add_task(async () => {
await setup();
let originalVideo = document.getElementById("original");
const POSTER_URL = "https://example.com:443/tests/dom/media/test/poster-test.jpg";
originalVideo.setAttribute("poster", POSTER_URL);
await withNewClone(originalVideo, async clone => {
await SpecialPowers.wrap(originalVideo).cloneElementVisually(clone);
originalVideo.loop = false;
originalVideo.currentTime = originalVideo.duration - 0.1;
let endedPromise = waitForEventOnce(originalVideo, "ended");
await originalVideo.play();
await endedPromise;
ok(await assertVideosMatch(originalVideo, clone),
"Video with a poster should clone properly.");
});
});
</script>
</body>
</html>
|