mirror of
https://github.com/tc39/test262.git
synced 2025-08-28 21:38:26 +02:00
26 lines
884 B
JavaScript
26 lines
884 B
JavaScript
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/**
|
|
* String.prototype.match (regexp)
|
|
*
|
|
* @path ch15/15.5/15.5.4/15.5.4.10/S15.5.4.10_A1_T3.js
|
|
* @description Checking by using eval
|
|
*/
|
|
|
|
var match = String.prototype.match.bind(fnGlobalObject());
|
|
|
|
try {
|
|
fnGlobalObject().toString = Object.prototype.toString;
|
|
} catch (e) { ; }
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
//CHECK#1
|
|
if ((fnGlobalObject().toString === Object.prototype.toString) && //Ensure we could overwrite global obj's toString
|
|
(match(eval("\"bj\""))[0] !== "bj")) {
|
|
$ERROR('#1: match = String.prototype.match.bind(this); match(eval("\\"bj\\""))[0] === "bj". Actual: '+match(eval("\"bj\""))[0] );
|
|
}
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|