comparison: js/xpconnect/tests/unit/test_bug1033920.js
js/xpconnect/tests/unit/test_bug1033920.js
- changeset 0
- 6474c204b198
equal
deleted
inserted
replaced
|
1 const Cu = Components.utils; |
|
2 function run_test() { |
|
3 var sb = Cu.Sandbox('http://www.example.com'); |
|
4 var o = new sb.Object(); |
|
5 o.__proto__ = null; |
|
6 do_check_eq(Object.getPrototypeOf(o), null); |
|
7 } |