Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / table / table-and-parts-outline.html
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>