summaryrefslogtreecommitdiffstats
path: root/embedding/test/test_nsFind.html
diff options
context:
space:
mode:
authorwolfbeast <mcwerewolf@wolfbeast.com>2019-05-29 11:25:58 +0200
committerwolfbeast <mcwerewolf@wolfbeast.com>2019-05-29 11:54:34 +0200
commitae778efe5e16d688d3fea5411bd896f167986161 (patch)
tree3202656a890f3365ce421887632f0075cc5e754a /embedding/test/test_nsFind.html
parentf3b1a919be9c55bdbbde6c9d009e3d8073495ae7 (diff)
downloadUXP-ae778efe5e16d688d3fea5411bd896f167986161.tar
UXP-ae778efe5e16d688d3fea5411bd896f167986161.tar.gz
UXP-ae778efe5e16d688d3fea5411bd896f167986161.tar.lz
UXP-ae778efe5e16d688d3fea5411bd896f167986161.tar.xz
UXP-ae778efe5e16d688d3fea5411bd896f167986161.zip
Make nsFind::Find actually use a string type as input.
Futureproofing follow-up to b89570e31cfb84449241e363a595540b8810c217
Diffstat (limited to 'embedding/test/test_nsFind.html')
-rw-r--r--embedding/test/test_nsFind.html14
1 files changed, 0 insertions, 14 deletions
diff --git a/embedding/test/test_nsFind.html b/embedding/test/test_nsFind.html
index 5f5a4687a..f180cda20 100644
--- a/embedding/test/test_nsFind.html
+++ b/embedding/test/test_nsFind.html
@@ -33,20 +33,6 @@ https://bugzilla.mozilla.org/show_bug.cgi?id=450048
var startPt = searchRange;
var endPt = searchRange;
- // Check |null| detection on |aPatText| parameter.
- try {
- rf.Find(null, searchRange, startPt, endPt);
-
- ok(false, "Missing NS_ERROR_NULL_POINTER exception");
- } catch (e) {
- e = SpecialPowers.wrap(e);
- if (e.result == SpecialPowers.Cr.NS_ERROR_NULL_POINTER) {
- ok(true, null);
- } else {
- throw e;
- }
- }
-
// Check |null| detection on |aSearchRange| parameter.
try {
rf.Find("", null, startPt, endPt);