mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-03 07:32:00 +00:00
12 lines
338 B
HTML
12 lines
338 B
HTML
<form id="theForm" style="display:none"><button id="theButton" type="submit" disabled></button></form>
|
|
<script src="../include.js"></script>
|
|
<script>
|
|
theForm.onclick = function() {
|
|
println("FAIL! Should not click!");
|
|
}
|
|
|
|
test(() => {
|
|
theButton.click();
|
|
println("PASS! Did not click");
|
|
});
|
|
</script>
|