blob: 7e092ec8c6c94838aebe00ab82cc6006b83bf24c (
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": prop, "value": self[prop] });
}
postMessage({ "testfinished": 1 });
|