Changeset 52397 in webkit
- Timestamp:
- Dec 19, 2009, 6:32:29 PM (15 years ago)
- Location:
- trunk/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebCore/ChangeLog
r52395 r52397 1 2009-12-19 Dan Bernstein <mitz@apple.com> 2 3 Reviewed by Darin Adler. 4 5 REGRESSION: Up/down arrow keys do not step numeric CSS property values 6 https://bugs.webkit.org/show_bug.cgi?id=32776 7 8 * inspector/front-end/inspector.js: 9 (WebInspector.documentKeyDown): Call the focused element’s 10 handleKeyEvent method. 11 1 12 2009-12-19 Dirk Schulze <krit@webkit.org> 2 13 -
trunk/WebCore/inspector/front-end/inspector.js
r52253 r52397 631 631 WebInspector.documentKeyDown = function(event) 632 632 { 633 if (this.currentFocusElement && this.currentFocusElement.handleKeyEvent) { 634 this.currentFocusElement.handleKeyEvent(event); 635 if (event.handled) { 636 event.preventDefault(); 637 return; 638 } 639 } 640 633 641 if (this.currentPanel && this.currentPanel.handleShortcut) { 634 642 this.currentPanel.handleShortcut(event);
Note:
See TracChangeset
for help on using the changeset viewer.