blob: bca6e0cd72b6fa85fab9258bb72ccbc8eb43af0f (
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
|
/*
* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/licenses/publicdomain/
* Contributor:
* Jeff Walden <jwalden+code@mit.edu>
*/
//-----------------------------------------------------------------------------
var BUGNUMBER = 880591;
var summary =
"Assertion redefining length property of a frozen dictionary-mode array";
print(BUGNUMBER + ": " + summary);
/**************
* BEGIN TEST *
**************/
function convertToDictionaryMode(arr)
{
Object.defineProperty(arr, 0, { configurable: true });
Object.defineProperty(arr, 1, { configurable: true });
delete arr[0];
}
var arr = [];
convertToDictionaryMode(arr);
Object.freeze(arr);
Object.defineProperty(arr, "length", {});
/******************************************************************************/
if (typeof reportCompare === "function")
reportCompare(true, true);
print("Tests complete");
|