Files
ladybird/Tests/LibWeb/Text/input/wpt-import/streams/readable-byte-streams/tee.any.html
Shannon Booth 1dc1bebd2a LibWeb: Push a temporary execution context for setTimeout
This fixes a crash seen running stream tests.
2024-11-01 13:12:01 -04:00

19 lines
628 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/rs-utils.js"></script>
<script src="../resources/test-utils.js"></script>
<script src="../resources/recording-streams.js"></script>
<script src="../resources/rs-test-templates.js"></script>
<div id=log></div>
<script src="../../streams/readable-byte-streams/tee.any.js"></script>