summaryrefslogtreecommitdiff
path: root/deps/v8/test/mjsunit/object-seal-global.js
blob: ec9f82e9bff5c73208b08b8a69c84405b2a5e823 (plain)
1
2
3
4
5
6
7
// Copyright 2014 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

Object.seal(this);
assertTrue(Object.isSealed(this));
assertFalse(Object.isFrozen(this));