summaryrefslogtreecommitdiff
path: root/test/built-ins/String/prototype/replace/S15.5.4.11_A12.js
blob: 66ba29f7f0d91f09591a38cba748a3298fe033dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright 2011 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
info: Call replaceValue passing undefined as the this value
es5id: 15.5.4.11_A12
description: replaceValue tests that its this value is undefined
flags: [noStrict]
---*/

var global = this;
'x'.replace(/x/, function() {
  "use strict";

  if (this === global) {
    $ERROR('#1: String replace leaks global');
  }
  if (this !== undefined) {
    $ERROR('#2: replaceValue should be called with this===undefined. ' +
          'Actual: ' + this);
  }
  return 'y';
});