Bug 1858983 [wpt PR 42532] - Update wpt metadata, a=testonly
[gecko.git] / layout / reftests / writing-mode / 1096224-1b.html
blobfe617b2fcf809bfc25f8492ff4e928b32bd3e8fc
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <meta charset="utf-8">
5 <style>
6 .outer {
7 padding: 2px;
8 border: 1px solid black;
9 background: #ddd;
10 width: 200px;
12 .inner {
13 width: 50px;
14 height: 50px;
15 background: yellow;
17 .foo {
18 writing-mode: vertical-rl;
19 margin-left: 100px;
20 margin-right: 50px;
21 margin-top: 20px;
22 margin-bottom: 5px;
24 .bar {
25 writing-mode: vertical-rl;
26 margin-left: 50px;
27 margin-right: 100px;
28 margin-top: 5px;
29 margin-bottom: 20px;
31 </style>
32 </head>
34 <body>
36 <div class="outer">
37 <div class="inner foo">
38 </div>
39 <hr>
40 <div class="inner bar">
41 </div>
42 </div>
44 </body>
45 </html>