mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-24 01:42:17 +00:00
10 lines
308 B
HTML
10 lines
308 B
HTML
<!DOCTYPE html>
|
|
<input id="input" type="text" maxlength="5"><script src="include.js"></script><script>
|
|
test(() => {
|
|
const input = document.getElementById('input');
|
|
internals.sendText(input, 'Hello World!');
|
|
internals.commitText();
|
|
|
|
println(input.value);
|
|
});
|
|
</script>
|