OLD | NEW |
| (Empty) |
1 <html> | |
2 <head> | |
3 <meta http-equiv="x-ua-compatible" content="chrome=1" /> | |
4 <title>FullTab mode GET test</title> | |
5 </head> | |
6 | |
7 <script type="text/javascript" | |
8 src="chrome_frame_tester_helpers.js"></script> | |
9 | |
10 <script type="text/javascript"> | |
11 function onLoad() { | |
12 if (!isRunningInChrome()) { | |
13 location.href = "/quit?not_running_in_chrome"; | |
14 return; | |
15 } | |
16 location.href = "/quit?OK"; | |
17 } | |
18 </script> | |
19 | |
20 <body onload="onLoad();"> | |
21 This page should be rendered in chrome.<br /> | |
22 <a href="/quit?OK">Quit OK</a> | |
23 </body> | |
24 </html> | |
OLD | NEW |