Newer
Older
minerva / Tests / LibWeb / Layout / input / anonymous-wrappers-continue-to-inherit-style-after-change.html
@minerva minerva on 13 Jul 213 bytes Initial commit
<!doctype html><style>
body {
    text-align: center;
}
</style><body><h1>header</h1>anonymously wrapped text<script>
document.body.offsetWidth; // Force a layout.
document.body.style.textAlign = 'left';
</script>