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