⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 187318 in webkit


Ignore:
Timestamp:
Jul 24, 2015, 12:54:27 AM (11 years ago)
Author:
matthew_hanson@apple.com
Message:

Merge r187209. rdar://problem/21946519

Location:
branches/safari-601.1-branch/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/safari-601.1-branch/Source/WebInspectorUI/ChangeLog

    r187300 r187318  
     12015-07-24  Matthew Hanson  <matthew_hanson@apple.com>
     2
     3        Merge r187209. rdar://problem/21946519
     4
     5    2015-07-22  Joseph Pecoraro  <pecoraro@apple.com>
     6
     7            Web Inspector: Timeline's Current Time does not jump forward to new start time when starting a new recording, causes timeline to appear delayed and broken
     8            https://bugs.webkit.org/show_bug.cgi?id=147204
     9
     10            Reviewed by Timothy Hatcher.
     11
     12            * UserInterface/Views/TimelineRecordingContentView.js:
     13            (WebInspector.TimelineRecordingContentView.prototype._recordingTimesUpdated):
     14            We were skipping a timeline, but it might have a new event record with
     15            a new start time. This ensures we get an updated current time which makes
     16            sense, and we jump forward to that time in the main timeline.
     17
    1182015-07-23  Lucas Forschler  <lforschler@apple.com>
    219
  • branches/safari-601.1-branch/Source/WebInspectorUI/UserInterface/Views/TimelineRecordingContentView.js

    r186536 r187318  
    515515
    516516        for (var timeline of this._recording.timelines.values()) {
    517             // The rendering frame timeline doesn't use a time axis.
    518             if (timeline.type === WebInspector.TimelineRecord.Type.RenderingFrame)
    519                 continue;
    520 
    521517            var lastRecord = timeline.records.lastValue;
    522518            if (!lastRecord)
Note: See TracChangeset for help on using the changeset viewer.