js/src/tests/ecma_5/Object/15.2.3.6-new-definition.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.6-new-definition.js	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,35 @@
     1.4 +// |reftest| skip-if(!xulRuntime.shell) -- uses shell load() function
     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 = 430133;
    1.10 +var summary = 'ES5 Object.defineProperty(O, P, Attributes): new definition';
    1.11 +
    1.12 +print(BUGNUMBER + ": " + summary);
    1.13 +
    1.14 +load("ecma_5/Object/defineProperty-setup.js");
    1.15 +
    1.16 +/**************
    1.17 + * BEGIN TEST *
    1.18 + **************/
    1.19 +
    1.20 +try
    1.21 +{
    1.22 +  new TestRunner().runNotPresentTests();
    1.23 +}
    1.24 +catch (e)
    1.25 +{
    1.26 +  throw "Error thrown during testing: " + e +
    1.27 +          " at line " + e.lineNumber + "\n" +
    1.28 +        (e.stack
    1.29 +          ? "Stack: " + e.stack.split("\n").slice(2).join("\n") + "\n"
    1.30 +          : "");
    1.31 +}
    1.32 +
    1.33 +/******************************************************************************/
    1.34 +
    1.35 +if (typeof reportCompare === "function")
    1.36 +  reportCompare(true, true);
    1.37 +
    1.38 +print("Tests complete!");

mercurial