blob: be971a26af9673fc27847afad3845e74cae970ee [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 "setDate" has { DontEnum } attributes
esid: sec-date.prototype.setdate
description: Checking absence of ReadOnly attribute
---*/
var x = Date.prototype.setDate;
if (x === 1)
Date.prototype.setDate = 2;
else
Date.prototype.setDate = 1;
if (Date.prototype.setDate === x) {
$ERROR('#1: The Date.prototype.setDate has not the attribute ReadOnly');
}