blob: 4ce65d63095f824589f399be30633d0cd492999d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Picture-in-Picture tests</title>
<script type="text/javascript"></script>
</head>
<style>
video {
display: block;
border: 1px solid black;
}
</style>
<body>
<h1>Shortest Video</h1>
<video id="shortest" src="test-video.mp4" controls loop="true"></video>
<h1>Shorter Video</h1>
<video id="short" src="short.mp4" controls loop="true"></video>
<h1>Longer Video</h1>
<video id="long" src="test-video-long.mp4" controls loop="true"></video>
</body>
</html>
|