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

24 lines
No EOL
836 B
HTML

<!DOCTYPE html>
<html><head><title>CSS Writing Modes Test: text-combine-upright:all inherits</title>
<link href="http://www.w3.org/TR/css-writing-modes-3/#text-combine-upright" rel="help">
<link href="reference/text-combine-upright-inherit-all-001.htm" rel="match">
<meta content="This test checks text-combine-upright:all inherits" name="assert">
<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"><span>66</span></span></div>
</div>
</body></html>