line-clamp-auto-001-crash.html (418B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>CSS Overflow: `line-clamp: auto` unresolved BFC offset crash</title> 4 <link rel="author" title="Andreu Botella" href="mailto:abotella@igalia.com"> 5 <link rel="help" href="https://drafts.csswg.org/css-overflow-4/#line-clamp"> 6 7 <style> 8 .clamp { 9 line-clamp: auto; 10 max-height: 1.5lh; 11 } 12 </style> 13 14 <div class="clamp"> 15 Line 1 16 <div> 17 <div></div> 18 </div> 19 Line 2 20 </div>