haikuwebkit/LayoutTests/fast/table/table-row-style-not-updated...

30 lines
530 B
HTML

<!-- The blue, yellow and green text boxes should not overlap -->
<html>
<body style="font: 1em/1 Ahem, sans-serif;">
<style>
#test
{
color: blue;
display: table-row;
}
#test::after
{
content: "4578";
color: yellow;
display: table-row;
}
</style>
<div id="test">
ABCD
</div>
<div style="font-size: 800%; color: green">
EFGH
</div>
<script>
document.body.offsetTop;
var test = document.getElementById("test");
test.style.fontSize = "800%";
</script>
</body>
</html>