summaryrefslogtreecommitdiff
path: root/test/built-ins/String/prototype/replace/15.5.4.11-1.js
blob: 5cc4a8ce9e76ebe35cfa499bafde1b06062644d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// 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');