blob: 7b910b4da41c9d37a3fb6ac15be59daaa4a9437b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<html>
<head><title>Test to make sure that navigations sent back to IE</title>
<script type="text/javascript"
src="chrome_frame_tester_helpers.js"></script>
<script type="text/javascript">
function test() {
if (isRunningInMSIE()) {
reloadUsingCFProtocol();
} else {
window.location = "back_to_ie.html";
}
}
</script>
</head>
<body onLoad="setTimeout(test, 100);">
<h2>Prepare to be redirected!</h2>
<p>Redirects the same page to its 'cf:' version and </p>
</body>
</html>
|