mirror of
https://github.com/tc39/test262.git
synced 2025-08-28 21:38:26 +02:00
20 lines
567 B
JavaScript
20 lines
567 B
JavaScript
// Copyright 2011 the Sputnik authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/**
|
|
* regExp exec() acts like regExp.exec('undefined') (step 2)
|
|
*
|
|
* @path ch15/15.10/15.10.6/15.10.6.2/S15.10.6.2_A12.js
|
|
* @description Checking RegExp.prototype.exec
|
|
*/
|
|
|
|
(/foo/).test('xfoox');
|
|
var match = new RegExp('(.|\r|\n)*','').exec()[0];
|
|
if (match === 'xfoox') {
|
|
$FAIL('#1: regExp.exec() leaks match globally');
|
|
}
|
|
if (match !== 'undefined') {
|
|
$FAIL('#2: regExp.exec() must coerce absent first arg to "undefined"');
|
|
}
|
|
|