| 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>
|
|
|