16 lines
485 B
HTML
16 lines
485 B
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>
|