Skip to content

Commit

Permalink
Fix internal links accordingly
Browse files Browse the repository at this point in the history
  • Loading branch information
dontcallmedom committed Jun 5, 2024
1 parent e4aa0f2 commit 955bc15
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions xhr.bs
Original file line number Diff line number Diff line change
Expand Up @@ -285,12 +285,12 @@ constructor steps are:
<a>event listeners</a>
registered whose <b>type</b> is one of
{{XMLHttpRequest/readystatechange}},
{{XMLHttpRequest/progress}},
{{XMLHttpRequest/abort}},
{{XMLHttpRequest/error}},
{{XMLHttpRequest/load}},
{{XMLHttpRequest/timeout!!event}}, and
{{XMLHttpRequest/loadend}}.
{{XMLHttpRequestEventTarget/progress}},
{{XMLHttpRequestEventTarget/abort}},
{{XMLHttpRequestEventTarget/error}},
{{XMLHttpRequestEventTarget/load}},
{{XMLHttpRequestEventTarget/timeout!!event}}, and
{{XMLHttpRequestEventTarget/loadend}}.
<!-- No need to mention upload event listeners as they happen during /opened/. -->

<p>If an {{XMLHttpRequest}} object is garbage collected while its connection is still open, the user
Expand All @@ -317,22 +317,22 @@ from {{XMLHttpRequestEventTarget}} as attributes:
<td>{{XMLHttpRequest/loadstart}}
<tr>
<td><dfn id=handler-xhr-onprogress attribute for=XMLHttpRequestEventTarget><code>onprogress</code></dfn>
<td>{{XMLHttpRequest/progress}}
<td>{{XMLHttpRequestEventTarget/progress}}
<tr>
<td><dfn id=handler-xhr-onabort attribute for=XMLHttpRequestEventTarget><code>onabort</code></dfn>
<td>{{XMLHttpRequest/abort}}
<td>{{XMLHttpRequestEventTarget/abort}}
<tr>
<td><dfn id=handler-xhr-onerror attribute for=XMLHttpRequestEventTarget><code>onerror</code></dfn>
<td>{{XMLHttpRequest/error}}
<td>{{XMLHttpRequestEventTarget/error}}
<tr>
<td><dfn id=handler-xhr-onload attribute for=XMLHttpRequestEventTarget><code>onload</code></dfn>
<td>{{XMLHttpRequest/load}}
<td>{{XMLHttpRequestEventTarget/load}}
<tr>
<td><dfn id=handler-xhr-ontimeout attribute for=XMLHttpRequestEventTarget><code>ontimeout</code></dfn>
<td>{{XMLHttpRequest/timeout!!event}}
<td>{{XMLHttpRequestEventTarget/timeout!!event}}
<tr>
<td><dfn id=handler-xhr-onloadend attribute for=XMLHttpRequestEventTarget><code>onloadend</code></dfn>
<td>{{XMLHttpRequest/loadend}}
<td>{{XMLHttpRequestEventTarget/loadend}}
</table>

<p>The following is the
Expand Down Expand Up @@ -1035,7 +1035,7 @@ return <a>this</a>'s <a>cross-origin credentials</a>.

<li><p>Otherwise, if <var>xhr</var>'s <a for=XMLHttpRequest>response</a> is a
<a for=/>network error</a>, then run the <a>request error steps</a> for <var>xhr</var>,
{{XMLHttpRequest/error}}, and "{{NetworkError!!exception}}" {{DOMException}}.
{{XMLHttpRequestEventTarget/error}}, and "{{NetworkError!!exception}}" {{DOMException}}.
</ol>

<p>The <dfn>request error steps</dfn> for an {{XMLHttpRequest}} object <var>xhr</var>,
Expand Down

0 comments on commit 955bc15

Please sign in to comment.