blob: da90220aefb1a3ba0a6a625af0a5cf0795a1a3dd [file] [log] [blame]
/*
* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/licenses/publicdomain/
*/
//-----------------------------------------------------------------------------
var BUGNUMBER = 604971;
var summary = 'array.sort compare-function gets incorrect this';
print(BUGNUMBER + ": " + summary);
/**************
* BEGIN TEST *
**************/
[1, 2, 3].sort(function() { "use strict"; assertEq(this, undefined); });
/******************************************************************************/
if (typeof reportCompare === "function")
reportCompare(true, true);
print("All tests passed!");