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