Changeset 85179 in webkit


Ignore:
Timestamp:
Apr 28, 2011 6:03:19 AM (13 years ago)
Author:
apavlov@chromium.org
Message:

2011-04-28 Alexander Pavlov <apavlov@chromium.org>

Reviewed by Yury Semikhatsky.

Web Inspector: provide a hotkey for script pause
https://bugs.webkit.org/show_bug.cgi?id=59593

In fact, F8 works as a hotkey, but this fact was not reflected
in the shortcut help popup.

  • English.lproj/localizedStrings.js:
  • inspector/front-end/ScriptsPanel.js: (WebInspector.ScriptsPanel.prototype._registerShortcuts):
Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r85176 r85179  
     12011-04-28  Alexander Pavlov  <apavlov@chromium.org>
     2
     3        Reviewed by Yury Semikhatsky.
     4
     5        Web Inspector: provide a hotkey for script pause
     6        https://bugs.webkit.org/show_bug.cgi?id=59593
     7
     8        In fact, F8 works as a hotkey, but this fact was not reflected
     9        in the shortcut help popup.
     10
     11        * English.lproj/localizedStrings.js:
     12        * inspector/front-end/ScriptsPanel.js:
     13        (WebInspector.ScriptsPanel.prototype._registerShortcuts):
     14
    1152011-04-28  Adam Barth  <abarth@webkit.org>
    216
  • trunk/Source/WebCore/inspector/front-end/ScriptsPanel.js

    r85101 r85179  
    910910        shortcut2 = WebInspector.KeyboardShortcut.makeDescriptor(WebInspector.KeyboardShortcut.Keys.Slash, platformSpecificModifier);
    911911        shortcuts[shortcut2.key] = handler;
    912         section.addAlternateKeys([ shortcut1.name, shortcut2.name ], WebInspector.UIString("Continue"));
     912        section.addAlternateKeys([ shortcut1.name, shortcut2.name ], WebInspector.UIString("Pause/Continue"));
    913913
    914914        // Step over.
Note: See TracChangeset for help on using the changeset viewer.