serenity/Base/res/html/misc/video-source-children.html
Timothy Flynn 2b269cf425 Base: Add a test page to load a video element with <source> children
This verifies we cycle through the source children until we land on one
with a video we can play.
2023-05-13 15:51:44 +02:00

60 lines
1.3 KiB
HTML

<html>
<head>
<style type="text/css">
video {
border: 1px solid #333;
}
table, td {
border: 1px solid #333;
border-collapse: collapse;
}
thead, tfoot {
background-color: #333333;
color: #ffffff;
}
</style>
</head>
<body>
<table>
<thead>
<tr>
<th colspan="2">Metadata</th>
</tr>
</thead>
<tbody>
<tr>
<td>Current Source</td>
<td id=src>null</td>
</tr>
<tr>
<td>Is Selected</td>
<td id=selected>false</td>
</tr>
</tbody>
</table>
<br />
<video id=video controls>
<source>
<source src="">
<source src="Yo I don't exist!">
<source src="../../../home/anon/Videos/test-webm.webm">
</video>
<script type="text/javascript">
let video = document.getElementById('video');
video.videoTracks.onaddtrack = (event) => {
document.getElementById('selected').textContent = event.track.selected;
};
video.addEventListener('loadedmetadata', () => {
document.getElementById('src').textContent = video.currentSrc;
});
</script>
</body>
</html>