diff options
author | Ali Mohammad Pur <ali.mpfard@gmail.com> | 2022-02-15 14:35:29 +0330 |
---|---|---|
committer | Ali Mohammad Pur <Ali.mpfard@gmail.com> | 2022-02-16 22:48:32 +0330 |
commit | 385b07dcdafe4941e9986f93f7319a1df9f6c044 (patch) | |
tree | 7a2e718d83cc8e7db53b22b362627956acc1bc8c /Userland/Libraries/LibWeb/Forward.h | |
parent | 16c0646b9d7da1c7b3482993873755e5e6a5d81f (diff) | |
download | serenity-385b07dcdafe4941e9986f93f7319a1df9f6c044.zip |
LibWeb: Implement responseType and response for XHR
This makes us capable of loading non-utf8 content via XHR.
Diffstat (limited to 'Userland/Libraries/LibWeb/Forward.h')
-rw-r--r-- | Userland/Libraries/LibWeb/Forward.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/Forward.h b/Userland/Libraries/LibWeb/Forward.h index 203ade81e6..5b81293a02 100644 --- a/Userland/Libraries/LibWeb/Forward.h +++ b/Userland/Libraries/LibWeb/Forward.h @@ -496,4 +496,5 @@ class XMLHttpRequestConstructor; class XMLHttpRequestEventTargetWrapper; class XMLHttpRequestPrototype; class XMLHttpRequestWrapper; +enum class XMLHttpRequestResponseType; } |