Sign in
chromium
/
chromium
/
src.git
/
fafff21
/
.
/
fuchsia_web
/
av_testing
/
video.html
blob: e1dc5294e78854ae0a502c66f699dd073baa1526 [
file
]
<!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>