diff options
author | Matt A. Tobin <email@mattatobin.com> | 2014-07-02 00:07:24 -0400 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2014-07-02 05:58:53 -0400 |
commit | 77707b62085f862709562185e615634e7431080a (patch) | |
tree | cb1d173d0dbae3332df6d4a1160336e04c2286a7 /browser/base/content/test/offlineChild.html | |
parent | 432326d2eae38aaacaeff9e790a2835d6578ee3b (diff) | |
download | palemoon-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.html | 20 |
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> |