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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/harness/page-cache-crash-on-data-urls.html
diff --git a/LayoutTests/fast/harness/page-cache-crash-on-data-urls.html b/LayoutTests/fast/harness/page-cache-crash-on-data-urls.html
deleted file mode 100644
index 737e4ca6f50e0a4a3c2d9a71e39b1f32d700ab86..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/harness/page-cache-crash-on-data-urls.html
+++ /dev/null
@@ -1,36 +0,0 @@
-<html>
-<script>
-window.finish = function()
-{
- if (testRunner)
- testRunner.notifyDone();
-}
-
-window.log = function(message) {
- document.getElementById("result").innerHTML += message + "<br>";
-}
-
-window.failure = function(message) {
- log("FAIL: " + message);
- finish();
-}
-
-function test()
-{
- if (window.testRunner) {
- testRunner.dumpAsText();
- testRunner.waitUntilDone();
- testRunner.setCanOpenWindows();
- testRunner.overridePreference("WebKitUsesPageCachePreferenceKey", 1);
- }
- log("open page with data urls");
- window.open("resources/cached-page-with-data-urls.html");
-}
-</script>
-
-<body onload="test()">
-<p>This tests that going back in history with page cache enabled is
-not going to crash/ASSERT when the previous page has data:// URLs.</p>
-<div id="result"></div>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698