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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <script>
2
3 window.onpageshow = function(evt) {
4 if (!evt.persisted)
5 return;
6
7 alert("The page was restored from the page cache. Good job!");
8
9 if (window.testRunner)
10 testRunner.notifyDone();
11 }
12
13 window.onload = function() {
14 alert("This page is https and should go in to the page cache.");
15 setTimeout('window.location = "go-back.html"', 0);
16 }
17
18 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698