Title: [118326] trunk/Source/WebCore
Revision
118326
Author
[email protected]
Date
2012-05-23 23:55:28 -0700 (Wed, 23 May 2012)

Log Message

Unreviewed: Web Inspector single line fix for r118162.

* inspector/front-end/HeapSnapshotDataGrids.js:
(WebInspector.HeapSnapshotConstructorsDataGrid.prototype._populateChildren):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (118325 => 118326)


--- trunk/Source/WebCore/ChangeLog	2012-05-24 06:24:36 UTC (rev 118325)
+++ trunk/Source/WebCore/ChangeLog	2012-05-24 06:55:28 UTC (rev 118326)
@@ -1,3 +1,10 @@
+2012-05-23  Ilya Tikhonovsky  <[email protected]>
+
+        Unreviewed: Web Inspector single line fix for r118162.
+
+        * inspector/front-end/HeapSnapshotDataGrids.js:
+        (WebInspector.HeapSnapshotConstructorsDataGrid.prototype._populateChildren):
+
 2012-05-23  Lu Guanqun  <[email protected]>
 
         sort the array 'non_wrapper_types'

Modified: trunk/Source/WebCore/inspector/front-end/HeapSnapshotDataGrids.js (118325 => 118326)


--- trunk/Source/WebCore/inspector/front-end/HeapSnapshotDataGrids.js	2012-05-24 06:24:36 UTC (rev 118325)
+++ trunk/Source/WebCore/inspector/front-end/HeapSnapshotDataGrids.js	2012-05-24 06:55:28 UTC (rev 118326)
@@ -572,7 +572,7 @@
         this.resetSortingCache();
 
         var key = this._profileIndex === -1 ? "allObjects" : this._minNodeId + ".." + this._maxNodeId;
-        var filter = this._profileIndex === -1 ? null : "function(node) { var id = node.id; return id > " + this._minNodeId + " && id <= " + this._maxNodeId + "; }";
+        var filter = this._profileIndex === -1 ? null : "function(node) { var id = node.id(); return id > " + this._minNodeId + " && id <= " + this._maxNodeId + "; }";
 
         this.snapshot.aggregates(false, key, filter, aggregatesReceived.bind(this, key));
     },
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to