Bug 1854555 - Remove global constructor in layout/generic/StickyScrollContainer.cpp r=emilio

Differential Revision: https://phabricator.services.mozilla.com/D188936
This commit is contained in:
serge-sans-paille 2023-09-27 07:15:20 +00:00
Родитель eb62860858
Коммит 310d041620
1 изменённых файлов: 4 добавлений и 3 удалений

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

@ -142,9 +142,10 @@ void StickyScrollContainer::ComputeStickyOffsets(nsIFrame* aFrame) {
}
}
static nscoord gUnboundedNegative = nscoord_MIN / 2;
static nscoord gUnboundedExtent = nscoord_MAX;
static nscoord gUnboundedPositive = gUnboundedNegative + gUnboundedExtent;
static constexpr nscoord gUnboundedNegative = nscoord_MIN / 2;
static constexpr nscoord gUnboundedExtent = nscoord_MAX;
static constexpr nscoord gUnboundedPositive =
gUnboundedNegative + gUnboundedExtent;
void StickyScrollContainer::ComputeStickyLimits(nsIFrame* aFrame,
nsRect* aStick,