Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / table / table-row-before-after-content-around-table-cell.html
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 <body>
11 <div>
12 <div class="tr">
13 <div class="td" style="color: green">B</div>
14 </div>
15 </div>
16 <script>
17 document.body.style.fontSize = "100px";
18 </script>
19 </body>
20 </html>