summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/webvtt/rendering/cues-with-video/processing-model/support/embedded_style_media_queries-iframe-ref.html
blob: f08a607e696a074fa23b06b8889d873cfefb61a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<title>Reference for Embedded Style: Media Queries</title>
<style>
video {
  outline: solid;
  width: 320px;
  height: 240px;
}
::cue {
    color: green;
}
</style>
<video autoplay onplaying="this.onplaying = null; this.pause();">
    <source src="/media/white.webm" type="video/webm">
    <source src="/media/white.mp4" type="video/mp4">
    <track src="embedded_style_without_style.vtt" default>
</video>
</html>