summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Object/prototype/extensibility.js
blob: a65c158c7e7015ea20fbcb3bb8f4df09b208bd47 (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
31
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-properties-of-the-object-prototype-object
description: >
  Object.prototype is still extensible and may have extensions prevented
info: |
  19.1.3 Properties of the Object Prototype Object

  The value of the [[Prototype]] internal slot of the Object prototype object is
  null and the initial value of the [[Extensible]] internal slot is true.
---*/

assert(
  Object.isExtensible(Object.prototype),
  "Object.prototype is extensible"
);

assert.sameValue(
  Object.preventExtensions(Object.prototype),
  Object.prototype,
  "Object.prototype may have extensions prevented"
);

assert.sameValue(
  Object.isExtensible(Object.prototype),
  false,
  "Object.prototype is not extensible after a preventExtensions operation"
);

reportCompare(0, 0);