|
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
|
2 /* This Source Code Form is subject to the terms of the Mozilla Public |
|
3 * License, v. 2.0. If a copy of the MPL was not distributed with this |
|
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
|
5 |
|
6 //----------------------------------------------------------------------------- |
|
7 var BUGNUMBER = 412926; |
|
8 var summary = 'JS_ValueToId(cx, JSVAL_NULL) should return atom for "null" string'; |
|
9 var actual = ''; |
|
10 var expect = ''; |
|
11 |
|
12 |
|
13 //----------------------------------------------------------------------------- |
|
14 test(); |
|
15 //----------------------------------------------------------------------------- |
|
16 |
|
17 function test() |
|
18 { |
|
19 enterFunc ('test'); |
|
20 printBugNumber(BUGNUMBER); |
|
21 printStatus (summary); |
|
22 |
|
23 actual = expect = 'No Errors'; |
|
24 |
|
25 var obj = { 'null': 1 }; |
|
26 |
|
27 var errors = []; |
|
28 |
|
29 if (!obj.hasOwnProperty(null)) |
|
30 errors.push('null property is not owned'); |
|
31 |
|
32 if (!obj.propertyIsEnumerable(null)) |
|
33 errors.push('null property is not enumerable'); |
|
34 |
|
35 var getter_was_called = false; |
|
36 obj.__defineGetter__(null, function() { getter_was_called = true; return 1; }); |
|
37 obj['null']; |
|
38 |
|
39 if (!getter_was_called) |
|
40 errors.push('getter was not assigned to the null property'); |
|
41 |
|
42 var setter_was_called = false; |
|
43 obj.__defineSetter__(null, function() { setter_was_called = true; }); |
|
44 obj['null'] = 2; |
|
45 |
|
46 if (!setter_was_called) |
|
47 errors.push('setter was not assigned to the null property'); |
|
48 |
|
49 if (errors.length) |
|
50 actual = errors.join('; '); |
|
51 |
|
52 gc(); |
|
53 |
|
54 reportCompare(expect, actual, summary); |
|
55 |
|
56 exitFunc ('test'); |
|
57 } |