ua-style-sheet-input-color-1.html (505B)
1 <!DOCTYPE html> 2 <meta charset=utf-8> 3 <title>Test for logical properties of input type=color in the UA stylesheet</title> 4 <style> 5 .v-rl { writing-mode: vertical-rl; } 6 .ltr, .rtl, .v-rl { border: 1px solid blue; } 7 .a { -moz-appearance: none; } 8 </style> 9 <div class=ltr> 10 <input type=color><br> 11 <input type=color class=a><br> 12 </div> 13 14 <div class=rtl dir=rtl> 15 <input type=color><br> 16 <input type=color class=a><br> 17 </div> 18 19 <div class=v-rl> 20 <input type=color><br> 21 <input type=color class=a><br> 22 </div>