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