mirror of
https://github.com/servo/servo
synced 2026-05-12 01:46:28 +02:00
When encountering a block-level inside an inline box, we would wrap it (together with other block-level siblings, if any) inside an anonymous block box. That was complicating the logic for no real benefit, so just get rid of these anonymous wrappers, and allow block-levels as direct children of inlines. This aligns Servo with WebKit, which did the same refactoring: https://commits.webkit.org/304357@main Blink still generates these wrappers, but its design doc acknowledges that "the anonymous box is not strictly required". Testing: No existing test fails. But note that, while minimal, this may have some observable implications. For example, as an accidental side-effect of #41492, Servo aligned with the CSSWG resolution in https://github.com/w3c/csswg-drafts/issues/11462, but now we will revert to the previous behavior. I will address it in a follow-up, and add a test. Fixes: #41636 Signed-off-by: Oriol Brufau <obrufau@igalia.com>