blob: 2d2a3a7ca3dc40f0377bfb370eca7ef889c2616b [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.testRunner)
testRunner.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>