mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2026-04-20 19:00:25 +00:00
22 lines
467 B
HTML
22 lines
467 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<style>
|
||
|
|
#btn {
|
||
|
|
background-color: gold;
|
||
|
|
font-size: 100px;
|
||
|
|
width: 500px;
|
||
|
|
border: none;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
<script src="../include.js"></script>
|
||
|
|
<button type="submit" id="btn">Button</button>
|
||
|
|
<script>
|
||
|
|
asyncTest(done => {
|
||
|
|
const brn = document.getElementById("btn");
|
||
|
|
btn.onclick = () => {
|
||
|
|
println("Clicked!");
|
||
|
|
done();
|
||
|
|
};
|
||
|
|
internals.click(50, 50);
|
||
|
|
});
|
||
|
|
</script>
|