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_T1
|
2014-07-22 01:09:02 +02:00
|
|
|
description: length in [4294967296, -1, 1.5]
|
|
|
|
---*/
|
2011-09-07 08:35:18 +02:00
|
|
|
|
|
|
|
try {
|
|
|
|
var x = [];
|
|
|
|
x.length = 4294967296;
|
2021-07-21 20:53:23 +02:00
|
|
|
throw new Test262Error('#1.1: x = []; x.length = 4294967296 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 = -1;
|
2021-07-21 20:53:23 +02:00
|
|
|
throw new Test262Error('#2.1: x = []; x.length = -1 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 = 1.5;
|
2021-07-21 20:53:23 +02:00
|
|
|
throw new Test262Error('#3.1: x = []; x.length = 1.5 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
|
|
|
}
|