mirror of
https://github.com/tc39/test262.git
synced 2025-08-28 13:28:38 +02:00
26 lines
633 B
JavaScript
26 lines
633 B
JavaScript
// Copyright 2011 the Sputnik authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/**
|
|
* Call replaceValue passing undefined as the this value
|
|
*
|
|
* @path ch15/15.5/15.5.4/15.5.4.11/S15.5.4.11_A12.js
|
|
* @description replaceValue tests that its this value is undefined
|
|
* @onlyStrict
|
|
*/
|
|
|
|
var global = this;
|
|
'x'.replace(/x/, function() {
|
|
"use strict";
|
|
|
|
if (this === global) {
|
|
$FAIL('#1: String replace leaks global');
|
|
}
|
|
if (this !== undefined) {
|
|
$FAIL('#2: replaceValue should be called with this===undefined. ' +
|
|
'Actual: ' + this);
|
|
}
|
|
return 'y';
|
|
});
|
|
|