Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.
The XMLHttpRequest.upload property returns an XMLHttpRequestUpload object, representing the upload process. It is an opaque object, but being an XMLHttpRequestEventTarget, event listeners can be set on it to track its process.
Event listerers that can be trigerred on an upload object are the following:
Event listeners
Data type of response property
onloadstart
The fetch starts
onprogress
Data transfer is going on
onabort
The fetch operation was aborted
onerror
The fetch failed
onload
The fetch succeeded
ontimeout
The fetch operation didn't complete by the timeout the author specified
onloadend
The fetch operation completed (either success or failure)