Newer
Older
minerva / Tests / LibWeb / Text / input / hit_testing / box-outside-of-abspos-containing-block-border-rect.html
@minerva minerva on 13 Jul 445 bytes Initial commit
<!DOCTYPE html><style>
body {
    margin: 0;
}

* {
    border: 1px solid black;
}

nav {
    position: absolute;
    height: 600px;
}

nav > div {
    height: 100%;
}
</style><nav><div></div><button id="btn">Run</button></nav>
<script src="../include.js"></script>
<script>
    asyncTest(done => {
        btn.onclick = () => {
            println("Clicked!");
            done();
        };
        internals.click(20, 615);
    });
</script>