Title: [201698] trunk/Source/WebInspectorUI
Revision
201698
Author
[email protected]
Date
2016-06-05 08:23:05 -0700 (Sun, 05 Jun 2016)

Log Message

REGRESSION (r201686): Web Inspector: Fix typo causing an internal error
https://bugs.webkit.org/show_bug.cgi?id=158392
<rdar://problem/26640467>

Reviewed by Joseph Pecoraro.

* UserInterface/Views/HeapAllocationsTimelineOverviewGraph.js:
Fixed typo.

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (201697 => 201698)


--- trunk/Source/WebInspectorUI/ChangeLog	2016-06-05 15:20:06 UTC (rev 201697)
+++ trunk/Source/WebInspectorUI/ChangeLog	2016-06-05 15:23:05 UTC (rev 201698)
@@ -1,3 +1,14 @@
+2016-06-05  Matt Baker  <[email protected]>
+
+        REGRESSION (r201686): Web Inspector: Fix typo causing an internal error
+        https://bugs.webkit.org/show_bug.cgi?id=158392
+        <rdar://problem/26640467>
+
+        Reviewed by Joseph Pecoraro.
+
+        * UserInterface/Views/HeapAllocationsTimelineOverviewGraph.js:
+        Fixed typo.
+
 2016-06-04  Brian Burg  <[email protected]>
 
         Web Inspector: add a keyboard shortcut to open the new tab tab

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/HeapAllocationsTimelineOverviewGraph.js (201697 => 201698)


--- trunk/Source/WebInspectorUI/UserInterface/Views/HeapAllocationsTimelineOverviewGraph.js	2016-06-05 15:20:06 UTC (rev 201697)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/HeapAllocationsTimelineOverviewGraph.js	2016-06-05 15:23:05 UTC (rev 201698)
@@ -57,7 +57,7 @@
         this._selectedImageElement = null;
 
         // This may display records past the current time marker.
-        let visibleRecords = this._heapAllocations.recordsInTimeRange(this.startTime, this.endTime);
+        let visibleRecords = this._heapAllocationsTimeline.recordsInTimeRange(this.startTime, this.endTime);
         if (!visibleRecords.length)
             return;
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to