summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Object/freeze/15.2.3.9-2-a-11.js
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--js/src/tests/test262/built-ins/Object/freeze/15.2.3.9-2-a-11.js26
1 files changed, 26 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/Object/freeze/15.2.3.9-2-a-11.js b/js/src/tests/test262/built-ins/Object/freeze/15.2.3.9-2-a-11.js
new file mode 100644
index 0000000000..b9db664525
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Object/freeze/15.2.3.9-2-a-11.js
@@ -0,0 +1,26 @@
+// Copyright (c) 2012 Ecma International. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+es5id: 15.2.3.9-2-a-11
+description: >
+ Object.freeze - 'P' is own index property of the Arguments object
+ that implements its own [[GetOwnProperty]]
+includes: [propertyHelper.js]
+---*/
+
+
+// default [[Configurable]] attribute value of "0": true
+var argObj = (function() {
+ return arguments;
+}(1, 2, 3));
+
+Object.freeze(argObj);
+
+var desc = Object.getOwnPropertyDescriptor(argObj, "0");
+
+verifyNotWritable(argObj, "0");
+verifyNotConfigurable(argObj, "0");
+assert.sameValue(argObj[0], 1);
+
+reportCompare(0, 0);