blob: 5103c00416baaca8c5af214d13477053aba02147 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<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>
|