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