dholbert%cs.stanford.edu cf1a0484b7 Bug 368504: New reftests (marked failing, until patch lands) plus some new tests to make sure we divvy up a colspan's percent width correctly.
git-svn-id: svn://10.0.0.236/trunk@242796 18797224-902f-48f8-a5cc-f745e15eee43
2008-01-10 03:58:34 +00:00

29 lines
606 B
HTML

<html>
<head><style>
/* cellspacing=0 cellpadding=0 */
table { border-spacing: 0 }
td, th { padding: 0 }
/* Table width */
table { width: 500px; }
/* Cell colors + widths */
td.a { background: lightgreen; width: 100px; }
td.b { background: yellow; width: 60%; }
td.c { background: lightblue; width: 30%; }
td.d { /* invisible */ min-width: 100px; }
</style></head>
<body>
<table>
<tr>
<td class="a">a</td>
<td class="b">b</td>
<td class="c">c</td>
</tr>
<tr>
<td class="d" colspan=3>&nbsp</td>
</tr>
</table>
</body>
</html>