summaryrefslogtreecommitdiffstats
path: root/chrome_frame/test/data/src_property_frame2.html
blob: 4a7c63eae0de827fb1f3e634bc054bb31711c107 (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>src property test - page 2</title>
    <script type="text/javascript" src="chrome_frame_tester_helpers.js">
    </script>
    <script type="text/javascript">
      function onLoad() {
        if (isRunningInChrome()) {
          onFailure("SrcProperty", 1,
                    "src_property_frame2.html should not load in Chrome");
          return;
        } else {
          onSuccess("SrcProperty", 1);
        }
      }
  </script>
  </head>
  <body onload="onLoad();">
    <h2>Redirected!</h2>
    <p>All finished.</p>
  </body>
</html>