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
|
|
|
/*---
|
|
|
|
info: >
|
|
|
|
The [[Prototype]] property of the newly constructed object
|
|
|
|
is set to the original Array prototype object, the one that
|
|
|
|
is the initial value of Array.prototype
|
2014-07-25 00:41:42 +02:00
|
|
|
es5id: 15.4.1_A1.1_T1
|
2014-07-22 01:09:02 +02:00
|
|
|
description: >
|
|
|
|
Create new property of Array.prototype. When new Array object has
|
|
|
|
this property
|
|
|
|
---*/
|
2011-09-07 08:35:18 +02:00
|
|
|
|
|
|
|
//CHECK#1
|
2017-04-24 23:57:25 +02:00
|
|
|
Array.prototype.myproperty = 42;
|
|
|
|
var x = Array();
|
|
|
|
assert.sameValue(x.myproperty, 42);
|
2011-09-07 08:35:18 +02:00
|
|
|
|
2017-04-24 23:57:25 +02:00
|
|
|
assert.sameValue(Object.prototype.hasOwnProperty.call(x, 'myproperty'), false);
|