@@ -182,16 +182,15 @@ export abstract class Box extends RenderItem {
182182 hasNewlines : 1 << 11 ,
183183 hasSoftWrap : 1 << 12 ,
184184 hasCollapsibleWs : 1 << 13 ,
185- // 14..16 : propagation bits: Inline <- Inline
185+ // 14..15 : propagation bits: Inline <- Inline
186186 hasPaintedInlines : 1 << 14 ,
187- hasColoredInline : 1 << 15 ,
188- hasSizedInline : 1 << 16 ,
189- // 17: propagation bits: Inline <- Break, Inline, ReplacedBox
190- hasBreakInlineOrReplaced : 1 << 17 ,
191- // 18..19: propagation bits: Inline <- FormattingBox
192- hasFloatOrReplaced : 1 << 18 ,
193- hasInlineBlocks : 1 << 19 ,
194- // 20..32: if you take them, remove them from PROPAGATES_TO_INLINE_BITS
187+ hasSizedInline : 1 << 15 ,
188+ // 16: propagation bits: Inline <- Break, Inline, ReplacedBox
189+ hasBreakInlineOrReplaced : 1 << 16 ,
190+ // 17..18: propagation bits: Inline <- FormattingBox
191+ hasFloatOrReplaced : 1 << 17 ,
192+ hasInlineBlocks : 1 << 18 ,
193+ // 19..31: if you take them, remove them from PROPAGATES_TO_INLINE_BITS
195194 } ;
196195
197196 /**
0 commit comments