mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-03 08:08:43 +00:00
LibWeb: Reorder step to get chunk size after checking for aborted stream
This fixes a crash seen on: http://wpt.live/streams/writable-streams/aborting.any.html I believe this is a spec bug, which has been reported to the Streams spec.
This commit is contained in:
parent
3594cdf948
commit
d31014d135
Notes:
github-actions[bot]
2024-11-09 13:10:46 +00:00
Author: https://github.com/shannonbooth
Commit: d31014d135
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/2249
4 changed files with 1582 additions and 1 deletions
|
@ -0,0 +1,16 @@
|
|||
<!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/aborting.any.js"></script>
|
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue