You do not have permission to delete messages in this group
Link
Report message as abuse
Sign in to report message as abuse
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to dev-pl...@mozilla.org
As of March 25 (past, yes 😅) I intend to prototype and ship Compression Streams. This feature allows JavaScript to compress and decompress some industry standard compression formats, namely deflate/deflate-raw/gzip.
How stable is the spec: There have been minimal changes with no visible behavior change since 2019/2020. Security & privacy concerns: This uses an external library named zlib. While this library is old, mature, and being used by nearly everyone including multiple existing components in Gecko, extra fuzzing will still be helpful. The same library is used in Blink and WebKit to implement this feature. For privacy, this does not expose any system configuration. See also https://wicg.github.io/compression/#privacy-security. Web developer use cases: Zip files can be created without depending on JS/wasm compression libraries, for example. Example: https://wicg.github.io/compression/#examples