ua-style-sheet-size-2-ref.html (686B)
1 <!DOCTYPE html> 2 <meta charset=utf-8> 3 <title>Test for logical margins on marquee 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; padding: 16px; } 7 marquee { background-color: yellow; color: transparent; } 8 .ltr marquee { width: -moz-available; height: 200px; } 9 .rtl marquee { width: -moz-available; height: 200px; } 10 .v-rl marquee { width: 200px; height: -moz-available; } 11 </style> 12 <div class=ltr> 13 <marquee direction=down>A</marquee> 14 </div> 15 <div class=rtl dir=rtl> 16 <marquee direction=down>A</marquee> 17 </div> 18 <!-- disabled until bug 1132308 19 <div class=v-rl> 20 <marquee direction=down>A</marquee> 21 </div> 22 -->