Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<html class="reftest-wait">
<title>Reference for WebVTT rendering, 2 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 <u>test subtitle</u></span></div>
<div><span class="cueText">This is a test subtitle</span></div>
</span>
</div>
</html>