summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-tables/fixup-dynamic-anonymous-inline-table-002.html
blob: 9f3a2ff21e4d4541136cd4237b70d33b4034b81b (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
<!DOCTYPE html>
<title>CSS Test: CSS Tables fixup merge anonymous inline table siblings (cell + row)</title>
<link rel="author" title="Rune Lillesveen" href="mailto:futhark@chromium.org">
<link rel="match" href="../reference/ref-filled-green-100px-square-only.html">
<link rel="help" href="https://drafts.csswg.org/css-tables/#fixup-algorithm">
<style>
  .row {
    display: table-row;
  }
  .cell {
    display: table-cell;
  }
  .filler {
    width: 100px;
    height: 50px;
    background-color: green;
  }
</style>
<p>Test passes if there is a filled green square.</p>
<span>
  <span class="cell">
    <div class="filler"></div>
  </span>
  <span id="rm">Remove me</span>
  <span class="row">
    <span class="cell">
      <div class="filler"></div>
    </span>
  </span>
</span>
<script>
  rm.offsetTop;
  rm.remove();
</script>