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

Unified 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 side-by-side diff with in-line comments
Download patch
« 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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/test/data/simple_object_focus.html
diff --git a/chrome_frame/test/data/simple_object_focus.html b/chrome_frame/test/data/simple_object_focus.html
index 138ffa5040ff2bb6a207329785bdcf56b4e73b0c..4d93f2861f594594b7eba47379e06b4adba29705 100644
--- a/chrome_frame/test/data/simple_object_focus.html
+++ b/chrome_frame/test/data/simple_object_focus.html
@@ -82,14 +82,16 @@ function status(s) {
<div id="status_panel" style="border: 1px solid red; width: 100%">
Test running....
</div>
-<object id="ChromeFrame" width="300" height="60" tabindex="0"
- codebase="http://www.google.com"
- classid="CLSID:E0A900DF-9611-4446-86BD-4B1D47E7DB2A">
- <param name="onload" value="return OnChromeFrameLoaded();">
- <embed width="300" height="60" name="ChromeFrame"
- onload="return OnChromeFrameLoaded();"
- type="application/chromeframe">
- </embed>
-</object>
+<span id="ChromeFrameSpan"></span>
+<script type="text/javascript">
+insertControl(
+ "ChromeFrameSpan",
+ { "width": "300",
+ "height": "60",
+ "eventHandlers": { "onload": "return OnChromeFrameLoaded();" },
+ "objectAttributes": { "tabindex": "0" },
+ "embedAttributes": {"id": null }
+ });
+</script>
</body>
</html>
« 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