summaryrefslogtreecommitdiffstats
path: root/dom/workers/test/content_worker.js
diff options
context:
space:
mode:
Diffstat (limited to 'dom/workers/test/content_worker.js')
-rw-r--r--dom/workers/test/content_worker.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/dom/workers/test/content_worker.js b/dom/workers/test/content_worker.js
new file mode 100644
index 000000000..7e092ec8c
--- /dev/null
+++ b/dom/workers/test/content_worker.js
@@ -0,0 +1,12 @@
+/**
+ * Any copyright is dedicated to the Public Domain.
+ * http://creativecommons.org/publicdomain/zero/1.0/
+ */
+var props = {
+ 'ctypes': 1,
+ 'OS': 1
+};
+for (var prop in props) {
+ postMessage({ "prop": prop, "value": self[prop] });
+}
+postMessage({ "testfinished": 1 });