summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Array/S15.4.3_A1.1_T1.js
blob: c6872c6a8e1e96407ccb51f2d855254673a3282e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
info: |
    The value of the internal [[Prototype]] property of
    the Array constructor is the Function prototype object
es5id: 15.4.3_A1.1_T1
description: >
    Create new property of Function.prototype. When Array constructor
    has this property
---*/

Function.prototype.myproperty = 1;

assert.sameValue(Array.myproperty, 1, 'The value of Array.myproperty is expected to be 1');
assert.sameValue(Array.hasOwnProperty('myproperty'), false, 'Array.hasOwnProperty("myproperty") must return false');

reportCompare(0, 0);