summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Object/freeze/frozen-object-contains-symbol-properties-non-strict.js
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--js/src/tests/test262/built-ins/Object/freeze/frozen-object-contains-symbol-properties-non-strict.js18
1 files changed, 18 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/Object/freeze/frozen-object-contains-symbol-properties-non-strict.js b/js/src/tests/test262/built-ins/Object/freeze/frozen-object-contains-symbol-properties-non-strict.js
new file mode 100644
index 0000000000..c8992cca64
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Object/freeze/frozen-object-contains-symbol-properties-non-strict.js
@@ -0,0 +1,18 @@
+// Copyright (C) 2013 the V8 project authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+/*---
+es6id: 19.1.2.5
+description: >
+ Frozen object contains symbol properties.
+flags: [noStrict]
+features: [Symbol]
+---*/
+var sym = Symbol();
+var obj = {};
+obj[sym] = 1;
+Object.freeze(obj);
+obj[sym] = 2;
+assert.sameValue(obj[sym], 1, "The value of `obj[sym]` is `1`");
+assert.sameValue(delete obj[sym], false, "`delete obj[sym]` is `false`");
+
+reportCompare(0, 0);