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

Side by Side Diff: LayoutTests/fast/harness/page-cache-crash-on-data-urls.html

Issue 14195011: Removed WONTFIX tests (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 {
20 if (window.testRunner) {
21 testRunner.dumpAsText();
22 testRunner.waitUntilDone();
23 testRunner.setCanOpenWindows();
24 testRunner.overridePreference("WebKitUsesPageCachePreferenceKey", 1);
25 }
26 log("open page with data urls");
27 window.open("resources/cached-page-with-data-urls.html");
28 }
29 </script>
30
31 <body onload="test()">
32 <p>This tests that going back in history with page cache enabled is
33 not going to crash/ASSERT when the previous page has data:// URLs.</p>
34 <div id="result"></div>
35 </body>
36 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698