Bug 726272 - check if currentDocumentChannel is a valid channel; r=bustage-fix

This commit is contained in:
Tim Taubert 2012-03-16 18:58:01 +01:00
Родитель 550ff76cfe
Коммит 1979778029
1 изменённых файлов: 4 добавлений и 0 удалений

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

@ -110,6 +110,10 @@ let gBrowserThumbnails = {
let channel = aBrowser.docShell.currentDocumentChannel;
// No valid document channel. We shouldn't take a screenshot.
if (!channel)
return false;
// Don't take screenshots of internally redirecting about: pages.
// This includes error pages.
if (channel.originalURI.schemeIs("about"))