summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Object/prototype/isPrototypeOf/builtin.js
blob: 1c88d3f66fc9629109cc409d18147306839e1a92 (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
32
33
// Copyright (C) 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-object.prototype.isprototypeof
description: >
  Tests that Object.prototype.isPrototypeOf meets the requirements
  for built-in objects defined by the introduction of chapter 17 of
  the ECMAScript Language Specification.
features: [Reflect.construct]
---*/

assert(
  Object.isExtensible(Object.prototype.isPrototypeOf),
  'Object.isExtensible(Object.prototype.isPrototypeOf) must return true'
);
assert.sameValue(
  Object.prototype.toString.call(Object.prototype.isPrototypeOf),
  "[object Function]",
  'Object.prototype.toString.call(Object.prototype.isPrototypeOf) must return "[object Function]"'
);
assert.sameValue(
  Object.getPrototypeOf(Object.prototype.isPrototypeOf),
  Function.prototype,
  'Object.getPrototypeOf(Object.prototype.isPrototypeOf) must return the value of Function.prototype'
);
assert.sameValue(
  Object.prototype.isPrototypeOf.hasOwnProperty("prototype"),
  false,
  'Object.prototype.isPrototypeOf.hasOwnProperty("prototype") must return false'
);

reportCompare(0, 0);