diff --git a/test/suite/ch15/15.5/15.5.4/15.5.4.10/S15.5.4.10_A1_T3.js b/test/suite/ch15/15.5/15.5.4/15.5.4.10/S15.5.4.10_A1_T3.js
index 96c30069b237c2d6894060c1b2c06153b16924e0..6eb2ff4b955df7eae8f62175f14ecd87ab4c3122 100644
--- a/test/suite/ch15/15.5/15.5.4/15.5.4.10/S15.5.4.10_A1_T3.js
+++ b/test/suite/ch15/15.5/15.5.4/15.5.4.10/S15.5.4.10_A1_T3.js
@@ -8,18 +8,17 @@
  * @description Checking by using eval
  */
 
-var match = String.prototype.match;
+var match = String.prototype.match.bind(fnGlobalObject());
 
-if (typeof toString === "undefined"){
-    toString = Object.prototype.toString;
-}
-
-var __class__ = toString();
+try {
+    fnGlobalObject().toString = Object.prototype.toString;
+} catch (e) { ; }
 
 //////////////////////////////////////////////////////////////////////////////
 //CHECK#1
-if (match(eval("\"bj\""))[0] !== "bj") {
-  $ERROR('#1: match = String.prototype.match; match(eval("\\"bj\\""))[0] === "bj". Actual: '+match(eval("\"bj\""))[0] );
+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] );
 }
 //
 //////////////////////////////////////////////////////////////////////////////