summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/1673677-1-ref.html
blob: 589b64fe2d6a81f4bc0761c35a4accbc006995ce (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
60
61
62
63
64
65
66
<!DOCTYPE html>
<meta charset="utf-8">
<title>Reference case for bug 1673677</title>
<style>
table, tr, td {
  border: 1px solid;
  border-width: 2px 2px 4px 4px;
  padding: 3px 3px 6px 6px;
  margin: 8px 8px 12px 12px;
  border-spacing: 0;
}
td {
  vertical-align: baseline;
  line-height: 0;
}
.table-nested-cell {
  /* Explicitly specify inner size, due to bug 1166120 */
  inline-size: 125px;
  block-size: 100px;
}
.filler-nested-table {
  inline-size: 50px;
  block-size: 75px;
  background: purple;
  display: inline-block;
}
.filler {
  inline-size: 40px;
  block-size: 30px;
  background: pink;
  display: inline-block;
}
.inner-table {
  contain: layout;
}
</style>
<table>
  <tr>
    <td class="table-nested-cell">
      <table class="inner-table" style="writing-mode: vertical-lr;">
        <tr><td><div class="filler-nested-table"></div></td></tr>
      </table>
    </td>
    <td><div class="filler"></div></td>
  </tr>
</table>
<table style="writing-mode: vertical-lr;">
  <tr>
    <td class="table-nested-cell">
      <table class="inner-table" style="writing-mode: horizontal-tb;">
        <tr><td><div class="filler-nested-table"></div></td></tr>
      </table>
    </td>
    <td><div class="filler"></div></td>
  </tr>
</table>
<table style="writing-mode: vertical-rl;">
  <tr>
    <td class="table-nested-cell">
      <table class="inner-table" style="writing-mode: horizontal-tb;">
        <tr><td><div class="filler-nested-table"></div></td></tr>
      </table>
    </td>
    <td><div class="filler"></div></td>
  </tr>
</table>