Status: FAIL | Duration: 10ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-text/text-indent/text-indent-min-max-content-001.html
<!DOCTYPE html> <link rel="help" href="https://drafts.csswg.org/css-text-3/#text-indent-property"> <link rel="match" href="reference/text-indent-min-max-content-001-ref.html"> <link rel="stylesheet" type="text/css" href="/fonts/ahem.css"> <style> div { border: 1px solid; font: 10px Ahem; text-indent: 5em; } .min { width: min-content; } .max { width: max-content; } </style> <div class="min"> 12 456 89012 </div> <div class="max"> 12 456 89012 </div>
/css/css-text/text-indent/reference/text-indent-min-max-content-001-ref.html
<!DOCTYPE html> <link rel="stylesheet" type="text/css" href="/fonts/ahem.css"> <style> div { border: 1px solid; font: 10px Ahem; text-indent: 5em; } .min { width: min-content; } .max { width: max-content; } </style> <div class="min"> 12<br>456<br>89012 </div> <div class="max"> 12 456 89012 </div>