Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / table-row-style-not-updated-with-before-content.html
blob70944667f4660fb7e982bb1b25129b1105f944be
1 <!-- The orange, 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-row;
11 #test::before
13 content: "1234";
14 color: orange;
15 display: table-row;
17 </style>
18 <div id="test">
19 ABCD
20 </div>
21 <div style="font-size: 800%; color: green">
22 EFGH
23 </div>
24 <script>
25 document.body.offsetTop;
26 var test = document.getElementById("test");
27 test.style.fontSize = "800%";
28 </script>
29 </body>
30 </html>