summaryrefslogtreecommitdiff
path: root/test/built-ins/Array/prototype/indexOf/15.4.4.14-10-2.js
blob: fbb92688888091b584e3f68d7bc9cd6b6dcf062e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Copyright (c) 2012 Ecma International.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-array.prototype.indexof
es5id: 15.4.4.14-10-2
description: >
    Array.prototype.indexOf returns -1 if 'length' is 0 and does not
    access any other properties
---*/

var accessed = false;
var f = {
  length: 0
};
Object.defineProperty(f, "0", {
  get: function() {
    accessed = true;
    return 1;
  }
});


var i = Array.prototype.indexOf.call(f, 1);


assert.sameValue(i, -1, 'i');
assert.sameValue(accessed, false, 'accessed');