tenfourfox/layout/forms/crashtests/1140216.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

21 lines
282 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
input { -moz-appearance: textfield; }
</style>
<script>
function boom()
{
window.getComputedStyle(x, "::-moz-number-spin-down").getPropertyValue("color");
}
</script>
<body onload="boom();">
<input type="number" id="x">
</body>
</html>