1
0
Fork 0
firefox/dom/base/test/file_bug326337_outer.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

15 lines
323 B
HTML

<!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>