Changeset 201698 in webkit


Ignore:
Timestamp:
Jun 5, 2016 8:23:05 AM (8 years ago)
Author:
Matt Baker
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.

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r201692 r201698  
     12016-06-05  Matt Baker  <mattbaker@apple.com>
     2
     3        REGRESSION (r201686): Web Inspector: Fix typo causing an internal error
     4        https://bugs.webkit.org/show_bug.cgi?id=158392
     5        <rdar://problem/26640467>
     6
     7        Reviewed by Joseph Pecoraro.
     8
     9        * UserInterface/Views/HeapAllocationsTimelineOverviewGraph.js:
     10        Fixed typo.
     11
    1122016-06-04  Brian Burg  <bburg@apple.com>
    213
  • trunk/Source/WebInspectorUI/UserInterface/Views/HeapAllocationsTimelineOverviewGraph.js

    r201686 r201698  
    5858
    5959        // This may display records past the current time marker.
    60         let visibleRecords = this._heapAllocations.recordsInTimeRange(this.startTime, this.endTime);
     60        let visibleRecords = this._heapAllocationsTimeline.recordsInTimeRange(this.startTime, this.endTime);
    6161        if (!visibleRecords.length)
    6262            return;
Note: See TracChangeset for help on using the changeset viewer.