ladybird/Tests/LibWeb/Text/input/video-canceled-load.html
Tim Ledbetter 1369fc5069 LibWeb: Change attribute type to USVString where applicable
Also mark USVString attributes as containing a URL, where applicable.
2024-08-17 07:45:00 +02:00

13 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>