mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-23 09:22:30 +00:00
17 lines
400 B
HTML
17 lines
400 B
HTML
<!DOCTYPE html>
|
|
<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");
|
|
println(document.body.innerText);
|
|
});
|
|
</script>
|