Status: PASS | Duration: 8ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-writing-modes/mongolian-span-001.html
<!DOCTYPE html> <meta charset="utf-8"> <title>CSS Test: Test Mongolian in a span renders the same as without the span</title> <link rel="match" href="reference/mongolian-span-001-ref.html"> <link rel="help" href="https://drafts.csswg.org/css-writing-modes-3/#block-flow"> <link rel="author" href="mailto:kojii@chromium.org"> <style> html { writing-mode: vertical-lr; font-size: 50px; } </style> <body> <div>ᠶᠠᠫᠣᠨ</div> <div><span>ᠶᠠᠫᠣᠨ</span></div> </body>
/css/css-writing-modes/reference/mongolian-span-001-ref.html
<!DOCTYPE html> <meta charset="utf-8"> <style> html { writing-mode: vertical-lr; font-size: 50px; } </style> <body> <div>ᠶᠠᠫᠣᠨ</div> <div>ᠶᠠᠫᠣᠨ</div> </body>