diff options
Diffstat (limited to 'js/src/tests/non262/RegExp/split-obj.js')
-rw-r--r-- | js/src/tests/non262/RegExp/split-obj.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/js/src/tests/non262/RegExp/split-obj.js b/js/src/tests/non262/RegExp/split-obj.js new file mode 100644 index 0000000000..75c09f38d1 --- /dev/null +++ b/js/src/tests/non262/RegExp/split-obj.js @@ -0,0 +1,12 @@ +var BUGNUMBER = 887016; +var summary = "RegExp.prototype[@@split] should check if this value is RegExp."; + +print(BUGNUMBER + ": " + summary); + +var obj = { flags: "", toString: () => "-" }; +assertDeepEq(RegExp.prototype[Symbol.split].call(obj, "a-b-c"), + ["a", "b", "c"]); + +if (typeof reportCompare === "function") + reportCompare(true, true); + |