mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-23 12:53:07 +09:00
7 lines
198 B
JavaScript
7 lines
198 B
JavaScript
const Cu = Components.utils;
|
|
function run_test() {
|
|
var sb = Cu.Sandbox('http://www.example.com');
|
|
var o = new sb.Object();
|
|
o.__proto__ = null;
|
|
do_check_eq(Object.getPrototypeOf(o), null);
|
|
}
|