blob: d04d7077c6a5858f35b17b21906fc7213de06a5f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// 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-dataview-constructor
description: >
The prototype of DataView is Function.prototype
info: |
The value of the [[Prototype]] internal slot of the DataView constructor is
the intrinsic object %FunctionPrototype%.
---*/
assert.sameValue(Object.getPrototypeOf(DataView), Function.prototype);
reportCompare(0, 0);
|