2011-09-07 08:35:18 +02:00
|
|
|
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
|
2014-07-22 01:09:02 +02:00
|
|
|
/*---
|
2017-06-29 00:16:06 +02:00
|
|
|
esid: sec-array-exotic-objects-defineownproperty-p-desc
|
2014-07-22 01:09:02 +02:00
|
|
|
info: If ToUint32(length) !== ToNumber(length), throw RangeError
|
2014-07-25 00:41:42 +02:00
|
|
|
es5id: 15.4.5.1_A1.1_T2
|
2014-07-22 01:09:02 +02:00
|
|
|
description: length in [NaN, Infinity, -Infinity, undefined]
|
|
|
|
---*/
|
2011-09-07 08:35:18 +02:00
|
|
|
|
|
|
|
try {
|
|
|
|
var x = [];
|
|
|
|
x.length = NaN;
|
2021-07-21 20:53:23 +02:00
|
|
|
throw new Test262Error('#1.1: x = []; x.length = NaN throw RangeError. Actual: x.length === ' + (x.length));
|
2018-02-15 23:40:02 +01:00
|
|
|
} catch (e) {
|
2021-08-10 23:51:54 +02:00
|
|
|
assert.sameValue(
|
|
|
|
e instanceof RangeError,
|
|
|
|
true,
|
|
|
|
'The result of evaluating (e instanceof RangeError) is expected to be true'
|
|
|
|
);
|
2011-09-07 08:35:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
x = [];
|
|
|
|
x.length = Number.POSITIVE_INFINITY;
|
2021-07-21 20:53:23 +02:00
|
|
|
throw new Test262Error('#2.1: x = []; x.length = Number.POSITIVE_INFINITY throw RangeError. Actual: x.length === ' + (x.length));
|
2018-02-15 23:40:02 +01:00
|
|
|
} catch (e) {
|
2021-08-10 23:51:54 +02:00
|
|
|
assert.sameValue(
|
|
|
|
e instanceof RangeError,
|
|
|
|
true,
|
|
|
|
'The result of evaluating (e instanceof RangeError) is expected to be true'
|
|
|
|
);
|
2011-09-07 08:35:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
x = [];
|
|
|
|
x.length = Number.NEGATIVE_INFINITY;
|
2021-07-21 20:53:23 +02:00
|
|
|
throw new Test262Error('#3.1: x = []; x.length = Number.NEGATIVE_INFINITY throw RangeError. Actual: x.length === ' + (x.length));
|
2018-02-15 23:40:02 +01:00
|
|
|
} catch (e) {
|
2021-08-10 23:51:54 +02:00
|
|
|
assert.sameValue(
|
|
|
|
e instanceof RangeError,
|
|
|
|
true,
|
|
|
|
'The result of evaluating (e instanceof RangeError) is expected to be true'
|
|
|
|
);
|
2011-09-07 08:35:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
x = [];
|
|
|
|
x.length = undefined;
|
2021-07-21 20:53:23 +02:00
|
|
|
throw new Test262Error('#4.1: x = []; x.length = undefined throw RangeError. Actual: x.length === ' + (x.length));
|
2018-02-15 23:40:02 +01:00
|
|
|
} catch (e) {
|
2021-08-10 23:51:54 +02:00
|
|
|
assert.sameValue(
|
|
|
|
e instanceof RangeError,
|
|
|
|
true,
|
|
|
|
'The result of evaluating (e instanceof RangeError) is expected to be true'
|
|
|
|
);
|
2011-09-07 08:35:18 +02:00
|
|
|
}
|