blob: f82089d95d0698c107c544bdacfd807cca023a31 (
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
|
// Copyright (c) 2012 Ecma International. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es5id: 10.6-13-a-1
description: >
In non-strict mode, arguments object should have its own 'callee'
property defined (Step 13.a)
includes: [propertyHelper.js]
flags: [noStrict]
---*/
Object.defineProperty(Object.prototype, "callee", {
value: 1,
writable: false,
configurable: true
});
var argObj = (function () { return arguments })();
assert.sameValue(typeof argObj.callee, "function");
verifyProperty(argObj, "callee", {
writable: true,
enumerable: false,
configurable: true,
});
reportCompare(0, 0);
|