Bug 1082791 - Add about:certerror to the list of URLs that can be loaded remotely. r=Mossop

This commit is contained in:
Felipe Gomes 2014-10-15 18:12:39 -03:00
parent b87718267b
commit a869fcc4fc

View File

@ -19,7 +19,8 @@ this.E10SUtils = {
if (aURL.startsWith("about:") &&
aURL.toLowerCase() != "about:home" &&
aURL.toLowerCase() != "about:blank" &&
!aURL.toLowerCase().startsWith("about:neterror")) {
!aURL.toLowerCase().startsWith("about:neterror") &&
!aURL.toLowerCase().startsWith("about:certerror")) {
return false;
}