Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(78)

Side by Side Diff: chrome_frame/test/data/navigateurl_relative_host.html

Issue 8777002: Chrome Frame test fixes for Vista/IE7. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: whitespace fix Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <html> 1 <html>
2 <!-- This page is meant to load inside the host browser like IE/FF --> 2 <!-- This page is meant to load inside the host browser like IE/FF -->
3 <head> 3 <head>
4 <script type="text/javascript" src="chrome_frame_tester_helpers.js"> 4 <script type="text/javascript" src="chrome_frame_tester_helpers.js">
5 </script> 5 </script>
6 <script type="text/javascript"> 6 <script type="text/javascript">
7 function onLoad() { 7 function onLoad() {
8 var chromeFrame = GetChromeFrame(); 8 var chromeFrame = GetChromeFrame();
9 chromeFrame.onloaderror = OnNavigationFailed; 9 chromeFrame.onloaderror = OnNavigationFailed;
10 setTimeout(NavigateToURL, 100); 10 setTimeout(NavigateToURL, 100);
(...skipping 25 matching lines...) Expand all
36 function GetChromeFrame() { 36 function GetChromeFrame() {
37 return window.document.ChromeFrame; 37 return window.document.ChromeFrame;
38 } 38 }
39 </script> 39 </script>
40 </head> 40 </head>
41 41
42 <body onload="onLoad();"> 42 <body onload="onLoad();">
43 <div id="statusPanel" style="border: 1px solid red; width: 100%"> 43 <div id="statusPanel" style="border: 1px solid red; width: 100%">
44 Test running.... 44 Test running....
45 </div> 45 </div>
46 <object id="ChromeFrame" width="500" height="500" 46 <span id="ChromeFrameSpan"></span>
47 codebase="http://www.google.com" 47 <script type="text/javascript">
48 classid="CLSID:E0A900DF-9611-4446-86BD-4B1D47E7DB2A"> 48 insertControl("ChromeFrameSpan",
49 <param name="onload" value="return OnChromeFrameLoaded();"> 49 ' <object id="ChromeFrame" width="500" height="500"' +
50 <embed id="ChromeFramePlugin" width="500" height="500" 50 ' codebase="http://www.google.com"' +
51 name="ChromeFrame" onload="return OnChromeFrameLoaded();" 51 ' classid="CLSID:E0A900DF-9611-4446-86BD-4B1D47E7DB2A">' +
52 type="application/chromeframe"> 52 ' <param name="onload" value="return OnChromeFrameLoaded();">' +
53 </embed> 53 ' <embed id="ChromeFramePlugin" width="500" height="500"' +
54 </OBJECT> 54 ' name="ChromeFrame" onload="return OnChromeFrameLoaded();"' +
55 ' type="application/chromeframe">' +
56 ' </embed>' +
57 ' </OBJECT>');
58 </script>
55 <br /> 59 <br />
56 <br /> 60 <br />
57 61
58 <p>Tests ChromeFrame Navigation</p> 62 <p>Tests ChromeFrame Navigation</p>
59 </body> 63 </body>
60 </html> 64 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698