mirror of
https://github.com/servo/servo.git
synced 2025-06-26 01:54:33 +01:00
34 lines
No EOL
987 B
HTML
34 lines
No EOL
987 B
HTML
<!DOCTYPE html>
|
|
<html><head>
|
|
<title>CSS Writing Modes Test: text-combine-upright :digit2</title>
|
|
<link href="mailto:shinsuke.matsuki@access-company.com" rel="author" title="Shinsuke Matsuki">
|
|
<meta charset="utf-8">
|
|
<style type="text/css">
|
|
@font-face {
|
|
font-family: 'tcu-font';
|
|
src: url('../support/tcu-font.woff');
|
|
}
|
|
.tcu-all {
|
|
font-family: 'tcu-font';
|
|
writing-mode: vertical-rl;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>Test passes if the two white triangles are pointing to the right.</p>
|
|
<div class="tcu-all">
|
|
<table>
|
|
<tbody><tr>
|
|
<td>
|
|
<div style="display: inline-table">
|
|
<div style="display: inline-block">
|
|
<p>3<span>3</span></p>
|
|
</div>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</tbody></table>
|
|
</div>
|
|
|
|
|
|
</body></html> |