chromium/third_party/blink/web_tests/fast/ruby/ruby-inline-style-not-updated.html

<!-- The blue and green text boxes should not overlap -->
<html>
<script src="../../resources/ahem.js"></script>
<body style="font: 1em/1 Ahem, sans-serif;">
<ruby id="test" style="color: blue">
ABCD
</ruby>
<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>