Status: PASS | Duration: 8ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-text/tab-size/tab-size-length-001.html
<!DOCTYPE html> <html> <head> <title>CSS Text Test: tab-size: 1em</title> <link rel="author" title="David Storey" href="mailto:david@openweb.io"> <link rel="reviewer" title="Rebecca Hauck" href="mailto:rhauck@adobe.com"> <link rel="help" href="http://www.w3.org/TR/css-text-3/#tab-size"> <link rel="match" href="tab-size-length-001-ref.html"> <meta name="assert" content="Tab should be rendered as 1em (20px)"> <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" /> <style type="text/css"> .container { position: absolute; } .test { font-family: Ahem; font-size: 20px; position: absolute; top: 0; left: 0; } .green { background: green; } .red { background: red; tab-size: 1em; } </style> </head> <body> <p>The test passes if there is no red.</p> <div class="container"> <pre class="red test">	</pre> <pre class="green test"> </pre> </div> </body> </html>
/css/css-text/tab-size/tab-size-length-001-ref.html
<!DOCTYPE html> <html> <head> <title>CSS Text Test: tab-size: length</title> <link rel="author" title="David Storey" href="mailto:david@openweb.io"> <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" /> <style type="text/css"> .container { position: absolute; } .test { font-family: Ahem; font-size: 20px; position: absolute; top: 0; left: 0; background: green; } </style> </head> <body> <p>The test passes if there is no red.</p> <div class="container"> <pre class="green test"> </pre> </div> </body> </html>