mirror of
https://github.com/servo/servo.git
synced 2025-06-26 01:54:33 +01:00
26 lines
No EOL
708 B
HTML
26 lines
No EOL
708 B
HTML
<!DOCTYPE html>
|
|
<html><head>
|
|
<title>CSS Writing Modes Test: text-combine-upright with text-emphasis</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-with-emphasis {
|
|
font-family: 'tcu-font';
|
|
writing-mode: vertical-rl;
|
|
text-combine-upright: all;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>Test passes if this figure and the emphasis are idencial</p>
|
|
<div class="tcu-with-emphasis">
|
|
7
|
|
</div>
|
|
|
|
|
|
</body></html> |