1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 01:47:35 +00:00

LibWeb: Add TransformStream scaffolding

This adds the scaffolding of TransformStream so we can start
implementing the necessary abstract operations for it.
This commit is contained in:
Kenneth Myhra 2023-07-06 19:37:12 +02:00 committed by Andreas Kling
parent 90fdd598c2
commit f1d69d789b
6 changed files with 140 additions and 0 deletions

View file

@ -196,6 +196,7 @@ libweb_js_bindings(Streams/ReadableStreamBYOBReader)
libweb_js_bindings(Streams/ReadableStreamBYOBRequest)
libweb_js_bindings(Streams/ReadableStreamDefaultController)
libweb_js_bindings(Streams/ReadableStreamDefaultReader)
libweb_js_bindings(Streams/TransformStream)
libweb_js_bindings(Streams/WritableStream)
libweb_js_bindings(Streams/WritableStreamDefaultWriter)
libweb_js_bindings(SVG/SVGAnimatedLength)