13 lines
302 B
HTML
13 lines
302 B
HTML
<html class="reftest-wait">
|
|
<script>
|
|
function test() {
|
|
// If the reload in the iframe succeeds we might crash, so wait for it.
|
|
setTimeout(function() {
|
|
document.documentElement.className = "";
|
|
}, 500);
|
|
}
|
|
</script>
|
|
<body onload="test()">
|
|
<iframe src="1804803.sjs"></iframe>
|
|
</body>
|
|
</html>
|