Each card shows two views of the same div with width: min-content:
content_shell with the fix applied. Matches the WPT reference.<span>aaa</span><span> aaa</span>Expected min-content width = 78px (span2's left edge stays on line 1). Pre-fix Blink rendered the div at 64px (span2's left edge incorrectly pushed to line 2).
<span>aaa</span><span><br>aaa</span>
Forces the break inside span2 with an explicit <br>.
Always renders at width 78. The "Expected" testcase above must match this.
box-decoration-break: clone
With clone, span2's full box decoration is duplicated on each
line, so the pre-fix width lost 36px (margin+border+padding both sides).
Expected = 100px, pre-fix = 64px.