mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-23 01:12:45 +00:00
For these types, it would previously only accept `undefined` for the `null` state. Fixes GET requests in the Turbo library always failing:9e057f284a/src/http/fetch_request.js (L219-L220)
9e057f284a/src/http/fetch_request.js (L51-L64)
This was found on https://www.fangamer.com/.
21 lines
842 B
HTML
21 lines
842 B
HTML
<!DOCTYPE html>
|
|
<script src="../include.js"></script>
|
|
<script>
|
|
asyncTest(async (done) => {
|
|
try {
|
|
const dataUrl = "data:,hello";
|
|
new Request(dataUrl, { method: "GET", body: null });
|
|
println("Successfully created GET request with body set to null");
|
|
new Request(dataUrl, { method: "HEAD", body: null });
|
|
println("Successfully created HEAD request with body set to null");
|
|
await fetch(dataUrl, { method: "GET", body: null });
|
|
println("Successfully started GET fetch with body set to null");
|
|
await fetch(dataUrl, { method: "HEAD", body: null });
|
|
println("Successfully started HEAD fetch with body set to null");
|
|
} catch (e) {
|
|
println(`Unexpected throw: ${e}`);
|
|
}
|
|
|
|
done();
|
|
});
|
|
</script>
|