Changeset 134028 in webkit
- Timestamp:
- Nov 9, 2012, 1:01:04 AM (13 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r134023 r134028 1 2012-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 1 13 2012-11-08 Eugene Klyuchnikov <eustas.bug@gmail.com> 2 14 -
trunk/Source/WebCore/inspector/front-end/NativeMemorySnapshotView.js
r134011 r134028 147 147 148 148 _populate: function() { 149 this.removeEventListener("populate", this._populate, this); 149 150 function comparator(a, b) { 150 151 return b.size - a.size;
Note:
See TracChangeset
for help on using the changeset viewer.