OLD | NEW |
| (Empty) |
1 <html> | |
2 <head> | |
3 <meta http-equiv="x-ua-compatible" content="chrome=1" /> | |
4 <!-- the http-equiv tag should be ignored since we're in a sub frame --> | |
5 <title>ChromeFrame Sub Frame test</title> | |
6 <script type="text/javascript" | |
7 src="chrome_frame_tester_helpers.js"></script> | |
8 | |
9 <script type="text/javascript"> | |
10 function OnLoad() { | |
11 if (isRunningInChrome()) { | |
12 onFailure("sub_frame", 1, 'Failed'); | |
13 } else { | |
14 onSuccess("sub_frame", 1); | |
15 } | |
16 } | |
17 </script> | |
18 </head> | |
19 | |
20 <body onLoad="OnLoad();"> | |
21 ChromeFrame full tab mode sub frame test. Verifies that frame pages are | |
22 not opened in CF even though they have the meta tag.<br> | |
23 This frame has the x-ua-compatible http-equiv tag, but should not be | |
24 loaded in CF since it's inside a frame. | |
25 </body> | |
26 </html> | |
OLD | NEW |