servo/tests/wpt/css-tests/css-writing-modes-3_dev/html/reference/text-combine-upright-inherit-all-001.htm

21 lines
No EOL
576 B
HTML

<!DOCTYPE html>
<html><head><title>CSS Writing Modes Test: text-combine-upright:all inherits</title>
<link href="mailto:kojiishi@gmail.com" rel="author" title="Koji Ishii">
<style>
#container {
font-size:50px;
}
.vrl {
writing-mode:vertical-rl;
}
.tcy {
text-combine-upright:all;
}
</style>
</head><body><p>Test passes if all two-digit numbers are <b>upright</b> in <b>horizontal</b> flow.
</p><div id="container">
<div>66</div>
<div class="vrl"><span class="tcy">66</span></div>
<div class="vrl"><span class="tcy">66</span></div>
</div>
</body></html>