1
2
3
4
5
6
7
8
9
fuchsia_web / av_testing / video.html [blame]
<!DOCTYPE html>
<html>
<video id="video" height="720" width="1024" onclick="this.play()" />
<script>
let file = new URLSearchParams(window.location.search).get("file");
document.getElementById("video").src = "videos/" + file
</script>
</html>