mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 09:45:06 +02:00
This widens the assertion from only checking if the WritableStream's state is Errored or Erroring to asserting that the WritableStream is not in a Writable state.
17 lines
518 B
HTML
17 lines
518 B
HTML
<!doctype html>
|
|
<meta charset=utf-8>
|
|
|
|
<script>
|
|
self.GLOBAL = {
|
|
isWindow: function() { return true; },
|
|
isWorker: function() { return false; },
|
|
isShadowRealm: function() { return false; },
|
|
};
|
|
</script>
|
|
<script src="../../resources/testharness.js"></script>
|
|
<script src="../../resources/testharnessreport.js"></script>
|
|
<script src="../resources/test-utils.js"></script>
|
|
<script src="../resources/recording-streams.js"></script>
|
|
<div id=log></div>
|
|
<script src="../../streams/writable-streams/close.any.js"></script>
|