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

Side by Side Diff: LayoutTests/fast/frames/frame-crash-with-page-cache.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 <html>
2 <script>
3 window.finish = function()
4 {
5 if (testRunner)
6 testRunner.notifyDone();
7 }
8
9 window.log = function(message) {
10 document.getElementById("result").innerHTML += message + "<br>";
11 }
12
13 window.failure = function(message) {
14 log("FAIL: " + message);
15 finish();
16 }
17
18 function test() {
19 if (window.testRunner) {
20 testRunner.dumpAsText();
21 testRunner.waitUntilDone();
22 testRunner.setCanOpenWindows();
23 testRunner.overridePreference("WebKitUsesPageCachePreferenceKey", 1);
24 }
25 log("open page-1");
26 window.open("resources/cached-page-1.html");
27 }
28 </script>
29
30 <body onload="test()">
31 If WebKit does not assert or crash, you passed.
32 <div id="result"></div>
33 </body>
34 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698