summaryrefslogtreecommitdiffstats
path: root/layout/style
diff options
context:
space:
mode:
authorwolfbeast <mcwerewolf@gmail.com>2018-02-13 19:26:43 +0100
committerwolfbeast <mcwerewolf@gmail.com>2018-02-13 19:26:43 +0100
commit1da0e8a095d82dd6b9ad0c0a45a7ee3b9d80ded7 (patch)
tree4925b88246f13f2fc6d1aec40fdaced5284237c7 /layout/style
parent2b6c1f971b486152cbf116452e5f723e2b2d068f (diff)
downloadUXP-1da0e8a095d82dd6b9ad0c0a45a7ee3b9d80ded7.tar
UXP-1da0e8a095d82dd6b9ad0c0a45a7ee3b9d80ded7.tar.gz
UXP-1da0e8a095d82dd6b9ad0c0a45a7ee3b9d80ded7.tar.lz
UXP-1da0e8a095d82dd6b9ad0c0a45a7ee3b9d80ded7.tar.xz
UXP-1da0e8a095d82dd6b9ad0c0a45a7ee3b9d80ded7.zip
Never shrink line heights as a result of minimumFontSize.
See: MoonchildProductions/Pale-Moon#1614.
Diffstat (limited to 'layout/style')
-rw-r--r--layout/style/nsRuleNode.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/layout/style/nsRuleNode.cpp b/layout/style/nsRuleNode.cpp
index b22002d87..fa29fe0f1 100644
--- a/layout/style/nsRuleNode.cpp
+++ b/layout/style/nsRuleNode.cpp
@@ -4686,7 +4686,8 @@ nsRuleNode::ComputeTextData(void* aStartStruct,
if (font->mSize != 0) {
lh = nscoord(float(lh) * float(font->mFont.size) / float(font->mSize));
} else {
- lh = minimumFontSize;
+ // Never shrink line heights as a result of minFontSize
+ lh = std::max(lh, minimumFontSize);
}
}
text->mLineHeight.SetCoordValue(lh);