Ben Kelly
Ben Kelly
At TPAC there was a discussion about moving various authority information from the environment into a policy container owned by the environment. This would ensure the information is copied around...
This change depends on the changes in https://github.com/whatwg/html/pull/8447 which adds origin to policy container. - [ ] At least two implementers are interested (and none opposed): * … * …...
Thank you for letting us know that something needs to be fixed. This page is for recording bugs on Chrome Status (https://www.chromestatus.com). If you need to report a problem with...
Currently the pcap-parser always starts on the next tick due to this code: ``` javascript process.nextTick(this.stream.resume.bind(this.stream)); ``` Even if you attempt to call `parser.stream.pause()` after creating the parser it will...
Should FPS play a role in partitioning quota-managed storage and service workers? It seems like it would be ideal to follow the cookie partitioning model to avoid developer confusion. However,...
The fetch spec currently associates the current client or window with a request object. This is important for allowing fetch(event.request) in service workers to work when the request requires mixed...
One of the most frequent pieces of feedback we have gotten is that developers would like to generate URL and component strings from a URLPattern. For example, something like: ```javascript...
Currently each component in a URLPattern produces a separate `groups` map. They are accessed like `result.pathname.groups`, `result.hostname.groups`, etc. This is a bit verbose and also requires the person accessing the...
In this twitter thread: https://twitter.com/posva/status/1418470155579953153 It was pointed out having an ordering for patterns is helpful for routering framework. I have a plan to provide an ordering for restricted patterns...
After the last face-to-face meeting we changed the plan to make service worker scope take a pathname patter string instead of a full URLPattern object and an array of strings...