Bug 1674302 Part 1 - Change a FLEX_LOG to dump address of flex item's frame rather than flex item itself. r=emilio

All the other FLEX_LOGs dump the address of flex item's frame.

Differential Revision: https://phabricator.services.mozilla.com/D104644
This commit is contained in:
Ting-Yu Lin 2021-02-18 05:45:24 +00:00
Родитель 5e826cb7c5
Коммит 5c0047ddf2
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -3201,8 +3201,8 @@ void FlexLine::ResolveFlexibleLengths(nscoord aFlexContainerMainSize,
availableFreeSpace -= sizeDelta;
item.SetMainSize(item.MainSize() + sizeDelta);
FLEX_LOG(" child %p receives %d, for a total of %d", &item,
sizeDelta, item.MainSize());
FLEX_LOG(" flex item %p receives %d, for a total of %d",
item.Frame(), sizeDelta, item.MainSize());
}
}