Changeset 95807 in webkit


Ignore:
Timestamp:
Sep 23, 2011 8:57:13 AM (13 years ago)
Author:
vsevik@chromium.org
Message:

Web Inspector: Clicking on error doesn't point on the correct line if user searched something
https://bugs.webkit.org/show_bug.cgi?id=68627

Reviewed by Yury Semikhatsky.

  • inspector/front-end/SearchController.js:

(WebInspector.SearchController.prototype.disableSearchUntilExplicitAction):

  • inspector/front-end/inspector.js:

(WebInspector._showAnchorLocationInPanel):

Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r95806 r95807  
     12011-09-23  Vsevolod Vlasov  <vsevik@chromium.org>
     2
     3        Web Inspector: Clicking on error doesn't point on the correct line if user searched something
     4        https://bugs.webkit.org/show_bug.cgi?id=68627
     5
     6        Reviewed by Yury Semikhatsky.
     7
     8        * inspector/front-end/SearchController.js:
     9        (WebInspector.SearchController.prototype.disableSearchUntilExplicitAction):
     10        * inspector/front-end/inspector.js:
     11        (WebInspector._showAnchorLocationInPanel):
     12
    1132011-09-23  Vsevolod Vlasov  <vsevik@chromium.org>
    214
  • trunk/Source/WebCore/inspector/front-end/SearchController.js

    r95287 r95807  
    7979    },
    8080
     81    disableSearchUntilExplicitAction: function(event)
     82    {
     83        this._performSearch("");
     84    },
     85
    8186    handleShortcut: function(event)
    8287    {
  • trunk/Source/WebCore/inspector/front-end/inspector.js

    r95801 r95807  
    12421242    }
    12431243
     1244    WebInspector.searchController.disableSearchUntilExplicitAction();
    12441245    this.setCurrentPanel(panel);
    12451246    if (this.drawer)
Note: See TracChangeset for help on using the changeset viewer.