Lines Matching defs:sandbox
9 // not found on the sandbox. In the following test, the explicit check
16 // on the global proxy if the property is not found on the sandbox.
18 // foo is not defined on the sandbox until we call CopyProperties().
19 // In the GetterCallback, we do not find the property on the sandbox and
21 // the sandbox, we replace it by
26 const sandbox = { console };
27 sandbox.document = { defaultView: sandbox };
28 vm.createContext(sandbox);
36 vm.runInContext(code, sandbox);
37 assert.strictEqual(sandbox.result, true);