diff options
Diffstat (limited to 'testing/web-platform/tests/workers/baseurl/alpha/importScripts.html')
-rw-r--r-- | testing/web-platform/tests/workers/baseurl/alpha/importScripts.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/testing/web-platform/tests/workers/baseurl/alpha/importScripts.html b/testing/web-platform/tests/workers/baseurl/alpha/importScripts.html new file mode 100644 index 000000000..0fbd35b44 --- /dev/null +++ b/testing/web-platform/tests/workers/baseurl/alpha/importScripts.html @@ -0,0 +1,14 @@ +<!doctype html> +<meta charset=utf-8> +<title>Base URL in workers: importScripts</title> +<script src="/resources/testharness.js"></script> +<script src="/resources/testharnessreport.js"></script> +<script> +async_test(function() { + var worker = new Worker("../beta/importScripts.py"); + worker.onmessage = this.step_func_done(function(e) { + assert_equals(e.data, "gamma"); + }); + worker.onerror = this.unreached_func("Got error event"); +}); +</script> |