summaryrefslogtreecommitdiff
path: root/browser/base/content/test/offlineChild.html
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2014-07-02 00:07:24 -0400
committerMatt A. Tobin <email@mattatobin.com>2014-07-02 05:58:53 -0400
commit77707b62085f862709562185e615634e7431080a (patch)
treecb1d173d0dbae3332df6d4a1160336e04c2286a7 /browser/base/content/test/offlineChild.html
parent432326d2eae38aaacaeff9e790a2835d6578ee3b (diff)
downloadpalemoon-gre-77707b62085f862709562185e615634e7431080a.tar.gz
Remove tests from /browser (except /browser/metro)
Diffstat (limited to 'browser/base/content/test/offlineChild.html')
-rw-r--r--browser/base/content/test/offlineChild.html20
1 files changed, 0 insertions, 20 deletions
diff --git a/browser/base/content/test/offlineChild.html b/browser/base/content/test/offlineChild.html
deleted file mode 100644
index 43f225b3b..000000000
--- a/browser/base/content/test/offlineChild.html
+++ /dev/null
@@ -1,20 +0,0 @@
-<html manifest="offlineChild.cacheManifest">
-<head>
-<title></title>
-<script type="text/javascript">
-
-function finish(success) {
- window.parent.postMessage(success ? "success" : "failure", "*");
-}
-
-applicationCache.oncached = function() { finish(true); }
-applicationCache.onnoupdate = function() { finish(true); }
-applicationCache.onerror = function() { finish(false); }
-
-</script>
-</head>
-
-<body>
-<h1>Child</h1>
-</body>
-</html>