ua-style-sheet-margin-12.html (391B)
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>