mirror of
https://github.com/servo/servo
synced 2026-04-25 17:15:48 +02:00
8 lines
243 B
HTML
8 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>
|