Bug 921109 - Crash Report [@ mozilla::a11y::DocAccessible::UpdateTree (aContainer is null), r=tbsaunde

This commit is contained in:
Alexander Surkov 2013-09-26 17:17:13 -04:00
Родитель 86ba73d0e3
Коммит 56087fd7d8
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -229,6 +229,9 @@ public:
NS_IMETHODIMP Notify(nsITimer* aTimer) MOZ_FINAL
{
if (!mContent->IsInDoc())
return NS_OK;
nsIPresShell* ps = mContent->OwnerDoc()->GetShell();
if (ps) {
DocAccessible* doc = ps->GetDocAccessible();