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

/*---
info: The Infinity is DontEnum
es5id: 15.1.1.2_A4
description: Use for-in statement
---*/

// CHECK#1
for (var prop in this) {
  if (prop === "Infinity") {
    $ERROR('#1: The Infinity is DontEnum');
  }
}

reportCompare(0, 0);