summaryrefslogtreecommitdiffstats
path: root/chrome_frame/test/data/back_to_ie.html
blob: ad4b61dba22703cfc2c2aa873c5474a1a65c1dad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<html>
  <head><title>Back to IE</title>
    <script type="text/javascript"
        src="chrome_frame_tester_helpers.js"></script>

    <script type="text/javascript">
      function test() {
        var test_name = 'navigate_out';
        if (isRunningInMSIE()) {
          onSuccess(test_name, 1);
        } else {
          onFailure(test_name, 1, 'Failed');
        }
      }
    </script>
  </head>
  <body onLoad="test();">
    <h2>Redirected!</h2>
    <p>This page should have loaded in IE</p>
  </body>
</html>