mirror of
https://github.com/servo/servo
synced 2026-04-28 18:37:39 +02:00
44 lines
1.5 KiB
HTML
44 lines
1.5 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
|
<html>
|
|
<head>
|
|
<title>CSS Test: Cells containing floating content are not considered empty</title>
|
|
<link rel="author" title="Microsoft" href="http://www.microsoft.com/">
|
|
<link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#empty-cells">
|
|
<meta name="flags" content="">
|
|
<meta name="assert" content="Cells that contain floating content, including empty elements, are not considered to be empty cells. The table under test actually contains two tests. The first cell tests floating content, and the second cell tests a floating empty element.">
|
|
<style type="text/css">
|
|
table
|
|
{
|
|
background: red;
|
|
border-spacing: 0;
|
|
empty-cells: hide;
|
|
}
|
|
td
|
|
{
|
|
background: green;
|
|
color: green;
|
|
}
|
|
.float
|
|
{
|
|
float: right;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>Test passes if there is no red visible on the page.</p>
|
|
<table>
|
|
<tr>
|
|
<td>
|
|
<div class="float"> </div>
|
|
</td>
|
|
<td>FillerTextFillerText</td>
|
|
</tr>
|
|
<tr>
|
|
<td>FillerTextFillerText</td>
|
|
<td>
|
|
<div class="float"></div>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html> |