gecko/content/base/crashtests/343889-1.html
Ehsan Akhgari 717347a6c6 Bug 567020 - Intermittent timeout in 343889-1.html, leading to the crashtest suite being aborted; r=jst
(transplanted from 44439c29d5b22d2b5da8b8ee86c270b18dc922fc)

--HG--
extra : transplant_source : DC%9C%29%D5%B2-%2B%5D%A8%B8%EE%86%C2p%B1%8D%C9%22%FC
2010-06-04 13:28:19 -04:00

19 lines
387 B
HTML

<Html class="reftest-wait">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf8">
</head>
<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();
document.documentElement.removeAttribute("class");
}
</script>
</body>
</html>