Bug 1732060 [wpt PR 30876] - Update wpt metadata, a=testonly
[gecko.git] / layout / reftests / writing-mode / tables / fixed-table-layout-012-vrl.html
blobe443494973b061e6b7a403c9da2f38beeae5c433
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: Fixed table layout - specified column height overrides first-cell specified height</title>
5 <link rel="author" title="Microsoft" href="http://www.microsoft.com/">
6 <link rel="author" title="Adapted for vertical layout by Simon Montagu" href="http:/mozilla.org/">
7 <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#fixed-table-layout">
8 <meta name="flags" content="">
9 <meta name="assert" content="A column element with specified height sets the height of the column, even if the first-row cell has a specified height.">
10 <style type="text/css">
11 div.test
13 writing-mode: vertical-rl;
15 table
17 border-collapse: collapse;
18 table-layout: fixed;
19 height: 200px;
21 td { padding: 0px; }
22 #col
24 height: 50px;
26 #cell
28 background: blue;
29 color: blue;
30 height: 175px;
31 width: 24px;
33 #div1
35 background: black;
36 width: 24px;
37 height: 50px;
39 </style>
40 </head>
41 <body>
42 <p>Test passes if the boxes below are the same height.</p>
43 <div class="test">
44 <table>
45 <col id="col">
46 <col>
47 <tr>
48 <td id="cell">X</td>
49 <td></td>
50 </tr>
51 </table>
52 <div id="div1"></div>
53 </div>
54 </body>
55 </html>