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: Table-layout and 'display: table-column' elements</title>
5 <link rel="author" title="Microsoft" href="http://www.microsoft.com/">
6 <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#propdef-table-layout">
7 <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#width-layout">
8 <meta name="flags" content="ahem">
9 <meta name="assert" content="Table-layout does not apply to 'display: table-column' elements.">
10 <style type="text/css">
11 #table
12 {
13 display: table;
14 width: 5em;
15 }
16 #test
17 {
18 display: table-column;
19 table-layout: fixed;
20 width: 5em;
21 }
22 .tr
23 {
24 display: table-row;
25 }
26 .td
27 {
28 background: black;
29 display: table-cell;
30 font: 1em Ahem;
31 overflow: hidden;
32 padding: 0;
33 }
34 #reference
35 {
36 background: blue;
37 height: 2em;
38 width: 10em;
39 }
40 </style>
41 </head>
42 <body>
43 <p>Test passes if both bars below are the same width.</p>
44 <div id="table">
45 <div id="test"></div>
46 <div class="tr">
47 <div class="td">XXXXX</div>
48 </div>
49 <div class="tr">
50 <div class="td">XXXXXXXXX0</div>
51 </div>
52 </div>
53 <div id="reference"></div>
54 </body>
55 </html>