summaryrefslogtreecommitdiffstats
path: root/chrome_frame/test/data/full_tab_sub_frame2.html
blob: a288f2f4182d6bd8de29be746f82cc1f2a7035f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<html>
  <head>
    <!-- no meta tag here -->
    <title>ChromeFrame Sub Frame test</title>
    <script type="text/javascript"
        src="chrome_frame_tester_helpers.js"></script>

    <script type="text/javascript">
      function OnLoad() {
        if (isRunningInChrome()) {
          onFailure("sub_frame", 1, "Failed");
        }
      }
    </script>
  </head>

  <body onLoad="OnLoad();">
    ChromeFrame full tab mode sub frame test.<br>
    This is a regular frame (no meta tag).
  </body>
</html>