OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
271 | 271 |
272 var type; | 272 var type; |
273 switch (event.type) { | 273 switch (event.type) { |
274 case "keydown": type = "keyDown"; break; | 274 case "keydown": type = "keyDown"; break; |
275 case "keyup": type = "keyUp"; break; | 275 case "keyup": type = "keyUp"; break; |
276 case "keypress": type = "char"; break; | 276 case "keypress": type = "char"; break; |
277 default: return; | 277 default: return; |
278 } | 278 } |
279 | 279 |
280 var text = event.type === "keypress" ? String.fromCharCode(event.charCod
e) : undefined; | 280 var text = event.type === "keypress" ? String.fromCharCode(event.charCod
e) : undefined; |
281 this._target.inputAgent().dispatchKeyEvent(type, this._modifiersForEvent
(event), event.timeStamp / 1000, text, text ? text.toLowerCase() : undefined, | 281 this._target.inputAgent().dispatchKeyEvent({ |
282 event.keyIdentifier, event.code, event.keyCo
de /* windowsVirtualKeyCode */, event.keyCode /* nativeVirtualKeyCode */, false,
false, false); | 282 type: type, |
| 283 modifiers: this._modifiersForEvent(event), |
| 284 timestamp: event.timeStamp / 1000, |
| 285 text: text, |
| 286 unmodifiedText: text ? text.toLowerCase() : undefined, |
| 287 keyIdentifier: event.keyIdentifier, |
| 288 code: event.code, |
| 289 key: event.key, |
| 290 windowsVirtualKeyCode: event.keyCode, |
| 291 nativeVirtualKeyCode: event.keyCode, |
| 292 autoRepeat: false, |
| 293 isKeypad: false, |
| 294 isSystemKey: false}); |
283 event.consume(); | 295 event.consume(); |
284 this._canvasElement.focus(); | 296 this._canvasElement.focus(); |
285 }, | 297 }, |
286 | 298 |
287 /** | 299 /** |
288 * @param {!Event} event | 300 * @param {!Event} event |
289 */ | 301 */ |
290 _handleContextMenuEvent: function(event) | 302 _handleContextMenuEvent: function(event) |
291 { | 303 { |
292 event.consume(true); | 304 event.consume(true); |
(...skipping 573 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
866 return; | 878 return; |
867 this._maxDisplayedProgress = progress; | 879 this._maxDisplayedProgress = progress; |
868 this._displayProgress(progress); | 880 this._displayProgress(progress); |
869 }, | 881 }, |
870 | 882 |
871 _displayProgress: function(progress) | 883 _displayProgress: function(progress) |
872 { | 884 { |
873 this._element.style.width = (100 * progress) + "%"; | 885 this._element.style.width = (100 * progress) + "%"; |
874 } | 886 } |
875 }; | 887 }; |
OLD | NEW |