2025-03-18 15:28:35 -03:00
|
|
|
<!DOCTYPE html>
|
2024-02-23 22:53:35 -03:00
|
|
|
<script src="../include.js"></script>
|
|
|
|
|
<style>
|
|
|
|
|
#input {
|
|
|
|
|
width: 100px;
|
|
|
|
|
height: 100px;
|
|
|
|
|
border: 1px solid black;
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
<div id="input" contenteditable="true"></div>
|
|
|
|
|
<script>
|
|
|
|
|
test(() => {
|
|
|
|
|
const input = document.getElementById("input");
|
|
|
|
|
internals.sendText(input, "hello");
|
2024-10-02 13:38:10 -03:00
|
|
|
println(document.body.innerText);
|
2024-02-23 22:53:35 -03:00
|
|
|
});
|
|
|
|
|
</script>
|