summaryrefslogtreecommitdiff
path: root/test/built-ins/Object/prototype/proto.js
blob: 8e75d586e982149e914cead9c097eabae3d8d33f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
id: sec-properties-of-the-object-prototype-object
description: >
  The value of the [[Prototype]] internal slot of Object.prototype is null
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.sameValue(Object.getPrototypeOf(Object.prototype), null);