[Webkit-unassigned] [Bug 161314] Web Inspector: Add resource timing model with timing information

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Aug 30 12:31:34 PDT 2016


https://bugs.webkit.org/show_bug.cgi?id=161314

--- Comment #19 from Joseph Pecoraro <joepeck at webkit.org> ---
Comment on attachment 287334
  --> https://bugs.webkit.org/attachment.cgi?id=287334
Patch

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

> Source/WebInspectorUI/UserInterface/Models/ResourceTimingData.js:85
> +        if (isNaN(data.connectStart) && !isNaN(data.secureConnectionStart))
> +            data.connectStart = data.domainLookupEnd ? data.domainLookupEnd : data.startTime;

Maybe this should just be data.connectStart = data.secureConnectionStart? And we don't get to distinguish between connectStart/secureConnectionStart. I don't like the idea of using one of the previous timestamps.

Would that cause problems?

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.webkit.org/pipermail/webkit-unassigned/attachments/20160830/3d88fa5c/attachment-0001.html>


More information about the webkit-unassigned mailing list