summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-tables/subpixel-table-cell-height-001.html
blob: 58f837789aaacf8cdb963c05c9c6409a3dd49253 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<link rel="author" title="David Grogan" href="mailto:dgrogan@chromium.org">
<link rel="help" href="https://drafts.csswg.org/css-values-3/#calc-notation">
<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>