mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-28 10:37:17 +02:00
16 lines
463 B
HTML
16 lines
463 B
HTML
<!DOCTYPE html>
|
|
<input type="checkbox" id="checkbox">
|
|
<script src="include.js"></script>
|
|
<script>
|
|
checkbox.addEventListener("change", () => {
|
|
println("Change event was fired when it shouldn't have been.");
|
|
});
|
|
asyncTest(async done => {
|
|
checkbox.focus();
|
|
await new Promise(resolve => setTimeout(resolve, 0));
|
|
checkbox.blur();
|
|
await new Promise(resolve => setTimeout(resolve, 0));
|
|
|
|
done();
|
|
});
|
|
</script> |