Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

/* Any copyright is dedicated to the Public Domain.
// Ensure target is closed if client is closed directly
function test() {
waitForExplicitFinish();
getParentProcessActors((client, target) => {
target.on("target-destroyed", () => {
ok(true, "Target was destroyed");
finish();
});
client.close();
});
}