mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-25 17:25:08 +02:00
10 lines
223 B
HTML
10 lines
223 B
HTML
<!DOCTYPE html>
|
|
<script src="include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
const input = document.createElement("input");
|
|
input.type = 'file';
|
|
println(`value = '${input.value}'`);
|
|
})
|
|
</script>
|