OLD | NEW |
(Empty) | |
| 1 <!-- saved from url=(0014)about:internet --> |
| 2 <!-- Note that for the above Mark of the Web to work, the comment must |
| 3 be followed by a CR/LF ending, so please do not change the line endings. --
> |
| 4 <html> |
| 5 <!-- This page is meant to load inside a host browser like IE/FF --> |
| 6 <head> |
| 7 <meta http-equiv="X-UA-Compatible" content="chrome=1"/> |
| 8 <script type="text/javascript" src="chrome_frame_tester_helpers.js"></script> |
| 9 <script type="text/javascript"> |
| 10 |
| 11 function onLoad() { |
| 12 if (!TestIfRunningInChrome()) { |
| 13 onFailure("ChromeFrameWindowOpen", "Window Open failed :-(", |
| 14 "User agent = " + navigator.userAgent.toLowerCase()); |
| 15 } else { |
| 16 setTimeout(OpenPopup, 100); |
| 17 } |
| 18 } |
| 19 |
| 20 function OpenPopup() { |
| 21 window.open("chrome_frame_window_open_popup.html", "_self"); |
| 22 } |
| 23 </script> |
| 24 </head> |
| 25 |
| 26 <body onload="onLoad();"> |
| 27 <div id="statusPanel" style="border: 1px solid red; width: 100%"> |
| 28 ChromeFrame full tab mode window open test running.... |
| 29 </div> |
| 30 <p> |
| 31 |
| 32 </body> |
| 33 </html> |
OLD | NEW |