blob: 127e7853b97eb81b4bc62df62e35c5cf1df5aa5b [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 property "setUTCHours" has { DontEnum } attributes
esid: sec-date.prototype.setutchours
description: Checking absence of DontDelete attribute
---*/
if (delete Date.prototype.setUTCHours === false) {
$ERROR('#1: The Date.prototype.setUTCHours property has not the attributes DontDelete');
}
if (Date.prototype.hasOwnProperty('setUTCHours')) {
$ERROR('#2: The Date.prototype.setUTCHours property has not the attributes DontDelete');
}