From d873bd96953a6c8de8a9355e330400e0799db661 Mon Sep 17 00:00:00 2001 From: wolfbeast Date: Wed, 29 May 2019 11:25:58 +0200 Subject: Make nsFind::Find actually use a string type as input. Futureproofing follow-up to b89570e31cfb84449241e363a595540b8810c217 --- embedding/test/test_nsFind.html | 14 -------------- 1 file changed, 14 deletions(-) (limited to 'embedding/test') 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); -- cgit v1.2.3