blob: 63254b329c60fcc2f57227da7eefa27c5326b92c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Picture-in-Picture test - pointer-events: none</title>
<script type="text/javascript" src="click-event-helper.js"></script>
</head>
<style>
video {
display: block;
pointer-events: none;
}
</style>
<body>
<h1>Video with controls</h1>
<video id="with-controls" src="test-video.mp4" controls loop="true"></video>
<h1>Video without controls</h1>
<video id="no-controls" src="test-video.mp4" loop="true"></video>
</body>
</html>
|