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