Bug 1858983 [wpt PR 42532] - Update wpt metadata, a=testonly
[gecko.git] / layout / reftests / writing-mode / 1127488-align-left-horizontal-tb-rtl.html
blob4a358149ee1c57059cabb6743d559e0e0d48e356
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <meta charset="UTF-8">
5 <title>CSS Writing Modes</title>
6 <link rel="author" title="GĂ©rard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/">
7 <link rel="help" href="http://www.w3.org/TR/css-writing-modes-3/#vertical-layout" title="7.1 Principles of Layout in Vertical Writing Modes">
8 <style type="text/css">
9 body {
10 margin: 0;
12 div.outer {
13 background: red url("left-top-300x300.png");
14 height: 300px;
15 width: 300px;
16 text-align: left;
17 writing-mode: horizontal-tb;
18 direction: rtl;
20 div.inner {
21 display: inline-block;
22 background-color: green;
23 height: 100px;
24 width: 100px;
26 </style>
27 </head>
28 <body>
29 <div class="outer"><div class="inner"></div></div>
30 </body>
31 </html>