summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Object/isFrozen/15.2.3.12-3-28.js
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--js/src/tests/test262/built-ins/Object/isFrozen/15.2.3.12-3-28.js37
1 files changed, 37 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/Object/isFrozen/15.2.3.12-3-28.js b/js/src/tests/test262/built-ins/Object/isFrozen/15.2.3.12-3-28.js
new file mode 100644
index 0000000000..e8d631151c
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Object/isFrozen/15.2.3.12-3-28.js
@@ -0,0 +1,37 @@
+// 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.12-3-28
+description: >
+ Object.isFrozen returns true when all own properties of 'O' are
+ not writable and not configurable, and 'O' is not extensible
+---*/
+
+var obj = {};
+
+Object.defineProperty(obj, "foo1", {
+ value: 20,
+ writable: false,
+ enumerable: false,
+ configurable: false
+});
+
+
+function get_func() {
+ return 10;
+}
+
+function set_func() {}
+
+Object.defineProperty(obj, "foo2", {
+ get: get_func,
+ set: set_func,
+ configurable: false
+});
+
+Object.preventExtensions(obj);
+
+assert(Object.isFrozen(obj), 'Object.isFrozen(obj) !== true');
+
+reportCompare(0, 0);