summaryrefslogtreecommitdiffstats
path: root/chrome_frame/test/data/src_property_frame1.html
blob: 784a4c8fb555712eb055f131a067b9bb5f122749 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<html>
  <head><title>src property test - page 1</title>
    <script type="text/javascript" src="chrome_frame_tester_helpers.js">
    </script>
    <script type="text/javascript">
      function redirect() {
        if (!isRunningInChrome()) {
          onFailure("SrcProperty", 1,
                    "src_property_frame1.html should not load in Chrome");
          return;
        }
        window.location = "src_property_frame2.html";
      }
    </script>
  </head>
  <body onLoad="setTimeout(redirect, 100);">
    <h2>Prepare to be redirected!</h2>
    <p>Redirecting to a new page within frame...</p>
  </body>
</html>