summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/workers/Worker_script_mimetype.htm
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/workers/Worker_script_mimetype.htm')
-rw-r--r--testing/web-platform/tests/workers/Worker_script_mimetype.htm14
1 files changed, 14 insertions, 0 deletions
diff --git a/testing/web-platform/tests/workers/Worker_script_mimetype.htm b/testing/web-platform/tests/workers/Worker_script_mimetype.htm
new file mode 100644
index 000000000..04fe68e66
--- /dev/null
+++ b/testing/web-platform/tests/workers/Worker_script_mimetype.htm
@@ -0,0 +1,14 @@
+<!DOCTYPE html>
+<title> Worker constructor with script inside text file </title>
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<div id=log></div>
+<script>
+async_test(function(t) {
+ var worker = new Worker('./support/WorkerText.txt');
+ worker.onmessage = t.step_func_done(function(e) {
+ assert_equals(e.data, "Pass");
+ });
+ worker.postMessage("start");
+});
+</script>