test262/test/suite/ch15/15.5/15.5.4/15.5.4.11/S15.5.4.11_A12.js
2011-10-03 13:04:52 -07:00

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';
});