Issue #2510 - Unprefix -moz-fit-content

No aliasing since this has been out for a while.
Devtools db regenerated with `mach devtools-css-db`

Resolves #2510
This commit is contained in:
Moonchild 2024-05-06 22:09:18 +02:00 committed by roytam1
commit c77b4b0bad
8 changed files with 26 additions and 27 deletions

View file

@ -111,7 +111,7 @@ FixedTableLayoutStrategy::GetMinISize(nsRenderingContext* aRenderingContext)
result -= spacing * (colSpan - 1);
}
}
// else, for 'auto', '-moz-available', '-moz-fit-content',
// else, for 'auto', '-moz-available', 'fit-content',
// and 'calc()' with percentages, do nothing
}
}
@ -266,7 +266,7 @@ FixedTableLayoutStrategy::ComputeColumnISizes(const ReflowInput& aReflowInput)
colFrame->AddPrefPercent(pct);
pctTotal += pct;
} else {
// 'auto', '-moz-available', '-moz-fit-content', and 'calc()'
// 'auto', '-moz-available', 'fit-content', and 'calc()'
// with percentages
colISize = unassignedMarker;
}