|
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!"); |