Newer
Older
minerva / Tests / LibWeb / Layout / input / table / style-invalidation-propagation-to-table-wrapper.html
@minerva minerva on 13 Jul 333 bytes Initial commit
<!doctype html><style>
body {
    background: black;
}
table {
    background: white;
    width: 50%;
}
td {
    height: 100px;
    background: magenta;
}
</style><center><table><td><script>
    document.addEventListener("DOMContentLoaded", function() {
        document.querySelector("center").style.left = "1px";
    });
</script>