Bug 567020 - Intermittent timeout in 343889-1.html, leading to the crashtest suite being aborted; r=jst

This commit is contained in:
Ehsan Akhgari 2010-06-04 13:28:19 -04:00
parent 0bfd15f681
commit a4de7ef4a2

View File

@ -1,15 +1,18 @@
<Html>
<Html class="reftest-wait">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf8">
</head>
<body>
<body onload="boom()">
<iframe src="#" id="data"></iframe>
<script>
function boom() {
var d=document.getElementById('data').contentDocument;
d.clear()
var text='Тест';
d.write(text);
d.close()
d.close();
document.documentElement.removeAttribute("class");
}
</script>
</body>
</html>