summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Boolean/prototype/S15.6.4_A2.js
blob: f5ce2c97cf1a2622f736214ad7794123e01483fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
info: |
    The value of the internal [[Prototype]] property of the Boolean
    prototype object is the Object prototype object
esid: sec-properties-of-the-boolean-prototype-object
description: Checking Object.prototype.isPrototypeOf(Boolean.prototype)
---*/

assert(
  Object.prototype.isPrototypeOf(Boolean.prototype),
  'Object.prototype.isPrototypeOf(Boolean.prototype) must return true'
);

reportCompare(0, 0);