- add sources.
[platform/framework/web/crosswalk.git] / src / chrome_frame / test / data / chrome_frame_http_header_frameset.html
1 <html>
2   <head>
3     <script type="text/javascript"
4             src="chrome_frame_tester_helpers.js"></script>
5     <script type="text/javascript">
6       var testName = 'FullTabHttpHeaderFrameset';
7
8       // Called by the child document to report success.
9       function reportNotRunningInCF() {
10         onSuccess(testName, 1);
11       }
12     </script>
13   </head>
14   <frameset rows="10%, *">
15     <frame src="about:blank" name="dummy">
16     <frame src="chrome_frame_http_header_frameset_child.html" name="blank">
17   </frameset>
18
19     <script type="text/javascript">
20       var testName = 'FullTabHttpHeaderFrameset';
21       (function(){
22         try {
23           if (isRunningInChrome()) {
24             onFailure(testName, 1);
25           }
26         } catch (e) {
27           onFailure(testName, 1,
28                     testName + ' failed with error: ' + e);
29         }
30       })();
31     </script>
32
33 </html>