blob: cde616f61f6f7602e46ad5479e7fbe8d571d9b53 [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
{
vertical-align: baseline;
}
#top
{
padding-top: 30px;
height: 50px;
}
#small
{
font-family: Ahem;
font-size: small;
}
#large
{
font-family: Ahem;
font-size: large;
}
</style>
</head>
<body>
<!-- All the cells are baseline-aligned but the first cell has an explicit height and padding. The text in the rowspan
should line up with the baseline set by the first cell.-->
<p>Test passes if the bottom of the black boxes is aligned.</p>
<table>
<tr>
<td id="top">
<div id="large">Text</div>
</td>
<td rowspan="3" colspan="1">
<div id="small">Text</div>
</td>
<td>
<div id="small">Text</div>
</td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
</table>
</body>
</html>