summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/FinalizationRegistry/prototype/proto.js
blob: 9a6c7fa310ea74ce4489061f8befe089ce3e7a35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// |reftest| skip-if(!this.hasOwnProperty('FinalizationRegistry')) -- FinalizationRegistry is not enabled unconditionally
// Copyright (C) 2019 Leo Balter. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
description: The prototype of FinalizationRegistry.prototype is Object.prototype
esid: sec-properties-of-the-finalization-registry-prototype-object
info: |
  The value of the [[Prototype]] internal slot of the FinalizationRegistry prototype object
  is the intrinsic object %ObjectPrototype%.
features: [FinalizationRegistry]
---*/

var proto = Object.getPrototypeOf(FinalizationRegistry.prototype);
assert.sameValue(proto, Object.prototype);

reportCompare(0, 0);