js/src/tests/ecma_5/Object/15.2.3.4-01.js

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/js/src/tests/ecma_5/Object/15.2.3.4-01.js	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,30 @@
     1.4 +/*
     1.5 + * Any copyright is dedicated to the Public Domain.
     1.6 + * http://creativecommons.org/licenses/publicdomain/
     1.7 + * Contributor:
     1.8 + *   Jeff Walden <jwalden+code@mit.edu>
     1.9 + */
    1.10 +
    1.11 +//-----------------------------------------------------------------------------
    1.12 +var BUGNUMBER = 518663;
    1.13 +var summary =
    1.14 +  'Object.getOwnPropertyNames should play nicely with enumerator caching';
    1.15 +
    1.16 +print(BUGNUMBER + ": " + summary);
    1.17 +
    1.18 +/**************
    1.19 + * BEGIN TEST *
    1.20 + **************/
    1.21 +
    1.22 +for (var p in JSON);
    1.23 +var names = Object.getOwnPropertyNames(JSON);
    1.24 +assertEq(names.length >= 2, true,
    1.25 +         "wrong number of property names?  [" + names + "]");
    1.26 +assertEq(names.indexOf("parse") >= 0, true);
    1.27 +assertEq(names.indexOf("stringify") >= 0, true);
    1.28 +
    1.29 +/******************************************************************************/
    1.30 +
    1.31 +reportCompare(true, true);
    1.32 +
    1.33 +print("All tests passed!");

mercurial