006-1.html (493B)
1 <!doctype html> 2 006-1 3 <script> 4 onpagehide = function() { 5 onpagehide = null; 6 setTimeout(function() { 7 parent.t.unreached_func('setTimeout survived navigatoin'); 8 }, 1000); 9 } 10 if (parent.loaded) { 11 setTimeout(function() { parent.t.done(); }, 2000); 12 } 13 onload = function() { 14 if (!parent.loaded) { 15 parent.loaded = true; 16 setTimeout(parent.t.step_func( 17 function() { 18 location="006-2.html?" + Math.random(); 19 } 20 ), 100); 21 } 22 } 23 </script>