summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/Fetch
AgeCommit message (Expand)Author
2022-11-11LibWeb: Remove unused type XMLHttpRequestBodyInitKenneth Myhra
2022-11-09LibWeb: Fix typo in BodyInitOrReadableBytes type aliasLinus Groh
2022-11-08Everywhere: Clean up "in in" comment typosNico Weber
2022-11-04LibWeb: Add abort algorithm after creating controller in fetch_impl()Linus Groh
2022-11-04LibWeb: Properly copy method and headers from the input in Request()Linus Groh
2022-11-01LibWeb: Register PendingResponse with a Request to keep it aliveLinus Groh
2022-10-31LibWeb: Use proper origins in Request::has_redirect_tainted_origin()Linus Groh
2022-10-31LibWeb: Handle currently ignored `WebIDL::ExceptionOr<T>`sLinus Groh
2022-10-30LibWeb: Implement the fetch() method :^)Linus Groh
2022-10-30LibWeb: Implement most of the 'Fetching' AOsLinus Groh
2022-10-30LibWeb: Require error message for Response::network_error()Linus Groh
2022-10-30LibWeb: Fix URL parsing in Response::location_url()Linus Groh
2022-10-30LibWeb: Actually extract Location header in Response::location_url()Linus Groh
2022-10-30LibWeb: Partially implement 'Extract header (list) values' AOsLinus Groh
2022-10-30LibWeb: Implement 'Queue a fetch task' AOLinus Groh
2022-10-30LibWeb: Implement 'Default `User-Agent` value' AOLinus Groh
2022-10-30LibWeb: Implement 'Append a request `Origin` header' AOLinus Groh
2022-10-30LibWeb: Implement 'Appropriate network error' AOLinus Groh
2022-10-30LibWeb: Implement 'CORS check' / 'TAO check' AOsLinus Groh
2022-10-30LibWeb: Implement 'fetch params' structLinus Groh
2022-10-30LibWeb: Implement container class for fetch algorithmsLinus Groh
2022-10-30LibWeb: Implement 'fetch controller' structLinus Groh
2022-10-30LibWeb: Implement 'fetch timing info' structLinus Groh
2022-10-30LibWeb: Implement 'connection timing info' structLinus Groh
2022-10-30LibWeb: Implement 'Byte sequence as body' AOLinus Groh
2022-10-30LibWeb: Implement 'Safely extract BodyInit' AOLinus Groh
2022-10-30LibWeb: Implement 'Should response be blocked due to nosniff?' AOLinus Groh
2022-10-30LibWeb: Implement 'Should response be blocked due to its MIME type?' AOLinus Groh
2022-10-30LibWeb: Implement 'Should request be blocked due to a bad port' AOLinus Groh
2022-10-30LibWeb: Explain the use-URL-credentials flagLinus Groh
2022-10-30LibWeb: Add has-cross-origin-redirects flag to Fetch::Infra::ResponseLinus Groh
2022-10-30LibWeb: Actually define Blob-to-ReadableStream conversionLinus Groh
2022-10-30LibWeb: Make Fetch::Infrastructure::{Request,Response,HeaderList} GC'dLinus Groh
2022-10-29LibWeb: Use StringView literals for all `WebIDL::SimpleException`sLinus Groh
2022-10-26LibWeb: Make Fetch::Request follow abort signals where appropriate Luke Wilde
2022-10-26LibWeb: Fix unchecked Variant access in Request::construct_impl()Linus Groh
2022-10-26LibWeb: Fix incorrect peek offset in HeaderList::get_decode_and_split()Linus Groh
2022-10-24LibWeb: Use getters instead of direct member access in Response methodsLinus Groh
2022-10-24LibWeb: Also make non-const Response getters virtualLinus Groh
2022-10-24LibWeb: Handle filtered response in Response::clone()Linus Groh
2022-10-24LibWeb: Add non-const variants of Request::{current_,}url()Linus Groh
2022-10-24LibWeb: Move internal response in FilteredResponse create() functionsLinus Groh
2022-10-24LibWeb: Use MUST() for infallible ByteBuffer::copy() invocationsLinus Groh
2022-10-24LibWeb: Add Fetch::Infrastructure::Header::from_string_pair() helperLinus Groh
2022-10-24LibWeb: Fix typo in Fetch::Infrastructure::Request::add_range_header()Linus Groh
2022-10-21LibWeb: Remove workaround for nested BodyInit IDL union typeLinus Groh
2022-10-15LibWeb/Fetch: Add "webidentity" destination for FedCMLinus Groh
2022-10-15LibWeb/Fetch: Add duplex property to RequestLinus Groh
2022-10-15LibWeb/Fetch: Add support for parsing a single range header valueLinus Groh
2022-10-09AK+Everywhere: Fix data corruption due to code-point-to-char conversionBen Wiederhake