Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(56)

Side by Side Diff: Source/devtools/front_end/screencast/ScreencastView.js

Issue 933323002: Add experimental Support for DOM3 KeyboardEvent key value (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Added key=value pair for screencastview.js Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 261 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 272
273 var type; 273 var type;
274 switch (event.type) { 274 switch (event.type) {
275 case "keydown": type = "keyDown"; break; 275 case "keydown": type = "keyDown"; break;
276 case "keyup": type = "keyUp"; break; 276 case "keyup": type = "keyUp"; break;
277 case "keypress": type = "char"; break; 277 case "keypress": type = "char"; break;
278 default: return; 278 default: return;
279 } 279 }
280 280
281 var text = event.type === "keypress" ? String.fromCharCode(event.charCod e) : undefined; 281 var text = event.type === "keypress" ? String.fromCharCode(event.charCod e) : undefined;
282 this._target.inputAgent().dispatchKeyEvent(type, this._modifiersForEvent (event), event.timeStamp / 1000, text, text ? text.toLowerCase() : undefined, 282 this._target.inputAgent().invoke_dispatchKeyEvent({
283 event.keyIdentifier, event.code, event.keyCo de /* windowsVirtualKeyCode */, event.keyCode /* nativeVirtualKeyCode */, false, false, false); 283 type: type,
284 modifiers: this._modifiersForEvent(event),
285 timestamp: event.timeStamp / 1000,
286 text: text,
287 unmodifiedText: text ? text.toLowerCase() : undefined,
288 keyIdentifier: event.keyIdentifier,
289 code: event.code,
290 key: event.key,
291 windowsVirtualKeyCode: event.keyCode /* windowsVirtualKeyCode */,
292 nativeVirtualKeyCode: event.keyCode /* nativeVirtualKeyCode */,
293 autoRepeat: false,
294 isKeypad: false,
295 isSystemKey: false});
284 event.consume(); 296 event.consume();
285 this._canvasElement.focus(); 297 this._canvasElement.focus();
286 }, 298 },
287 299
288 /** 300 /**
289 * @param {!Event} event 301 * @param {!Event} event
290 */ 302 */
291 _handleContextMenuEvent: function(event) 303 _handleContextMenuEvent: function(event)
292 { 304 {
293 event.consume(true); 305 event.consume(true);
(...skipping 572 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698