ua-style-sheet-margin-6.html (450B)
1 <!DOCTYPE html> 2 <meta charset=utf-8> 3 <title>Test for logical margins on listing 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 <listing>Listing line 1 10 Listing line 2</listing> 11 </div> 12 <div class=rtl dir=rtl> 13 <listing>Listing line 1 14 Listing line 2</listing> 15 </div> 16 <div class=v-rl> 17 <listing>Listing line 1 18 Listing line 2</listing> 19 </div>