aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/ch15/15.5/15.5.4/15.5.4.15/S15.5.4.15_A3_T7.js
diff options
context:
space:
mode:
authorDavid Fugate <dfugate@microsoft.com>2012-02-24 10:50:14 -0800
committerDavid Fugate <dfugate@microsoft.com>2012-02-24 10:50:14 -0800
commit35af99abe1eb03de767c90f4f4e9bfb7c452bc90 (patch)
tree3381a740cfe983129eb1c0dcf02118e999e3cc78 /test/suite/ch15/15.5/15.5.4/15.5.4.15/S15.5.4.15_A3_T7.js
parente0d156d38cf03c0dde55743bef15a350f9be51b4 (diff)
https://bugs.ecmascript.org/show_bug.cgi?id=276 fixed.
Diffstat (limited to 'test/suite/ch15/15.5/15.5.4/15.5.4.15/S15.5.4.15_A3_T7.js')
-rw-r--r--test/suite/ch15/15.5/15.5.4/15.5.4.15/S15.5.4.15_A3_T7.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/suite/ch15/15.5/15.5.4/15.5.4.15/S15.5.4.15_A3_T7.js b/test/suite/ch15/15.5/15.5.4/15.5.4.15/S15.5.4.15_A3_T7.js
index dfbdeacb9..2c91e0230 100644
--- a/test/suite/ch15/15.5/15.5.4/15.5.4.15/S15.5.4.15_A3_T7.js
+++ b/test/suite/ch15/15.5/15.5.4/15.5.4.15/S15.5.4.15_A3_T7.js
@@ -9,7 +9,7 @@
* @description Apply String.prototype.substring to Object instance. Call instance.substring(...).substring(...)
*/
-var __instance = function(){};
+var __instance = { toString: function() { return "function(){}";} };
__instance.substring = String.prototype.substring;