blob: 7f70b2379eaba718a6ab5ff64e341fff3b2e95b3 [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.parse property "length" has { ReadOnly, ! DontDelete, DontEnum }
attributes
esid: sec-date.parse
description: Checking DontDelete attribute
---*/
if (delete Date.parse.length !== true) {
$ERROR('#1: The Date.parse.length property does not have the attributes DontDelete');
}
if (Date.parse.hasOwnProperty('length')) {
$ERROR('#2: The Date.parse.length property does not have the attributes DontDelete');
}