OLD | NEW |
| (Empty) |
1 <html> | |
2 <head> | |
3 <meta http-equiv="x-ua-compatible" content="chrome=1" /> | |
4 <title>ChromeFrame window open popup</title> | |
5 <script type="text/javascript" src="chrome_frame_tester_helpers.js"></script> | |
6 <script type="text/javascript"> | |
7 function onLoad() { | |
8 if (!TestIfRunningInChrome()) { | |
9 onFailure("ChromeFrameWindowOpenPopup", | |
10 "Window Open failed to enter Chrome:-(", | |
11 "User agent = " + navigator.userAgent.toLowerCase()); | |
12 } else { | |
13 onSuccess("ChromeFrameWindowOpenPopup", 1); | |
14 } | |
15 } | |
16 | |
17 </script> | |
18 </head> | |
19 <body onload="onLoad();"> | |
20 ChromeFrame full tab mode window open popup test | |
21 </body> | |
22 </html> | |
OLD | NEW |