blob: 24997421f61f14a9732476bf1f618ef9316f26da [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 "length" property of the "toLocaleDateString" is 0
esid: sec-date.prototype.tolocaledatestring
description: The "length" property of the "toLocaleDateString" is 0
---*/
if (Date.prototype.toLocaleDateString.hasOwnProperty("length") !== true) {
$ERROR('#1: The toLocaleDateString has a "length" property');
}
if (Date.prototype.toLocaleDateString.length !== 0) {
$ERROR('#2: The "length" property of the toLocaleDateString is 0');
}