mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 02:37:35 +00:00
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.
This commit is contained in:
parent
05019746d2
commit
2b269cf425
1 changed files with 59 additions and 0 deletions
59
Base/res/html/misc/video-source-children.html
Normal file
59
Base/res/html/misc/video-source-children.html
Normal file
|
@ -0,0 +1,59 @@
|
||||||
|
<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>
|
Loading…
Add table
Add a link
Reference in a new issue