ladybird/Tests/LibWeb/Text/input/video-canceled-load.html
2025-03-20 11:50:49 +01:00

14 lines
329 B
HTML

<!DOCTYPE html>
<script src="include.js"></script>
<script type="text/javascript">
function updateSrc() {
video.src = "file:///example/file/location/wfh";
}
test(() => {
println(video.src);
});
</script>
<video id="video" src="data:">
<details open ontoggle="updateSrc()"></details>
</video>