summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/XHR
AgeCommit message (Expand)Author
2023-04-15LibJS: Port create_iterator_result_object() to NonnullGCPtrLinus Groh
2023-04-09LibWeb: Port fire_progress_event() + request_error_steps() to new StringKenneth Myhra
2023-04-09LibWeb: Port EventTarget to new {Fly}StringKenneth Myhra
2023-04-07LibWeb: Port {Mouse,UI,Wheel,}Event to new StringKenneth Myhra
2023-04-06LibWeb: Port {HTML,UIEvents,XHR}::EventNames to new StringKenneth Myhra
2023-04-05LibWeb: Add FormData support to XHRKenneth Myhra
2023-04-05LibWeb: Add get accessor to internal entry list of FormDataKenneth Myhra
2023-03-23LibWeb: Create the correct error objects in XHR::handle_errorsLuke Wilde
2023-03-18LibWeb: Initialize static web strings during main-thread VM creationTimothy Flynn
2023-03-15LibJS+LibWeb: Wrap raw JS::Cell*/& fields in GCPtr/NonnullGCPtrMatthew Olsson
2023-03-08LibWeb: Add FormDataIterator implementationKenneth Myhra
2023-03-07LibWeb: Refactor XHR (almost) exactly to the specLuke Wilde
2023-03-07LibWeb: Propagate Realm instead of VM more through FetchLuke Wilde
2023-03-05LibWeb: Port ProgressEvent to new StringKenneth Myhra
2023-03-03LibWeb/Fetch: Propagate OOM errors from HeaderList::extract_mime_type()Linus Groh
2023-03-03LibWeb/MimeSniff: Port MimeType to new StringLinus Groh
2023-03-03LibWeb/MimeSniff: Rename MimeType::from_string() to MimeType::parse()Linus Groh
2023-03-03LibWeb/XHR: Fix blob type in XMLHttpRequest::response()Linus Groh
2023-02-26LibWeb: Port IDL implementations Blob and File to new StringKenneth Myhra
2023-02-19LibTextCodec+Everywhere: Port Decoders to new StringsSam Atkins
2023-02-19LibTextCodec+Everywhere: Return Optional<Decoder&> from `decoder_for()`Sam Atkins
2023-02-18LibWeb: Convert FormData to String and Vector storageLuke Wilde
2023-02-18LibWeb: Make factory method of XHR::ProgressEvent fallibleKenneth Myhra
2023-02-18LibWeb: Make factory methods of DOM::Event fallibleKenneth Myhra
2023-02-18LibWeb: Make factory method of XHR::XMLHttpRequest fallibleKenneth Myhra
2023-02-18LibWeb: Make factory method of FileAPI::Blob fallibleKenneth Myhra
2023-02-12LibWeb: Move setting of FormDataPrototype to initialize()Kenneth Myhra
2023-02-12LibWeb: Implement algorithm 'construct the entry list given a form'Kenneth Myhra
2023-02-12LibWeb: Introduce the FormData interface from the XHR specificationKenneth Myhra
2023-02-09LibJS+LibWeb: Convert empty PrimitiveString instances to StringTimothy Flynn
2023-01-29LibJS+Everywhere: Propagate Cell::initialize errors from Heap::allocateTimothy Flynn
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
2023-01-09AK+Everywhere: Rename FlyString to DeprecatedFlyStringTimothy Flynn
2023-01-08LibJS+LibWeb: Move the macro to convert ENOMEM to an exception to LibJSTimothy Flynn
2022-12-15LibJS: Convert Heap::allocate{,_without_realm}() to NonnullGCPtrLinus Groh
2022-12-08LibWeb/Fetch: Refactor forbidden request-headersLinus 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-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