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

Unified Diff: chrome_frame/test/data/in_head.html

Issue 126143005: Remove Chrome Frame code and resources. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sync to r244038 Created 6 years, 11 months 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/iframe_basic_host.html ('k') | chrome_frame/test/data/initialize_hidden.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/test/data/in_head.html
diff --git a/chrome_frame/test/data/in_head.html b/chrome_frame/test/data/in_head.html
deleted file mode 100644
index a093c7178e905373c719c264a5443013c2854c4d..0000000000000000000000000000000000000000
--- a/chrome_frame/test/data/in_head.html
+++ /dev/null
@@ -1,62 +0,0 @@
-<html>
- <!-- This page is meant to load inside the host browser like IE/FF -->
- <head><title>Initialize hidden chrome frame</title>
- <script type="text/javascript" src="chrome_frame_tester_helpers.js">
- </script>
- <script type="text/javascript">
- var g_failure_timeout = null;
- var g_test_id = 1;
- var g_test_name = 'InHead';
- var g_cf3_loaded = false;
-
- function OnNavigationFailed() {
- onFailure(g_test_name, g_test_id, 'ChromeFrame Navigation failed');
- }
-
- function OnObjectFocusFailed() {
- appendStatus('chrome frame focus failed');
- onFailure(g_test_name, g_test_id, 'Embed in head test failed');
- }
-
- function OnFrameMessage(evt) {
- appendStatus('Chrome frame visible and focused');
- if (evt.data == 'btnOnFocus') {
- window.clearTimeout(g_failure_timeout);
- g_failure_timeout = null;
- appendStatus('Chrome frame visible and focused');
-
- onSuccess(g_test_name, g_test_id);
- }
- }
-
- function OnFrameLoad() {
- document.ChromeFrame.focus();
- }
-
- function OnLoad() {
- g_failure_timeout = window.setTimeout(OnObjectFocusFailed, 10000);
- }
- </script>
- <object id="ChromeFrame" width="300" height="80" tabindex="0"
- codebase="http://www.google.com"
- classid="CLSID:E0A900DF-9611-4446-86BD-4B1D47E7DB2A">
- <param name="src" value="simple_object_focus_cf.html">
- <param name="onload" value="OnFrameLoad();">
- <param name="onloaderror" value="OnNavigationFailed();">
- <param name="onmessage" value="OnFrameMessage(arguments[0]);">
- <embed width="300" height="80" name="ChromeFrame"
- type="application/chromeframe"
- src="simple_object_focus_cf.html"
- onload="OnFrameLoad();"
- onloaderror="OnNavigationFailed();"
- onmessage="OnFrameMessage(arguments[0]);">
- </embed>
- </object>
- </head>
- <body onload = "OnLoad();">
- <div id="statusPanel" style="border: 1px solid red; width: 100%">
- Test running....
- </div>
- <div id = "dummy"> </div>
- </body>
-</html>
« no previous file with comments | « chrome_frame/test/data/iframe_basic_host.html ('k') | chrome_frame/test/data/initialize_hidden.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698