blob: 8525b8145f2d2e3201c46c73fe2d587772c9c6bf [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 ReadOnly attribute
---*/
var x = Date.prototype.setUTCDate;
if (x === 1)
Date.prototype.setUTCDate = 2;
else
Date.prototype.setUTCDate = 1;
if (Date.prototype.setUTCDate === x) {
$ERROR('#1: The Date.prototype.setUTCDate has not the attribute ReadOnly');
}