summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/Fetch
AgeCommit message (Expand)Author
2022-12-20AK: Stop using `DeprecatedString` in Base64 encodingJelle Raaijmakers
2022-12-15LibJS: Convert Heap::allocate{,_without_realm}() to NonnullGCPtrLinus Groh
2022-12-15LibJS: Add make_handle({Nonnull,}GCPtr<T>) overloadsLinus Groh
2022-12-14LibJS: Convert Array::create{,_from}() to NonnullGCPtrLinus Groh
2022-12-08LibWeb/Fetch: Remove redundant timingInfo variablesLinus Groh
2022-12-08LibWeb/Fetch: Share validation logic in the Headers classLinus Groh
2022-12-08LibWeb/Fetch: Remove Authorization header upon cross-origin redirectLinus Groh
2022-12-08LibWeb/Fetch: Tweak wording in some spec commentsLinus Groh
2022-12-08LibWeb/Fetch: Update spec comment to decode bytes to stringLinus Groh
2022-12-08LibWeb/Fetch: Refactor forbidden request-headersLinus Groh
2022-12-08LibWeb/Fetch: Use tuple syntax for headers in spec commentsLinus Groh
2022-12-07LibJS: Replace standalone js_string() with PrimitiveString::create()Linus Groh
2022-12-06Everywhere: Rename to_{string => deprecated_string}() where applicableLinus Groh
2022-12-06AK+Everywhere: Rename String to DeprecatedStringLinus Groh
2022-11-23LibJS+LibWeb: Make Runtime/AbstractOperations.h not include AST.hAndreas Kling
2022-11-23LibJS+LibWeb: Make CyclicModule.h not include AST.hAndreas Kling
2022-11-19Everywhere: Remove unnecessary mutable attributes from lambdasMacDue
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