Status: PASS | Duration: 7ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-text/text-autospace/text-autospace-vertical-upright-001.html
<!DOCTYPE html> <meta charset="utf-8"> <link rel="help" href="https://drafts.csswg.org/css-text-4/#text-autospace-property"> <link rel="match" href="text-autospace-vertical-upright-001-ref.html"> <style> #container { writing-mode: vertical-rl; font-size: 20px; text-autospace: normal; } .upright { text-orientation: upright; } </style> <div id="container"> <div class="upright">国X国</div> <div class="upright">国1国</div> <div>国<span class="upright">X</span>国</div> <div>国<span class="upright">1</span>国</div> </div>
/css/css-text/text-autospace/text-autospace-vertical-upright-001-ref.html
<!DOCTYPE html> <meta charset="utf-8"> <style> #container { writing-mode: vertical-rl; font-size: 20px; } .upright { text-orientation: upright; } .no-autospace { text-autospace: no-autospace; } </style> <div id="container"> <div class="upright no-autospace">国X国</div> <div class="upright no-autospace">国1国</div> <div class="no-autospace">国<span class="upright">X</span>国</div> <div class="no-autospace">国<span class="upright">1</span>国</div> </div>