mirror of
https://github.com/servo/servo.git
synced 2025-06-13 02:44:29 +00:00
7 lines
243 B
HTML
7 lines
243 B
HTML
<body>
|
|
<input id="focused">
|
|
<script>
|
|
document.body.addEventListener('keydown', function() { alert("body"); }, false);
|
|
document.getElementById('focused').addEventListener('keydown', function() { alert("input"); }, false);
|
|
</script>
|
|
</body>
|