mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 23:37:35 +00:00
LibWeb: Add support for Blob to XHR::send()
This commit is contained in:
parent
9b3da5a142
commit
0a511e29d1
3 changed files with 15 additions and 3 deletions
|
@ -23,7 +23,7 @@
|
|||
|
||||
namespace Web::XHR {
|
||||
|
||||
using XMLHttpRequestBodyInit = Variant<NonnullRefPtr<URL::URLSearchParams>, String>;
|
||||
using XMLHttpRequestBodyInit = Variant<NonnullRefPtr<FileAPI::Blob>, NonnullRefPtr<URL::URLSearchParams>, String>;
|
||||
|
||||
class XMLHttpRequest final
|
||||
: public RefCounted<XMLHttpRequest>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue