blob: 9dd26a2509813931acfb2db7a460671c1bab89bb [file] [log] [blame]
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
/*
* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/licenses/publicdomain/
* Contributor: Blake Kaplan
*/
//-----------------------------------------------------------------------------
var BUGNUMBER = 565521;
var summary = 'for-each getter calling';
var actual = '';
var expect = 'PASS';
//-----------------------------------------------------------------------------
test();
//-----------------------------------------------------------------------------
function test()
{
enterFunc ('test');
printBugNumber(BUGNUMBER);
printStatus (summary);
var proto = { get prop() { return (this === proto) ? "FAIL" : "PASS"; } };
var obj = Object.create(proto);
var itercount = 0;
for each (var i in obj) {
++itercount;
actual = i;
}
reportCompare(itercount, 1, summary + ': right itercount')
reportCompare(expect, actual, summary + ': right value');
exitFunc ('test');
}