blob: 2ebf8b9f0f51b92a9923c9f0366eac89a2708849 [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 property "prototype" has { DontEnum, DontDelete, ReadOnly }
attributes
esid: sec-date.prototype
description: Checking ReadOnly attribute
includes: [propertyHelper.js]
---*/
var x = Date.prototype;
verifyNotWritable(Date, "prototype", null, 1);
if (Date.prototype !== x) {
$ERROR('#1: The Date.prototype has the attribute ReadOnly');
}