OLD | NEW |
1 <html> | 1 <html> |
2 <head><title>src property test - page 2</title> | 2 <head><title>src property test - page 2</title> |
| 3 <script type="text/javascript" src="chrome_frame_tester_helpers.js"> |
| 4 </script> |
| 5 <script type="text/javascript"> |
| 6 function onLoad() { |
| 7 if (isRunningInChrome()) { |
| 8 onFailure("SrcProperty", 1, |
| 9 "src_property_frame2.html should not load in Chrome"); |
| 10 return; |
| 11 } else { |
| 12 onSuccess("SrcProperty", 1); |
| 13 } |
| 14 } |
| 15 </script> |
3 </head> | 16 </head> |
4 <body> | 17 <body onload="onLoad();"> |
5 <h2>Redirected!</h2> | 18 <h2>Redirected!</h2> |
6 <p>All finished.</p> | 19 <p>All finished.</p> |
7 </body> | 20 </body> |
8 </html> | 21 </html> |
OLD | NEW |