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

/*---
info: Object prototype object has not prototype
es5id: 15.2.4_A1_T1
description: Checking if obtaining Object.prototype.prototype fails
---*/
assert.sameValue(
  Object.prototype.prototype,
  undefined,
  'The value of Object.prototype.prototype is expected to equal undefined'
);

reportCompare(0, 0);