blob: efb0be3d411703c0e54ea90756243fcdb19985df [file] [log] [blame]
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
info: String.prototype.toLowerCase()
es5id: 15.5.4.16_A1_T7
description: Call toLowerCase() function of NaN
---*/
Number.prototype.toLowerCase = String.prototype.toLowerCase;
//////////////////////////////////////////////////////////////////////////////
//CHECK#1
if (NaN.toLowerCase()!== "nan") {
$ERROR('#1: Number.prototype.toLowerCase = String.prototype.toLowerCase; NaN.toLowerCase()=== "nan". Actual: '+NaN.toLowerCase());
}
//
//////////////////////////////////////////////////////////////////////////////