Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / table-before-child-style-update.html
blob6272e928f8c4f0cf9329115e98ecc23e0cecaf74
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 div::before {
7 content: "ABCD";
8 color: blue;
9 display: table;
11 </style>
12 <div id="test" style="color: green">ABC</div>
13 <script>
14 document.getElementById('test').style.fontSize= "800%";
15 </script>
16 </body>
17 </html>