Status: FAIL | Duration: 9ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-ruby/ruby-tab-in-base-002.html
<!DOCTYPE html> <meta charset="UTF-8"> <title>CSS Ruby Test: multiple tabulations across ruby nesting levels</title> <link rel="author" title="Minseong Kim" href="mailto:jja08111@gmail.com"> <link rel="help" href="https://www.w3.org/TR/css-text-3/#white-space-phase-2"> <link rel="help" href="https://drafts.csswg.org/css-ruby-1/#line-breaks"> <link rel="match" href="ruby-tab-in-base-002-ref.html"> <link rel="stylesheet" href="/fonts/ahem.css"> <style> div.test { font: 25px/1 Ahem; white-space: pre; tab-size: 100px; width: max-content; } </style> <body> <div class="test">Z<ruby>M<ruby>	N<rt>p</rt></ruby>	O<rt>q</rt></ruby></div> </body>
/css/css-ruby/ruby-tab-in-base-002-ref.html
<!DOCTYPE html> <meta charset="UTF-8"> <title>CSS Ruby Reference: multiple tabulations across ruby nesting levels</title> <link rel="stylesheet" href="/fonts/ahem.css"> <style> div.test { font: 25px/1 Ahem; width: max-content; } span.tab1 { /* First tab starts at 50px -> 100px stop -> 50px. */ padding-left: 50px; } span.tab2 { /* Second tab starts at 125px -> 200px stop -> 75px. */ padding-left: 75px; } </style> <body> <div class="test">Z<ruby>M<ruby><span class="tab1"></span>N<rt>p</rt></ruby><span class="tab2"></span>O<rt>q</rt></ruby></div> </body>