aboutsummaryrefslogtreecommitdiffstats
path: root/tests/html/test_focus.html
blob: 967030b2a78dd7c9c943ea163e74f12815ed9f2f (plain) (blame)
1
2
3
4
5
6
7
<body>
<input id="focused">
<script>
  document.body.addEventListener('keydown', function() { alert("body"); }, false);
  document.getElementById('focused').addEventListener('keydown', function() { alert("input"); }, false);
</script>
</body>