diff options
author | Moonchild <moonchild@palemoon.org> | 2020-09-23 14:57:31 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2020-09-23 14:57:31 +0000 |
commit | 5d97621bb92efe01b05834abc43c40016d9cf078 (patch) | |
tree | 96d38da100258be6bc802000ca35c162c174fc60 | |
parent | 7572f371867ac8fd61963aced41382357d0e28f8 (diff) | |
download | UXP-5d97621bb92efe01b05834abc43c40016d9cf078.tar UXP-5d97621bb92efe01b05834abc43c40016d9cf078.tar.gz UXP-5d97621bb92efe01b05834abc43c40016d9cf078.tar.lz UXP-5d97621bb92efe01b05834abc43c40016d9cf078.tar.xz UXP-5d97621bb92efe01b05834abc43c40016d9cf078.zip |
Issue #1656 - Part 2b: Unmangle one more lost little UTF-8 victim.
-rw-r--r-- | layout/generic/nsFlexContainerFrame.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/layout/generic/nsFlexContainerFrame.cpp b/layout/generic/nsFlexContainerFrame.cpp index 635ae761b..8a393c3fe 100644 --- a/layout/generic/nsFlexContainerFrame.cpp +++ b/layout/generic/nsFlexContainerFrame.cpp @@ -1613,7 +1613,7 @@ ResolveAutoFlexBasisFromRatio(FlexItem& aFlexItem, // - a [used] flex-basis of 'main-size' [auto?] [We have this, if we're here.] // - a definite cross size // then the flex base size is calculated from its inner cross size and the - // flex item???s intrinsic aspect ratio. + // flex item’s intrinsic aspect ratio. if (aFlexItem.IntrinsicRatio()) { // We have a usable aspect ratio. (not going to divide by 0) const bool useMinSizeIfCrossSizeIsIndefinite = false; |