summaryrefslogtreecommitdiffstats
path: root/layout/base/crashtests/337268-1.html
blob: 8acd303e6937cf0e02fda2f1bdf3aeacf7b74adf (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
<html class="reftest-wait">
<head>
<script>

window.addEventListener("load", foo1);

function foo1()
{
  document.getElementById("a").style.width = "20em";
  setTimeout(foo2, 30);
}

function foo2()
{
  document.getElementById("b").style.width = "auto";
  document.documentElement.removeAttribute("class");
}

</script>
</head>

<body>

<table>
<tr>
<td id="a">

<table style="display: -moz-inline-box;">
<tr>
<td width="100%">

XXX XXX

<div id="b" style="width: 200%; display: table-column-group;"></div>

</td>
</tr>
</table>

</td>
</tr>
</table>

</body>
</html>