Mypal/layout/generic/crashtests/307979-1.html

28 lines
381 B
HTML
Raw Permalink Normal View History

2019-03-11 10:26:37 +00:00
<html class="reftest-wait">
<head>
<title>Crash testcase</title>
<script>
function foo()
{
document.body.appendChild(document.createElement('frameset'));
setTimeout(bar, 30);
}
function bar()
{
document.body.style.display = '-moz-groupbox';
document.documentElement.removeAttribute("class");
}
</script>
</head>
<body onload="setTimeout(foo, 30);">
</body>
</html>