blob: 23744002d6cbffe3aa2f4ff93c06d0894390c302 [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: Vertical-align set to 'baseline' with a spanning cell</title>
<link rel="author" title="Microsoft" href="http://www.microsoft.com/">
<link rel="author" title="WebKit" href="http://www.webkit.org/">
<link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#height-layout">
<meta name="flags" content="">
<meta name="assert" content="A spanning cell with Vertical-align set to 'baseline' aligns the cell's content baseline (which is the bottom of the first line of text or in-flow content) with the baseline of the first of the rows it spans.">
<style type="text/css">
td
{
height:10px;
vertical-align: baseline;
}
#spanning
{
height: 80px;
}
#small
{
font-family: Ahem;
font-size: small;
}
#large
{
font-family: Ahem;
font-size: large;
}
</style>
</head>
<body>
<!-- Because the rowspan aligns its text on the baseline of the first row it spans and all the cells in the table
are vertical:align baseline, the text in all the cells should be aligned with each other.-->
<p>Test passes if the bottom of the black boxes is aligned.</p>
<table>
<tr>
<td>
<div id="large">Text</div>
</td>
<td id="spanning" rowspan="3" colspan="2">
<div id="small">Text</div>
</td>
<td>
<div id="large">Text</div>
</td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
</table>
</body>
</html>