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

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

Issue 8777002: Chrome Frame test fixes for Vista/IE7. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: ToT sync 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 <!-- saved from url=(0014)about:internet --> 1 <!-- saved from url=(0014)about:internet -->
2 <html> 2 <html>
3 <!-- This page is meant to load inside the host browser like IE/FF --> 3 <!-- This page is meant to load inside the host browser like IE/FF -->
4 <head> 4 <head>
5 <script type="text/javascript" src="chrome_frame_tester_helpers.js"></script> 5 <script type="text/javascript" src="chrome_frame_tester_helpers.js"></script>
6 <script type="text/javascript"> 6 <script type="text/javascript">
7 var g_failure_timeout = null; 7 var g_failure_timeout = null;
8 var g_test_id = 1; 8 var g_test_id = 1;
9 var g_test_name = "ObjectFocus"; 9 var g_test_name = "ObjectFocus";
10 10
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 var panel = document.getElementById("status_panel"); 75 var panel = document.getElementById("status_panel");
76 panel.innerHTML = s; 76 panel.innerHTML = s;
77 } 77 }
78 78
79 </script> 79 </script>
80 </head> 80 </head>
81 <body onload="onLoad();"> 81 <body onload="onLoad();">
82 <div id="status_panel" style="border: 1px solid red; width: 100%"> 82 <div id="status_panel" style="border: 1px solid red; width: 100%">
83 Test running.... 83 Test running....
84 </div> 84 </div>
85 <object id="ChromeFrame" width="300" height="60" tabindex="0" 85 <span id="ChromeFrameSpan"></span>
86 codebase="http://www.google.com" 86 <script type="text/javascript">
87 classid="CLSID:E0A900DF-9611-4446-86BD-4B1D47E7DB2A"> 87 insertControl(
88 <param name="onload" value="return OnChromeFrameLoaded();"> 88 "ChromeFrameSpan",
89 <embed width="300" height="60" name="ChromeFrame" 89 { "width": "300",
90 onload="return OnChromeFrameLoaded();" 90 "height": "60",
91 type="application/chromeframe"> 91 "eventHandlers": { "onload": "return OnChromeFrameLoaded();" },
92 </embed> 92 "objectAttributes": { "tabindex": "0" },
93 </object> 93 "embedAttributes": {"id": null }
94 });
95 </script>
94 </body> 96 </body>
95 </html> 97 </html>
OLDNEW
« no previous file with comments | « chrome_frame/test/data/privileged_apis_host.html ('k') | chrome_frame/test/data/src_property_host.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698