ua-style-sheet-size-1.html (473B)
1 <!DOCTYPE html> 2 <meta charset=utf-8> 3 <title>Test for logical sizes 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 </style> 9 <div class=ltr> 10 <marquee>A</marquee> 11 </div> 12 <div class=rtl dir=rtl> 13 <marquee>A</marquee> 14 </div> 15 <!-- disabled until bug 1132308 16 <div class=v-rl> 17 <marquee>A</marquee> 18 </div> 19 -->