mirror of
https://github.com/tc39/test262.git
synced 2025-08-28 21:38:26 +02:00
22 lines
643 B
JavaScript
22 lines
643 B
JavaScript
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/**
|
|
* [[Get]] from not an inherited property
|
|
*
|
|
* @path ch15/15.4/15.4.4/15.4.4.3/S15.4.4.3_A3_T1.js
|
|
* @description [[Prototype]] of Array instance is Array.prototype
|
|
*/
|
|
|
|
//CHECK#1
|
|
var n = 0;
|
|
var obj = {toLocaleString: function() {n++}};
|
|
Array.prototype[1] = obj;
|
|
var x = [obj];
|
|
x.length = 2;
|
|
x.toLocaleString();
|
|
if (n !== 2) {
|
|
$ERROR('#1: var n = 0; var obj = {toLocaleString: function() {n++}}; Array.prototype[1] = obj; x = [obj]; x.length = 2; x.toLocaleString(); n === 2. Actual: ' + (n));
|
|
}
|
|
|