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

/*---
esid: sec-properties-of-the-array-prototype-object
info: Array prototype object has a length property
es5id: 15.4.4_A1.3_T1
description: Array.prototype.length === 0
---*/

assert.sameValue(Array.prototype.length, 0, 'The value of Array.prototype.length is expected to be 0');

reportCompare(0, 0);