Bug 1931736. Add missing braces around if/loop statements in layout/generic/. r=layout-reviewers,emilio

Depends on D229247

Differential Revision: https://phabricator.services.mozilla.com/D229248
This commit is contained in:
Jonathan Watt
2024-11-17 05:03:58 +00:00
parent 89c1154d34
commit 7532be254f
31 changed files with 450 additions and 164 deletions

View File

@@ -988,7 +988,9 @@ bool ScrollContainerFrame::GuessVScrollbarNeeded(
// If this is the initial reflow, guess false because usually
// we have very little content by then.
if (InInitialReflow()) return false;
if (InInitialReflow()) {
return false;
}
if (mIsRoot) {
nsIFrame* f = mScrolledFrame->PrincipalChildList().FirstChild();
@@ -2674,7 +2676,9 @@ void ScrollContainerFrame::MarkEverScrolled() {
}
void ScrollContainerFrame::MarkNotRecentlyScrolled() {
if (!mHasBeenScrolledRecently) return;
if (!mHasBeenScrolledRecently) {
return;
}
mHasBeenScrolledRecently = false;
SchedulePaint();
@@ -6450,7 +6454,9 @@ void ScrollContainerFrame::AdjustScrollbarRectForResizer(
}
static void AdjustOverlappingScrollbars(nsRect& aVRect, nsRect& aHRect) {
if (aVRect.IsEmpty() || aHRect.IsEmpty()) return;
if (aVRect.IsEmpty() || aHRect.IsEmpty()) {
return;
}
const nsRect oldVRect = aVRect;
const nsRect oldHRect = aHRect;
@@ -6723,7 +6729,9 @@ static void ReduceRadii(nscoord aXBorder, nscoord aYBorder, nscoord& aXRadius,
nscoord& aYRadius) {
// In order to ensure that the inside edge of the border has no
// curvature, we need at least one of its radii to be zero.
if (aXRadius <= aXBorder || aYRadius <= aYBorder) return;
if (aXRadius <= aXBorder || aYRadius <= aYBorder) {
return;
}
// For any corner where we reduce the radii, preserve the corner's shape.
double ratio =
@@ -7958,11 +7966,13 @@ bool ScrollContainerFrame::CanApzScrollInTheseDirections(
ScrollDirections aDirections) {
ScrollStyles styles = GetScrollStyles();
if (aDirections.contains(ScrollDirection::eHorizontal) &&
styles.mHorizontal == StyleOverflow::Hidden)
styles.mHorizontal == StyleOverflow::Hidden) {
return false;
}
if (aDirections.contains(ScrollDirection::eVertical) &&
styles.mVertical == StyleOverflow::Hidden)
styles.mVertical == StyleOverflow::Hidden) {
return false;
}
return true;
}