Bug 1266724, add null check of defaultView, r=neil

This commit is contained in:
Akshay Jain 2016-05-27 09:19:53 -04:00
Родитель 7ce3ec5e44
Коммит 3e2f28a96e
1 изменённых файлов: 2 добавлений и 0 удалений

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

@ -120,6 +120,8 @@ ContentAreaDropListener.prototype =
// also check for nodes in other child or sibling frames by checking
// if both have the same top window.
if (sourceDocument && eventDocument) {
if (sourceDocument.defaultView == null)
return true;
let sourceRoot = sourceDocument.defaultView.top;
if (sourceRoot && sourceRoot == eventDocument.defaultView.top)
return false;