blob: 03fa220c82bfe3b5812e47bf7c5c03fdcb5cb9bb [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: |
If this object does not have a property named by ToString(j),
and this object does not have a property named by ToString(k), return +0
esid: sec-array.prototype.sort
description: If comparefn is undefined, use SortCompare operator
---*/
var x = new Array(2);
x.sort();
//CHECK#1
if (x.length !== 2) {
$ERROR('#1: var x = new Array(2); x.sort(); x.length === 2. Actual: ' + (x.length));
}
//CHECK#2
if (x[0] !== undefined) {
$ERROR('#2: var x = new Array(2); x.sort(); x[0] === undefined. Actual: ' + (x[0]));
}
//CHECK#3
if (x[1] !== undefined) {
$ERROR('#3: var x = new Array(2); x.sort(); x[1] === undefined. Actual: ' + (x[1]));
}