blob: 04afc2ed1a82d238947be0119fb4593f0c5690c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Copyright (c) 2012 Ecma International. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es5id: 15.2.3.6-4-125
description: >
Object.defineProperty - 'O' is an Array, 'name' is the length
property of 'O', test that RangeError exception is thrown when
[[Value]] field of 'desc' is undefined (15.4.5.1 step 3.c)
---*/
var arrObj = [];
assert.throws(RangeError, function() {
Object.defineProperty(arrObj, "length", {
value: undefined
});
});
reportCompare(0, 0);
|