Runs: Chrome 156.0.8066.0 (wpt@269bca0dd, 2026-09-20) | Firefox 158.0a1 (wpt@bc93a431d, 2026-09-20) | Safari 252 preview (wpt@269bca0dd, 2026-09-20) | Ladybird 1.0-443fa (wpt@269bca0dd, 2026-09-20) | Servo Servo 0.6 (wpt@bc93a431d, 2026-09-20) | Blitz ab0e30b1f (wpt@d552535bc, 2026-09-25)
| Chrome | Firefox | Safari | Ladybird | Servo | Blitz | |
|---|---|---|---|---|---|---|
| Total | 1/1 | 1/1 | 0/1 | 0/1 | 0/1 | NOT RUN |
/css/css-text/white-space/tab-stop-with-float-001.html
<!DOCTYPE html> <title>Tab stops should be anchored to the block's content edge regardless of floats</title> <link rel="help" href="https://drafts.csswg.org/css-text-4/#white-space-processing"> <link rel="match" href="tab-stop-with-float-001-ref.html"> <meta name="variant" content="?class=ltr"> <meta name="variant" content="?class=rtl"> <link rel="stylesheet" type="text/css" href="/fonts/ahem.css"> <script> const params = new URLSearchParams(window.location.search); let classes = ['ltr']; if (params.has('class')) { classes = params.getAll('class').flatMap(value => value.split(',')); } document.documentElement.classList.add(...classes); </script> <style> body { margin: 0; } div { font: 20px/1 Ahem; white-space: pre; tab-size: 4; width: 400px; } .rtl div { direction: rtl; } .float { float: inline-start; width: 40px; height: 20px; } </style> <p>Tab stops should align vertically in both lines.</p> <div><span class="float"></span>a	b</div> <div>a	b</div>
/css/css-text/white-space/tab-stop-with-float-001-ref.html
<!DOCTYPE html> <title>Reference: tab stops with float</title> <link rel="stylesheet" type="text/css" href="/fonts/ahem.css"> <script> const params = new URLSearchParams(window.location.search); let classes = ['ltr']; if (params.has('class')) { classes = params.getAll('class').flatMap(value => value.split(',')); } document.documentElement.classList.add(...classes); </script> <style> body { margin: 0; } div { font: 20px/1 Ahem; white-space: pre; tab-size: 4; width: 400px; } .rtl div { direction: rtl; } .spacer { display: inline-block; width: 40px; } </style> <p>Tab stops should align vertically in both lines.</p> <div><span class="spacer"></span>a	b</div> <div>a	b</div>