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

21 lines
No EOL
709 B
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><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>