Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / table-row-style-not-updated.html
blob296b6eb9b74d695bf9a57c699c3991a4c9fb560b
1 <html>
2 <script src="../../resources/ahem.js"></script>
3 <body style="font: 1em/1 Ahem, sans-serif;">
4 <style>
5 #test
7 color: blue;
8 display: table-row;
10 </style>
11 <div id="test">
12 ABCD
13 </div>
14 <div style="font-size: 800%; color: green">
15 EFGH
16 </div>
17 <script>
18 document.body.offsetTop;
19 var test = document.getElementById("test");
20 test.style.fontSize = "800%";
21 </script>
22 </body>
23 </html>