blob: a44d6510c9296a98c3e3035230105975e903495b [file] [log] [blame]
<!-- This is a test html file for video test. -->
<html>
<body>
<video id='testvideo' controls autoplay muted name='media'>
</video>
</body>
<script type="text/javascript">
var testvideo = document.getElementById('testvideo');
function loadVideo(video) {
testvideo.src = video;
testvideo.play();
}
</script>
</html>