[css-overflow] Overflow propagation when the element propagated from is display: none · Issue #3779 · w3c/csswg-drafts (original) (raw)
Navigation Menu
- GitHub Copilot Write better code with AI
- GitHub Models New Manage and compare prompts
- GitHub Advanced Security Find and fix vulnerabilities
- Actions Automate any workflow
- Codespaces Instant dev environments
- Issues Plan and track work
- Code Review Manage code changes
- Discussions Collaborate outside of code
- Code Search Find more, search less
- Explore
- Pricing
Provide feedback
Saved searches
Use saved searches to filter your results more quickly
Appearance settings
Description
https://drafts.csswg.org/css-overflow/#overflow-propagation says that some overflow properties should be propagated to the viewport from the html or body element:
However this happens regardless of the display value of the document element or the body. For example, the following examples show scrollbars:
data:text/html,<html style="display: none"><body style="overflow: scroll">
data:text/html,<html style="display: none; overflow: scroll">
This is the only case where Gecko needs to resolve a style in a display: none
subtree for rendering (apart of getComputedStyle), and I find it somewhat silly.
Seems enough of an edge-case that could probably be changed. I wonder if there would be interest from other vendors in doing this change?
cc @lilles