blob: 197a43c36cced250953d8a90428ce775f5f47c14 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!DOCTYPE html>
<html>
<head>
<style>
.testDiv {
font-size: 72px;
-webkit-writing-mode: vertical-rl;
}
</style>
</head>
<body>
<!-- This expectation depends on the ellipsis is U+2026. -->
<div class="testDiv"><span style="font-family: Ahem">B</span>…</div>
</body>
</html>
|