Bug 157897

Summary: Web Inspector: timelines should not update via requestAnimationFrame unless Web Inspector is visible
Product: WebKit Reporter: BJ Burg <bburg>
Component: Web InspectorAssignee: BJ Burg <bburg>
Status: RESOLVED FIXED    
Severity: Normal CC: bburg, buildbot, graouts, joepeck, mattbaker, nvasilyev, rniwa, timothy
Priority: P2 Keywords: DoNotImportToRadar, InRadar
Version: WebKit Nightly Build   
Hardware: All   
OS: All   
Bug Depends on:    
Bug Blocks: 171034    
Attachments:
Description Flags
Proposed Fix
timothy: review+
Archive of layout-test-results from ews101 for mac-yosemite none

Description BJ Burg 2016-05-19 09:04:00 PDT
.
Comment 1 BJ Burg 2016-05-19 09:04:27 PDT
<rdar://problem/26330802>
Comment 2 BJ Burg 2016-05-19 09:21:48 PDT
Created attachment 279393 [details]
Proposed Fix
Comment 3 Build Bot 2016-05-19 10:18:04 PDT
Comment on attachment 279393 [details]
Proposed Fix

Attachment 279393 [details] did not pass mac-ews (mac):
Output: http://webkit-queues.webkit.org/results/1348904

Number of test failures exceeded the failure limit.
Comment 4 Build Bot 2016-05-19 10:18:07 PDT
Created attachment 279399 [details]
Archive of layout-test-results from ews101 for mac-yosemite

The attached test failures were seen while running run-webkit-tests on the mac-ews.
Bot: ews101  Port: mac-yosemite  Platform: Mac OS X 10.10.5
Comment 5 BJ Burg 2016-05-19 10:57:17 PDT
Committed r201171: <http://trac.webkit.org/changeset/201171>
Comment 6 Joseph Pecoraro 2016-10-17 20:47:12 PDT
Comment on attachment 279393 [details]
Proposed Fix

View in context: https://bugs.webkit.org/attachment.cgi?id=279393&action=review

> Source/WebInspectorUI/UserInterface/Views/TimelineRecordingContentView.js:443
> +        if (typeof startTime === "number" && !isNaN(this._currentTime))
>              this._currentTime = startTime;
> -        else if (!isNaN(this._currentTime)) {
> +        else {

I don't understand this logic change. It ends up breaking the backend informing the frontend what the current time is in the common case (a user inspecting a local page). I put up a patch to revert this in bug 163583. If you think this is still needed for some reason, please comment there. I believe this patch was meant for Safari WebDriver --inspect behavior, but I don't understand why we wouldn't set the current time here if we are visible and have a start time.