Lukasz Anforowicz
Lukasz Anforowicz
Very interesting - thanks for looking into this! AFAIU `fdeflate`'s requirement for retaining 32kB **unmodified** decompressed data is met by only calling `unfilter` on data that was decompressed **earlier**. Did...
What is the main problem that this issue attempts to solve? Is this mostly about the problem described by @arturjanc in https://github.com/whatwg/fetch/issues/687#issuecomment-385048931: > The problem with not allowing granular control...
Also (for helping with prioritization), do you think supporting cross-site Cross-Origin-Resource-Policy (e.g. by making Cross-Origin-Resource-Policy accept literal origins) is more or less important than working on finalizing and implementing [Sec-Fetch-Site](https://mikewest.github.io/sec-metadata/#sec-fetch-site-header)?...
I also wished that `FromColor` or `FromPrimitive` traits were public. OTOH, I recognize that making `FromColor` and/or `FromPrimitive` traits public is just *one* possible solution to the actual problem I...
Worth noting is that `libpng` supports 2 different methods for `u16` -> `u8` conversions: `png_do_chop` (just discard 8 least significant bits and use the 8 most significant bits) and `png_do_scale_16_to_8`...
I agree with https://github.com/whatwg/html/issues/6468#issuecomment-952926052 that ORB cannot blocklist HLS MIME types. I think we should go even one step further and allowlist these MIME types (similarily to how `image/svg+xml` is...
Stepping back, the main problem is that ORB wants to avoid blocking video resources (which are allowed in `no-cors` mode), but might have trouble identifying if a given range request...
One other alternative is to ask ORB to avoid reading/parsing/sniffing HLS/DASH responses (the manifest fetch + the subsequent video / captions fetches) altogether + require such responses to use accurate/strict...
The force-push above did 2 things: * It rebased the "Simplify inv memchr" commit on top of the most recent upstream commits * It temporarily dropped the follow-up cleanup that...
Below is a snippet of a Chromium-independent repro at the tip-of-the tree of `rustfmt`, with some extra `dbg!` in `ignore_paths.rs`. I think one thing worth noting is that `ignore::gitignore::Gitignore::matched_path_or_any_parents` requires...