Bug 1275452 - Part 2: Eagerly restyle native anonymous content in stylo. r=bholley

--HG--
extra : rebase_source : d0e728b4edcd32482743e98f5aecd22c669354f1
This commit is contained in:
Cameron McCormack 2016-05-25 16:55:49 +10:00
Родитель 4e94a3cb48
Коммит 9f068966f6
1 изменённых файлов: 7 добавлений и 0 удалений

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

@ -4241,6 +4241,13 @@ nsCSSFrameConstructor::GetAnonymousContent(nsIContent* aParent,
}
}
if (ServoStyleSet* styleSet = mPresShell->StyleSet()->GetAsServo()) {
// Eagerly compute styles for the anonymous content tree.
for (auto& info : aContent) {
styleSet->RestyleSubtree(info.mContent);
}
}
return NS_OK;
}