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