summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/413286-5.html
blob: df72e6ede0737667421607bd476d81a066deb495 (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
67
68
<html>
<head><style>
  table        { width: 600px  }
  td.smallSpec { width: 100px; }
  td.smallPct  { width: 10%;   }
  td.pink      { background: pink }
  td.teal      { background: teal }
</style></head>
<body>

<h2>Other column fixed-width</h2>

<table cellspacing="0" cellpadding="0">
  <tr>
    <td class="smallSpec pink">100</td>
    <td class="teal"/>
  </tr>
</table>

<h2>Other column percent-width</h2>

<table cellspacing="0" cellpadding="0">
  <tr>
    <td class="smallPct pink">10%</td>
    <td class="teal"/>
  </tr>
</table>

<h2>Other column fixed-width; zero column spanned by colspan (crossing other column)</h2>

<table cellspacing="0" cellpadding="0">
  <tr>
    <td class="smallSpec pink">100</td>
    <td class="teal"/>
  </tr>
  <tr><td colspan="2"/></tr>
</table>

<h2>Other column percent-width; zero column spanned by colspan (crossing other column)</h2>

<table cellspacing="0" cellpadding="0">
  <tr>
    <td class="smallPct pink">10%</td>
    <td class="teal"/>
  </tr>
  <tr><td colspan="2"/></tr>
</table>

<h2>Other column fixed-width; two zero columns with colspan</h2>

<table cellspacing="0" cellpadding="0">
  <tr>
    <td class="smallSpec pink">100</td>
    <td class="teal" colspan="2"/>
  </tr>
</table>

<h2>Other column percent-width; two zero columns with colspan</h2>

<table cellspacing="0" cellpadding="0">
  <tr>
    <td class="smallPct pink">10%</td>
    <td class="teal" colspan="2"/>
  </tr>
</table>

</body>
</html>