mirror of
https://github.com/tc39/test262.git
synced 2025-08-28 21:38:26 +02:00
28 lines
868 B
JavaScript
28 lines
868 B
JavaScript
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/**
|
|
* Check ToUint32(length) for non Array objects
|
|
*
|
|
* @path ch15/15.4/15.4.4/15.4.4.5/S15.4.4.5_A4_T3.js
|
|
* @description length = -4294967294
|
|
*/
|
|
|
|
var obj = {};
|
|
obj.join = Array.prototype.join;
|
|
obj[0] = "x";
|
|
obj[1] = "y";
|
|
obj[2] = "z";
|
|
obj.length = -4294967294;
|
|
|
|
//CHECK#1
|
|
if (obj.join("") !== "xy") {
|
|
$ERROR('#1: var obj = {}; obj.join = Array.prototype.join; obj[0] = "x"; obj[1] = "y"; obj[2] = "z"; obj.length = -4294967294; obj.join("") === "xy". Actual: ' + (obj.join("")));
|
|
}
|
|
|
|
//CHECK#2
|
|
if (obj.length !== -4294967294) {
|
|
$ERROR('#2: var obj = {}; obj.join = Array.prototype.join; obj[0] = "x"; obj[1] = "y"; obj[2] = "z"; obj.length = -4294967294; obj.join(""); obj.length === -4294967294. Actual: ' + (obj.length));
|
|
}
|
|
|