blob: 0b87dbefa0d753411dc47e7cdf9c86d49e67c4f7 [file] [log] [blame]
<html>
<head>
<script>
function playVideo()
{
document.getElementById("test-video").play();
}
function pauseVideo()
{
document.getElementById("test-video").pause();
}
function seekNearTheEnd()
{
let video = document.getElementById("test-video");
video.currentTime = video.duration - 0.5;
}
</script>
</head>
<body>
<p>
<video id="test-video" src="test.mp4" controls></video>
</p>
<p>
<button onclick="playVideo()">Play Video</button>
</p>
</body>
</html>