no bug - Import translations from android-l10n r=release a=l10n CLOSED TREE
[gecko.git] / layout / reftests / writing-mode / ua-style-sheet-margin-12.html
blob8d8cd065a5d7fcea18a09237583ad508398df5bd
1 <!DOCTYPE html>
2 <meta charset=utf-8>
3 <title>Test for logical margins on ol elements in the UA style sheet</title>
4 <style>
5 .v-rl { writing-mode: vertical-rl; }
6 .ltr, .rtl, .v-rl { border: 1px solid blue; }
7 </style>
8 <div class=ltr>
9 <ol>
10 <li>Item</li>
11 </ol>
12 </div>
13 <div class=rtl dir=rtl>
14 <ol>
15 <li>Item</li>
16 </ol>
17 </div>
18 <div class=v-rl>
19 <ol>
20 <li>Item</li>
21 </ol>
22 </div>