-
-
Notifications
You must be signed in to change notification settings - Fork 3.4k
dom: Implement WritableStream
#34844
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
Conversation
68f2f34 to
6a755ca
Compare
WritableStream
629d416 to
76b7775
Compare
| // Let state be stream.[[state]]. | ||
|
|
||
| // Assert: state is not "closed" or "errored". | ||
| assert!(stream.is_errored() || stream.is_closed()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this is inverted from the intended check.
eb0c449 to
51fb616
Compare
cc48833 to
416b619
Compare
4b2cc03 to
fd680a5
Compare
|
Note to self, apply rooting pattern of #34194 |
4578d56 to
b49ffd8
Compare
|
🔨 Triggering try run (#13158231151) for Linux (WPT) |
|
Test results for linux-wpt-layout-2020 from try job (#13158231151): Flaky unexpected result (18)
Stable unexpected results that are known to be intermittent (12)
Stable unexpected results (4)
|
|
|
|
🔨 Triggering try run (#13177174020) for Linux (WPT) |
Signed-off-by: gterzian <2792687+gterzian@users.noreply.github.com>
Signed-off-by: gterzian <2792687+gterzian@users.noreply.github.com>
Signed-off-by: gterzian <2792687+gterzian@users.noreply.github.com>
Co-authored-by: Josh Matthews <josh@joshmatthews.net> Signed-off-by: Gregory Terzian <2792687+gterzian@users.noreply.github.com>
Co-authored-by: Josh Matthews <josh@joshmatthews.net> Signed-off-by: Gregory Terzian <2792687+gterzian@users.noreply.github.com>
Co-authored-by: Josh Matthews <josh@joshmatthews.net> Signed-off-by: Gregory Terzian <2792687+gterzian@users.noreply.github.com>
…inish_erroring Signed-off-by: gterzian <2792687+gterzian@users.noreply.github.com>
…finish_erroring Signed-off-by: gterzian <2792687+gterzian@users.noreply.github.com>
…lose_and_closed_promise_if_needed Signed-off-by: gterzian <2792687+gterzian@users.noreply.github.com>
Signed-off-by: gterzian <2792687+gterzian@users.noreply.github.com>
…close_with_error Signed-off-by: gterzian <2792687+gterzian@users.noreply.github.com>
Signed-off-by: gterzian <2792687+gterzian@users.noreply.github.com>
Signed-off-by: gterzian <2792687+gterzian@users.noreply.github.com>
Co-authored-by: Josh Matthews <josh@joshmatthews.net> Signed-off-by: Gregory Terzian <2792687+gterzian@users.noreply.github.com>
Signed-off-by: gterzian <2792687+gterzian@users.noreply.github.com>
Signed-off-by: gterzian <2792687+gterzian@users.noreply.github.com>
Signed-off-by: gterzian <2792687+gterzian@users.noreply.github.com>
Signed-off-by: gterzian <2792687+gterzian@users.noreply.github.com>
Signed-off-by: gterzian <2792687+gterzian@users.noreply.github.com>
Signed-off-by: gterzian <2792687+gterzian@users.noreply.github.com>
Signed-off-by: gterzian <2792687+gterzian@users.noreply.github.com>
uses ai Signed-off-by: gterzian <2792687+gterzian@users.noreply.github.com>
Signed-off-by: gterzian <2792687+gterzian@users.noreply.github.com>
494cb8b to
b7688fe
Compare
Implement writable stream https://streams.spec.whatwg.org/#writablestream
Part of #34676
./mach build -ddoes not report any errors./mach test-tidydoes not report any errors