no bug - Import translations from android-l10n r=release a=l10n CLOSED TREE
[gecko.git] / layout / reftests / writing-mode / 1083848-1-inline-border-ref.html
blob96915d575e1d2c38a38717ce35520dfcac54606f
1 <!DOCTYPE html>
2 <html lang="ja">
3 <head>
4 <meta charset="utf-8">
5 <style>
6 @font-face {
7 font-family: dejavu;
8 src: url(../fonts/DejaVuSansMono.woff);
10 .test {
11 margin:10px;
12 border:1px solid blue;
13 font-family: dejavu;
14 font-size: 16px;
15 word-break:break-all;
16 text-orientation:upright;
17 width:6.5em;
18 height:6.5em;
21 .h { writing-mode:horizontal-tb; width: 4.2em; }
22 .v-lr { writing-mode:vertical-lr; }
23 .v-rl { writing-mode:vertical-rl; }
25 b {
26 background-color: yellow;
29 .bh1 {
30 border-left: 3px solid cyan;
32 .bh2 {
33 border-right: 3px solid magenta;
36 .bv1 {
37 border-top: 3px solid cyan;
39 .bv2 {
40 border-bottom: 3px solid magenta;
42 </style>
43 </head>
45 <body>
47 <div class="test h">ABCDE<b class="bh1">F</b><b>GHIJKLMNOPQRS</b><b class="bh2">T</b>UVWXYZ</div>
49 <div class="test v-lr">ABCDE<b class="bv1">F</b><b>GHIJKLMNOPQRS</b><b class="bv2">T</b>UVWXYZ</div>
51 <div class="test v-rl">ABCDE<b class="bv1">F</b><b>GHIJKLMNOPQRS</b><b class="bv2">T</b>UVWXYZ</div>
53 </body>
54 </html>