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

Unified Diff: LayoutTests/http/tests/navigation/resources/https-in-page-cache-3.html

Issue 14495004: Remove left-over PageCache stuff (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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: LayoutTests/http/tests/navigation/resources/https-in-page-cache-3.html
diff --git a/LayoutTests/http/tests/navigation/resources/https-in-page-cache-3.html b/LayoutTests/http/tests/navigation/resources/https-in-page-cache-3.html
deleted file mode 100644
index 5b1cfc62dadd1c8cc297b91cb3005a4557becd91..0000000000000000000000000000000000000000
--- a/LayoutTests/http/tests/navigation/resources/https-in-page-cache-3.html
+++ /dev/null
@@ -1,18 +0,0 @@
-<script>
-
-window.onpageshow = function(evt) {
- if (!evt.persisted)
- return;
-
- alert("The page was restored from the page cache. Good job!");
-
- if (window.testRunner)
- testRunner.notifyDone();
-}
-
-window.onload = function() {
- alert("This page is https and should go in to the page cache.");
- setTimeout('window.location = "go-back.html"', 0);
-}
-
-</script>

Powered by Google App Engine
This is Rietveld 408576698