mirror of
https://github.com/tc39/test262.git
synced 2025-08-28 13:28:38 +02:00
30 lines
826 B
JavaScript
30 lines
826 B
JavaScript
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/**
|
|
* 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
|
|
*
|
|
* @path ch15/15.4/15.4.4/15.4.4.11/S15.4.4.11_A1.1_T1.js
|
|
* @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]));
|
|
}
|
|
|