mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
9 lines
207 B
HTML
9 lines
207 B
HTML
|
|
<script src="include.js"></script>
|
||
|
|
<script>
|
||
|
|
test(() => {
|
||
|
|
const input = document.createElement("input");
|
||
|
|
input.type = 'file';
|
||
|
|
println(`value = '${input.value}'`);
|
||
|
|
})
|
||
|
|
</script>
|