mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
15 lines
310 B
HTML
15 lines
310 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<body>
|
|
<input id="test-input" type="text" value="Yolo"/>
|
|
<script type="application/javascript;version=1.7">
|
|
let input = document.getElementById('test-input');
|
|
input.focus();
|
|
|
|
input.addEventListener('keydown', function(e) {
|
|
e.preventDefault();
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|