mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
19 lines
379 B
HTML
19 lines
379 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<style>
|
||
|
|
body {
|
||
|
|
margin: 0;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
<label id="lbl">Label<input id="textInput" type="text"></label>
|
||
|
|
<script src="../include.js"></script>
|
||
|
|
<script>
|
||
|
|
asyncTest((done) => {
|
||
|
|
textInput.addEventListener("focusin", () => {
|
||
|
|
println("Text input focused");
|
||
|
|
done();
|
||
|
|
});
|
||
|
|
|
||
|
|
internals.click(10, 10);
|
||
|
|
});
|
||
|
|
</script>
|