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

/*---
info: The Object constructor has the property "prototype"
es5id: 15.2.3_A1
description: Checking existence of the property "prototype"
---*/
assert(
  !!Object.hasOwnProperty("prototype"),
  'The value of !!Object.hasOwnProperty("prototype") is expected to be true'
);

reportCompare(0, 0);