Mozilla/mozilla/layout/reftests/table-width/percent-small-nested.html
dbaron%dbaron.org 581e3173bf Start converting reflow branch (bug 300030) table testcases to reftests.
git-svn-id: svn://10.0.0.236/trunk@220437 18797224-902f-48f8-a5cc-f745e15eee43
2007-02-16 23:30:22 +00:00

37 lines
589 B
HTML

<!DOCTYPE HTML>
<html>
<head>
<title>Percent widths on table cells</title>
<style type="text/css">
td > table {
border-spacing: 3px 5px;
padding: 2px 3px 4px 5px;
}
td {
border: none;
padding: 0;
}
span {
display: inline-block;
width: 50px;
background: fuchsia;
color: fuchsia;
}
</style>
</head>
<body>
<table border><tr><td>
<table><tr>
<td style="background: yellow;color:yellow"><span>x</span></td>
<td style="background:aqua;color:aqua" width="50%"><span>x</span>&#x200b;<span>x</span>&#x200b;<span>x</span></td>
</tr></table>
</td></tr></table>
</body>
</html>