File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
files/en-us/web/api/xmlhttprequest Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ browser-compat: api.XMLHttpRequest.abort
1010The ** ` XMLHttpRequest.abort() ` ** method aborts the request if
1111it has already been sent. When a request is aborted, its
1212{{domxref("XMLHttpRequest.readyState", "readyState")}} is changed to
13- {{domxref(" XMLHttpRequest.UNSENT")}} (0) and the request's
13+ ` XMLHttpRequest.UNSENT ` (0) and the request's
1414{{domxref("XMLHttpRequest.status", "status")}} code is set to 0.
1515
1616## Syntax
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ data has not been completely received yet.
2424
2525You know the entire content has been received when the value of
2626{{domxref("XMLHttpRequest.readyState", "readyState")}} becomes
27- {{domxref(" XMLHttpRequest.DONE", "XMLHttpRequest.DONE")}} (` 4 ` ), and
27+ ` XMLHttpRequest.DONE ` (` 4 ` ), and
2828{{domxref("XMLHttpRequest.status", "status")}} becomes 200 (` "OK" ` ).
2929
3030### Exceptions
You can’t perform that action at this time.
0 commit comments