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

Unified Diff: chrome_frame/test/data/fulltab_before_unload_event_test.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
Index: chrome_frame/test/data/fulltab_before_unload_event_test.html
diff --git a/chrome_frame/test/data/fulltab_before_unload_event_test.html b/chrome_frame/test/data/fulltab_before_unload_event_test.html
deleted file mode 100644
index c10aaea76b757cf2996f5fcea86a2789320d2435..0000000000000000000000000000000000000000
--- a/chrome_frame/test/data/fulltab_before_unload_event_test.html
+++ /dev/null
@@ -1,30 +0,0 @@
-<html>
- <head>
- <title>ChromeFrame fulltab mode unload event test</title>
- <script type="text/javascript"
- src="chrome_frame_tester_helpers.js"></script>
-
- <script type="text/javascript">
- var new_window;
- function ValidateUserAgent() {
- if (isRunningInChrome()) {
- window.localStorage.unload_success = 0;
- new_window = window.open("fulltab_before_unload_event_main.html",
- "_self");
- }
- }
-
- function onBeforeUnload() {
- if (isRunningInChrome()) {
- new_window.localStorage.unload_success = 1;
- }
- }
- </script>
- </head>
-
- <body onLoad="setTimeout(ValidateUserAgent, 100);"
- onbeforeunload="onBeforeUnload();">
- ChromeFrame full tab mode unload event test.
- Validates that page unload events are received in ChromeFrame.
- </body>
-</html>
« no previous file with comments | « chrome_frame/test/data/fulltab_before_unload_event_main.html ('k') | chrome_frame/test/data/fulltab_delete_cookie_test.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698