Bug 427163 - "Crash [@ nsContentUtils::ContentIsDescendantOf] with contenteditable, right-clicking and document.write" (add null check) [p=chris@pearce.org.nz (Chris Pearce [cpearce]) r+sr=roc a1.9=damons]

This commit is contained in:
reed%reedloden.com 2008-04-09 06:16:09 +00:00
Родитель 67ce89ca20
Коммит d7895294f4
1 изменённых файлов: 2 добавлений и 0 удалений

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

@ -1005,6 +1005,8 @@ PRBool nsCaret::IsMenuPopupHidingCaret()
if (!node)
return PR_TRUE; // No selection/caret to draw.
nsCOMPtr<nsIContent> caretContent = do_QueryInterface(node);
if (!caretContent)
return PR_TRUE; // No selection/caret to draw.
// If there's a menu popup open before the popup with
// the caret, don't show the caret.