summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/webvtt/rendering/cues-with-video/processing-model/evil/non-standard-pseudo-elements-ref.html
blob: 5664a4de7b4c2506ac531245491131df9e3339e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<html lang="en" class="reftest-wait">
<style>
video { width:560px; height:320px; }
</style>
<video>
<source src="/media/white.webm" type="video/webm">
<source src="/media/white.mp4" type="video/mp4">
<track label="English subtitles" kind="subtitles" srclang="en" src="support/test.vtt" default>
</video>
<script>
const v = document.querySelector('video');
v.onseeked = () => { document.documentElement.classList.remove('reftest-wait'); };
v.currentTime = 3;
</script>
</html>