mirror of
https://github.com/servo/servo.git
synced 2025-06-24 00:54:32 +01:00
24 lines
No EOL
975 B
HTML
24 lines
No EOL
975 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="http://www.w3.org/TR/css-writing-modes-3/#text-combine-upright" rel="help" />
|
|
<link href="reference/text-combine-upright-inherit-all-001.xht" 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> |