js/src/tests/js1_8_5/extensions/set-property-non-extensible.js

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/js/src/tests/js1_8_5/extensions/set-property-non-extensible.js	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,30 @@
     1.4 +// |reftest| skip
     1.5 +// Any copyright is dedicated to the Public Domain.
     1.6 +// http://creativecommons.org/licenses/publicdomain/
     1.7 +
     1.8 +//-----------------------------------------------------------------------------
     1.9 +var BUGNUMBER = 600128;
    1.10 +var summary =
    1.11 +  "Properly handle attempted addition of properties to non-extensible objects";
    1.12 +
    1.13 +print(BUGNUMBER + ": " + summary);
    1.14 +
    1.15 +/**************
    1.16 + * BEGIN TEST *
    1.17 + **************/
    1.18 +
    1.19 +var o = Object.freeze({});
    1.20 +for (var i = 0; i < 10; i++)
    1.21 +  print(o.u = "");
    1.22 +
    1.23 +Object.freeze(this);
    1.24 +for (let j = 0; j < 10; j++)
    1.25 +  print(u = "");
    1.26 +
    1.27 +
    1.28 +/******************************************************************************/
    1.29 +
    1.30 +if (typeof reportCompare === "function")
    1.31 +  reportCompare(true, true);
    1.32 +
    1.33 +print("All tests passed!");

mercurial