Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / nested-table-with-collapsed-borders.html
blob785401a3c8a9efd22215748466fbe63c20b2094d
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2 <html>
3 <head>
4 <title>This test will assert if a parent table attempts to calculate the collapsed borders of a nested table.</title>
5 <style type="text/css">
6 #table1
8 border-collapse: collapse;
9 height: 2in;
10 width: 2in;
12 #table2
14 height: 2in;
15 width: 2in;
19 border: 5px solid black;
21 </style>
22 </head>
23 <body>
24 <table id="table1">
25 <tr>
26 <td></td>
27 <td></td>
28 <td></td>
29 </tr>
30 <tr>
31 <td>
32 <table id="table2">
33 <tr>
34 <td></td>
35 <td></td>
36 <td></td>
37 </tr>
38 </table>
39 </td>
40 <td></td>
41 <td></td>
42 </tr>
43 <tr>
44 <td></td>
45 <td></td>
46 <td></td>
47 </tr>
48 </table>
49 </body>
50 </html>