summaryrefslogtreecommitdiffstats
path: root/dom/base/test/file_browser_refresh_non_cacheable.sjs
diff options
context:
space:
mode:
Diffstat (limited to 'dom/base/test/file_browser_refresh_non_cacheable.sjs')
-rw-r--r--dom/base/test/file_browser_refresh_non_cacheable.sjs6
1 files changed, 6 insertions, 0 deletions
diff --git a/dom/base/test/file_browser_refresh_non_cacheable.sjs b/dom/base/test/file_browser_refresh_non_cacheable.sjs
new file mode 100644
index 0000000000..9b5a39abed
--- /dev/null
+++ b/dom/base/test/file_browser_refresh_non_cacheable.sjs
@@ -0,0 +1,6 @@
+"use strict";
+
+function handleRequest(request, response) {
+ response.setHeader("Content-Type", "text/html", false);
+ response.setHeader("Cache-Control", "no-store");
+}