Changeset 106560 in webkit


Ignore:
Timestamp:
Feb 2, 2012 8:40:15 AM (12 years ago)
Author:
apavlov@chromium.org
Message:

Web Inspector: [REGRESSION] Slow continuous DOM traversal with Up/Down keys
https://bugs.webkit.org/show_bug.cgi?id=77643

Reviewed by Pavel Feldman.

Source/WebCore:

Test: inspector/styles/updates-during-dom-traversal.html

  • inspector/front-end/StylesSidebarPane.js:

(WebInspector.StylesSidebarPane.prototype._executeRebuildUpdate):

LayoutTests:

  • inspector/styles/updates-during-dom-traversal-expected.txt: Added.
  • inspector/styles/updates-during-dom-traversal.html: Added.
Location:
trunk
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r106558 r106560  
     12012-02-02  Alexander Pavlov  <apavlov@chromium.org>
     2
     3        Web Inspector: [REGRESSION] Slow continuous DOM traversal with Up/Down keys
     4        https://bugs.webkit.org/show_bug.cgi?id=77643
     5
     6        Reviewed by Pavel Feldman.
     7
     8        * inspector/styles/updates-during-dom-traversal-expected.txt: Added.
     9        * inspector/styles/updates-during-dom-traversal.html: Added.
     10
    1112012-02-02  Tony Gentilcore  <tonyg@chromium.org>
    212
  • trunk/Source/WebCore/ChangeLog

    r106559 r106560  
     12012-02-02  Alexander Pavlov  <apavlov@chromium.org>
     2
     3        Web Inspector: [REGRESSION] Slow continuous DOM traversal with Up/Down keys
     4        https://bugs.webkit.org/show_bug.cgi?id=77643
     5
     6        Reviewed by Pavel Feldman.
     7
     8        Test: inspector/styles/updates-during-dom-traversal.html
     9
     10        * inspector/front-end/StylesSidebarPane.js:
     11        (WebInspector.StylesSidebarPane.prototype._executeRebuildUpdate):
     12
    1132012-02-02  Claudio Saavedra  <csaavedra@igalia.com> and Martin Robinson  <mrobinson@igalia.com>
    214
  • trunk/Source/WebCore/inspector/front-end/StylesSidebarPane.js

    r106550 r106560  
    232232        function stylesCallback(matchedResult)
    233233        {
    234             if (matchedResult) {
     234            if (matchedResult && this.node === node) {
    235235                resultStyles.matchedCSSRules = matchedResult.matchedCSSRules;
    236236                resultStyles.pseudoElements = matchedResult.pseudoElements;
Note: See TracChangeset for help on using the changeset viewer.