Bug 947895 - [e10s] Null check browser.docShell in context-menu Open in new tab. r=gavin

This commit is contained in:
Tom Schuster 2014-02-24 23:10:18 +01:00
Родитель 288af30ff5
Коммит 162b01089f
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -849,7 +849,7 @@ nsContextMenu.prototype = {
// decision of disabling MCB on a page for it's child tabs.
var persistDisableMCBInChildTab = false;
if (this.browser.docShell.mixedContentChannel) {
if (this.browser.docShell && this.browser.docShell.mixedContentChannel) {
const sm = Services.scriptSecurityManager;
try {
var targetURI = this.linkURI;