Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / table-style-not-updated.html
blob765dc50a836339bfbd13e2fd4e1e240f21460607
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 <style>
6 #test
8 color: blue;
9 display: table;
11 </style>
12 <div id="test">
13 ABCD
14 </div>
15 <div style="font-size: 800%; color: green">
16 EFGH
17 </div>
18 <script>
19 document.body.offsetTop;
20 var test = document.getElementById("test");
21 test.style.fontSize = "800%";
22 </script>
23 </body>
24 </html>