summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Object/freeze/frozen-object-contains-symbol-properties-non-strict.js
blob: c8992cca64378dc5eed31888719bbb0ceda010fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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);