blob: 3f155dd0ade2fdfecfa2122faf1bef041f35ca39 (
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
|
<!DOCTYPE html>
<html class="reftest-wait">
<title>Reference for WebVTT rendering, 3 tracks enabled at the same time</title>
<script src="/common/reftest-wait.js"></script>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style>
html { overflow:hidden }
body { margin:0 }
.video {
display: inline-block;
width: 320px;
height: 180px;
position: relative;
font-size: 9px;
}
.cue {
position: absolute;
bottom: 0;
left: 0;
right: 0;
text-align: center;
}
.cueText {
font-family: Ahem, sans-serif;
background: rgba(0,0,0,0.8);
color: white;
}
</style>
<div class="video">
<video width="320" height="180" autoplay onplaying="this.onplaying = null; this.pause(); takeScreenshot();">
<source src="/media/white.webm" type="video/webm">
<source src="/media/white.mp4" type="video/mp4">
</video>
<span class="cue">
<div><span class="cueText">This is a <b>test subtitle</b></span></div>
<div><span class="cueText">This is a <u>test subtitle</u></span></div>
<div><span class="cueText">This is a test subtitle</span></div>
</span>
</div>
</html>
|