Bug 1206107 - fire show event for reallocated accessible after it was reallocated, r=tbsaunde

This commit is contained in:
Alexander Surkov 2015-09-22 16:46:40 -04:00
parent 20dd6fd3e6
commit bce2fb5b16

View File

@ -1374,15 +1374,15 @@ DocAccessible::ProcessInvalidationList()
}
{
AutoTreeMutation mut(owner);
owner->AppendChild(child);
nsRefPtr<AccReorderEvent> reorderEvent = new AccReorderEvent(owner);
nsRefPtr<AccMutationEvent> showEvent =
new AccShowEvent(child, child->GetContent());
FireDelayedEvent(showEvent);
reorderEvent->AddSubMutationEvent(showEvent);
AutoTreeMutation mut(owner);
owner->AppendChild(child);
MaybeNotifyOfValueChange(owner);
FireDelayedEvent(reorderEvent);
}