blob: fbda9640747a98561540719619244bd4ade2aac6 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<style>
input::-webkit-inner-spin-button { display: none; }
</style>
</head>
<body>
<input type="number" id="in">
<script>
if (window.layoutTestController)
layoutTestController.dumpAsText();
var input = document.getElementById('in');
var evt = document.createEvent("MouseEvent");
evt.initMouseEvent("click", true, true, window, 10, 10, 10, 10);
input.dispatchEvent(evt);
input.style.display='none';
</script>
PASS
</body>
</html>