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