Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / ruby / ruby-inline-style-not-updated.html
bloba2b2672625f0a07a9e835dc45940252f819d375d
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="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>