summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-writing-modes/text-combine-upright-value-digits4-002.html
blob: e4cf8433ebf69620c0796103c29b8c9b4b74a5f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Writing Modes: text-combine-upright: digits 4 + four digits</title>
<link rel="author" title="Masataka Yakura" href="https://google.com/+MasatakaYakura">
<link rel="help" href="http://www.w3.org/TR/css-writing-modes-4/#text-combine-upright">
<link rel="match" href="reference/vertical-ahem-1x1-ref.html">
<link rel="mismatch" href="reference/horizontal-ahem-1x1-notref.html">
<meta name="assert" content="'text-combine-upright: digits 4' combines four ASCII digits horizontally.">
<meta name="flags" content="ahem">
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style>
.test {
  writing-mode: vertical-rl;
  font-size: 5em;
  line-height: 1;
  font-family: Ahem;
}

.tcy {
  text-combine-upright: digits 4;
}
</style>
</head>
<body>

<p>Test passes if there are 2 <strong>identical</strong> black squares.</p>

<div class="test">
  <p><span class="tcy">1234</span></p>
  <p>x</p>
</div>

</body>
</html>