summaryrefslogtreecommitdiffstats
path: root/toolkit/components/thumbnails/test/background_red_redirect.sjs
diff options
context:
space:
mode:
Diffstat (limited to 'toolkit/components/thumbnails/test/background_red_redirect.sjs')
-rw-r--r--toolkit/components/thumbnails/test/background_red_redirect.sjs10
1 files changed, 0 insertions, 10 deletions
diff --git a/toolkit/components/thumbnails/test/background_red_redirect.sjs b/toolkit/components/thumbnails/test/background_red_redirect.sjs
deleted file mode 100644
index 5f0852e19..000000000
--- a/toolkit/components/thumbnails/test/background_red_redirect.sjs
+++ /dev/null
@@ -1,10 +0,0 @@
-/* Any copyright is dedicated to the Public Domain.
- http://creativecommons.org/publicdomain/zero/1.0/ */
-
-function handleRequest(aRequest, aResponse) {
- // Set HTTP Status.
- aResponse.setStatusLine(aRequest.httpVersion, 301, "Moved Permanently");
-
- // Set redirect URI.
- aResponse.setHeader("Location", "http://mochi.test:8888/browser/toolkit/components/thumbnails/test/background_red.html");
-}