summaryrefslogtreecommitdiff
path: root/dom/xhr/nsIXMLHttpRequest.idl
diff options
context:
space:
mode:
Diffstat (limited to 'dom/xhr/nsIXMLHttpRequest.idl')
-rw-r--r--dom/xhr/nsIXMLHttpRequest.idl5
1 files changed, 4 insertions, 1 deletions
diff --git a/dom/xhr/nsIXMLHttpRequest.idl b/dom/xhr/nsIXMLHttpRequest.idl
index 53e80bab70..5505bd47ee 100644
--- a/dom/xhr/nsIXMLHttpRequest.idl
+++ b/dom/xhr/nsIXMLHttpRequest.idl
@@ -326,9 +326,12 @@ interface nsIXMLHttpRequest : nsISupports
[uuid(840d0d00-e83e-4a29-b3c7-67e96e90a499)]
interface nsIXHRSendable : nsISupports {
+ // contentTypeWithCharset can be set to the contentType or
+ // contentType+charset based on what the spec says.
+ // See: https://fetch.spec.whatwg.org/#concept-bodyinit-extract
void getSendInfo(out nsIInputStream body,
out uint64_t contentLength,
- out ACString contentType,
+ out ACString contentTypeWithCharset,
out ACString charset);
};