blob: 0b88aee1e58209153fd9a407833273b59156bd0b [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.setUTCHours property "length" has { ReadOnly, !
DontDelete, DontEnum } attributes
esid: sec-date.prototype.setutchours
description: Checking DontDelete attribute
---*/
if (delete Date.prototype.setUTCHours.length !== true) {
$ERROR('#1: The Date.prototype.setUTCHours.length property does not have the attributes DontDelete');
}
if (Date.prototype.setUTCHours.hasOwnProperty('length')) {
$ERROR('#2: The Date.prototype.setUTCHours.length property does not have the attributes DontDelete');
}