Bug 1858983 [wpt PR 42532] - Update wpt metadata, a=testonly
[gecko.git] / layout / reftests / writing-mode / 1090159-1.html
blobeabded9b117710880498f44f9dcb9c409f88bb12
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <meta charset="utf-8">
5 <style>
6 .h { writing-mode:horizontal-tb; }
7 .v-lr { writing-mode:vertical-lr; text-orientation:sideways-right; }
8 .v-rl { writing-mode:vertical-rl; text-orientation:sideways-right; }
10 div {
11 width: 250px;
12 height: 250px;
13 border: 1px solid red;
14 margin: 10px;
15 display: inline-block;
16 font: 16px monospace;
17 line-height: 32px;
19 </style>
20 </head>
22 <body>
24 <div class="h">
25 你好吗? <span>hello</span>
26 </div>
28 <div class="v-lr">
29 你好吗? <span>hello</span>
30 </div>
32 <div class="v-rl">
33 你好吗? <span>hello</span>
34 </div>
36 </body>
37 </html>