Closed
Bug 1355595
Opened 8 years ago
Closed 8 years ago
Simplify the default font size calculation for the spellchecker underline
Categories
(Core :: Layout, enhancement, P1)
Tracking
()
Tracking | Status | |
---|---|---|
firefox55 | --- | fixed |
People
(Reporter: jj.evelyn, Assigned: jj.evelyn)
References
(Blocks 1 open bug)
Details
(Keywords: perf)
Attachments
(1 file)
+++ This bug was initially created as a clone of Bug #1354641 +++
From profile [1] and code [2] it shows we spend some time to calculate the thickness of the spellchecker underline when every time selectedframes is called. We might be able to calculate this value directly from PresContext instead of creating a temporary nsStyleFont object to do a bunch of expensive work.
[1] https://perfht.ml/2p4IE6S
[2] http://searchfox.org/mozilla-central/source/layout/generic/nsTextFrame.cpp#5798-5805
Assignee | ||
Updated•8 years ago
|
Whiteboard: [e10s-multi:-][qf:p1] → [qf]
Comment hidden (mozreview-request) |
Assignee | ||
Comment 2•8 years ago
|
||
David, I saw you reviewed bug 486735 so set review request to you. Feel free to point to someone else if you are busy. Thanks!
Assignee | ||
Comment 3•8 years ago
|
||
profile after applying this patch: https://perfht.ml/2opWylH.
Assignee | ||
Comment 4•8 years ago
|
||
Comment 5•8 years ago
|
||
mozreview-review |
Comment on attachment 8857223 [details]
Bug 1355595 - Simplify the default font size calculation;
https://reviewboard.mozilla.org/r/129160/#review131682
r=dbaron with these three comments:
::: layout/generic/nsTextFrame.cpp:5805
(Diff revision 1)
> - gfxFloat fontSize = std::min(gfxFloat(defaultFontSize),
> + int32_t scaledFontSize = aPresContext->AppUnitsToDevPixels(
> + defaultFontSize * aPresContext->EffectiveTextZoom());
I think it's clearer to continue using the nsStyleFont::ZoomText function here, i.e., by replacing the manual multiplication of "defaultFontSize * aPresContext->EffectiveTextZoom()" with nsStyleFont::ZoomText(aPresContext, defaultFontSize)". (I think the rounding is different, maybe, depending on what NSToCoordTruncClamped does. It's also clearer.)
I'd also call the resulting variable zoomedFontSize rather than scaledFontSize, since scaled could mean so many other things.
::: layout/generic/nsTextFrame.cpp:5807
(Diff revision 1)
> + gfxFloat fontSize = std::min(gfxFloat(scaledFontSize),
> aFontMetrics.emHeight);
While you're here, please line up the indentation of the two arguments to std::min(), or just fit them one one line if they fit within 80 characters. They were probably misaligned after some previous mass-edit.
Attachment #8857223 -
Flags: review?(dbaron) → review+
Comment hidden (mozreview-request) |
Pushed by ehung@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/abfece312d74
Simplify the default font size calculation; r=dbaron
Assignee | ||
Comment 8•8 years ago
|
||
Thanks for the review! David.
commend addressed and trigger auto-land on mozreview.
Assignee | ||
Updated•8 years ago
|
Assignee: nobody → ehung
Status: NEW → ASSIGNED
Comment 9•8 years ago
|
||
bugherder |
Status: ASSIGNED → RESOLVED
Closed: 8 years ago
status-firefox55:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → mozilla55
Updated•7 years ago
|
Whiteboard: [qf] → [qf:p1]
Updated•3 years ago
|
Performance Impact: --- → P1
Whiteboard: [qf:p1]
You need to log in
before you can comment on or make changes to this bug.
Description
•