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