Commit 11bd58c3 authored by ma1's avatar ma1 Committed by Richard Pospesel
Browse files

Bug 31064: Letterboxing, exempt browser extensions.

parent 77aece58
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -381,7 +381,9 @@ class _RFPHelper {
      // ... privileged pages
      contentPrincipal.isSystemPrincipal ||
      // ... about: URIs EXCEPT about:blank
      (currentURI.schemeIs("about") && currentURI.filePath !== "blank")
      (currentURI.schemeIs("about") && currentURI.filePath !== "blank") ||
      // ... browser extensions
      contentPrincipal.addonPolicy
    );
  }