blob: 16b500e66ccd824f05a81c8aee04543a796c578e [file] [log] [blame]
// 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'
);