summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-position/position-relative-table-thead-top.html
blob: ae481313dbd969e402a375d4f7822198221ac06a (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<title>position:relative top constraint should behave correctly for &lt;thead&gt; elements</title>
<link rel="match" href="position-relative-table-top-ref.html" />
<link rel="help" href="https://www.w3.org/TR/css-position-3/#rel-pos" />
<meta name="assert" content="This test checks that the position:relative top constraint behaves correctly for &lt;thead&gt; elements" />

<style>
table {
  border-collapse:collapse;
}

td {
  padding: 0;
}

td > div {
  height: 50px;
  width: 50px;
}

.group {
  display: inline-block;
  position: relative;
  width: 150px;
  height: 200px;
}

.indicator {
  position: absolute;
  background-color: red;
  left: 0;
  top: 100px;
  height: 50px;
  width: 50px;
}

.relative {
  position: relative;
  top: 100px;
  background-color: green;
}
</style>

<div class="group">
  <div>
    <div class="indicator"></div>
    <table>
      <thead class="relative">
        <tr><td><div></div></td></tr>
      </thead>
      <tbody>
        <tr><td><div></div></td></tr>
      </tbody>
    </table>
  </div>
</div>

<div>You should see a green box above. No red should be visible.</div>