js/src/tests/ecma_5/Object/15.2.3.6-define-over-method.js

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:b1ff67689659
1 // Any copyright is dedicated to the Public Domain.
2 // http://creativecommons.org/licenses/publicdomain/
3
4 //-----------------------------------------------------------------------------
5 var BUGNUMBER = 568786;
6 var summary =
7 'Do not assert: !(attrs & (JSPROP_GETTER | JSPROP_SETTER)) with ' +
8 'Object.defineProperty';
9
10 print(BUGNUMBER + ": " + summary);
11
12 /**************
13 * BEGIN TEST *
14 **************/
15
16 var o = { x: function(){} };
17 Object.defineProperty(o, "x", { get: function(){} });
18
19 /******************************************************************************/
20
21 if (typeof reportCompare === "function")
22 reportCompare(true, true);
23
24 print("All tests passed!");

mercurial