tor-browser

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

15.2.3.5-4-18.js (590B)


      1 // Copyright (c) 2012 Ecma International.  All rights reserved.
      2 // This code is governed by the BSD license found in the LICENSE file.
      3 
      4 /*---
      5 es5id: 15.2.3.5-4-18
      6 description: >
      7    Object.create - an enumerable inherited data property in
      8    'Properties' is not defined in 'obj' (15.2.3.7 step 3)
      9 ---*/
     10 
     11 var proto = {};
     12 
     13 proto.prop = {};
     14 
     15 var ConstructFun = function() {};
     16 ConstructFun.prototype = proto;
     17 var child = new ConstructFun();
     18 
     19 var newObj = Object.create({}, child);
     20 
     21 assert.sameValue(newObj.hasOwnProperty("prop"), false, 'newObj.hasOwnProperty("prop")');
     22 
     23 reportCompare(0, 0);