Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,17 @@ A <dfn>compression context</dfn> is the internal state maintained by a compressi
* A `gzip` stream may only contain one "member".
* It is an error if there is additional input data after the end of the "member".

: {{CompressionFormat/brotli}}
:: "Brotli Compressed Data Format" [[!RFC7932]]
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I tried to make CompressionFormat sorted, should I do the same here?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah good point, we should keep the same order everywhere.


* Implementation must be "compliant" as described in [[!RFC7932]] section 1.4.
* Non-[[!RFC1951]]-conforming blocks must not be created by CompressionStream, and are errors for DecompressionStream.

# Interface `CompressionStream` # {#compression-stream}

<pre class="idl">
enum CompressionFormat {
"brotli",
"deflate",
"deflate-raw",
"gzip",
Expand Down