mirror of
https://github.com/servo/servo.git
synced 2025-06-23 08:34:42 +01:00
- Update CSS tests to revision e05bfd5e30ed662c2f8a353577003f8eed230180. - Update web-platform-tests to revision a052787dd5c069a340031011196b73affbd68cd9.
60 lines
No EOL
1.6 KiB
HTML
60 lines
No EOL
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html><head><meta charset="utf-8">
|
|
<title>CSS Writing Modes Test: Test orientation of characters where vo=Tr (47 code points in U+2329-FFE3).</title>
|
|
<link href="http://www.w3.org/TR/css-writing-modes-3/#text-orientation" rel="help">
|
|
<meta content="Test orientation of characters where vo=Tr (47 code points in U+2329-FFE3)" name="assert">
|
|
<meta content="dom font" name="flags">
|
|
<link href="mailto:kojiishi@gmail.com" rel="author" title="Koji Ishii">
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<style>
|
|
@font-face {
|
|
font-family: "orientation";
|
|
src: url("support/adobe-fonts/CSSHWOrientationTest.otf");
|
|
}
|
|
.test {
|
|
font: 16px/1 "orientation";
|
|
height: 17em;
|
|
writing-mode: vertical-rl;
|
|
}
|
|
.line {
|
|
white-space: pre;
|
|
}
|
|
.U {
|
|
text-orientation: upright;
|
|
}
|
|
.R {
|
|
text-orientation: sideways;
|
|
}
|
|
#details {
|
|
margin: 1em .5em;
|
|
}
|
|
summary {
|
|
font-size: 1.2em;
|
|
font-weight: bold;
|
|
margin-top: .5em;
|
|
}
|
|
</style>
|
|
</head><body><div id="log"></div>
|
|
<div id="details"></div>
|
|
<div id="container">
|
|
<div data-vo="Tr" class="test">
|
|
<div data-block="Miscellaneous">
|
|
<div class="line">〈〉</div>
|
|
</div>
|
|
<div data-block="CJK">
|
|
<div class="line">〈〉《》「」『』【】〔〕〖〗〘〙〚〛〜〝〞〟〰</div>
|
|
</div>
|
|
<div data-block="Katakana">
|
|
<div class="line">゠ー</div>
|
|
</div>
|
|
<div data-block="Small">
|
|
<div class="line">﹙﹚﹛﹜﹝﹞</div>
|
|
</div>
|
|
<div data-block="Halfwidth">
|
|
<div class="line">():;[]_{|}~⦅⦆ ̄</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script src="support/text-orientation.js"></script>
|
|
</body></html> |