Changeset 187318 in webkit
- Timestamp:
- Jul 24, 2015, 12:54:27 AM (11 years ago)
- Location:
- branches/safari-601.1-branch/Source/WebInspectorUI
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
UserInterface/Views/TimelineRecordingContentView.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/safari-601.1-branch/Source/WebInspectorUI/ChangeLog
r187300 r187318 1 2015-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 1 18 2015-07-23 Lucas Forschler <lforschler@apple.com> 2 19 -
branches/safari-601.1-branch/Source/WebInspectorUI/UserInterface/Views/TimelineRecordingContentView.js
r186536 r187318 515 515 516 516 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 521 517 var lastRecord = timeline.records.lastValue; 522 518 if (!lastRecord)
Note:
See TracChangeset
for help on using the changeset viewer.