2023-11-30 14:54:30 -03:00
|
|
|
<input id=input type=text>
|
|
|
|
|
<script src="include.js"></script>
|
|
|
|
|
<script>
|
2023-12-03 10:21:58 -03:00
|
|
|
test(() => {
|
2023-11-30 14:54:30 -03:00
|
|
|
let input = document.getElementById("input");
|
|
|
|
|
|
|
|
|
|
input.addEventListener("change", () => {
|
|
|
|
|
println(input.value);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
internals.sendText(input, "wfh :^)");
|
|
|
|
|
internals.commitText();
|
|
|
|
|
})
|
|
|
|
|
</script>
|