summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/String/prototype/replace/15.5.4.11-1.js
blob: e7a7818938748005bcdcd860f86af384e08f8802 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright (c) 2012 Ecma International.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
es5id: 15.5.4.11-1
description: >
    'this' object used by the replaceValue function of a
    String.prototype.replace invocation
flags: [noStrict]
---*/

var global = this;
var retVal = 'x'.replace(/x/,
  function() {
    if (this === global) {
      return 'y';
    } else {
      return 'z';
    }
  });

assert.sameValue(retVal, 'y', 'retVal');

reportCompare(0, 0);