Backed out changeset 06f41c22f3a6 (bug 1888460) for causing linux xpcshell failures...
[gecko.git] / dom / workers / test / content_worker.js
blobd79732b281cce6b0c8092137e27e1199f4c14f2a
1 /**
2  * Any copyright is dedicated to the Public Domain.
3  * http://creativecommons.org/publicdomain/zero/1.0/
4  */
5 var props = {
6   ctypes: 1,
7   OS: 1,
8 };
9 for (var prop in props) {
10   postMessage({ prop, value: self[prop] });
12 postMessage({ testfinished: 1 });