summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/arguments-object/10.6-7-1.js
blob: 6836c3ca0e45bc980d3a03727e2cc1b7734752b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// Copyright (c) 2012 Ecma International.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
es5id: 10.6-7-1
description: >
    Arguments Object has length as its own property and does not
    invoke the setter defined on Object.prototype.length (Step 7)
includes: [propertyHelper.js]
---*/

var data = "data";
var getFunc = function () {
    return 12;
};

var setFunc = function (value) {
    data = value;
};

Object.defineProperty(Object.prototype, "length", {
    get: getFunc,
    set: setFunc,
    configurable: true
});

var argObj = (function () { return arguments })();

verifyProperty(argObj, "length", {
    value: 0,
    writable: true,
    enumerable: false,
    configurable: true,
});

assert.sameValue(data, "data", 'data');

reportCompare(0, 0);