2010-06-04 10:28:19 -07:00
|
|
|
<Html class="reftest-wait">
|
2010-01-10 19:50:41 -08:00
|
|
|
<head>
|
|
|
|
<meta http-equiv="content-type" content="text/html; charset=utf8">
|
|
|
|
</head>
|
2010-06-04 10:28:19 -07:00
|
|
|
<body onload="boom()">
|
2010-01-10 19:50:41 -08:00
|
|
|
<iframe src="#" id="data"></iframe>
|
|
|
|
<script>
|
2010-06-04 10:28:19 -07:00
|
|
|
function boom() {
|
2010-01-10 19:50:41 -08:00
|
|
|
var d=document.getElementById('data').contentDocument;
|
|
|
|
d.clear()
|
|
|
|
var text='Тест';
|
|
|
|
d.write(text);
|
2010-06-04 10:28:19 -07:00
|
|
|
d.close();
|
|
|
|
document.documentElement.removeAttribute("class");
|
|
|
|
}
|
2010-01-10 19:50:41 -08:00
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|