mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
66 lines
1.2 KiB
JavaScript
66 lines
1.2 KiB
JavaScript
dump('loaded child cpow test\n');
|
|
|
|
content.document.title = "Hello, Kitty";
|
|
|
|
(function start() {
|
|
sync_test();
|
|
async_test();
|
|
sendAsyncMessage("cpows:done", {});
|
|
}
|
|
)();
|
|
|
|
function ok(condition, message) {
|
|
dump('condition: ' + condition + ', ' + message + '\n');
|
|
if (!condition) {
|
|
sendAsyncMessage("cpows:fail", { message: message });
|
|
throw 'failed check: ' + message;
|
|
}
|
|
}
|
|
|
|
var sync_obj;
|
|
var async_obj;
|
|
|
|
function make_object()
|
|
{
|
|
let o = { };
|
|
o.i = 5;
|
|
o.b = true;
|
|
o.s = "hello";
|
|
o.x = { i: 10 };
|
|
o.f = function () { return 99; };
|
|
|
|
// Doing anything with this Proxy will throw.
|
|
var throwing = new Proxy({}, new Proxy({}, {
|
|
get: function (trap) { throw trap; }
|
|
}));
|
|
|
|
return { "data": o,
|
|
"throwing": throwing,
|
|
"document": content.document
|
|
};
|
|
}
|
|
|
|
function make_json()
|
|
{
|
|
return { check: "ok" };
|
|
}
|
|
|
|
function sync_test()
|
|
{
|
|
dump('beginning cpow sync test\n');
|
|
sync_obj = make_object();
|
|
sendSyncMessage("cpows:sync",
|
|
make_json(),
|
|
make_object());
|
|
}
|
|
|
|
function async_test()
|
|
{
|
|
dump('beginning cpow async test\n');
|
|
async_obj = make_object();
|
|
sendAsyncMessage("cpows:async",
|
|
make_json(),
|
|
async_obj);
|
|
}
|
|
|