mirror of
https://github.com/roytam1/basilisk55.git
synced 2026-07-05 06:49:23 +00:00
26 lines
651 B
JavaScript
26 lines
651 B
JavaScript
function run_test() {
|
|
var sb = new Cu.Sandbox('http://www.example.com',
|
|
{ wantGlobalProperties: ["structuredClone"] });
|
|
|
|
sb.equal = equal;
|
|
|
|
sb.testing = Components.utils.cloneInto({xyz: 123}, sb);
|
|
Cu.evalInSandbox(`
|
|
equal(structuredClone("abc"), "abc");
|
|
|
|
var obj = {a: 1};
|
|
obj.self = obj;
|
|
var clone = structuredClone(obj);
|
|
equal(clone.a, 1);
|
|
equal(clone.self, clone);
|
|
|
|
var ab = new ArrayBuffer(1);
|
|
clone = structuredClone(ab, {transfer: [ab]});
|
|
equal(clone.byteLength, 1);
|
|
equal(ab.byteLength, 0);
|
|
|
|
clone = structuredClone(testing);
|
|
equal(clone.xyz, 123);
|
|
`, sb);
|
|
}
|