blob: fdcf18dd92b5591e53ce5b6b87374ac69aa6b935 [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 RegExp.prototype.exec.length property does not have the attribute
DontDelete
es5id: 15.10.6.2_A9
description: >
Checking if deleting the RegExp.prototype.exec.length property
fails
---*/
//CHECK#0
if ((RegExp.prototype.exec.hasOwnProperty('length') !== true)) {
$ERROR('#0: RegExp.prototype.exec.hasOwnProperty(\'length\') === true');
}
//CHECK#1
if (delete RegExp.prototype.exec.length !== true) {
$ERROR('#1: delete RegExp.prototype.exec.length === true');
}
//CHECK#2
if (RegExp.prototype.exec.hasOwnProperty('length') !== false) {
$ERROR('#2: delete RegExp.prototype.exec.length; RegExp.prototype.exec.hasOwnProperty(\'length\') === false');
}