Closed
Bug 1374752
Opened 7 years ago
Closed 7 years ago
stylo: UpdateStyleOfOwnedChildFrame lost aHintForThisFrame
Categories
(Core :: CSS Parsing and Computation, enhancement)
Tracking
()
RESOLVED
FIXED
mozilla56
Tracking | Status | |
---|---|---|
firefox56 | --- | fixed |
People
(Reporter: bzbarsky, Assigned: emilio)
References
(Blocks 1 open bug)
Details
Attachments
(1 file)
This function was added in bug 1364871, refactoring existing code that . It still has comments about aHintForThisFrame, but no longer has such an argument and no longer optimizes out the hints handled for descendants from aHintForThisFrame.
Though maybe this is really sort of fallout from bug 1302054 not cleaning up things enough?
Flags: needinfo?(emilio+bugs)
Assignee | ||
Comment 1•7 years ago
|
||
Yeah, I didn't remove any call to NS_RemoveSubsumedHints or anything like that in that bug.
That being said, it looks like we should add it back now I added the hints for descendants optimization.
Flags: needinfo?(emilio+bugs)
Reporter | ||
Updated•7 years ago
|
Blocks: stylo, stylo-perf
Comment hidden (mozreview-request) |
Comment 3•7 years ago
|
||
mozreview-review |
Comment on attachment 8879722 [details]
Bug 1374752: Pack together the StyleSet, ChangeList and handled change hints, and use the latter with anonymous boxes while we're at it.
https://reviewboard.mozilla.org/r/151064/#review156574
Looks good, thanks!
::: commit-message-9c95f:3
(Diff revision 1)
> +I need to update the docs of the UpdateStyleOfAnonBoxes functions, but I need to
> +run now. Will do before landing.
Don't forget to remove this from the commit message too. :-)
::: layout/base/ServoRestyleManager.h:35
(Diff revision 1)
> +{
> + ServoStyleSet& mStyleSet;
> + nsStyleChangeList& mChangeList;
> + const nsChangeHint mChangesHandled;
> +
> +public:
Nit: would prefer the more conventional arrangement of
public:
... member functions ...
private:
... member variables ...
::: layout/base/ServoRestyleManager.cpp:182
(Diff revision 1)
> +private:
> nsStyleContext& mParentContext;
> - ServoStyleSet& mStyleSet;
> + ServoRestyleState& mParentRestyleState;
> RefPtr<nsStyleContext> mStyle;
> bool mShouldPostHints;
> bool mShouldComputeHints;
> nsChangeHint mComputedHint;
> - nsChangeHint mHintsHandled;
>
> +public:
Nit: here too I guess.
::: layout/generic/nsFrame.cpp:10229
(Diff revision 1)
> + StyleContext());
>
> nsChangeHint childHint =
> - UpdateStyleOfOwnedChildFrame(aChildFrame, newContext, aChangeList);
> + UpdateStyleOfOwnedChildFrame(aChildFrame, newContext, aRestyleState);
>
> + ServoRestyleState childrenState(aRestyleState, childHint);
Nit: might look a little neater adding this below the comment...
Attachment #8879722 -
Flags: review?(cam) → review+
Assignee | ||
Comment 4•7 years ago
|
||
mozreview-review |
Comment on attachment 8879722 [details]
Bug 1374752: Pack together the StyleSet, ChangeList and handled change hints, and use the latter with anonymous boxes while we're at it.
https://reviewboard.mozilla.org/r/151064/#review156654
::: layout/base/ServoRestyleManager.h:35
(Diff revision 1)
> +{
> + ServoStyleSet& mStyleSet;
> + nsStyleChangeList& mChangeList;
> + const nsChangeHint mChangesHandled;
> +
> +public:
Done.
::: layout/base/ServoRestyleManager.cpp:182
(Diff revision 1)
> +private:
> nsStyleContext& mParentContext;
> - ServoStyleSet& mStyleSet;
> + ServoRestyleState& mParentRestyleState;
> RefPtr<nsStyleContext> mStyle;
> bool mShouldPostHints;
> bool mShouldComputeHints;
> nsChangeHint mComputedHint;
> - nsChangeHint mHintsHandled;
>
> +public:
Done too :)
Assignee | ||
Comment 5•7 years ago
|
||
mozreview-review-reply |
Comment on attachment 8879722 [details]
Bug 1374752: Pack together the StyleSet, ChangeList and handled change hints, and use the latter with anonymous boxes while we're at it.
https://reviewboard.mozilla.org/r/151064/#review156574
> Nit: might look a little neater adding this below the comment...
Agreed, done.
Comment hidden (mozreview-request) |
Pushed by ecoal95@gmail.com:
https://hg.mozilla.org/integration/autoland/rev/fdde73cf429c
Pack together the StyleSet, ChangeList and handled change hints, and use the latter with anonymous boxes while we're at it. r=heycam
Comment 8•7 years ago
|
||
bugherder |
Status: NEW → RESOLVED
Closed: 7 years ago
status-firefox56:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → mozilla56
Updated•6 years ago
|
Assignee: nobody → emilio
You need to log in
before you can comment on or make changes to this bug.
Description
•