Status: FAIL | Duration: 10ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-overflow/line-clamp/line-clamp-auto-003.tentative.html
<!DOCTYPE html> <meta charset="utf-8"> <title>CSS Overflow: `line-clamp: auto` with bp and box-sizing: border-box</title> <link rel="author" title="Andreu Botella" href="mailto:abotella@igalia.com"> <link rel="help" href="https://drafts.csswg.org/css-overflow-4/#line-clamp"> <link rel="match" href="reference/line-clamp-auto-002-ref.html"> <meta name="assert" content="line-clamp: auto should clamp fine with border and padding, even with box-sizing: border-box"> <style> .clamp { line-clamp: auto; max-height: 138px; /* 32px * 4 + (1px + 4px) * 2 */ box-sizing: border-box; font: 16px / 32px serif; white-space: pre; background-color: yellow; margin: 2px; border: 1px solid black; padding: 4px; } </style> <div class="clamp">Line 1 Line 2 Line 3 Line 4 Line 5 Line 6</div>
/css/css-overflow/line-clamp/reference/line-clamp-auto-002-ref.html
<!DOCTYPE html> <meta charset="utf-8"> <title>CSS Reference</title> <style> .clamp { display: -webkit-box; -webkit-box-orient: vertical; font: 16px / 32px serif; white-space: pre; margin: 2px; border: 1px solid black; padding: 4px; background-color: yellow; } </style> <div class="clamp">Line 1 Line 2 Line 3 Line 4…</div>