blob: 329057318ae7b8d3aacccd1611c527a26d31995c [file] [log] [blame]
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>CSS Test: Reference Result</title>
<style type="text/css">
table
{
table-layout: fixed;
border-collapse: separate;
border-spacing: 0;
}
td
{
height: 100px;
padding: 0;
}
#blue
{
background: blue;
width: 30px;
}
#orange
{
background: orange;
width: 10px;
}
</style>
</head>
<body>
<p>Test passes if all of the blue lines below appear to have the same width.</p>
<table>
<tr>
<td id="orange"></td>
<td id="blue"></td>
<td id="orange"></td>
<td id="blue"></td>
<td id="orange"></td>
<td id="blue"></td>
<td id="orange"></td>
</tr>
</table>
</body>
</html>