-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
worker start needs to be added to diagram #128
Comments
@yoavweiss are you a good person to add this? I believe it goes after |
Sure |
Is the value of e.g. Same Origin RedirectsWhen navigating to a.com which redirects to another page on a.com (all covered by a Service Worker):
In this case, a.com's Cross-Origin RedirectsWhen navigating to a.com which redirects to b.com (both are covered by a Service Worker):
In this case, a.com's I may be missing some security implications -- if the current steps are correct, we may want to note in the |
And some of this may be related to #100 |
Addressed this (added to the diagram) and the comments above about the processing model in #131 |
I'm looking to calculate Service Worker initial boot times. Is the following no longer reliable if // measuring service worker startup time
let entry = performance.getEntriesByType('navigation')[0];
let swStartupTime = entry.fetchStart - entry.workerStart; I've seen |
Correct, today if there are redirects, Service Worker Startup time (as
|
It's now in the diagram. |
Hello, I'm on the Bing performance team. Just was talking to Todd Reifsteck and we notice that Worker Start is not in the Navigation Timing diagram at the start of the processing model. Would be great if it could be added. Thanks!
The text was updated successfully, but these errors were encountered: