blob: d79732b281cce6b0c8092137e27e1199f4c14f2a (
plain)
1
2
3
4
5
6
7
8
9
10
11
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, value: self[prop] });
}
postMessage({ testfinished: 1 });
|