Skip to content

Commit c345910

Browse files
authored
Fix all the Bikeshed warnings and errors. (#382)
1 parent 06e9a85 commit c345910

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

index.bs

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,17 @@ Link Defaults: html (dfn) queue a task/in parallel/reflect
2323
<pre class="link-defaults">
2424
spec:css-cascade-5; type:dfn; text:inherit
2525
spec:dom
26-
type:dfn; text:aborted flag
2726
type:method; for:Document; text:getElementsByTagName(qualifiedName)
2827
type:method; for:Document; text:createElement(qualifiedName)
2928
spec:html; type:dfn; for:/
3029
text:focus update steps
3130
text:task queue
3231
text:event loop
3332
spec:html; type:element-attr; for:a; text:href
33+
spec:html; type:element
34+
text:link
35+
text:script
36+
text:style
3437
spec:html; type:event; text:resize
3538
spec:selectors-4; type:selector; text::hover
3639
spec:webidl; type:dfn; text:namespace
@@ -54,6 +57,10 @@ urlPrefix: https://tc39.github.io/ecma262/; spec: ECMA262
5457
url: #sec-finalization-registry-objects; type: interface; text: FinalizationRegistry
5558
url: #sec-number-objects; type: interface; text: Number
5659
url: #sec-weak-ref-objects; type: interface; text: WeakRef
60+
urlPrefix: https://w3c.github.io/gamepad/; spec: gamepad
61+
url:#event-gamepadconnected; type: event; text:gamepadconnected
62+
urlPrefix: https://w3c.github.io/geolocation-api/; spec: geolocation
63+
url:#dom-geolocation-watchposition; type:method; for:Geolocation; text:watchPosition()
5764
urlPrefix: https://html.spec.whatwg.org/multipage/; spec: HTML
5865
url: system-state.html#dom-navigator-online; type: attribute; for: NavigatorOnline; text: onLine;
5966
urlPrefix: https://w3c.github.io/remote-playback/; spec: REMOTE-PLAYBACK
@@ -1642,7 +1649,7 @@ as its result can be any of a number of subclasses of {{Element}}.
16421649
</div>
16431650

16441651
<div class="example">
1645-
The {{MouseEvent/initMouseEvent}} factory method only creates {{MouseEvent}} objects,
1652+
The deprecated `MouseEvent.initMouseEvent()` factory method only creates {{MouseEvent}} objects,
16461653
which were originally not constructible,
16471654
even though there was no technical reason against that.
16481655
Eventually it was deprecated, and the {{MouseEvent}} object was simply made constructible.
@@ -1847,9 +1854,8 @@ simply returns immediately. This technique is "guarding" the algorithm.
18471854
<div class="example">
18481855
{{AbortSignal}}'s [=AbortSignal/add=],
18491856
[=AbortSignal/remove=] and [=signal abort=]
1850-
each begin with a check
1851-
of the signal's [=aborted flag=].
1852-
If the flag is set, the rest of the algorithm doesn't run.
1857+
each begin with a check to see if the signal is [=AbortSignal/aborted=].
1858+
If the signal is [=AbortSignal/aborted=], the rest of the algorithm doesn't run.
18531859

18541860
In this case, a lot of the important complexity is
18551861
in the algorithms run during the [=signal abort=] steps.

0 commit comments

Comments
 (0)