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