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