LibWeb: Add textarea readonly support

This commit is contained in:
Bastiaan van der Plaat
2024-02-26 19:12:32 +01:00
committed by Tim Flynn
parent 9aa31157d5
commit 05e78dabdb
Notes: sideshowbarker 2024-07-18 05:37:06 +09:00
6 changed files with 42 additions and 6 deletions

View File

@@ -0,0 +1,7 @@
<input id=input type=text readonly><script src="include.js"></script><script>
test(() => {
const input = document.getElementById("input");
internals.sendText(input, "wfh :^)");
internals.commitText();
});
</script>