comparison: js/xpconnect/tests/unit/test_bug1033920.js
js/xpconnect/tests/unit/test_bug1033920.js
- branch
- TOR_BUG_3246
- changeset 7
- 129ffea94266
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 } |