Unit test bustage fix from bug 702810 for apps that implement imap uris - don't test the imap uri for visited status because nsIIOService.newURI() can throw if the app knows about imap:// but an account is not set up for it. r=mak over irc

This commit is contained in:
Mark Banner 2011-12-01 11:29:34 +00:00
parent 1a9dd1ab95
commit 362375e4f5

View File

@ -9,7 +9,9 @@ const SCHEMES = {
"ftp://": true,
"file:///": true,
"about:": false,
"imap://": false,
// nsIIOService.newURI() can throw if e.g. the app knows about imap://
// but the account is not set up and so the URL is invalid for it.
// "imap://": false,
"news://": false,
"mailbox:": false,
"moz-anno:favicon:http://": false,