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