mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
9e6a9aed49
--HG-- extra : rebase_source : 2ccc411444fd9b16d96d152d4f85931c1706f359
13 lines
273 B
JavaScript
13 lines
273 B
JavaScript
/**
|
|
* 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 });
|