gecko-dev/layout/base/crashtests/337268-1.html
Florian Quèze 85611a7b6d Bug 1331081 - script generated patch to omit addEventListener/removeEventListener's third parameter when it's false, r=jaws.
--HG--
extra : rebase_source : a22344ee1569f58f1f0a01017bfe0d46a6a14602
2017-01-17 11:50:25 +01:00

45 lines
567 B
HTML

<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>