Bug 950301 - Add another assertion to detect scenarios where we botch the layer tree. r=BenWa

This commit is contained in:
Kartikaya Gupta 2014-01-27 23:36:57 -05:00
Родитель a567db82f3
Коммит 5fee92e5f2
1 изменённых файлов: 2 добавлений и 0 удалений

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

@ -796,6 +796,8 @@ ContainerLayer::RepositionChild(Layer* aChild, Layer* aAfter)
(aAfter->Manager() == Manager() &&
aAfter->GetParent() == this),
"aAfter is not our child");
NS_ASSERTION(aChild != aAfter,
"aChild cannot be the same as aAfter");
Layer* prev = aChild->GetPrevSibling();
Layer* next = aChild->GetNextSibling();