blob: 8aa7a59986885160939c5e5ad7b81629914a1d9d [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 Date.prototype.toLocaleDateString property "length" has { ReadOnly,
DontDelete, DontEnum } attributes
esid: sec-date.prototype.tolocaledatestring
description: Checking DontEnum attribute
---*/
if (Date.prototype.toLocaleDateString.propertyIsEnumerable('length')) {
$ERROR('#1: The Date.prototype.toLocaleDateString.length property has the attribute DontEnum');
}
for (var x in Date.prototype.toLocaleDateString) {
if (x === "length") {
$ERROR('#2: The Date.prototype.toLocaleDateString.length has the attribute DontEnum');
}
}