rhino1.7.7.testsrc.tests.ecma_3.Array.15.4.4.3-1.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rhino Show documentation
Show all versions of rhino Show documentation
Rhino is an open-source implementation of JavaScript written entirely in Java. It is typically
embedded into Java applications to provide scripting to end users.
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
/*
* Date: 12 Mar 2001
*
*
* SUMMARY: Testing Array.prototype.toLocaleString()
* See http://bugzilla.mozilla.org/show_bug.cgi?id=56883
* See http://bugzilla.mozilla.org/show_bug.cgi?id=58031
*
* By ECMA3 15.4.4.3, myArray.toLocaleString() means that toLocaleString()
* should be applied to each element of the array, and the results should be
* concatenated with an implementation-specific delimiter. For example:
*
* myArray[0].toLocaleString() + ',' + myArray[1].toLocaleString() + etc.
*
* In this testcase toLocaleString is a user-defined property of each
* array element; therefore it is the function that should be
* invoked. This function increments a global variable. Therefore the
* end value of this variable should be myArray.length.
*/
//-----------------------------------------------------------------------------
var gTestfile = '15.4.4.3-1.js';
var BUGNUMBER = 56883;
var summary = 'Testing Array.prototype.toLocaleString() -';
var actual = '';
var expect = '';
var n = 0;
var obj = {toLocaleString: function() {n++}};
var myArray = [obj, obj, obj];
myArray.toLocaleString();
actual = n;
expect = 3; // (see explanation above)
//-----------------------------------------------------------------------------
test();
//-----------------------------------------------------------------------------
function test()
{
enterFunc ('test');
printBugNumber(BUGNUMBER);
printStatus (summary);
reportCompare(expect, actual, summary);
exitFunc ('test');
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy