Index: content/test/data/appcache/simple_page_with_manifest.html |
diff --git a/content/test/data/appcache/simple_page_with_manifest.html b/content/test/data/appcache/simple_page_with_manifest.html |
deleted file mode 100644 |
index d94228422f28f45347168cbe59ec4b6bf258a6ae..0000000000000000000000000000000000000000 |
--- a/content/test/data/appcache/simple_page_with_manifest.html |
+++ /dev/null |
@@ -1,22 +0,0 @@ |
-<!DOCTYPE html> |
-<html manifest="simple_page.manifest"> |
-<head> |
- <title>OK</title> |
- <script type="text/javascript"> |
- function onCachedEvent() { |
- window.document.title = "AppCache updated"; |
- } |
- |
- function onLoad() { |
- window.applicationCache.addEventListener('cached', onCachedEvent, false); |
- } |
- </script> |
-</head> |
- |
-<body onload="onLoad()"> |
- <p><img src="logo.png" width="336" height="69" /></p> |
- Basic AppCache test. The manifest for this page is specified in the |
- simple_page.manifest file. The title of the page is set to AppCache updated |
- if the cache is successfully updated. |
-</body> |
-</html> |