summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/manual-tests/focus-change-between-key-events.html
blob: 8ceb57512329f65b0479f89de0a09bf2b815169b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<body onload="document.getElementById('dummy').focus();">
<iframe src="data:text/html,<body onload='document.getElementsByTagName(&quot;input&quot;)[0].focus()'><input></body>" id=victim name=victim>
</iframe>
<script>

var cur_pos = 0;

function maybe_redirect(e) {
  var evt = window.event ? event : e;
  var cc = evt.charCode ? evt.charCode : evt.keyCode;

  document.getElementById('victim').focus();
  frames['victim'].focus();

  document.getElementById('dummy').value += String.fromCharCode(cc).toLowerCase();

  setTimeout('focus();document.getElementById("dummy").focus()',1);
}


</script>
<p>Type some text. It should only appear in the below input field.</p>
<input type=text onkeydown="maybe_redirect(event)" id=dummy>
</body>