Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / table-and-parts-outline.html
blob997a9b8245b87a3d41b67605b04589773d702be2
1 <html>
2 <style>
3 table { outline: dotted green 2px; }
4 td { outline: solid black 2px; }
5 </style>
6 You should see a table with a dotted green outline, and four table cells inside it with a solid black outline.<br/><br/>
7 <table>
8 <tr>
9 <td>Cell 1</td>
10 <td>Cell 2</td>
11 </tr>
12 <tr>
13 <td>Cell 3</td>
14 <td>Cell 4</td>
15 </tr>
16 </table>
17 </html>