summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Object/seal/throws-when-false.js
blob: 810fcb590df4cf135ff4943f299e4f887011f144 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Copyright (C) 2019 Ecma International. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-object.seal
description: >
  Object.seal throws if SetIntegrityLevel(O, sealed) returns false.
info: |
  Object.seal ( O )
  ...
  2. Let status be ? SetIntegrityLevel(O, sealed).
  3. If status is false, throw a TypeError exception.

  SetIntegrityLevel ( O, level )
  ...
  3. Let status be ? O.[[PreventExtensions]]().
  4. If status is false, return false.
---*/

const p = new Proxy({}, {
  preventExtensions() {
    return false;
  },
});

assert.throws(TypeError, () => {
  Object.seal(p);
});

reportCompare(0, 0);