Bug 1361577 - Remove unnecessary null check of mRG. r=emilio

Differential Revision: https://phabricator.services.mozilla.com/D149521
This commit is contained in:
Ryan VanderMeulen 2022-06-16 14:06:59 +00:00
Родитель 190ac22f48
Коммит d0027d4880
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -6378,7 +6378,7 @@ bool BCPaintBorderIterator::SetNewRowGroup() {
mCellMap = mTableCellMap->GetMapFor(fifRg, nullptr);
if (!mCellMap) ABORT1(false);
}
if (mRg && mTable->GetPrevInFlow() && !mRg->GetPrevInFlow()) {
if (mTable->GetPrevInFlow() && !mRg->GetPrevInFlow()) {
// if mRowGroup doesn't have a prev in flow, then it may be a repeated
// header or footer
const nsStyleDisplay* display = mRg->StyleDisplay();