|
1 /// Copyright (c) 2012 Ecma International. All rights reserved. |
|
2 /// Ecma International makes this code available under the terms and conditions set |
|
3 /// forth on http://hg.ecmascript.org/tests/test262/raw-file/tip/LICENSE (the |
|
4 /// "Use Terms"). Any redistribution of this code must retain the above |
|
5 /// copyright and this notice and otherwise comply with the Use Terms. |
|
6 /** |
|
7 * PutValue operates only on references (see step 3.b). |
|
8 * |
|
9 * @path ch11/11.13/11.13.1/11.13.1-4-1.js |
|
10 * @description simple assignment creates property on the global object if LeftHandSide is an unresolvable reference |
|
11 */ |
|
12 |
|
13 |
|
14 function testcase() { |
|
15 function foo() { |
|
16 __ES3_1_test_suite_test_11_13_1_unique_id_3__ = 42; |
|
17 } |
|
18 foo(); |
|
19 |
|
20 var desc = Object.getOwnPropertyDescriptor(fnGlobalObject(), '__ES3_1_test_suite_test_11_13_1_unique_id_3__'); |
|
21 if (desc.value === 42 && |
|
22 desc.writable === true && |
|
23 desc.enumerable === true && |
|
24 desc.configurable === true) { |
|
25 delete __ES3_1_test_suite_test_11_13_1_unique_id_3__; |
|
26 return true; |
|
27 } |
|
28 } |
|
29 runTestCase(testcase); |