mirror of
https://github.com/servo/servo
synced 2026-04-29 02:47:55 +02:00
56 lines
912 B
HTML
56 lines
912 B
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>CSS Reftest Reference</title>
|
|
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/">
|
|
|
|
<style type="text/css">
|
|
table
|
|
{
|
|
background-color: orange;
|
|
border: black solid medium;
|
|
border-spacing: 0px;
|
|
display: inline-table;
|
|
margin: 1em 0em auto 1em;
|
|
}
|
|
|
|
td
|
|
{
|
|
height: 2em;
|
|
padding: 0px;
|
|
width: 3em;
|
|
}
|
|
|
|
td.yellow {background-color: yellow;}
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<p>The following two rectangles should be identical.</p>
|
|
|
|
<table>
|
|
<tr>
|
|
<td></td>
|
|
<td class="yellow"></td>
|
|
</tr>
|
|
<tr>
|
|
<td></td>
|
|
<td></td>
|
|
</tr>
|
|
</table><table>
|
|
<tr>
|
|
<td></td>
|
|
<td class="yellow"></td>
|
|
</tr>
|
|
<tr>
|
|
<td></td>
|
|
<td></td>
|
|
</tr>
|
|
</table>
|
|
|
|
</body>
|
|
</html> |