Newer
Older
minerva / Tests / LibWeb / Layout / input / table / propagate-style-update-to-wrapper.html
@minerva minerva on 13 Jul 289 bytes Initial commit
<script>
    document.addEventListener("DOMContentLoaded", function () {
        let t = document.querySelector("#t");
        t.style.position = "absolute";
        window.getComputedStyle(t).position;
    }, false);
</script>

<table id="t">
    <tr>
        <td></td>
    </tr>
</table>