mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-24 18:02:20 +00:00
18 lines
330 B
HTML
18 lines
330 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
* {
|
|
border: 1px solid black;
|
|
}
|
|
|
|
#box {
|
|
width: 100px;
|
|
height: 100px;
|
|
}
|
|
</style>
|
|
<div id="box"></div>
|
|
<script src="../include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
println(internals.hitTest(50, 50).node === document.getElementById("box"));
|
|
});
|
|
</script>
|