summaryrefslogtreecommitdiff
path: root/test/built-ins/Object/prototype/isPrototypeOf/S15.2.4.6_A6.js
blob: dd63755a1f58d0aeb8f63462e43f714daafd4e2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
info: Object.prototype.isPrototypeOf has not prototype property
es5id: 15.2.4.6_A6
description: >
    Checking if obtaining the prototype property of
    Object.prototype.isPrototypeOf fails
---*/

//CHECK#1
if (Object.prototype.isPrototypeOf.prototype !== undefined) {
  $ERROR('#1: Object.prototype.isPrototypeOf has not prototype property'+Object.prototype.isPrototypeOf.prototype);
}
//