Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / table-cell-before-child-in-table.html
blobe1ce817e74285f8f9bf983ef475721f256b09565
1 <html>
2 <style>
3 #target
5 display: table;
6 border-color: green;
7 border-style: solid;
8 padding: 1em 1em;
11 #target::before
13 content: "BEFORE";
14 display: table-cell;
15 border-color: blue;
16 border-style: solid;
17 padding: 1em 1em;
19 </style>
20 <div id="target">
21 <span> CONTENT</span>
22 </div>
23 <script>
24 document.body.offsetTop;
25 target.style.color = "red";
26 </script>
27 </html>