Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-tables/subpixel-table-cell-height-001.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<link rel="author" title="David Grogan" href="mailto:dgrogan@chromium.org">
<link rel="match" href="subpixel-table-cell-height-001-ref.html">
<meta name="assert" content="When a cell has a specified calc height and a block box has the same specified calc height, their actual heights should match." />
<style>
td {
border: 1px solid blue;
width: 120px;
height: 37.4px;
padding: 0px;
}
</style>
<table style="border-spacing:0;">
<tr>
<td></td>
</tr>
<tr>
<td></td>
</tr>
<tr>
<td></td>
</tr>
<tr>
<td></td>
</tr>
<tr>
<td></td>
</tr>
<tr>
<td></td>
</tr>
<tr>
<td></td>
</tr>
<tr>
<td></td>
</tr>
<tr>
<td></td>
</tr>
</table>