mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-13 22:52:52 +00:00
18 lines
413 B
HTML
18 lines
413 B
HTML
<input id=input type=text>
|
|
<script src="include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
let input = document.getElementById("input");
|
|
|
|
input.addEventListener("change", () => {
|
|
println(input.value);
|
|
});
|
|
|
|
input.addEventListener("blur", () => {
|
|
println("blur");
|
|
});
|
|
|
|
internals.sendText(input, "wfh :^)");
|
|
input.blur();
|
|
})
|
|
</script>
|