WebCore/manual-tests/focus-change-between-key-events.html
changeset 0 4f2f89ce4247
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/WebCore/manual-tests/focus-change-between-key-events.html	Fri Sep 17 09:02:29 2010 +0300
@@ -0,0 +1,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>