Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / table-row-before-after-content-around-table-cell.html
blobde669815c7cf4e080da80cd7235defbcf9daea6a
1 <!DOCTYPE html>
2 <html>
3 <body style="font-family: Ahem; -webkit-font-smoothing: none;">
4 <style>
5 .tr { display: table-row; }
6 .td { display: table-cell; }
7 div.tr:before { content: "A"; color: blue; }
8 div.tr:after { content: "C"; color: orange; }
9 </style>
10 <script src="../../resources/ahem.js"></script>
11 <body>
12 <div>
13 <div class="tr">
14 <div class="td" style="color: green">B</div>
15 </div>
16 </div>
17 <script>
18 document.body.style.fontSize = "100px";
19 </script>
20 </body>
21 </html>