1 <html> 2 <head><title>Back to IE</title> 3 <script type="text/javascript" 4 src="chrome_frame_tester_helpers.js"></script> 5 6 <script type="text/javascript"> 7 function test() { 8 var test_name = 'navigate_out'; 9 if (isRunningInMSIE()) { 10 onSuccess(test_name, 1); 11 } else { 12 onFailure(test_name, 1, 'Failed'); 13 } 14 } 15 </script> 16 </head> 17 <body onLoad="test();"> 18 <h2>Redirected!</h2> 19 <p>This page should have loaded in IE</p> 20 </body> 21 </html> 22