Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / ruby / ruby-block-style-not-updated.html
blob16194a0441e8ba8b90953764c2bc2924c9b6c998
1 <!-- The blue and green text boxes should not overlap -->
2 <html>
3 <script src="../../resources/ahem.js"></script>
4 <body style="font: 1em/1 Ahem, sans-serif;">
5 <ruby id="test" style="display: block; color: blue">
6 ABCD
7 </ruby>
8 <div style="font-size: 800%; color: green">
9 EFGH
10 </div>
11 <script>
12 document.body.offsetTop;
13 var test = document.getElementById("test");
14 test.style.fontSize = "800%";
15 </script>
16 </body>
17 </html>