blob: 7e98e81c16e439c1868b8a57dcb098f410fc04a8 [file] [log] [blame]
Test to ensure correct behaviour of ShadowRealm global scope
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
Object.getPrototypeOf(globalThis) === Object.prototype
globalThis.__proto__ = { alpha: "omega" };
Object.setPrototypeOf(globalThis, { chuckle: "buckle" });
Reflect.setPrototypeOf(globalThis, { zoo: "moo" });
PASS ShadowRealm global scope is an ordinary object