summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Object/seal/object-seal-returned-object-is-not-extensible.js
blob: 6179bb9c601e3ef01dd92e691e74cdab9ac2dbfc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright (c) 2012 Ecma International.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-setintegritylevel
description: Object.seal - returned object is not extensible
---*/

var obj = {};
var preCheck = Object.isExtensible(obj);
Object.seal(obj);

assert(preCheck, 'preCheck !== true');
assert.sameValue(Object.isExtensible(obj), false, 'Object.isExtensible(obj)');

reportCompare(0, 0);