tor-browser

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

15.2.3.6-4-384.js (501B)


      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.6-4-384
      6 description: ES5 Attributes - [[Value]] attribute of data property is a boolean
      7 ---*/
      8 
      9 var obj = {};
     10 
     11 Object.defineProperty(obj, "prop", {
     12  value: false
     13 });
     14 
     15 var desc = Object.getOwnPropertyDescriptor(obj, "prop");
     16 
     17 assert.sameValue(obj.prop, false, 'obj.prop');
     18 assert.sameValue(desc.value, false, 'desc.value');
     19 
     20 reportCompare(0, 0);