summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/common/dispatcher/executor-worker.js
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/common/dispatcher/executor-worker.js')
-rw-r--r--testing/web-platform/tests/common/dispatcher/executor-worker.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/testing/web-platform/tests/common/dispatcher/executor-worker.js b/testing/web-platform/tests/common/dispatcher/executor-worker.js
new file mode 100644
index 0000000000..ea065a6bf1
--- /dev/null
+++ b/testing/web-platform/tests/common/dispatcher/executor-worker.js
@@ -0,0 +1,12 @@
+importScripts('./dispatcher.js');
+
+const params = new URLSearchParams(location.search);
+const uuid = params.get('uuid');
+
+let executeOrders = async function() {
+ while(true) {
+ let task = await receive(uuid);
+ eval(`(async () => {${task}})()`);
+ }
+};
+executeOrders();