blob: f9bf522ede781a585cf89acdc9b4c6cd341a5484 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// |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.
/*---
esid: sec-properties-of-the-finalization-registry-constructor
description: >
The prototype of FinalizationRegistry is Object.prototype
info: |
The value of the [[Prototype]] internal slot of the FinalizationRegistry object is the
intrinsic object %FunctionPrototype%.
features: [FinalizationRegistry]
---*/
assert.sameValue(
Object.getPrototypeOf(FinalizationRegistry),
Function.prototype,
'Object.getPrototypeOf(FinalizationRegistry) returns the value of `Function.prototype`'
);
reportCompare(0, 0);
|