commit-queue@webkit.org | 2da5ec8 | 2012-05-22 17:45:13 +0000 | [diff] [blame] | 1 | <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> |
| 2 | <html> |
| 3 | <head> |
mark.lam@apple.com | 436bf82 | 2013-09-07 23:07:25 +0000 | [diff] [blame] | 4 | <script src="../../resources/js-test-pre.js"></script> |
commit-queue@webkit.org | 2da5ec8 | 2012-05-22 17:45:13 +0000 | [diff] [blame] | 5 | </head> |
| 6 | <body> |
| 7 | <script> |
| 8 | description("This tests keyboard events with KeyLocationCode argument."); |
| 9 | |
| 10 | var lastKeyboardEvent; |
| 11 | var VK_SHIFT = 16; |
| 12 | var VK_CONTROL = 17; |
| 13 | var VK_MENU = 18; |
commit-queue@webkit.org | 2da5ec8 | 2012-05-22 17:45:13 +0000 | [diff] [blame] | 14 | |
| 15 | function recordKeyEvent(ev) { |
| 16 | ev = ev || event; |
| 17 | ev.keyCode = (ev.which || ev.keyCode); |
| 18 | if (window.eventSender) { |
| 19 | lastKeyboardEvent = ev; |
| 20 | } else { |
| 21 | debug('Type=' + ev.type + ',' + |
| 22 | 'keyCode=' + ev.keyCode + ',' + |
| 23 | 'ctrlKey=' + ev.ctrlKey + ',' + |
| 24 | 'shiftKey=' + ev.shiftKey + ',' + |
| 25 | 'altKey=' + ev.altKey + ',' + |
| 26 | 'metaKey=' + ev.metaKey + ',' + |
ch.dumez@sisa.samsung.com | b3d683a | 2013-08-09 18:56:16 +0000 | [diff] [blame] | 27 | 'location=' + ev.location); |
commit-queue@webkit.org | 2da5ec8 | 2012-05-22 17:45:13 +0000 | [diff] [blame] | 28 | } |
| 29 | } |
| 30 | |
| 31 | function testKeyEventWithLocation(evString, expectedKeyCode, expectedLocation) { |
| 32 | eventSender.keyDown(evString, []); |
| 33 | shouldBe("lastKeyboardEvent.type", '"keydown"'); |
| 34 | shouldEvaluateTo("lastKeyboardEvent.keyCode", expectedKeyCode); |
ch.dumez@sisa.samsung.com | b3d683a | 2013-08-09 18:56:16 +0000 | [diff] [blame] | 35 | shouldEvaluateTo("lastKeyboardEvent.location", expectedLocation); |
commit-queue@webkit.org | 2da5ec8 | 2012-05-22 17:45:13 +0000 | [diff] [blame] | 36 | } |
| 37 | |
| 38 | var textarea = document.createElement("textarea"); |
| 39 | textarea.addEventListener("keydown", recordKeyEvent, false); |
| 40 | document.body.insertBefore(textarea, document.body.firstChild); |
| 41 | textarea.focus(); |
| 42 | |
| 43 | if (window.eventSender) { |
| 44 | // location=0 indicates that we send events as standard keys. |
ch.dumez@sisa.samsung.com | 25c754f | 2013-08-12 19:47:09 +0000 | [diff] [blame] | 45 | testKeyEventWithLocation("leftShift", VK_SHIFT, "KeyboardEvent.DOM_KEY_LOCATION_LEFT"); |
| 46 | testKeyEventWithLocation("leftControl", VK_CONTROL, "KeyboardEvent.DOM_KEY_LOCATION_LEFT"); |
| 47 | testKeyEventWithLocation("leftAlt", VK_MENU, "KeyboardEvent.DOM_KEY_LOCATION_LEFT"); |
commit-queue@webkit.org | 2da5ec8 | 2012-05-22 17:45:13 +0000 | [diff] [blame] | 48 | |
ch.dumez@sisa.samsung.com | 25c754f | 2013-08-12 19:47:09 +0000 | [diff] [blame] | 49 | testKeyEventWithLocation("rightShift", VK_SHIFT, "KeyboardEvent.DOM_KEY_LOCATION_RIGHT"); |
| 50 | testKeyEventWithLocation("rightControl", VK_CONTROL, "KeyboardEvent.DOM_KEY_LOCATION_RIGHT"); |
| 51 | testKeyEventWithLocation("rightAlt", VK_MENU, "KeyboardEvent.DOM_KEY_LOCATION_RIGHT"); |
commit-queue@webkit.org | 2da5ec8 | 2012-05-22 17:45:13 +0000 | [diff] [blame] | 52 | } else { |
| 53 | debug("This test requires DumpRenderTree."); |
| 54 | } |
| 55 | </script> |
mark.lam@apple.com | 436bf82 | 2013-09-07 23:07:25 +0000 | [diff] [blame] | 56 | <script src="../../resources/js-test-post.js"></script> |
commit-queue@webkit.org | 2da5ec8 | 2012-05-22 17:45:13 +0000 | [diff] [blame] | 57 | </body> |
| 58 | </html> |