Three bugs caused Google's homepage to render incorrectly (elements at 0,0 or pushed off-screen): 1. <nobr> defaulted to display:block instead of inline, inflating float shrink-to-fit widths to the full viewport. 2. normalize_children ran before split_block_in_inline, wrapping inline elements in anonymous blocks before the splitter could find them. 3. Float avoidance applied to non-BFC blocks instead of BFC blocks (condition was inverted per CSS 2.1 §9.5). Also implements CSS 2.1 Appendix E paint order: floats now paint after normal flow block backgrounds via multi-phase rendering in the display list builder. Positioned elements act as mini stacking contexts and don't propagate skip_floats to their children. Net result: +10 WPT tests passing (11 promoted, 1 minor regression). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
15 lines
827 B
Plaintext
15 lines
827 B
Plaintext
DisplayList items=13
|
|
SolidRect rect=(8, 8, 600, 71.2) color=#cccccc
|
|
SolidRect rect=(8, 8, 600, 71.2) color=#00ff00
|
|
PushClip rect=(8, 8, 600, 71.2)
|
|
Text rect=(98, 34, 29.979443, 16) text="Inner" color=#000000 font_size=16
|
|
Text rect=(131.03378, 34, 21.157122, 16) text="BFC" color=#000000 font_size=16
|
|
Text rect=(155.24524, 34, 23.765053, 16) text="with" color=#000000 font_size=16
|
|
Text rect=(182.06462, 34, 12.898678, 16) text="its" color=#000000 font_size=16
|
|
Text rect=(198.01764, 34, 23.600588, 16) text="own" color=#000000 font_size=16
|
|
Text rect=(224.67256, 34, 25.010277, 16) text="float" color=#000000 font_size=16
|
|
Text rect=(252.73717, 34, 41.32746, 16) text="context" color=#000000 font_size=16
|
|
PopClip
|
|
SolidRect rect=(8, 8, 200, 100) color=#ff0000
|
|
SolidRect rect=(18, 18, 80, 40) color=#0000ff
|