summaryrefslogtreecommitdiffstats
path: root/layout/reftests/writing-mode/1083848-1-inline-border.html
blob: 38795f139105f5bc0ad3f7a690d18b9beaf51dfc (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<style>
@font-face {
  font-family: dejavu;
  src: url(../fonts/DejaVuSansMono.woff);
}
.test {
  margin:10px;
  border:1px solid blue;
  font-family: dejavu;
  font-size: 16px;
  letter-spacing: 0.1em;
  word-break:break-all;
  text-orientation:upright;
  width:7em;
  height:7em;
}

.h { writing-mode:horizontal-tb; letter-spacing: 0.4em }
.v-lr { writing-mode:vertical-lr; }
.v-rl { writing-mode:vertical-rl; }

b {
  background-color: yellow;
}

.bh {
  border-left: 3px solid cyan;
  border-right: 3px solid magenta;
}

.bv {
  border-top: 3px solid cyan;
  border-bottom: 3px solid magenta;
}
</style>
</head>

<body>

<div class="test h">ABCDE<b class="bh">FGHIJKLMNOPQRST</b>UVWXYZ</div>

<div class="test v-lr">ABCDE<b class="bv">FGHIJKLMNOPQRST</b>UVWXYZ</div>

<div class="test v-rl">ABCDE<b class="bv">FGHIJKLMNOPQRST</b>UVWXYZ</div>

</body>
</html>