mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 20:29:18 +00:00
13 lines
313 B
HTML
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>
|