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

Unified Diff: LayoutTests/http/tests/appcache/max-size.html

Issue 40513003: Delete/move the remaining stale tests in TestExpectations. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: delete plugins/reentrant-update-widget-positions.html as well Created 7 years, 2 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/appcache/max-size.html
diff --git a/LayoutTests/http/tests/appcache/max-size.html b/LayoutTests/http/tests/appcache/max-size.html
deleted file mode 100644
index e6127d04a7394fd6e3b02fe3963defd3fcba31ba..0000000000000000000000000000000000000000
--- a/LayoutTests/http/tests/appcache/max-size.html
+++ /dev/null
@@ -1,28 +0,0 @@
-<html manifest="resources/maxsize.manifest">
-<body>
-<script>
- if (window.testRunner) {
- testRunner.setAppCacheMaximumSize(10 * 1024);
- testRunner.dumpAsText();
- testRunner.waitUntilDone();
- }
-
- function log(message)
- {
- document.getElementById("result").innerHTML += message + "<br>";
- if (window.testRunner) {
- testRunner.setAppCacheMaximumSize(100 * 1024 * 1024);
- testRunner.notifyDone();
- }
- }
-
- applicationCache.onerror = function() { log("SUCCESS"); }
- applicationCache.oncached = function() { log("FAIL: received unexpected cached event"); }
- applicationCache.onnoupdate = function() { log("FAIL: received unexpected onnoupdate event"); }
- applicationCache.onupdateready = function() { log("FAIL: received unexpected onupdateready event"); }
-</script>
-
-<p>Cache a manifest that contains a resource that is too large to fit. The layout test controller sets a maximum size of 10KB for the application cache database file.</p>
-<div id=result></div>
-</body>
-</html>
« no previous file with comments | « LayoutTests/http/tests/appcache/interrupted-update-expected.txt ('k') | LayoutTests/http/tests/appcache/max-size-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698