Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update interfaces/encoding.idl and test #25542

Merged
merged 1 commit into from
Sep 15, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion encoding/idlharness.any.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

idl_test(
['encoding'],
[], // No deps
['streams'],
idl_array => {
idl_array.add_objects({
TextEncoder: ['new TextEncoder()'],
Expand Down
5 changes: 0 additions & 5 deletions interfaces/encoding.idl
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,6 @@ interface TextEncoder {
};
TextEncoder includes TextEncoderCommon;

interface mixin GenericTransformStream {
readonly attribute ReadableStream readable;
readonly attribute WritableStream writable;
};

[Exposed=(Window,Worker)]
interface TextDecoderStream {
constructor(optional DOMString label = "utf-8", optional TextDecoderOptions options = {});
Expand Down