Bug 1476358 - Replace while-loop with FindFirstBlock() in WrapFramesInFirstLineFrame(). r=dholbert

Differential Revision: https://phabricator.services.mozilla.com/D2193

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Ting-Yu Lin 2018-07-17 18:17:42 +00:00
Родитель 48e892f643
Коммит 91d1f8bd84
1 изменённых файлов: 1 добавлений и 3 удалений

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

@ -10444,9 +10444,7 @@ nsCSSFrameConstructor::WrapFramesInFirstLineFrame(
{
// Find the part of aFrameItems that we want to put in the first-line
nsFrameList::FrameLinkEnumerator link(aFrameItems);
while (!link.AtEnd() && link.NextFrame()->IsInlineOutside()) {
link.Next();
}
FindFirstBlock(link);
nsFrameList firstLineChildren = aFrameItems.ExtractHead(link);