diff options
Diffstat (limited to 'js/src/tests/non262/String/replace-GetMethod.js')
-rw-r--r-- | js/src/tests/non262/String/replace-GetMethod.js | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/js/src/tests/non262/String/replace-GetMethod.js b/js/src/tests/non262/String/replace-GetMethod.js new file mode 100644 index 0000000000..c596f946ff --- /dev/null +++ b/js/src/tests/non262/String/replace-GetMethod.js @@ -0,0 +1,24 @@ +var BUGNUMBER = 1290655; +var summary = "String.prototype.replace should call GetMethod."; + +print(BUGNUMBER + ": " + summary); + +function create(value) { + return { + [Symbol.replace]: value, + toString() { + return "-"; + } + }; +} + +for (let v of [null, undefined]) { + assertEq("a-a".replace(create(v), "+"), "a+a"); +} + +for (let v of [1, true, Symbol.iterator, "", {}, []]) { + assertThrowsInstanceOf(() => "a-a".replace(create(v)), TypeError); +} + +if (typeof reportCompare === "function") + reportCompare(true, true); |