mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-25 02:40:49 +00:00
12 lines
262 B
HTML
12 lines
262 B
HTML
<!DOCTYPE html>
|
|
<input type="checkbox">
|
|
<script src="../include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
const input = document.querySelector("input");
|
|
input.focus();
|
|
input.blur();
|
|
println("PASS (didn't crash)");
|
|
});
|
|
</script>
|