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