1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
|
---
title: Типы ссылок
slug: Web/HTML/Типы_ссылок
translation_of: Web/HTML/Link_types
---
<p>{{HTMLSidebar}}</p>
<p>В HTML следующие типы ссылок показывают отношения между двумя документами, в одном из которых, ссылка ведёт к другому, используя элементы {{HTMLElement("a")}}, {{HTMLElement("area")}} или {{HTMLElement("link")}}.</p>
<table class="standard-table">
<caption>Список типов ссылок и их значений в HTML</caption>
<thead>
<tr>
<th scope="col">Тип ссылки</th>
<th scope="col">Описание</th>
<th scope="col" style="width: 12em;">Разрешён в этих элементах</th>
<th scope="col">Не разрешён в</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>alternate</code></td>
<td>
<ul>
<li>If the element is {{HTMLElement("link")}} and the {{htmlattrxref("rel", "link")}} attribute also contains the <code>stylesheet</code> type, the link defines an <a href="/en-US/docs/Alternative_style_sheets">alternative style sheet</a>; in that case the {{htmlattrxref("title", "link")}} attribute must be present and not be the empty string.</li>
<li>If the {{htmlattrxref("type","link")}} is set to <code>application/rss+xml</code> or <code>application/atom+xml</code>, the link defines a <a href="/en-US/docs/RSS/Getting_Started/Syndicating">syndication feed</a>. The first one defined on the page is the default.</li>
<li>Otherwise, the link defines an alternative page, of one of these types:
<ul>
<li>for another medium, like a handheld device (if the {{htmlattrxref("media","link")}} attribute is set)</li>
<li>in another language (if the {{htmlattrxref("hreflang","link")}} attribute is set),</li>
<li>in another format, such as a PDF (if the {{htmlattrxref("type","link")}} attribute is set)</li>
<li>a combination of these</li>
</ul>
</li>
</ul>
</td>
<td>{{HTMLElement("a")}}, {{HTMLElement("area")}}, {{HTMLElement("link")}}</td>
<td><em>Нет</em></td>
</tr>
<tr>
<td><code>archives</code> {{obsolete_inline}}</td>
<td>Defines a hyperlink to a document that contains an archive link to this one. For example, a blog entry could link to a monthly index page this way.<br>
<br>
<strong>Note:</strong> Although recognized, the singular <code>archive</code> is incorrect and must be avoided.</td>
<td>{{HTMLElement("a")}}, {{HTMLElement("area")}}, {{HTMLElement("link")}}</td>
<td><em>Нет</em></td>
</tr>
<tr>
<td><code>author</code></td>
<td>Defines a hyperlink to a page describing the author or providing a way to contact the author.<br>
<br>
<strong>Note:</strong> This may be a <code>mailto:</code> hyperlink, but this is not recommended on public pages as robot harvesters will quickly lead to a lot of spam sent to the address. In that case, it is better to lead to a page containing a contact form.<br>
<br>
Although recognized, the {{htmlattrxref("rev", "link")}} attribute on {{HTMLElement("a")}}, {{HTMLElement("area")}} or{{HTMLElement("link")}} elements with a link type of <code>made</code> is incorrect and should be replaced by the {{htmlattrxref("rel", "link")}} attribute with this link type.</td>
<td>{{HTMLElement("a")}}, {{HTMLElement("area")}}, {{HTMLElement("link")}}</td>
<td><em>Нет</em></td>
</tr>
<tr>
<td><code>bookmark</code></td>
<td>Indicates that the hyperlink is a <a href="/en-US/docs/Permalink">permalink</a> for the nearest ancestor {{HTMLElement("article")}} element. If none, it is a permalink for the <a href="/en-US/docs/Sections_and_Outlines_of_an_HTML5_document">section</a> that the element is most closely associated to.<br>
<br>
This allows for bookmarking a single article in a page containing multiple articles, such as on a monthly summary blog page, or a blog aggregator.</td>
<td>{{HTMLElement("a")}}, {{HTMLElement("area")}}</td>
<td>{{HTMLElement("link")}}</td>
</tr>
<tr>
<td><code>dns-prefetch</code> {{experimental_inline}}</td>
<td>Hints to the browser that a resources is needed allowing the browser to do a DNS lookup and protocol handshaking before a user clicks the link.</td>
<td>{{HTMLElement("link")}}</td>
<td>{{HTMLElement("a")}}, {{HTMLElement("area")}}</td>
</tr>
<tr>
<td><code>external</code></td>
<td>Indicates that the hyperlink leads to a resource outside the site of the current page; that is, following the link will make the user leave the site.</td>
<td>{{HTMLElement("a")}}, {{HTMLElement("area")}}</td>
<td>{{HTMLElement("link")}}</td>
</tr>
<tr>
<td><code>first</code> {{obsolete_inline}}</td>
<td>Indicates that the hyperlink leads to the first resource of the <em>sequence</em> the current page is in.<br>
<br>
<strong>Note:</strong> Other link types related to linking resources in the same sequence are <code>last</code>, <code>prev</code>, <code>next</code>.<br>
<br>
Although recognized, the synonyms <code>begin</code> and <code>start</code> are incorrect and must be avoided.</td>
<td>{{HTMLElement("a")}}, {{HTMLElement("area")}}, {{HTMLElement("link")}}</td>
<td><em>Нет</em></td>
</tr>
<tr>
<td><code>help</code></td>
<td>
<ul>
<li>If the element is {{HTMLElement("a")}} or {{HTMLElement("area")}}, it indicates that the hyperlink leads to a resource giving further help about the parent of the element, and its descendants.</li>
<li>If the element is {{HTMLElement("link")}} it indicates that the hyperlink leads to a resource giving further help about the page as a whole.</li>
</ul>
</td>
<td>{{HTMLElement("a")}}, {{HTMLElement("area")}}, {{HTMLElement("link")}}</td>
<td><em>Нет</em></td>
</tr>
<tr>
<td><code>icon</code></td>
<td>Defines a resource for representing the page in the user interface, usually an icon (auditory or visual).<br>
<br>
The {{htmlattrxref("media","link")}}, {{htmlattrxref("type","link")}} and {{htmlattrxref("sizes","link")}} attributes allow the browser to select the most appropriate icon for its context. If several resources match, the browser will select the last one declared, in tree order. As these attributes are merely hints, and the resources may be inappropriate upon further inspection, the browser will then select another one, if appropriate.<br>
<br>
<strong>Note:</strong> Apple's iOS does not use this link type, nor the {{htmlattrxref("sizes","link")}} attribute, like others mobile browsers do, to select a webpage icon for Web Clip or a start-up placeholder. Instead it uses the non-standard <a href="http://edr.euro.apple.com/library/safari/documentation/AppleApplications/Reference/SafariWebContent/ConfiguringWebApplications/ConfiguringWebApplications.html#//apple_ref/doc/uid/TP40002051-CH3-SW4"><code>apple-touch-icon</code></a> and <a href="http://edr.euro.apple.com/library/safari/documentation/AppleApplications/Reference/SafariWebContent/ConfiguringWebApplications/ConfiguringWebApplications.html#//apple_ref/doc/uid/TP40002051-CH3-SW6"><code>apple-touch-startup-image</code></a> respectively.<br>
<br>
The <code>shortcut</code> link type is often seen before <code>icon</code>, but this link type is non-conforming, ignored and <strong>web authors must not use it anymore</strong>.</td>
<td>{{HTMLElement("link")}}</td>
<td>{{HTMLElement("a")}}, {{HTMLElement("area")}}</td>
</tr>
<tr>
<td><code>index</code> {{obsolete_inline}}</td>
<td>Indicates that the page is part of a <em>hierarchical</em> structure and that the hyperlink leads to the top level resource of that structure.<br>
<br>
If one or several <code>up</code> link types are also present, the number of these <code>up</code> indicates the depth of the current page in the hierarchy.</td>
<td>{{HTMLElement("a")}}, {{HTMLElement("area")}}, {{HTMLElement("link")}}</td>
<td><em>Нет</em></td>
</tr>
<tr>
<td><code>last</code> {{obsolete_inline}}</td>
<td>Indicates that the hyperlink leads to the <em>last</em> resource of the <em>sequence</em> the current page is in.<br>
<br>
<strong>Note:</strong> Other link types related to linking resources in the same sequence are <code>first</code>, <code>prev</code>, <code>next</code>.<br>
<br>
Although recognized, the synonym <code>end</code> is incorrect and must be avoided.</td>
<td>{{HTMLElement("a")}}, {{HTMLElement("area")}}, {{HTMLElement("link")}}</td>
<td><em>Нет</em></td>
</tr>
<tr>
<td><code>license</code></td>
<td>Indicates that the hyperlink leads to a document describing the licensing information. If not inside the {{HTMLElement("head")}} element, the standard doesn't distinguish between a hyperlink applying to a specific part of the document or to the document as a whole. Only the data on the page can indicate this.<br>
<br>
<strong>Note: </strong>Although recognized, the synonym <code>copyright</code> is incorrect and must be avoided.</td>
<td>{{HTMLElement("a")}}, {{HTMLElement("area")}}, {{HTMLElement("link")}}</td>
<td><em>Нет</em></td>
</tr>
<tr>
<td><code>manifest</code></td>
<td>Indicates that the linked file is a <a href="https://developer.mozilla.org/en-US/docs/Web/Manifest">Web App Manifest</a>.</td>
<td>{{HTMLElement("link")}}</td>
<td>{{HTMLElement("a")}}, {{HTMLElement("area")}}</td>
</tr>
<tr>
<td><code>next</code></td>
<td>Indicates that the hyperlink leads to the <em>next</em> resource of the <em>sequence</em> the current page is in.<br>
<br>
<strong>Note:</strong> Other link types related to linking resources in the same sequence are <code>first</code>, <code>prev</code>, <code>last</code>.</td>
<td>{{HTMLElement("a")}}, {{HTMLElement("area")}}, {{HTMLElement("link")}}</td>
<td><em>Нет</em></td>
</tr>
<tr>
<td><code>nofollow</code></td>
<td>Indicates that the linked document is not endorsed by the author of this one, for example if it has no control over it, if it is a bad example or if there is commercial relationship between the two (sold link). This link type may be used by some search engines that use popularity ranking techniques.</td>
<td>{{HTMLElement("a")}}, {{HTMLElement("area")}}</td>
<td>{{HTMLElement("link")}}</td>
</tr>
<tr>
<td><code>noopener</code></td>
<td>Instructs the browser to open the link without granting the new browsing context access to the document that opened it, by not setting the {{domxref("Window.opener")}} property on the opened window.<br>
<br>
This is especially useful when opening untrusted links, in order to ensure they cannot tamper with the originating document, while still providing the <code>Referer</code> HTTP header (unless <code>noreferrer</code> is used as well).</td>
<td>{{HTMLElement("a")}}, {{HTMLElement("area")}}</td>
<td>{{HTMLElement("link")}}</td>
</tr>
<tr>
<td><code>noreferrer</code></td>
<td>
<p>Prevents the browser, when navigating to another page, to send this page name, or any other value, as referrer via the <code>Referer:</code> HTTP header.<br>
(In Firefox, before Firefox 37, this worked only in links found in pages. Links clicked in the UI, like "Open in a new tab" via the contextual menu, ignored this).</p>
</td>
<td>{{HTMLElement("a")}}, {{HTMLElement("area")}}</td>
<td>{{HTMLElement("link")}}</td>
</tr>
<tr>
<td><code>pingback</code></td>
<td>Defines an external resource URI to call if one make a comment or a citation about the webpage. The protocol used to make such a call is defined in the <a href="http://www.hixie.ch/specs/pingback/pingback">Pingback 1.0</a> specification.<br>
<br>
<strong>Note:</strong> if the <code>X-Pingback:</code> HTTP header is also present, it supersedes the {{HTMLElement("link")}} element with this link type.</td>
<td>{{HTMLElement("link")}}</td>
<td>{{HTMLElement("a")}}, {{HTMLElement("area")}}</td>
</tr>
<tr>
<td><code>preconnect</code> {{experimental_inline}}</td>
<td>Provides a hint to the browser suggesting that it open a connection to the linked web site in advance, without disclosing any private information or downloading any content, so that when the link is followed the linked content can be fetched more quickly.</td>
<td>{{HTMLElement("link")}}</td>
<td>{{HTMLElement("a")}}, {{HTMLElement("area")}}</td>
</tr>
<tr>
<td><code>prefetch</code></td>
<td>Suggests that the browser fetch the linked resource in advance, as it is likely to be requested by the user. Starting with Firefox 44, the value of the {{htmlattrxref("crossorigin", "link")}} attribute is taken into consideration, making it possible to make anonymous prefetches.<br>
<br>
<strong>Note:</strong> The <a href="/en-US/docs/Link_prefetching_FAQ">Link Prefetch FAQ</a> has details on which links can be prefetched and on alternative methods.</td>
<td>{{HTMLElement("a")}} {{unimplemented_inline}},<br>
{{HTMLElement("area")}} {{unimplemented_inline}},<br>
{{HTMLElement("link")}}</td>
<td><em>Нет</em></td>
</tr>
<tr>
<td><code>preload</code></td>
<td>Tells the browser to download a resource because this resource will be needed later during the current navigation.</td>
<td>{{HTMLElement("link")}}</td>
<td>{{HTMLElement("a")}}, {{HTMLElement("area")}}</td>
</tr>
<tr>
<td><code>prerender</code> {{experimental_inline}}</td>
<td>Suggests that the browser fetch the linked resource in advance, and that it also render the prefetched content offscreen so it can be quickly presented to the user once needed.</td>
<td>{{HTMLElement("link")}}</td>
<td>{{HTMLElement("a")}}, {{HTMLElement("area")}}</td>
</tr>
<tr>
<td><code>prev</code></td>
<td>Indicates that the hyperlink leads to the <em>preceding</em> resource of the <em>sequence</em> the current page is in.<br>
<br>
<strong>Note:</strong> You can also use the <code>next</code> keyword to specify a link to the next page in the sequence.<br>
<br>
Although recognized, the synonym <code>previous</code> is incorrect and must be avoided.</td>
<td>{{HTMLElement("a")}}, {{HTMLElement("area")}}, {{HTMLElement("link")}}</td>
<td><em>Нет</em></td>
</tr>
<tr>
<td><code>search</code></td>
<td>Indicates that the hyperlink reference a document whose interface is specially designing for searching in this document, or site, and its resources.<br>
<br>
If the {{htmlattrxref("type","link")}} attribute is set to <code>application/opensearchdescription+xml </code>the resource is an <a href="/en-US/docs/Creating_OpenSearch_plugins_for_Firefox">OpenSearch plugin</a> that can be easily added to the interface of some browsers like Firefox or Internet Explorer.</td>
<td>{{HTMLElement("a")}}, {{HTMLElement("area")}}, {{HTMLElement("link")}}</td>
<td><em>Нет</em></td>
</tr>
<tr>
<td><code>stylesheet</code></td>
<td>Defines an external resource to be used as a stylesheet. If the <code>type</code> is not set, the browser should assume it is a <code>text/css</code> stylesheet until further inspection.<br>
<br>
If used in combination with the <code>alternate</code> keyword, it defines an <a href="/en-US/docs/Alternative_style_sheets">alternative style sheet</a>; in that case the {{htmlattrxref("title", "link")}} attribute must be present and not be the empty string.</td>
<td>{{HTMLElement("link")}}</td>
<td>{{HTMLElement("a")}}, {{HTMLElement("area")}}</td>
</tr>
<tr>
<td><code>sidebar</code> {{non-standard_inline}}</td>
<td>Indicates that the hyperlink leads to a resource that would be better suited for a secondary browsing context, like a <em>sidebar</em>. Browsers, that don't have such a context will ignore this keyword.<br>
<br>
While once part of the HTML specification, this has been removed from the spec and is only implemented by Firefox at this time.</td>
<td>{{HTMLElement("a")}}, {{HTMLElement("area")}}, {{HTMLElement("link")}}</td>
<td><em>Нет</em></td>
</tr>
<tr>
<td><code>tag</code></td>
<td>Indicates that the hyperlink refers to a document describing a <em>tag</em> that applies to this document.<br>
<br>
<strong>Note:</strong> This link type should not be set on links to a member of a tag cloud as these do not apply to a single document but to a set of pages.</td>
<td>{{HTMLElement("a")}}, {{HTMLElement("area")}}</td>
<td>{{HTMLElement("link")}}</td>
</tr>
<tr>
<td><code>up</code> {{obsolete_inline}}</td>
<td>Indicates that the page is part of a <em>hierarchical</em> structure and that the hyperlink leads to the higher level resource of that structure.<br>
<br>
The number of <code>up</code> link types indicates the depth difference between the current page and the linked resource.</td>
<td>{{HTMLElement("a")}}, {{HTMLElement("area")}}, {{HTMLElement("link")}}</td>
<td><em>Нет</em></td>
</tr>
</tbody>
</table>
<h2 id="Specifications" name="Specifications">Спецификации</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Спецификация</th>
<th scope="col">Статус</th>
<th scope="col">Комментарий</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('Preload','#link-type-preload','preload')}}</td>
<td>{{Spec2('Preload')}}</td>
<td>Добавлен <code>preload</code>.</td>
</tr>
<tr>
<td>{{SpecName('Resource Hints', '#dfn-preconnect', 'preconnect')}}</td>
<td>{{Spec2('Resource Hints')}}</td>
<td>Добавлены <code>dns-prefetch</code>, <code>preconnect</code> и <code>rerender</code>.</td>
</tr>
<tr>
<td>{{SpecName('HTML WHATWG', 'semantics.html#the-link-element', '<link>')}}</td>
<td>{{Spec2('HTML WHATWG')}}</td>
<td>Нет изменений с ({{SpecName('HTML WHATWG')}})</td>
</tr>
<tr>
<td>{{SpecName('HTML5 W3C', 'document-metadata.html#the-link-element', '<link>')}}</td>
<td>{{Spec2('HTML5 W3C')}}</td>
<td>Добавлены <code>tag</code>, <code>stylesheet</code>, <code>search</code>, <code>prev</code>, <code>prefetch</code>, <code>noreferrer</code>, <code>nofollow</code>, <code>next</code>, <code>license</code>, <code>icon</code>, <code>help</code>, <code>bookmark</code>, <code>author</code> и <code>alternate</code>.</td>
</tr>
<tr>
<td>{{SpecName('HTML4.01', 'struct/links.html#h-12.3', '<link>')}}</td>
<td>{{Spec2('HTML4.01')}}</td>
<td> </td>
</tr>
</tbody>
</table>
<h2 id="Поддержка_браузерами">Поддержка браузерами</h2>
<div>{{CompatibilityTable}}</div>
<div id="compat-desktop">
<table class="compat-table">
<tbody>
<tr>
<th>Возможность</th>
<th>Chrome</th>
<th>Firefox (Gecko)</th>
<th>Internet Explorer</th>
<th>Opera</th>
<th>Safari</th>
</tr>
<tr>
<td>Базовая поддержка</td>
<td>{{CompatVersionUnknown}}</td>
<td>{{CompatGeckoDesktop("1.0")}}</td>
<td>{{CompatVersionUnknown}}</td>
<td>{{CompatVersionUnknown}}</td>
<td>{{CompatVersionUnknown}}</td>
</tr>
<tr>
<td>Альтернативные таблицы стилей</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatGeckoDesktop("1.9")}}</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatVersionUnknown}}</td>
<td>{{CompatUnknown}}</td>
</tr>
<tr>
<td><code>prefetch</code></td>
<td>{{CompatUnknown}}</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatUnknown}}</td>
</tr>
<tr>
<td><code>prerender</code></td>
<td>{{CompatUnknown}}</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatUnknown}}</td>
</tr>
<tr>
<td><code>preconnect</code></td>
<td>{{CompatChrome(46)}}</td>
<td>{{CompatGeckoDesktop("39")}} [1]</td>
<td>{{CompatNo}}</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatNo}}</td>
</tr>
<tr>
<td><code>dns-prefetch</code></td>
<td>{{CompatChrome(46)}}</td>
<td>{{CompatGeckoDesktop("1.9")}}</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatUnknown}}</td>
</tr>
<tr>
<td><code>preload</code></td>
<td>{{CompatChrome(50.0)}}</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatUnknown}}</td>
</tr>
<tr>
<td><code>noopener</code></td>
<td>{{CompatChrome(49.0)}}</td>
<td> </td>
<td> </td>
<td>{{CompatOpera(36)}}</td>
<td> </td>
</tr>
<tr>
<td><code>manifest</code></td>
<td>{{CompatNo}} [2]</td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
</tbody>
</table>
</div>
<div id="compat-mobile">
<table class="compat-table">
<tbody>
<tr>
<th>Возможность</th>
<th>Android</th>
<th>Android Webview</th>
<th>Firefox Mobile (Gecko)</th>
<th>IE Mobile</th>
<th>Opera Mobile</th>
<th>Safari Mobile</th>
<th>Chrome for Android</th>
</tr>
<tr>
<td>Базовая поддержка</td>
<td>{{CompatVersionUnknown}}</td>
<td>{{CompatVersionUnknown}}</td>
<td>{{CompatGeckoMobile("1.0")}}</td>
<td>{{CompatVersionUnknown}}</td>
<td>{{CompatVersionUnknown}}</td>
<td>{{CompatVersionUnknown}}</td>
<td>{{CompatVersionUnknown}}</td>
</tr>
<tr>
<td>Альтернативные таблицы стилей</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatGeckoMobile("2.0")}}</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatUnknown}}</td>
</tr>
<tr>
<td><code>prefetch</code></td>
<td>{{CompatNo}}</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatUnknown}}</td>
</tr>
<tr>
<td><code>prerender</code></td>
<td>{{CompatUnknown}}</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatUnknown}}</td>
</tr>
<tr>
<td><code>preconnect</code></td>
<td>{{CompatChrome(46)}}</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatGeckoMobile("39")}} </td>
<td>{{CompatUnknown}}</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatChrome(42.0)}} [1]</td>
</tr>
<tr>
<td><code>dns-prefetch</code></td>
<td>{{CompatChrome(46)}}</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatGeckoMobile("1.9")}}</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatVersionUnknown}}</td>
</tr>
<tr>
<td><code>preload</code></td>
<td>{{CompatNo}}</td>
<td>{{CompatChrome(50.0)}}</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatUnknown}}</td>
<td>{{CompatChrome(50.0)}}</td>
</tr>
<tr>
<td><code>noopener</code></td>
<td>{{CompatNo}}</td>
<td>{{CompatChrome(49.0)}}</td>
<td> </td>
<td> </td>
<td>32</td>
<td> </td>
<td>{{CompatChrome(49.0)}}</td>
</tr>
<tr>
<td><code>manifest</code></td>
<td>{{CompatNo}}</td>
<td>{{CompatChrome(39.0)}}</td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td>{{CompatChrome(39.0)}}</td>
</tr>
</tbody>
</table>
</div>
<p>[1] До Firefox 41, не подчиняется атрибуту {{htmlattrxref("crossorigin", 'link')}}.</p>
<p>[2] Поскольку это мобильная функция, ПК игнорирует его, а не бросает ошибку.</p>
|