tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

test_bug1033920.js (170B)


      1 function run_test() {
      2  var sb = Cu.Sandbox('http://www.example.com');
      3  var o = new sb.Object();
      4  o.__proto__ = null;
      5  Assert.equal(Object.getPrototypeOf(o), null);
      6 }