OLD | NEW |
| (Empty) |
1 <html> | |
2 <head><title>Test to make sure that navigations sent back to IE</title> | |
3 <meta http-equiv="X-UA-Compatible" content="chrome=1" /> | |
4 <script type="text/javascript" | |
5 src="chrome_frame_tester_helpers.js"></script> | |
6 <script type="text/javascript"> | |
7 function test() { | |
8 var test_name = 'navigate_out'; | |
9 if (isRunningInMSIE()) { | |
10 onFailure(test_name, 1, 'Meta tag failed to load page in Chrome'); | |
11 } else { | |
12 window.location = "back_to_ie.html"; | |
13 } | |
14 } | |
15 </script> | |
16 </head> | |
17 <body onLoad="setTimeout(test, 100);"> | |
18 <h2>Test navigations in and out of IE</h2> | |
19 <p>This page should be loaded in chrome and then we redirect to another | |
20 page that should get loaded in IE. | |
21 </p> | |
22 </body> | |
23 </html> | |
OLD | NEW |