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