tags:

views:

41

answers:

1

I am adding a new SSL specific error code inside SSLerrs.h in Mozilla NSS.

My question is, which file that contains the html page for that error? Because I need to modify the page too - to add my own messages.

Thanks.

A: 

/docshell/resources/content/netError.xhtml is the generic UI for network errors, including SSL errors.

/security/manager/locales/en-US/chrome/pipnss/nsserrors.properties contains translations of SSL_ERROR_* to user-visible strings; see also other locales.

ephemient