blob: 9d63f7263245c3a2e651fdc2da28055592c9eb3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!DOCTYPE html>
<html>
<body>
<iframe id="inner" src="http://test1.example.com/tests/dom/base/test/file_bug326337_inner.html"></iframe>
<script>
var t = setInterval(doCheck, 300);
function doCheck() {
if (location.hash) {
clearInterval(t);
window.opener.finishTest(location.hash);
}
}
</script>
</body>
</html>
|