mirror of
https://github.com/tc39/test262.git
synced 2025-08-28 21:38:26 +02:00
25 lines
867 B
JavaScript
25 lines
867 B
JavaScript
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/**
|
|
* The RegExp.prototype.exec.length property has the attribute ReadOnly
|
|
*
|
|
* @path ch15/15.10/15.10.6/15.10.6.2/S15.10.6.2_A10.js
|
|
* @description Checking if varying the RegExp.prototype.exec.length property fails
|
|
*/
|
|
|
|
//CHECK#1
|
|
if (RegExp.prototype.exec.hasOwnProperty('length') !== true) {
|
|
$FAIL('#1: RegExp.prototype.exec.hasOwnProperty(\'length\') === true');
|
|
}
|
|
|
|
__obj = RegExp.prototype.exec.length;
|
|
|
|
RegExp.prototype.exec.length = function(){return "shifted";};
|
|
|
|
//CHECK#2
|
|
if (RegExp.prototype.exec.length !== __obj) {
|
|
$ERROR('#2: __obj = RegExp.prototype.exec.length; RegExp.prototype.exec.length = function(){return "shifted";}; RegExp.prototype.exec.length === __obj. Actual: ' + (RegExp.prototype.exec.length));
|
|
}
|
|
|