tor-browser

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

null-handler.js (454B)


      1 // Copyright (C) 2015 the V8 project authors. All rights reserved.
      2 // This code is governed by the BSD license found in the LICENSE file.
      3 /*---
      4 es6id: 9.5.6
      5 description: >
      6    Throws a TypeError exception if handler is null.
      7 features: [Proxy]
      8 ---*/
      9 
     10 var p = Proxy.revocable({}, {});
     11 
     12 p.revoke();
     13 
     14 assert.throws(TypeError, function() {
     15  Object.defineProperty(p.proxy, "foo", {
     16    configurable: true,
     17    enumerable: true
     18  });
     19 });
     20 
     21 reportCompare(0, 0);