empty_fragment_iframe.html (208B)
1 <script> 2 var timeout; 3 onload = function() { 4 location.hash = ""; 5 timeout = setTimeout(function() { parent.child_succeeded() }, 2000); 6 }; 7 8 onbeforeunload = function() { 9 clearTimeout(timeout); 10 } 11 </script>