Ben Kelly
Ben Kelly
I've tried to start a PR in https://github.com/whatwg/html/pull/8447, but I don't know where to set the policy container origin for new documents. I could just reference document.origin, but is that...
I realized we might have a problem with document.domain changes leaking into the storage key incorrectly. See: https://github.com/whatwg/storage/issues/150
This fails to match because the baseURL sets a non-variable search param pattern of empty string. With a baseURL you need to explicitly opt-in to a wildcard search pattern. Like:...
FYI, we are making a small enhancement to URLPattern to add the option to perform case-insensitive matching. This was a web developer community request. Please see: https://groups.google.com/a/chromium.org/g/blink-dev/c/hNUoDg94-_8/m/-Cnv2qyMAAAJ https://github.com/WICG/urlpattern/issues/148 Note, since...
If you mean moving urlpattern into whatwg, that is still something I would like to do but is a lower priority at the moment. If another browser indicates they want...
Would this mean creating a new filtered response type like `opaqueredirect`? So like a new `opaqueauth` or something?
Currently `opaque` means its a cross-origin response loaded without CORS. So we have a hard block on supporting those for navigations. See step 3.2.3 here (mode will be `navigate` for...
@yutakahirano is there still a blocking implementation issue for this?
I guess I'm concerned with removing it. We originally added `isReloadNavigation` to the spec because `isReload` was poorly defined and there was confusion around it. If we want to stick...
I believe there are real site use cases that needed a "is this a reload of the page" signal. That is why we haven't been able to remove `isReload()` yet...