Closed
Bug 1417947
Opened 7 years ago
Closed 7 years ago
mac-its.com: Menu becomes blank when hovering over things that are not a link
Categories
(Core :: Web Painting, defect)
Core
Web Painting
Tracking
()
RESOLVED
FIXED
mozilla59
Tracking | Status | |
---|---|---|
firefox-esr52 | --- | unaffected |
firefox57 | --- | unaffected |
firefox58 | --- | fixed |
firefox59 | --- | fixed |
People
(Reporter: Tobbi, Assigned: mattwoodrow)
References
()
Details
(Keywords: regression)
Attachments
(1 file)
1.80 KB,
patch
|
mikokm
:
review+
gchang
:
approval-mozilla-beta+
|
Details | Diff | Splinter Review |
Steps to reproduce:
1. Go to https://www.mac-its.com/
2. Hover over one of the menu items at the top.
3. Hover over the white menu that appears.
Results:
The menu items of the upcoming menu are disappearing, leaving only a blank surface.
Expected results:
The menu items should still be visible while hovering.
This works as expected on both Safari and Google Chrome.
Comment 1•7 years ago
|
||
This seems stylo and animation issues.
Comment 2•7 years ago
|
||
Seems to be a recent regression
status-firefox57:
--- → unaffected
status-firefox58:
--- → unaffected
Keywords: regression,
regressionwindow-wanted
OS: Mac OS X → All
Hardware: x86 → All
Comment 3•7 years ago
|
||
I suspect retained display lists instead of stylo, fwiw, but can take a look.
Updated•7 years ago
|
Component: Layout → Layout: Web Painting
Updated•7 years ago
|
Keywords: regressionwindow-wanted
Assignee | ||
Comment 5•7 years ago
|
||
This caller happens before the AutoBuildingDisplayList is initialized, so |this| isn't actually the current frame.
If we hit this branch on the root frame, then there's nothing on the stack to restore the value of nsDisplayListBuilder::mInInvalidSubtree.
So we have an nsDisplayBlendContainer for the root frame, which causes mInInvalidSubtree to get stuck at true for future paints, but we're also invalidating everything, so it's correct.
Then we remove the blend container, and try do a real partial build, but mInInvalidSubtree is still true, so we don't use the override dirty regions and build less than we should.
The new assertion would have caught this.
Assignee: nobody → matt.woodrow
Attachment #8929921 -
Flags: review?(mikokm)
Comment 6•7 years ago
|
||
Comment on attachment 8929921 [details] [diff] [review]
Don't use MarkCurrentFrameModifiedDuringBuilding before we setup the current frame
Review of attachment 8929921 [details] [diff] [review]:
-----------------------------------------------------------------
LGTM. If it's not too much work, could we have a test case for this?
Attachment #8929921 -
Flags: review?(mikokm) → review+
Pushed by mwoodrow@mozilla.com:
https://hg.mozilla.org/integration/mozilla-inbound/rev/b45d85aef732
Mark the correct frame as modified when invalidating due to blend mode. r=miko
Comment 8•7 years ago
|
||
bugherder |
Status: NEW → RESOLVED
Closed: 7 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla59
Updated•7 years ago
|
status-firefox-esr52:
--- → unaffected
Assignee | ||
Comment 9•7 years ago
|
||
Comment on attachment 8929921 [details] [diff] [review]
Don't use MarkCurrentFrameModifiedDuringBuilding before we setup the current frame
Approval Request Comment
[Feature/Bug causing the regression]: bug 1352499. This is code that is preffed off, but we want to run a shield study enabling the pref.
[User impact if declined]: None, preffed off code.
[Is this code covered by automated tests?]: Yes, when the pref is enabled.
[Has the fix been verified in Nightly?]: Yes
[Needs manual test from QE? If yes, steps to reproduce]: No
[List of other uplifts needed for the feature/fix]: None
[Is the change risky?]: No
[Why is the change risky/not risky?]: Code is preffed off.
[String changes made/needed]: None
Attachment #8929921 -
Flags: approval-mozilla-beta?
Comment 10•7 years ago
|
||
Comment on attachment 8929921 [details] [diff] [review]
Don't use MarkCurrentFrameModifiedDuringBuilding before we setup the current frame
Support retain display lists shield study which is pref-off now. Beta58+.
Attachment #8929921 -
Flags: approval-mozilla-beta? → approval-mozilla-beta+
Updated•7 years ago
|
Comment 11•7 years ago
|
||
bugherder uplift |
You need to log in
before you can comment on or make changes to this bug.
Description
•