summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-tables/table-cell-baseline-static-position.html
blob: e3f5236645f03be99aa0abd3d330623413445263 (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
<!DOCTYPE html>
<link rel="help" href="https://crbug.com/1206654" />
<link rel="match" href="../reference/ref-filled-green-100px-square-only.html" />
<style>
table {
  width: 100px;
  height: 100px;
  position: relative;
  line-height: 0;
  border-spacing: 0;
}
td {
  vertical-align: baseline;
  width: 50px;
  padding: 0;
}
div {
  width: 50px;
  height: 100px;
  background: green;
}
</style>
<p>Test passes if there is a filled green square.</p>
<table>
  <td>
    <div style="display: inline-block;"></div> <!-- Creates a baseline at 100px. -->
  </td>
  <td>
    <div style="position: absolute;"></div> <!-- Static-position shouldn't shift to the baseline. -->
  </td>
</table>