1140216.html (282B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <style> 5 6 input { -moz-appearance: textfield; } 7 8 </style> 9 <script> 10 11 function boom() 12 { 13 window.getComputedStyle(x, "::-moz-number-spin-down").getPropertyValue("color"); 14 } 15 16 </script> 17 <body onload="boom();"> 18 <input type="number" id="x"> 19 </body> 20 </html>