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