tor-browser

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

15.2.3.3-4-235.js (531B)


      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.3-4-235
      6 description: >
      7    Object.getOwnPropertyDescriptor - ensure that 'configurable'
      8    property of returned object is data property with correct 'value'
      9    attribute
     10 ---*/
     11 
     12 var obj = {
     13  "property": "ownDataProperty"
     14 };
     15 
     16 var desc = Object.getOwnPropertyDescriptor(obj, "property");
     17 
     18 assert.sameValue(desc.configurable, true, 'desc.configurable');
     19 
     20 reportCompare(0, 0);