blob: cbcf001532df77484e43e4790e829c4a6f421e82 [file] [log] [blame]
// 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.11-4-27
description: Object.isSealed returns false for all built-in objects (JSON)
---*/
var b = Object.isSealed(JSON);
assert.sameValue(b, false, 'b');