mirror of
https://github.com/servo/servo.git
synced 2025-08-03 20:50:07 +01:00
Update web-platform-tests to revision 8fd32a0f7c18d32ae9e147d267746accc3ee9ad5
This commit is contained in:
parent
1a61937031
commit
1c115a1737
133 changed files with 1771 additions and 599 deletions
21
tests/wpt/web-platform-tests/interfaces/compression.idl
Normal file
21
tests/wpt/web-platform-tests/interfaces/compression.idl
Normal file
|
@ -0,0 +1,21 @@
|
|||
// GENERATED CONTENT - DO NOT EDIT
|
||||
// Content was automatically extracted by Reffy into reffy-reports
|
||||
// (https://github.com/tidoust/reffy-reports)
|
||||
// Source: Compression Streams (https://wicg.github.io/compression/)
|
||||
|
||||
interface mixin GenericTransformStream {
|
||||
readonly attribute ReadableStream readable;
|
||||
readonly attribute WritableStream writable;
|
||||
};
|
||||
|
||||
[Exposed=(Window,Worker)]
|
||||
interface CompressionStream {
|
||||
constructor(DOMString format);
|
||||
};
|
||||
CompressionStream includes GenericTransformStream;
|
||||
|
||||
[Exposed=(Window,Worker)]
|
||||
interface DecompressionStream {
|
||||
constructor(DOMString format);
|
||||
};
|
||||
DecompressionStream includes GenericTransformStream;
|
Loading…
Add table
Add a link
Reference in a new issue