Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / css2.1 / 20110323 / fixed-table-layout-013-expected.html
blob44056739324e26ea4d6715b7443d5e8867446c62
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2 <html>
3 <head>
4 <title>CSS Test: Reference Result</title>
5 <style type="text/css">
6 table
8 border-collapse: collapse;
9 table-layout: fixed;
10 width: 200px;
12 #cell
14 background: black;
15 width: 98px;
17 #div1
19 background: blue;
20 width: 100px;
22 #div1, #cell
24 height: 1em;
26 </style>
27 </head>
28 <body>
29 <p>Test passes if the boxes below are the same width.</p>
30 <table>
31 <tr>
32 <td id="cell"></td>
33 <td></td>
34 </tr>
35 </table>
36 <div id="div1"></div>
37 </body>
38 </html>