Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / nested-table-with-collapsed-borders-expected.html
blob1feec51569499f2c2642e0a4a726b9451f99517a
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 collapsed borders
5 for a cell in a nested table that does not have collapsed borders.</title>
6 <style type="text/css">
7 #table1
9 border-collapse: collapse;
10 height: 2in;
11 width: 2in;
13 #table2
15 height: 2in;
16 width: 2in;
20 border: 5px solid black;
22 </style>
23 </head>
24 <body>
25 <table id="table1">
26 <tr>
27 <td></td>
28 <td></td>
29 <td></td>
30 </tr>
31 <tr>
32 <td>
33 <table id="table2">
34 <tr>
35 <td></td>
36 <td></td>
37 <td></td>
38 </tr>
39 </table>
40 </td>
41 <td></td>
42 <td></td>
43 </tr>
44 <tr>
45 <td></td>
46 <td></td>
47 <td></td>
48 </tr>
49 </table>
50 </body>
51 </html>