summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/manual-tests/log-keypress-events.html
blob: 87e2288406a3f60a29a5bb2bacac2f29fc1d3822 (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
25
26
27
28
29
30
31
32
33
34
<html>
<body>
<p>This page is especially useful to test <a href="http://bugs.webkit.org/show_bug.cgi?id=5678">the shift-Tab issue</a>. Should see a code of 9.</p>
<form name="f">
Type here: <input id="field" type="text" />
</form>
<script language="javascript" type="text/javascript">
<!--
function logEvent(event) {
    myDebugLog("--");
    if (event.charCode)
        myDebugLog("event.charCode: " + event.charCode);
    if (event.which)
        myDebugLog("event.which: " + event.which);
    if (event.keyCode)
        myDebugLog("event.keyCode: " + event.keyCode);
    myDebugLog("shiftKey: " + event.shiftKey);
    return false;
}

function myDebugLog(msg) {
    var m = document.createElement("div");
    m.appendChild(document.createTextNode(msg));
    document.getElementById("debug-log").appendChild(m);
}
document.f.field.onkeypress = logEvent;
// -->
</script>

<div id="debug-log">
Key press values:
</div>
</body>
</html>