tor-browser

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

15.2.3.6-4-317.js (1066B)


      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-317
      6 description: >
      7    Object.defineProperty - 'O' is an Arguments object, 'P' is generic
      8    own data property of 'O', test TypeError is thrown when updating
      9    the [[Value]] attribute value of 'P' which is not writable and not
     10    configurable (10.6 [[DefineOwnProperty]] step 4)
     11 includes: [propertyHelper.js]
     12 ---*/
     13 
     14 (function() {
     15  Object.defineProperty(arguments, "genericProperty", {
     16    value: 1001,
     17    writable: false,
     18    configurable: false
     19  });
     20  try {
     21    Object.defineProperty(arguments, "genericProperty", {
     22      value: 1002
     23    });
     24    throw new Test262Error("Expected an exception.");
     25  } catch (e) {
     26    if (!(e instanceof TypeError)) {
     27      throw new Test262Error("Expected TypeError, got " + e);
     28    }
     29  }
     30 
     31  verifyProperty(arguments, "genericProperty", {
     32    value: 1001,
     33    writable: false,
     34    enumerable: false,
     35    configurable: false,
     36  });
     37 }(1, 2, 3));
     38 
     39 reportCompare(0, 0);