mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-09 18:09:16 +00:00
8 lines
198 B
JavaScript
8 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);
|
|
}
|