Ben Kelly

Results 228 comments of Ben Kelly

@yutakahirano Can you share what the implementation difficulties were with implementing isReloadNavigation on the crbug? I might be able to devote some time in the coming quarters to implementing this.

I'm not sure I follow. A single "top-level frame" bit seems to be adequate to satisfy [this](https://datatracker.ietf.org/doc/html/draft-ietf-httpbis-rfc6265bis-05#:~:text=In%20the%0A%20%20%20interests,sense%29%20HTTP%0A%20%20%20method.): "In the interests of providing a drop-in mechanism that mitigates the risk of...

Well, "site for cookies" itself is not conveyed to the server. It simply takes part in determining if `SameSite=Strict` cookies, etc, are sent to the server. I do think, though,...

Well, I was trying to align chromium to the cache API spec where we are not supposed to look at the internal response for the vary header. Switching to ignore...

This changed in gecko 15 years ago: https://bugzilla.mozilla.org/show_bug.cgi?id=173147 We went from a max of 10 to 20 because "it seems that nytimes.com has been known to string together more than...

The limit of 10 was introduced here based on lynx's behavior: https://bugzilla.mozilla.org/show_bug.cgi?id=83471 Prior to that it appears we just looped forever.

Yea, we do internal redirects for all kinds of things and they appear to be included in our limit checking: http://searchfox.org/mozilla-central/source/netwerk/protocol/http/HttpBaseChannel.cpp#3381

I don't see any telemetry probes for the keyword "redirect" on https://telemetry.mozilla.org.

We use internal redirects to do things like "reset the network request" after a service worker decides not to intercept, etc. Probably a fair number of internal redirects in firefox.

> Naive question for implementers, is it possible for internal redirects to not increase the redirect-count, at least as compared to the limit? Yea, we could probably do that. We...