LibWeb+LibJS+Tests: Fix typos - act I

This commit is contained in:
Viktor Szépe 2025-03-08 14:20:48 +00:00 committed by Sam Atkins
commit b4b8d85251
Notes: github-actions[bot] 2025-04-07 10:23:14 +00:00
9 changed files with 47 additions and 47 deletions

View file

@ -12,7 +12,7 @@
test(() => {
const input = document.getElementById("input");
input.addEventListener("beforeinput", (e) => {
println(`beforeinput data=(${e.data}) intputType=(${e.inputType})`);
println(`beforeinput data=(${e.data}) inputType=(${e.inputType})`);
if (e.data !== 'r' && e.data !== 'e') {
e.preventDefault();
return;

View file

@ -12,7 +12,7 @@
test(() => {
const input = document.getElementById("input");
input.addEventListener("input", (e) => {
println(`input data=(${e.data}) intputType=(${e.inputType})`);
println(`input data=(${e.data}) inputType=(${e.inputType})`);
});
internals.sendText(input, "hello");
internals.commitText();