summaryrefslogtreecommitdiffstats
path: root/chrome_frame/test/data/navigate_out.html
blob: 5f447c95a604ce9f1cdf0fa3909c5fc660a32504 (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 'gcf:' version and </p>
  </body>
</html>