Files
serenity/Tests/LibWeb/Text/input/video-canceled-load.html
Tim Ledbetter df8eec7786 LibWeb: Change attribute type to USVString where applicable
Also mark USVString attributes as containing a URL, where applicable.

(cherry picked from commit 1369fc5069598644842defabbfbf3d30d2f3e647)
2024-10-17 21:31:52 -04:00

14 lines
313 B
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>