зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1266724, add null check of defaultView, r=neil
This commit is contained in:
Родитель
7ce3ec5e44
Коммит
3e2f28a96e
|
@ -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;
|
||||
|
|
Загрузка…
Ссылка в новой задаче