Changeset 134028 in webkit


Ignore:
Timestamp:
Nov 9, 2012, 1:01:04 AM (13 years ago)
Author:
commit-queue@webkit.org
Message:

Web Inspector: Navigating around NMI snapshot grid with keys breaks the grid
https://bugs.webkit.org/show_bug.cgi?id=101611

Patch by Alexei Filippov <alph@chromium.org> on 2012-11-09
Reviewed by Yury Semikhatsky.

Keys navigation cause populate message sent to the node. The node should
not react on populate messages but the first one.

  • inspector/front-end/NativeMemorySnapshotView.js:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r134023 r134028  
     12012-11-09  Alexei Filippov  <alph@chromium.org>
     2
     3        Web Inspector: Navigating around NMI snapshot grid with keys breaks the grid
     4        https://bugs.webkit.org/show_bug.cgi?id=101611
     5
     6        Reviewed by Yury Semikhatsky.
     7
     8        Keys navigation cause populate message sent to the node. The node should
     9        not react on populate messages but the first one.
     10
     11        * inspector/front-end/NativeMemorySnapshotView.js:
     12
    1132012-11-08  Eugene Klyuchnikov  <eustas.bug@gmail.com>
    214
  • trunk/Source/WebCore/inspector/front-end/NativeMemorySnapshotView.js

    r134011 r134028  
    147147
    148148    _populate: function() {
     149        this.removeEventListener("populate", this._populate, this);
    149150        function comparator(a, b) {
    150151            return b.size - a.size;
Note: See TracChangeset for help on using the changeset viewer.