mirror of
https://github.com/servo/servo.git
synced 2025-06-23 16:44:33 +01:00
21 lines
No EOL
709 B
HTML
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> |