OLD | NEW |
| (Empty) |
1 <html> | |
2 <head> | |
3 <title>Multiple ChromeFrame instances target page.</title> | |
4 <script type="text/javascript" | |
5 src="chrome_frame_tester_helpers.js"></script> | |
6 | |
7 <script type="text/javascript"> | |
8 function onLoad() { | |
9 if (!isRunningInChrome()) { | |
10 onFailure("WidgetMode_MultipleInstancesTest", 1, | |
11 "Page not running in Chrome"); | |
12 } else { | |
13 onSuccess("WidgetMode_MultipleInstancesTest", 1); | |
14 } | |
15 } | |
16 </script> | |
17 </head> | |
18 | |
19 <body onLoad="onLoad()"> | |
20 ChromeFrame multiple widget instances test | |
21 </body> | |
22 </html> | |
OLD | NEW |