Sitemap checkerboards when scrolling after bug 1779952
Categories
(Core :: Graphics: WebRender, defect)
Tracking
()
Tracking | Status | |
---|---|---|
firefox-esr91 | --- | unaffected |
firefox-esr102 | --- | unaffected |
firefox103 | --- | unaffected |
firefox104 | --- | unaffected |
firefox105 | --- | verified |
People
(Reporter: gregp, Assigned: gw)
References
(Regression, )
Details
(Keywords: regression)
Attachments
(2 files)
Steps to reproduce:
- Navigate to https://wuff.gay/sitemap
- Scroll the sitemap
Actual results:
Checkerboarding
Expected results:
No checkerboarding
Profile before bug 1779952: https://share.firefox.dev/3PExuSd
Profile after bug 1779952: https://share.firefox.dev/3zIlRE9
Updated•3 years ago
|
Comment 1•3 years ago
|
||
Set release status flags based on info from the regressing bug 1779952
Comment 2•3 years ago
|
||
:gw, since you are the author of the regressor, bug 1779952, could you take a look?
For more information, please visit auto_nag documentation.
Updated•3 years ago
|
Assignee | ||
Updated•3 years ago
|
Assignee | ||
Comment 3•3 years ago
|
||
A minimized test case:
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
.articleGrid {
display: grid;
}
.article {
width: 400px;
height: 200px;
background-color: green;
border-radius: 16px;
}
.page {
backdrop-filter: blur(50px);
}
.page {
height: 725px;
}
.section {
height: calc(100% - 90px);
overflow-y: auto;
}
</style>
</head>
<body>
<div class="page">
<div class="section">
<div class="articleGrid" style="height: 2000px; background: grey;">
<a href="#" class="article">A</a>
</div>
</div>
</body>
</html>
Assignee | ||
Comment 4•3 years ago
|
||
Even more minimal test case, removing backdrop-filter
from the equation:
<!DOCTYPE html>
<html>
<body>
<div style="height: 725px; filter: opacity(0.5);">
<div style="height: 600px; overflow-y: auto;">
<div style="display: grid; height: 2000px; background: grey;">
<p style="height: 400px; background: green; border-radius: 16px;"></a>
</div>
</div>
</body>
</html>
Assignee | ||
Comment 5•3 years ago
|
||
Comment 7•3 years ago
|
||
bugherder |
Updated•3 years ago
|
I managed to reproduce this issue on a 2022-07-29 Nightly build on Ubuntu 22.04 using the STR from the Description. Verified as fixed on Firefox 105.0b7(build ID: 20220904185841) and Nightly 106.0a1(build ID: 20220905214329) on Ubuntu 22.04, macOS 12, Windows 10.
Description
•