mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-09 17:51:03 +00:00
22 lines
406 B
HTML
22 lines
406 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<style>
|
||
|
|
body {
|
||
|
|
margin: 0;
|
||
|
|
}
|
||
|
|
input {
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
<label id="lbl">Label<input id="checkbox" type="checkbox"/></label>
|
||
|
|
<script src="../include.js"></script>
|
||
|
|
<script>
|
||
|
|
asyncTest((done) => {
|
||
|
|
checkbox.addEventListener("change", () => {
|
||
|
|
println("Checkbox changed");
|
||
|
|
done();
|
||
|
|
});
|
||
|
|
|
||
|
|
internals.click(5, 5);
|
||
|
|
});
|
||
|
|
</script>
|