blob: 3a84f0b667cbcf8e1a63aaf65319dab33b526c8b (
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
|
/*
* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/licenses/publicdomain/
* Contributor:
* Jeff Walden <jwalden+code@mit.edu>
*/
//-----------------------------------------------------------------------------
var BUGNUMBER = 518663;
var summary =
'Object.getOwnPropertyNames should play nicely with enumerator caching';
print(BUGNUMBER + ": " + summary);
/**************
* BEGIN TEST *
**************/
for (var p in JSON);
var names = Object.getOwnPropertyNames(JSON);
assertEq(names.length >= 2, true,
"wrong number of property names? [" + names + "]");
assertEq(names.indexOf("parse") >= 0, true);
assertEq(names.indexOf("stringify") >= 0, true);
/******************************************************************************/
reportCompare(true, true);
print("All tests passed!");
|