Merge autoland to mozilla-central. a=merge
[gecko.git] / layout / reftests / writing-mode / 1083848-2-inline-background-ref.html
blobb7d18e7fbc379b3ba5b4a7a45a94c41d7a8b343c
1 <!DOCTYPE html>
2 <html lang="ja">
3 <head>
4 <meta charset="utf-8">
5 <style>
6 @font-face {
7 font-family: mplus;
8 src: url(../fonts/mplus/mplus-1p-regular.ttf);
10 @font-face {
11 font-family: dejavu;
12 src: url(../fonts/DejaVuSansMono.woff);
14 .test {
15 margin:10px;
16 border:1px solid blue;
17 font-size: 16px;
18 word-break:break-all;
19 text-orientation:upright;
20 width:7.9em;
21 height:7.9em;
24 .h { writing-mode:horizontal-tb; font-family: mplus; text-transform:full-width; }
25 .v-lr { writing-mode:vertical-lr; font-family: dejavu; }
26 .v-rl { writing-mode:vertical-rl; font-family: dejavu; }
28 .bgtest {
29 background: url(blue-32x32.png) no-repeat;
31 </style>
32 </head>
34 <body>
36 <div class="test h">ABCDE<b class="bgtest">FG</b><b>HIJKLMNOPQRST</b>UVWXYZ</div>
38 <div class="test v-lr">ABCDE<b class="bgtest">FG</b><b>HIJKLMNOPQRST</b>UVWXYZ</div>
40 <div class="test v-rl">ABCDE<b class="bgtest">FG</b><b>HIJKLMNOPQRST</b>UVWXYZ</div>
42 </body>
43 </html>