Newer
Older
minerva / Tests / LibWeb / Ref / resolve-paint-only-properties-after-layout.html
@minerva minerva on 13 Jul 419 bytes Initial commit
<!DOCTYPE html>
<link rel="match" href="reference/resolve-paint-only-properties-after-layout-ref.html" />
<style>
    #box {
        width: 100px;
        height: 100px;
        background-color: red;
        border-radius: 50px;
    }
</style>
<div id="box"></div>
<script>
    window.onload = function () {
        const box = document.getElementById("box");
        box.innerHTML = 'hello';        
    };
</script>