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