mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 17:55:07 +02:00
19 lines
357 B
HTML
19 lines
357 B
HTML
<!DOCTYPE html>
|
|
<script src="../include.js"></script>
|
|
<style>
|
|
div {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100px;
|
|
height: 100px;
|
|
}
|
|
</style>
|
|
<div id="target" style="transform: scaleZ(0)"></div>
|
|
<script>
|
|
test(() => {
|
|
const hit = document.elementFromPoint(50, 50);
|
|
println(hit.id !== "target" ? "PASS" : "FAIL");
|
|
});
|
|
</script>
|