Skip to content

Commit a9298e0

Browse files
author
Marcos Cáceres
committed
Fix more autolinking
1 parent 09e0a13 commit a9298e0

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

index.html

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
};
5757
</script>
5858
</head>
59-
<body data-cite="service-workers">
59+
<body data-cite="service-workers FILEAPI">
6060
<section id="abstract">
6161
<p>
6262
The <cite>Push API</cite> enables sending of a <a>push message</a> to a <a>webapp</a> via a
@@ -510,7 +510,7 @@ <h2>
510510
"service-workers#serviceworkerregistration">ServiceWorkerRegistration</dfn></code>
511511
interface [[SERVICE-WORKERS]], which this specification extends.
512512
</p>
513-
<pre class="idl">
513+
<pre class="idl" data-cite="service-workers">
514514
[SecureContext]
515515
partial interface ServiceWorkerRegistration {
516516
readonly attribute PushManager pushManager;
@@ -564,7 +564,7 @@ <h2>
564564
{{DOMException}} whose name is "{{SecurityError}}" and terminate these steps.
565565
</li>
566566
<li>If the <var>options</var> argument includes a non-null value for the
567-
`<a data-link-for="PushSubscriptionOptions">applicationServerKey</a>` attribute, run the
567+
<a data-link-for="PushSubscriptionOptions">applicationServerKey</a> attribute, run the
568568
following substeps:
569569
<ol>
570570
<li>If the <var>applicationServerKey</var> is provided as a {{DOMString}}, set its
@@ -581,9 +581,9 @@ <h2>
581581
</ol>
582582
</li>
583583
<li>If the <var>options</var> argument does not include a non-null value for the
584-
`<a data-link-for="PushSubscriptionOptions">applicationServerKey</a>` attribute, and the
585-
<a>push service</a> requires one to be given, reject <var>promise</var> with a
586-
{{DOMException}} whose name is "{{NotSupportedError}}" and terminate these steps.
584+
<a data-link-for="PushSubscriptionOptions">applicationServerKey</a> attribute, and the <a>
585+
push service</a> requires one to be given, reject <var>promise</var> with a
586+
{{DOMException}} whose name is "{{NotSupportedError}}" and terminate these steps.
587587
</li>
588588
<li>Let <var>registration</var> be the <a>PushManager</a>'s associated <a>service worker
589589
registration</a>.
@@ -709,7 +709,7 @@ <h2>
709709
present and the <a>push service</a> requires one for operational reasons.
710710
</p>
711711
<p>
712-
The `<a data-link-for="PushSubscriptionOptions">applicationServerKey</a>` MUST be a
712+
The <a data-link-for="PushSubscriptionOptions">applicationServerKey</a> MUST be a
713713
different value to the one used for message encryption [[RFC8291]].
714714
</p>
715715
</section>
@@ -794,8 +794,8 @@ <h2>
794794
</p>
795795
<p>
796796
When getting the <dfn>options</dfn> attribute, the <a>user agent</a> MUST return a
797-
`<a>PushSubscriptionOptions</a>` object representing the options associated with the
798-
<a>push subscription</a>.
797+
<a>PushSubscriptionOptions</a> object representing the options associated with the <a>push
798+
subscription</a>.
799799
</p>
800800
<p>
801801
The <dfn>getKey()</dfn> method retrieves keying material that can be used for encrypting
@@ -952,7 +952,7 @@ <h2>
952952
<h2>
953953
<dfn>PushMessageData</dfn> interface
954954
</h2>
955-
<pre class="idl">
955+
<pre class="idl" data-cite="FILEAPI">
956956
[Exposed=ServiceWorker, SecureContext]
957957
interface PushMessageData {
958958
ArrayBuffer arrayBuffer();
@@ -970,7 +970,7 @@ <h2>
970970
contents are <var>bytes</var>. Exceptions thrown during the creation of the {{ArrayBuffer}}
971971
object are re-thrown.
972972
</p>
973-
<p data-cite="FILEAPI">
973+
<p>
974974
The <dfn>blob()</dfn> method, when invoked, MUST return a {{Blob}} whose contents are
975975
<var>bytes</var> and <var>type</var> is not provided.
976976
</p>
@@ -1023,7 +1023,7 @@ <h2>
10231023
"service-workers#serviceworkerglobalscope">ServiceWorkerGlobalScope</dfn> interface
10241024
[[SERVICE-WORKERS]], which this specification extends.
10251025
</p>
1026-
<pre class="idl">
1026+
<pre class="idl" data-cite="HTML">
10271027
[Exposed=ServiceWorker, SecureContext]
10281028
partial interface ServiceWorkerGlobalScope {
10291029
attribute EventHandler onpush;
@@ -1040,12 +1040,12 @@ <h2>
10401040
attribute</a> whose corresponding <a>event handler event type</a> is
10411041
"`pushsubscriptionchange`".
10421042
</p>
1043-
</section>
1043+
</section>f
10441044
<section data-dfn-for="PushEvent">
10451045
<h2>
10461046
<dfn>PushEvent</dfn> Interface
10471047
</h2>
1048-
<pre class="idl">
1048+
<pre class="idl" data-cite="service-workers">
10491049
[Constructor(DOMString type, optional PushEventInit eventInitDict), Exposed=ServiceWorker, SecureContext]
10501050
interface PushEvent : ExtendableEvent {
10511051
readonly attribute PushMessageData? data;
@@ -1075,7 +1075,7 @@ <h2>
10751075
<h2>
10761076
<dfn>PushEventInit</dfn>
10771077
</h2>
1078-
<pre class="idl">
1078+
<pre class="idl" data-cite="service-workers">
10791079
typedef (BufferSource or USVString) PushMessageDataInit;
10801080

10811081
dictionary PushEventInit : ExtendableEventInit {
@@ -1220,7 +1220,7 @@ <h2>
12201220
<h2>
12211221
<dfn>PushSubscriptionChangeEvent</dfn> Interface
12221222
</h2>
1223-
<pre class="idl">
1223+
<pre class="idl" data-cite="service-workers">
12241224
[Constructor(DOMString type, optional PushSubscriptionChangeInit eventInitDict), Exposed=ServiceWorker, SecureContext]
12251225
interface PushSubscriptionChangeEvent : ExtendableEvent {
12261226
readonly attribute PushSubscription? newSubscription;
@@ -1240,7 +1240,7 @@ <h2>
12401240
<h2>
12411241
<dfn>PushSubscriptionChangeInit</dfn> Interface
12421242
</h2>
1243-
<pre class="idl">
1243+
<pre class="idl" data-cite="service-workers">
12441244
dictionary PushSubscriptionChangeInit : ExtendableEventInit {
12451245
PushSubscription newSubscription = null;
12461246
PushSubscription oldSubscription = null;

0 commit comments

Comments
 (0)