mirror of
https://github.com/servo/servo.git
synced 2025-06-23 16:44:33 +01:00
37 lines
No EOL
1.2 KiB
HTML
37 lines
No EOL
1.2 KiB
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 </title>
|
|
<link href="mailto:shinsuke.matsuki@access-company.com" rel="author" title="Shinsuke Matsuki" />
|
|
<meta charset="utf-8" />
|
|
<style type="text/css">
|
|
#container {
|
|
font-size:50px;
|
|
}
|
|
.vrl {
|
|
writing-mode:vertical-rl;
|
|
}
|
|
.tcy {
|
|
text-combine-upright:all;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>Test passes if the <b>line breaks</b> before <q>56</q>, and all digits are in<b>upright</b> in <b>horizontal</b> flow.
|
|
</p><div id="container">
|
|
<div class="vrl tcy">
|
|
<table>
|
|
<tbody><tr>
|
|
<td>
|
|
<div style="display: inline-table">
|
|
<div style="display: inline-block">
|
|
<span class="tcy">12</span><span class="tcy">56</span>
|
|
</div>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</tbody></table>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
</body></html> |