зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1751108 - Deal with nan context scale in SVGTextFrame::UpdateFontSizeScaleFactor. r=layout-reviewers,jfkthame
Depends on D139936 Differential Revision: https://phabricator.services.mozilla.com/D139937
This commit is contained in:
Родитель
12a3368643
Коммит
d85e707e95
|
@ -5186,6 +5186,9 @@ bool SVGTextFrame::UpdateFontSizeScaleFactor() {
|
|||
gfxMatrix m(GetCanvasTM());
|
||||
if (!m.IsSingular()) {
|
||||
contextScale = GetContextScale(m);
|
||||
if (!std::isfinite(contextScale)) {
|
||||
contextScale = 1.0f;
|
||||
}
|
||||
}
|
||||
}
|
||||
mLastContextScale = contextScale;
|
||||
|
|
Загрузка…
Ссылка в новой задаче