blob: b710c322ee070ef9e49e28e7a3283ae24834d26f [file] [log] [blame]
<!DOCTYPE html>
<html class="reftest-wait">
<title>Reference for WebVTT rendering, class object, ::cue(c), white-space: normal (cue that wraps)</title>
<style>
html { overflow:hidden }
body { margin:0 }
.video {
display: inline-block;
width: 320px;
height: 180px;
font-size: 9px;
position: relative
}
.cue {
position: absolute;
bottom: 0;
left: 25%;
right: 0;
width: 50%;
text-align: center;
font-family: sans-serif;
}
.cue > span {
background: rgba(0,0,0,0.8);
color: white;
white-space: normal
}
</style>
<script src="/common/reftest-wait.js"></script>
<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"><span>This is a test subtitle that most likely will span over several rows since it's a pretty long cue with a lot of text.</span></span>
</div>
</html>