tor-browser

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

15.2.3.6-4-304.js (794B)


      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-304
      6 description: >
      7    Object.defineProperty - 'O' is an Arguments object, 'name' is an
      8    index named data property of 'O' but not defined in
      9    [[ParameterMap]] of 'O', and 'desc' is data descriptor, test
     10    updating multiple attribute values of 'name' (10.6
     11    [[DefineOwnProperty]] step 3)
     12 includes: [propertyHelper.js]
     13 ---*/
     14 
     15 (function() {
     16  Object.defineProperty(arguments, "0", {
     17    value: 20,
     18    writable: false,
     19    enumerable: false,
     20    configurable: false
     21  });
     22 
     23  verifyProperty(arguments, "0", {
     24    value: 20,
     25    writable: false,
     26    enumerable: false,
     27    configurable: false,
     28  });
     29 }());
     30 
     31 reportCompare(0, 0);