summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/XHR/XMLHttpRequest.h
AgeCommit message (Expand)Author
2023-04-09LibWeb: Port fire_progress_event() + request_error_steps() to new StringKenneth Myhra
2023-04-05LibWeb: Add FormData support to XHRKenneth Myhra
2023-03-07LibWeb: Refactor XHR (almost) exactly to the specLuke Wilde
2023-03-03LibWeb/Fetch: Propagate OOM errors from HeaderList::extract_mime_type()Linus Groh
2023-02-18LibWeb: Make factory method of XHR::XMLHttpRequest fallibleKenneth Myhra
2023-01-29LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errorsTimothy Flynn
2023-01-10LibWeb: Move setting of Web object prototypes to initialize()Timothy Flynn
2022-12-06AK+Everywhere: Rename String to DeprecatedStringLinus Groh
2022-11-14LibWeb: Implement XMLHttpRequest.withCredentialsLinus Groh
2022-11-14LibWeb: Add a clarifying comment to XHR::m_response_objectLinus Groh
2022-11-14LibWeb: Use HeaderList from Fetch for XHR author request headersLinus Groh
2022-11-14LibWeb: Rename XHR::{m_request_headers => m_author_request_headers}Linus Groh
2022-11-14LibWeb: Rename XHR::{m_url => m_request_url}Linus Groh
2022-11-14LibWeb: Rename XHR::{m_method => m_request_method}Linus Groh
2022-11-14LibWeb: Add spec comments and links to XHR membersLinus Groh
2022-11-14LibWeb: Rename XHR's ReadyState / m_ready_state to just State / m_stateLinus Groh
2022-11-11LibWeb: Implement support for DOM::Document in XHR::send()Kenneth Myhra
2022-11-07LibWeb: Stub XMLHttpRequest.abortLuke Wilde
2022-10-24LibWeb: Implement XMLHttpRequest.requestType setter according to specAndreas Kling
2022-10-24LibWeb: Protect XMLHttpRequest from GC in special circumstancesAndreas Kling
2022-10-20LibWeb: Revert support for DOM::Document in XHR::send()Kenneth Myhra
2022-10-16LibWeb: Add support for DOM::Document to XHR::send()Kenneth Myhra
2022-10-01LibWeb: Remove unecessary dependence on Window from Fetch, XHR, FileAPIAndrew Kaster
2022-09-25LibWeb: Move ExceptionOr from DOM/ to WebIDL/Linus Groh
2022-09-24LibWeb: Move CallbackType from Bindings/ to WebIDL/Linus Groh
2022-09-22LibWeb: Move XMLHttpRequestBodyInit into FetchLinus Groh
2022-09-21LibWeb: Remove WRAPPER_HACK() macroLinus Groh
2022-09-06LibWeb: Remove now-unused Bindings::Wrappable classAndreas Kling
2022-09-06LibWeb: Make URL, URLSearchParams & URLSearchParamsIterator GC-allocatedAndreas Kling
2022-09-06LibWeb: Make Blob and File GC-allocatedAndreas Kling
2022-09-06LibWeb: Don't use a JS::Handle for XHR response objectAndreas Kling
2022-09-06LibWeb+LibJS: Make the EventTarget hierarchy (incl. DOM) GC-allocatedAndreas Kling
2022-09-06LibWeb: Move event listeners, handlers and callbacks to the GC heapAndreas Kling
2022-08-23LibWeb: Replace GlobalObject with Realm in wrapper functionsLinus Groh
2022-07-22LibWeb: Implement BufferSource support for XHR::send()Kenneth Myhra
2022-07-22LibWeb: Add spec link for XMLHttpRequestBodyInitKenneth Myhra
2022-07-20LibWeb: Move extract_mime_type() from XMLHttpRequest to HeaderListLinus Groh
2022-07-19LibWeb: Move Fetch infra into the Web::Fetch::Infrastructure namespaceLinus Groh
2022-07-18LibWeb: Add support for Blob to XHR::send()Kenneth Myhra
2022-07-18LibWeb: Move extract_body() towards spec complianceKenneth Myhra
2022-07-18LibWeb: Update incorrect Fetch namespacesLinus Groh
2022-07-18LibWeb: Use Fetch's HeaderList::get_decode_and_split() in XMLHttpRequestLinus Groh
2022-07-14LibWeb: Use newly added 'Status' Fetch infrastructure in XMLHttpRequestLinus Groh
2022-07-14LibWeb: Add & use 'HTTP whitespace' from '2.2. HTTP' in the Fetch specLinus Groh
2022-07-08LibWeb: Add URLSearchParams as part of union type for XHR::send()Kenneth Myhra
2022-06-21LibWeb: Add XMLHttpRequest::timeout setter and getterKenneth Myhra
2022-04-23LibWeb: Trim leading and trailing HTTP whitespace bytesKenneth Myhra
2022-04-05LibWeb: Add XMLHttpRequest::open() overloadKenneth Myhra
2022-04-01Everywhere: Run clang-formatIdan Horowitz
2022-03-21LibTextCodec: Don't allocate Strings on encoding normalisationHendiadyoin1