blob: ffc3eae8e27cef08b7fac778d3470605fd1582bc [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: The Number prototype object has the property toLocaleString
es5id: 15.7.4_A3.3
description: The test uses hasOwnProperty() method
---*/
assert.sameValue(
Number.prototype.hasOwnProperty("toLocaleString"),
true,
'Number.prototype.hasOwnProperty("toLocaleString") must return true'
);