blob: 39eb97922e8617e57609032190fb5b99a482153e [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: Baseline on an empty cell</title>
<meta name="flags" content="">
<meta name="assert" content="There should be no red.">
<style type="text/css">
#abs
{
border-style: dashed;
border-collapse: collapse;
display: block;
position: absolute;
top: 3em;
height: 4em;
width: 4em;
background-color:green;
}
#text
{
display: block;
position: absolute;
border-style: none;
top: 8em;
}
</style>
</head>
<body>
<p style="font: 1em Ahem;">Test</p>
<div id="abs">
</div>
<div id="text">There should be no red.</div>
</body>
</html>