summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Object/seal/object-seal-o-is-a-function-object.js
blob: b64d9d06e456428fcb4944e5ff40aa86feef8360 (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 - 'O' is a Function object
---*/

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

assert(preCheck, 'preCheck !== true');
assert(Object.isSealed(fun), 'Object.isSealed(fun) !== true');

reportCompare(0, 0);