summaryrefslogtreecommitdiffstats
path: root/dom/worklet/tests/test_import_with_cache.html
diff options
context:
space:
mode:
Diffstat (limited to 'dom/worklet/tests/test_import_with_cache.html')
-rw-r--r--dom/worklet/tests/test_import_with_cache.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/dom/worklet/tests/test_import_with_cache.html b/dom/worklet/tests/test_import_with_cache.html
new file mode 100644
index 000000000..316f914eb
--- /dev/null
+++ b/dom/worklet/tests/test_import_with_cache.html
@@ -0,0 +1,21 @@
+<!DOCTYPE HTML>
+<html>
+<head>
+ <title>Test for Worklet</title>
+ <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
+ <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
+ <script type="application/javascript" src="common.js"></script>
+</head>
+<body>
+
+<script type="application/javascript">
+
+SimpleTest.waitForExplicitFinish();
+SpecialPowers.pushPrefEnv(
+ {"set": [["dom.worklet.testing.enabled", true],
+ ["dom.worklet.enabled", true]]},
+ function() { loadTest("file_import_with_cache.html"); });
+
+</script>
+</body>
+</html>