-
Notifications
You must be signed in to change notification settings - Fork 2
/
f.html
7796 lines (3913 loc) · 944 KB
/
f.html
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
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
title: "Terms starting with letter f"
layout: base
---
<p class=legend>Color key: <code class=webidl>WebIDL</code> <code class='css'>CSS</code> <code class='markup'>Markup</code> <code class='http'>HTTP</code></p>
<dl>
<dt id="f@@DOMMatrix@attribute"><code class=prefix><a href='d.html#DOMMatrix@@@@interface'>DOMMatrix</a>.</code><span><strong><code class=webidl>f</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#f%40%40DOMMatrix%40attribute' aria-label="Permalink for <a href='d.html#DOMMatrix@@@@interface'>DOMMatrix</a>.f">§</a></span></dt>
<dt><code class=prefix><a href='d.html#DOMMatrixReadOnly@@@@interface'>DOMMatrixReadOnly</a>.</code><span><strong><code class=webidl>f</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#f%40%40DOMMatrix%40attribute' aria-label="Permalink for <a href='d.html#DOMMatrixReadOnly@@@@interface'>DOMMatrixReadOnly</a>.f">§</a></span></dt>
<dd>Defined in <strong title='f is defined in Geometry Interfaces 1'><a href=https://drafts.fxtf.org/geometry-1/#dom-dommatrixreadonly-f>Geometry Interfaces 1</a></strong> </dd>
<dt id="f@@DOMMatrix2DInit@dict-member"><code class=prefix><a href='d.html#DOMMatrix2DInit@@@@dictionary'>DOMMatrix2DInit</a>.</code><span><strong><code class=webidl>f</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#f%40%40DOMMatrix2DInit%40dict-member' aria-label="Permalink for <a href='d.html#DOMMatrix2DInit@@@@dictionary'>DOMMatrix2DInit</a>.f">§</a></span></dt>
<dd>Defined in <strong title='f is defined in Geometry Interfaces 1'><a href=https://drafts.fxtf.org/geometry-1/#dom-dommatrix2dinit-f>Geometry Interfaces 1</a></strong> </dd>
<dt id="f32@@ValueType@enum-value"><code class=prefix></code><span><strong><code class=webidl>"f32"</code></strong> (<em>value for <a href='v.html#ValueType@@@@enum'><code>ValueType</code></a> WebIDL enumeration</em>) <a class='self-link' href='#f32%40%40ValueType%40enum-value' aria-label="Permalink for f32">§</a></span></dt>
<dd>Defined in <strong title='f32 is defined in WebAssembly JavaScript Interface: Content Security Policy'><a href=https://webassembly.github.io/content-security-policy/js-api/#dom-valuetype-f32>WebAssembly JavaScript Interface: Content Security Policy</a></strong> , <strong title='f32 is defined in WebAssembly JavaScript Interface: ESM Integration'><a href=https://webassembly.github.io/esm-integration/js-api/#dom-valuetype-f32>WebAssembly JavaScript Interface: ESM Integration</a></strong> , <strong title='f32 is defined in WebAssembly JavaScript Interface: Exception Handling'><a href=https://webassembly.github.io/exception-handling/js-api/#dom-valuetype-f32>WebAssembly JavaScript Interface: Exception Handling</a></strong> , <strong title='f32 is defined in WebAssembly JavaScript Interface: Promise Integration'><a href=https://webassembly.github.io/js-promise-integration/js-api/#dom-valuetype-f32>WebAssembly JavaScript Interface: Promise Integration</a></strong> , <strong title='f32 is defined in WebAssembly JavaScript Interface: JS String Builtins'><a href=https://webassembly.github.io/js-string-builtins/js-api/#dom-valuetype-f32>WebAssembly JavaScript Interface: JS String Builtins</a></strong> , <strong title='f32 is defined in WebAssembly JavaScript Interface: Type Reflection'><a href=https://webassembly.github.io/js-types/js-api/#dom-valuetype-f32>WebAssembly JavaScript Interface: Type Reflection</a></strong> , <strong title='f32 is defined in WebAssembly JavaScript Interface: Threading'><a href=https://webassembly.github.io/threads/js-api/#dom-valuetype-f32>WebAssembly JavaScript Interface: Threading</a></strong> , <strong title='f32 is defined in WebAssembly JavaScript Interface'><a href=https://webassembly.github.io/spec/js-api/#dom-valuetype-f32>WebAssembly JavaScript Interface</a></strong> </dd>
<dt id="f32@@AudioSampleFormat@enum-value"><code class=prefix></code><span><strong><code class=webidl>"f32"</code></strong> (<em>value for <a href='a.html#AudioSampleFormat@@@@enum'><code>AudioSampleFormat</code></a> WebIDL enumeration</em>) <a class='self-link' href='#f32%40%40AudioSampleFormat%40enum-value' aria-label="Permalink for f32">§</a></span></dt>
<dd>Defined in <strong title='f32 is defined in WebCodecs'><a href=https://w3c.github.io/webcodecs/#dom-audiosampleformat-f32>WebCodecs</a></strong> </dd>
<dd>Referenced in
<a href=https://w3c.github.io/webcodecs/pcm_codec_registration.html title='f32 is referenced by Linear PCM WebCodecs Registration'>Linear PCM WebCodecs Registration</a></dd>
<dt id="f32-planar@@AudioSampleFormat@enum-value"><code class=prefix></code><span><strong><code class=webidl>"f32-planar"</code></strong> (<em>value for <a href='a.html#AudioSampleFormat@@@@enum'><code>AudioSampleFormat</code></a> WebIDL enumeration</em>) <a class='self-link' href='#f32-planar%40%40AudioSampleFormat%40enum-value' aria-label="Permalink for f32-planar">§</a></span></dt>
<dd>Defined in <strong title='f32-planar is defined in WebCodecs'><a href=https://w3c.github.io/webcodecs/#dom-audiosampleformat-f32-planar>WebCodecs</a></strong> </dd>
<dt id="f64@@ValueType@enum-value"><code class=prefix></code><span><strong><code class=webidl>"f64"</code></strong> (<em>value for <a href='v.html#ValueType@@@@enum'><code>ValueType</code></a> WebIDL enumeration</em>) <a class='self-link' href='#f64%40%40ValueType%40enum-value' aria-label="Permalink for f64">§</a></span></dt>
<dd>Defined in <strong title='f64 is defined in WebAssembly JavaScript Interface: Content Security Policy'><a href=https://webassembly.github.io/content-security-policy/js-api/#dom-valuetype-f64>WebAssembly JavaScript Interface: Content Security Policy</a></strong> , <strong title='f64 is defined in WebAssembly JavaScript Interface: ESM Integration'><a href=https://webassembly.github.io/esm-integration/js-api/#dom-valuetype-f64>WebAssembly JavaScript Interface: ESM Integration</a></strong> , <strong title='f64 is defined in WebAssembly JavaScript Interface: Exception Handling'><a href=https://webassembly.github.io/exception-handling/js-api/#dom-valuetype-f64>WebAssembly JavaScript Interface: Exception Handling</a></strong> , <strong title='f64 is defined in WebAssembly JavaScript Interface: Promise Integration'><a href=https://webassembly.github.io/js-promise-integration/js-api/#dom-valuetype-f64>WebAssembly JavaScript Interface: Promise Integration</a></strong> , <strong title='f64 is defined in WebAssembly JavaScript Interface: JS String Builtins'><a href=https://webassembly.github.io/js-string-builtins/js-api/#dom-valuetype-f64>WebAssembly JavaScript Interface: JS String Builtins</a></strong> , <strong title='f64 is defined in WebAssembly JavaScript Interface: Type Reflection'><a href=https://webassembly.github.io/js-types/js-api/#dom-valuetype-f64>WebAssembly JavaScript Interface: Type Reflection</a></strong> , <strong title='f64 is defined in WebAssembly JavaScript Interface: Threading'><a href=https://webassembly.github.io/threads/js-api/#dom-valuetype-f64>WebAssembly JavaScript Interface: Threading</a></strong> , <strong title='f64 is defined in WebAssembly JavaScript Interface'><a href=https://webassembly.github.io/spec/js-api/#dom-valuetype-f64>WebAssembly JavaScript Interface</a></strong> </dd>
<dt id="face@@HTMLFontElement@attribute"><code class=prefix><a href='h.html#HTMLFontElement@@@@interface'>HTMLFontElement</a>.</code><span><strong><code class=webidl>face</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#face%40%40HTMLFontElement%40attribute' aria-label="Permalink for <a href='h.html#HTMLFontElement@@@@interface'>HTMLFontElement</a>.face">§</a></span></dt>
<dd>Defined in <strong title='face is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/obsolete.html#dom-font-face>HTML</a></strong> </dd>
<dt id="FaceDetector@@@@interface"><code class=prefix></code><span><strong><code class=webidl>FaceDetector</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#FaceDetector%40%40%40%40interface' aria-label="Permalink for FaceDetector">§</a></span></dt>
<dd>Defined in <strong title='FaceDetector is defined in Accelerated Shape Detection in Images'><a href=https://wicg.github.io/shape-detection-api/#facedetector>Accelerated Shape Detection in Images</a></strong> </dd>
<dd>Related terms: <code>new </code><a href='f.html#FaceDetector(faceDetectorOptions)@@FaceDetector@constructor'><code>FaceDetector(faceDetectorOptions)</code></a>, <code>FaceDetector.</code><a href='d.html#detect(image)@@FaceDetector@method'><code>detect(image)</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/FaceDetector.html' title='FaceDetector entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="FaceDetector(faceDetectorOptions)@@FaceDetector@constructor"><code class=prefix>new </code><span><strong><code class=webidl>FaceDetector(faceDetectorOptions)</code></strong> (<em>WebIDL constructor</em>) <a class='self-link' href='#FaceDetector(faceDetectorOptions)%40%40FaceDetector%40constructor' aria-label="Permalink for new FaceDetector(faceDetectorOptions)">§</a></span></dt>
<dd>Defined in <strong title='FaceDetector(faceDetectorOptions) is defined in Accelerated Shape Detection in Images'><a href=https://wicg.github.io/shape-detection-api/#dom-facedetector-facedetector>Accelerated Shape Detection in Images</a></strong> </dd>
<dt id="FaceDetectorOptions@@@@dictionary"><code class=prefix></code><span><strong><code class=webidl>FaceDetectorOptions</code></strong> (<em>WebIDL dictionary</em>) <a class='self-link' href='#FaceDetectorOptions%40%40%40%40dictionary' aria-label="Permalink for FaceDetectorOptions">§</a></span></dt>
<dd>Defined in <strong title='FaceDetectorOptions is defined in Accelerated Shape Detection in Images'><a href=https://wicg.github.io/shape-detection-api/#dictdef-facedetectoroptions>Accelerated Shape Detection in Images</a></strong> </dd>
<dd>Related terms: <code>FaceDetectorOptions.</code><a href='f.html#fastMode@@FaceDetectorOptions@dict-member'><code>fastMode</code></a>, <code>FaceDetectorOptions.</code><a href='m.html#maxDetectedFaces@@FaceDetectorOptions@dict-member'><code>maxDetectedFaces</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/FaceDetectorOptions.html' title='FaceDetectorOptions entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="Facing Pages@@css-page%%dfn"><code class=prefix></code><span><strong>Facing Pages</strong> (<em>concept</em>) <a class='self-link' href='#Facing%20Pages%40%40css-page%25%25dfn' aria-label="Permalink for Facing Pages">§</a></span></dt>
<dd>Defined in <strong title='Facing Pages is defined in CSS Paged Media 3'><a href=https://drafts.csswg.org/css-page-3/#facing-pages>CSS Paged Media 3</a></strong> </dd>
<dt id="facingMode@@MediaTrackCapabilities@dict-member"><code class=prefix><a href='m.html#MediaTrackCapabilities@@@@dictionary'>MediaTrackCapabilities</a>.</code><span><strong><code class=webidl>facingMode</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#facingMode%40%40MediaTrackCapabilities%40dict-member' aria-label="Permalink for <a href='m.html#MediaTrackCapabilities@@@@dictionary'>MediaTrackCapabilities</a>.facingMode">§</a></span></dt>
<dd>Defined in <strong title='facingMode is defined in Media Capture and Streams'><a href=https://w3c.github.io/mediacapture-main/#dom-mediatrackcapabilities-facingmode>Media Capture and Streams</a></strong> </dd>
<dt id="facingMode@@MediaTrackConstraintSet@dict-member"><code class=prefix><a href='m.html#MediaTrackConstraintSet@@@@dictionary'>MediaTrackConstraintSet</a>.</code><span><strong><code class=webidl>facingMode</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#facingMode%40%40MediaTrackConstraintSet%40dict-member' aria-label="Permalink for <a href='m.html#MediaTrackConstraintSet@@@@dictionary'>MediaTrackConstraintSet</a>.facingMode">§</a></span></dt>
<dd>Defined in <strong title='facingMode is defined in Media Capture and Streams'><a href=https://w3c.github.io/mediacapture-main/#dom-mediatrackconstraintset-facingmode>Media Capture and Streams</a></strong> </dd>
<dt id="facingMode@@MediaTrackSettings@dict-member"><code class=prefix><a href='m.html#MediaTrackSettings@@@@dictionary'>MediaTrackSettings</a>.</code><span><strong><code class=webidl>facingMode</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#facingMode%40%40MediaTrackSettings%40dict-member' aria-label="Permalink for <a href='m.html#MediaTrackSettings@@@@dictionary'>MediaTrackSettings</a>.facingMode">§</a></span></dt>
<dd>Defined in <strong title='facingMode is defined in Media Capture and Streams'><a href=https://w3c.github.io/mediacapture-main/#dom-mediatracksettings-facingmode>Media Capture and Streams</a></strong> </dd>
<dt id="facingMode@@MediaTrackSupportedConstraints@dict-member"><code class=prefix><a href='m.html#MediaTrackSupportedConstraints@@@@dictionary'>MediaTrackSupportedConstraints</a>.</code><span><strong><code class=webidl>facingMode</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#facingMode%40%40MediaTrackSupportedConstraints%40dict-member' aria-label="Permalink for <a href='m.html#MediaTrackSupportedConstraints@@@@dictionary'>MediaTrackSupportedConstraints</a>.facingMode">§</a></span></dt>
<dd>Defined in <strong title='facingMode is defined in Media Capture and Streams'><a href=https://w3c.github.io/mediacapture-main/#dom-mediatracksupportedconstraints-facingmode>Media Capture and Streams</a></strong> </dd>
<dt id="facingMode@@MockCameraConfiguration@dict-member"><code class=prefix><a href='m.html#MockCameraConfiguration@@@@dictionary'>MockCameraConfiguration</a>.</code><span><strong><code class=webidl>facingMode</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#facingMode%40%40MockCameraConfiguration%40dict-member' aria-label="Permalink for <a href='m.html#MockCameraConfiguration@@@@dictionary'>MockCameraConfiguration</a>.facingMode">§</a></span></dt>
<dd>Defined in <strong title='facingMode is defined in Media Capture Automation'><a href=https://w3c.github.io/mediacapture-automation/#dom-mockcameraconfiguration-facingmode>Media Capture Automation</a></strong> </dd>
<dt id="fade@@text-overflow@value"><code class=prefix></code><span><strong><code class=css>fade</code></strong> (<em>CSS value for <a href='t.html#text-overflow@@@@property'><code>text-overflow</code></a> </em>) <a class='self-link' href='#fade%40%40text-overflow%40value' aria-label="Permalink for fade">§</a></span></dt>
<dd>Defined in <strong title='fade is defined in CSS Overflow 4'><a href=https://drafts.csswg.org/css-overflow-4/#valdef-text-overflow-fade>CSS Overflow 4</a></strong> </dd>
<dt id="fade()@@text-overflow@function"><code class=prefix></code><span><strong><code class=css>fade()</code></strong> (<em>CSS function for <a href='t.html#text-overflow@@@@property'><code>text-overflow</code></a> </em>) <a class='self-link' href='#fade()%40%40text-overflow%40function' aria-label="Permalink for fade()">§</a></span></dt>
<dd>Defined in <strong title='fade() is defined in CSS Overflow 4'><a href=https://drafts.csswg.org/css-overflow-4/#funcdef-text-overflow-fade>CSS Overflow 4</a></strong> </dd>
<dt id="fail@@PaymentComplete@enum-value"><code class=prefix></code><span><strong><code class=webidl>"fail"</code></strong> (<em>value for <a href='p.html#PaymentComplete@@@@enum'><code>PaymentComplete</code></a> WebIDL enumeration</em>) <a class='self-link' href='#fail%40%40PaymentComplete%40enum-value' aria-label="Permalink for fail">§</a></span></dt>
<dd>Defined in <strong title='fail is defined in Payment Request API'><a href=https://w3c.github.io/payment-request/#dom-paymentcomplete-fail>Payment Request API</a></strong> </dd>
<dt id="failed@@RTCStatsIceCandidatePairState@enum-value"><code class=prefix></code><span><strong><code class=webidl>"failed"</code></strong> (<em>value for <a href='r.html#RTCStatsIceCandidatePairState@@@@enum'><code>RTCStatsIceCandidatePairState</code></a> WebIDL enumeration</em>) <a class='self-link' href='#failed%40%40RTCStatsIceCandidatePairState%40enum-value' aria-label="Permalink for failed">§</a></span></dt>
<dd>Defined in <strong title='failed is defined in WebRTC Statistics'><a href=https://w3c.github.io/webrtc-stats/#dom-rtcstatsicecandidatepairstate-failed>WebRTC Statistics</a></strong> </dd>
<dt id="failed@@RTCPeerConnectionState@enum-value"><code class=prefix></code><span><strong><code class=webidl>"failed"</code></strong> (<em>value for <a href='r.html#RTCPeerConnectionState@@@@enum'><code>RTCPeerConnectionState</code></a> WebIDL enumeration</em>) <a class='self-link' href='#failed%40%40RTCPeerConnectionState%40enum-value' aria-label="Permalink for failed">§</a></span></dt>
<dd>Defined in <strong title='failed is defined in WebRTC 1.0'><a href=https://w3c.github.io/webrtc-pc/#dom-rtcpeerconnectionstate-failed>WebRTC 1.0</a></strong> </dd>
<dt id="failed@@RTCIceConnectionState@enum-value"><code class=prefix></code><span><strong><code class=webidl>"failed"</code></strong> (<em>value for <a href='r.html#RTCIceConnectionState@@@@enum'><code>RTCIceConnectionState</code></a> WebIDL enumeration</em>) <a class='self-link' href='#failed%40%40RTCIceConnectionState%40enum-value' aria-label="Permalink for failed">§</a></span></dt>
<dd>Defined in <strong title='failed is defined in WebRTC 1.0'><a href=https://w3c.github.io/webrtc-pc/#dom-rtciceconnectionstate-failed>WebRTC 1.0</a></strong> </dd>
<dt id="failed@@RTCDtlsTransportState@enum-value"><code class=prefix></code><span><strong><code class=webidl>"failed"</code></strong> (<em>value for <a href='r.html#RTCDtlsTransportState@@@@enum'><code>RTCDtlsTransportState</code></a> WebIDL enumeration</em>) <a class='self-link' href='#failed%40%40RTCDtlsTransportState%40enum-value' aria-label="Permalink for failed">§</a></span></dt>
<dd>Defined in <strong title='failed is defined in WebRTC 1.0'><a href=https://w3c.github.io/webrtc-pc/#dom-rtcdtlstransportstate-failed>WebRTC 1.0</a></strong> </dd>
<dt id="failed@@RTCIceTransportState@enum-value"><code class=prefix></code><span><strong><code class=webidl>"failed"</code></strong> (<em>value for <a href='r.html#RTCIceTransportState@@@@enum'><code>RTCIceTransportState</code></a> WebIDL enumeration</em>) <a class='self-link' href='#failed%40%40RTCIceTransportState%40enum-value' aria-label="Permalink for failed">§</a></span></dt>
<dd>Defined in <strong title='failed is defined in WebRTC 1.0'><a href=https://w3c.github.io/webrtc-pc/#dom-rtcicetransportstate-failed>WebRTC 1.0</a></strong> </dd>
<dt id="[[FailedFonts]]@@FontFaceSet@attribute"><code class=prefix><a href='f.html#FontFaceSet@@@@interface'>FontFaceSet</a>.</code><span><strong><code class=webidl>[[FailedFonts]]</code></strong> (<em>internal slot</em>) <a class='self-link' href='#%5B%5BFailedFonts%5D%5D%40%40FontFaceSet%40attribute' aria-label="Permalink for <a href='f.html#FontFaceSet@@@@interface'>FontFaceSet</a>.[[FailedFonts]]">§</a></span></dt>
<dd>Defined in <strong title='[[FailedFonts]] is defined in CSS Font Loading 3'><a href=https://drafts.csswg.org/css-font-loading-3/#dom-fontfaceset-failedfonts-slot>CSS Font Loading 3</a></strong> </dd>
<dt id="failOp@@GPUStencilFaceState@dict-member"><code class=prefix><a href='g.html#GPUStencilFaceState@@@@dictionary'>GPUStencilFaceState</a>.</code><span><strong><code class=webidl>failOp</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#failOp%40%40GPUStencilFaceState%40dict-member' aria-label="Permalink for <a href='g.html#GPUStencilFaceState@@@@dictionary'>GPUStencilFaceState</a>.failOp">§</a></span></dt>
<dd>Defined in <strong title='failOp is defined in WebGPU'><a href=https://gpuweb.github.io/gpuweb/#dom-gpustencilfacestate-failop>WebGPU</a></strong> </dd>
<dt id="failover class@@network-reporting%%dfn"><code class=prefix></code><span><strong>failover class</strong> (<em>concept</em>) <a class='self-link' href='#failover%20class%40%40network-reporting%25%25dfn' aria-label="Permalink for failover class">§</a></span></dt>
<dd>Defined in <strong title='failover class is defined in Network Reporting API'><a href=https://w3c.github.io/reporting/network-reporting.html#failover-class>Network Reporting API</a></strong> </dd>
<dt id="failure@@BackgroundFetchResult@enum-value"><code class=prefix></code><span><strong><code class=webidl>"failure"</code></strong> (<em>value for <a href='b.html#BackgroundFetchResult@@@@enum'><code>BackgroundFetchResult</code></a> WebIDL enumeration</em>) <a class='self-link' href='#failure%40%40BackgroundFetchResult%40enum-value' aria-label="Permalink for failure">§</a></span></dt>
<dd>Defined in <strong title='failure is defined in Background Fetch'><a href=https://wicg.github.io/background-fetch/#dom-backgroundfetchresult-failure>Background Fetch</a></strong> </dd>
<dt id="failureReason@@BackgroundFetchRegistration@attribute"><code class=prefix><a href='b.html#BackgroundFetchRegistration@@@@interface'>BackgroundFetchRegistration</a>.</code><span><strong><code class=webidl>failureReason</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#failureReason%40%40BackgroundFetchRegistration%40attribute' aria-label="Permalink for <a href='b.html#BackgroundFetchRegistration@@@@interface'>BackgroundFetchRegistration</a>.failureReason">§</a></span></dt>
<dd>Defined in <strong title='failureReason is defined in Background Fetch'><a href=https://wicg.github.io/background-fetch/#dom-backgroundfetchregistration-failurereason>Background Fetch</a></strong> </dd>
<dt id="failures@@endpoint@attribute"><code class=prefix><a href='e.html#endpoint@@reporting%25%25dfn'>endpoint</a>.</code><span><strong><code class=webidl>failures</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#failures%40%40endpoint%40attribute' aria-label="Permalink for <a href='e.html#endpoint@@reporting%25%25dfn'>endpoint</a>.failures">§</a></span></dt>
<dd>Defined in <strong title='failures is defined in Reporting API'><a href=https://w3c.github.io/reporting/#dom-endpoint-failures>Reporting API</a></strong> </dd>
<dd>Referenced in
<a href=https://w3c.github.io/reporting/network-reporting.html title='failures is referenced by Network Reporting API'>Network Reporting API</a></dd>
<dt id="fair@@PressureState@enum-value"><code class=prefix></code><span><strong><code class=webidl>"fair"</code></strong> (<em>value for <a href='p.html#PressureState@@@@enum'><code>PressureState</code></a> WebIDL enumeration</em>) <a class='self-link' href='#fair%40%40PressureState%40enum-value' aria-label="Permalink for fair">§</a></span></dt>
<dd>Defined in <strong title='fair is defined in Compute Pressure 1'><a href=https://w3c.github.io/compute-pressure/#dom-pressurestate-fair>Compute Pressure 1</a></strong> </dd>
<dt id="[[fallback]]@@adapter@attribute"><code class=prefix></code><span><strong><code class=webidl>[[fallback]]</code></strong> (<em>internal slot for <code>adapter</code> </em>) <a class='self-link' href='#%5B%5Bfallback%5D%5D%40%40adapter%40attribute' aria-label="Permalink for [[fallback]]">§</a></span></dt>
<dd>Defined in <strong title='[[fallback]] is defined in WebGPU'><a href=https://gpuweb.github.io/gpuweb/#dom-adapter-fallback-slot>WebGPU</a></strong> </dd>
<dt id="fallback@@@counter-style@descriptor"><code class=prefix></code><span><strong><code class=css>fallback</code></strong> (<em>CSS descriptor for <a href='c.html#@counter-style@@@@at-rule'><code>@counter-style</code></a> </em>) <a class='self-link' href='#fallback%40%40%40counter-style%40descriptor' aria-label="Permalink for fallback">§</a></span></dt>
<dd>Defined in <strong title='fallback is defined in CSS Counter Styles 3'><a href=https://drafts.csswg.org/css-counter-styles-3/#descdef-counter-style-fallback>CSS Counter Styles 3</a></strong> </dd>
<dt id="fallback@@@font-face/font-display@value"><code class=prefix></code><span><strong><code class=css>fallback</code></strong> (<em>CSS value for <a href='f.html#font-display@@@font-face@descriptor'><code>font-display</code></a> descriptor of <a href='f.html#@font-face@@@@at-rule'><code>@font-face</code></a> @rule </em>) <a class='self-link' href='#fallback%40%40%40font-face%2Ffont-display%40value' aria-label="Permalink for fallback">§</a></span></dt>
<dd>Defined in <strong title='fallback is defined in CSS Fonts 4'><a href=https://drafts.csswg.org/css-fonts-4/#valdef-font-face-font-display-fallback>CSS Fonts 4</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-2023/ title='fallback is referenced by CSS Snapshot 2023'>CSS Snapshot 2023</a></dd>
<dt id="fallback@@css-sizing%%dfn"><code class=prefix></code><span><strong>fallback</strong> (<em>concept</em>) <a class='self-link' href='#fallback%40%40css-sizing%25%25dfn' aria-label="Permalink for fallback">§</a></span></dt>
<dd>Defined in <strong title='fallback is defined in CSS Sizing 3'><a href=https://drafts.csswg.org/css-sizing-3/#fallback>CSS Sizing 3</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-writing-modes-3/ title='fallback is referenced by CSS Writing Modes 3'>CSS Writing Modes 3</a>,
<a href=https://drafts.csswg.org/css-writing-modes-4/ title='fallback is referenced by CSS Writing Modes 4'>CSS Writing Modes 4</a></dd>
<dt id="fallback@@stroke-linejoin@value"><code class=prefix></code><span><strong><code class=css>fallback</code></strong> (<em>CSS value for <a href='s.html#stroke-linejoin@@@@property'><code>stroke-linejoin</code></a> </em>) <a class='self-link' href='#fallback%40%40stroke-linejoin%40value' aria-label="Permalink for fallback">§</a></span></dt>
<dd>Defined in <strong title='fallback is defined in CSS Fill and Stroke 3'><a href=https://drafts.fxtf.org/fill-stroke-3/#valdef-stroke-linejoin-fallback>CSS Fill and Stroke 3</a></strong> </dd>
<dt id="fallback@@CSSCounterStyleRule@attribute"><code class=prefix><a href='c.html#CSSCounterStyleRule@@@@interface'>CSSCounterStyleRule</a>.</code><span><strong><code class=webidl>fallback</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#fallback%40%40CSSCounterStyleRule%40attribute' aria-label="Permalink for <a href='c.html#CSSCounterStyleRule@@@@interface'>CSSCounterStyleRule</a>.fallback">§</a></span></dt>
<dd>Defined in <strong title='fallback is defined in CSS Counter Styles 3'><a href=https://drafts.csswg.org/css-counter-styles-3/#dom-csscounterstylerule-fallback>CSS Counter Styles 3</a></strong> </dd>
<dt id="fallback@@CSSVariableReferenceValue@attribute"><code class=prefix><a href='c.html#CSSVariableReferenceValue@@@@interface'>CSSVariableReferenceValue</a>.</code><span><strong><code class=webidl>fallback</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#fallback%40%40CSSVariableReferenceValue%40attribute' aria-label="Permalink for <a href='c.html#CSSVariableReferenceValue@@@@interface'>CSSVariableReferenceValue</a>.fallback">§</a></span></dt>
<dd>Defined in <strong title='fallback is defined in CSS Typed OM 1'><a href=https://drafts.css-houdini.org/css-typed-om-1/#dom-cssvariablereferencevalue-fallback>CSS Typed OM 1</a></strong> </dd>
<dt id="fallback alignment@@css-align%%dfn"><code class=prefix></code><span><strong>fallback alignment</strong> (<em>concept</em>) <a class='self-link' href='#fallback%20alignment%40%40css-align%25%25dfn' aria-label="Permalink for fallback alignment">§</a></span></dt>
<dd>Defined in <strong title='fallback alignment is defined in CSS Box Alignment 3'><a href=https://drafts.csswg.org/css-align-3/#fallback-alignment>CSS Box Alignment 3</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-2022/ title='fallback alignment is referenced by CSS Snapshot 2022'>CSS Snapshot 2022</a>,
<a href=https://drafts.csswg.org/css-2023/ title='fallback alignment is referenced by CSS Snapshot 2023'>CSS Snapshot 2023</a>,
<a href=https://drafts.csswg.org/css-grid-1/ title='fallback alignment is referenced by CSS Grid Layout 1'>CSS Grid Layout 1</a>,
<a href=https://drafts.csswg.org/css-grid-2/ title='fallback alignment is referenced by CSS Grid Layout 2'>CSS Grid Layout 2</a>,
<a href=https://drafts.csswg.org/css-grid-3/ title='fallback alignment is referenced by CSS Grid Layout 3'>CSS Grid Layout 3</a></dd>
<dt id="'false'@@css-conditional-values%%dfn"><code class=prefix></code><span><strong>'false'</strong> (<em>concept</em>) <a class='self-link' href='#'false'%40%40css-conditional-values%25%25dfn' aria-label="Permalink for 'false'">§</a></span></dt>
<dd>Defined in <strong title=''false' is defined in CSS Conditional Values 1'><a href=https://drafts.csswg.org/css-conditional-values-1/#false>CSS Conditional Values 1</a></strong> </dd>
<dt id="false@@html-global/contenteditable@attr-value"><code class=prefix></code><span><strong><code class=markup>false</code></strong> (<em>value for <a href='c.html#contenteditable@@html-global@element-attr'><code>contenteditable</code></a> attribute of <code>html-global</code> </em>) <a class='self-link' href='#false%40%40html-global%2Fcontenteditable%40attr-value' aria-label="Permalink for false">§</a></span></dt>
<dd>Defined in <strong title='false is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/interaction.html#attr-contenteditable-false>HTML</a></strong> </dd>
<dt id="false@@html-global/spellcheck@attr-value"><code class=prefix></code><span><strong><code class=markup>false</code></strong> (<em>value for <a href='s.html#spellcheck@@html-global@element-attr'><code>spellcheck</code></a> attribute of <code>html-global</code> </em>) <a class='self-link' href='#false%40%40html-global%2Fspellcheck%40attr-value' aria-label="Permalink for false">§</a></span></dt>
<dd>Defined in <strong title='false is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/interaction.html#attr-spellcheck-false>HTML</a></strong> </dd>
<dt id="false@@html-global/writingsuggestions@attr-value"><code class=prefix></code><span><strong><code class=markup>false</code></strong> (<em>value for <a href='w.html#writingsuggestions@@html-global@element-attr'><code>writingsuggestions</code></a> attribute of <code>html-global</code> </em>) <a class='self-link' href='#false%40%40html-global%2Fwritingsuggestions%40attr-value' aria-label="Permalink for false">§</a></span></dt>
<dd>Defined in <strong title='false is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/interaction.html#attr-writingsuggestions-false>HTML</a></strong> </dd>
<dt id="false@@html-global/draggable@attr-value"><code class=prefix></code><span><strong><code class=markup>false</code></strong> (<em>value for <a href='d.html#draggable@@html-global@element-attr'><code>draggable</code></a> attribute of <code>html-global</code> </em>) <a class='self-link' href='#false%40%40html-global%2Fdraggable%40attr-value' aria-label="Permalink for false">§</a></span></dt>
<dd>Defined in <strong title='false is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/dnd.html#attr-draggable-false>HTML</a></strong> </dd>
<dt id="false@@@custom-media@value"><code class=prefix></code><span><strong><code class=css>false</code></strong> (<em>CSS value for <a href='c.html#@custom-media@@@@at-rule'><code>@custom-media</code></a> </em>) <a class='self-link' href='#false%40%40%40custom-media%40value' aria-label="Permalink for false">§</a></span></dt>
<dd>Defined in <strong title='false is defined in Media Queries 5'><a href=https://drafts.csswg.org/mediaqueries-5/#valdef-custom-media-false>Media Queries 5</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-conditional-values-1/ title='false is referenced by CSS Conditional Values 1'>CSS Conditional Values 1</a>,
<a href=https://drafts.csswg.org/css-conditional-5/ title='false is referenced by CSS Conditional 5'>CSS Conditional 5</a>,
<a href=https://drafts.csswg.org/css-round-display-1/ title='false is referenced by CSS Round Display 1'>CSS Round Display 1</a>,
<a href=https://drafts.fxtf.org/filter-effects-1/ title='false is referenced by Filter Effects 1'>Filter Effects 1</a></dd>
<dt id="falseValue@@MLWhereSupportLimits@dict-member"><code class=prefix><a href='m.html#MLWhereSupportLimits@@@@dictionary'>MLWhereSupportLimits</a>.</code><span><strong><code class=webidl>falseValue</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#falseValue%40%40MLWhereSupportLimits%40dict-member' aria-label="Permalink for <a href='m.html#MLWhereSupportLimits@@@@dictionary'>MLWhereSupportLimits</a>.falseValue">§</a></span></dt>
<dd>Defined in <strong title='falseValue is defined in Web Neural Network API'><a href=https://webmachinelearning.github.io/webnn/#dom-mlwheresupportlimits-falsevalue>Web Neural Network API</a></strong> </dd>
<dt id="family@@FontData@attribute"><code class=prefix><a href='f.html#FontData@@@@interface'>FontData</a>.</code><span><strong><code class=webidl>family</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#family%40%40FontData%40attribute' aria-label="Permalink for <a href='f.html#FontData@@@@interface'>FontData</a>.family">§</a></span></dt>
<dd>Defined in <strong title='family is defined in Local Font Access'><a href=https://wicg.github.io/local-font-access/#dom-fontdata-family>Local Font Access</a></strong> </dd>
<dt id="family@@FontFace@attribute"><code class=prefix><a href='f.html#FontFace@@@@interface'>FontFace</a>.</code><span><strong><code class=webidl>family</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#family%40%40FontFace%40attribute' aria-label="Permalink for <a href='f.html#FontFace@@@@interface'>FontFace</a>.family">§</a></span></dt>
<dd>Defined in <strong title='family is defined in CSS Font Loading 3'><a href=https://drafts.csswg.org/css-font-loading-3/#dom-fontface-family>CSS Font Loading 3</a></strong> </dd>
<dt id="<family-name>@@@@type"><code class=prefix></code><span><strong><code class=css><family-name></code></strong> (<em>CSS type</em>) <a class='self-link' href='#%3Cfamily-name%3E%40%40%40%40type' aria-label="Permalink for <family-name>">§</a></span></dt>
<dd>Defined in <strong title='<family-name> is defined in CSS Fonts 4'><a href=https://drafts.csswg.org/css-fonts-4/#family-name-value>CSS Fonts 4</a></strong> , <strong title='<family-name> is defined in CSS 2.2'><a href=https://drafts.csswg.org/css2/#value-def-family-name>CSS 2.2</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-fonts-5/ title='<family-name> is referenced by CSS Fonts 5'>CSS Fonts 5</a>,
<a href=https://drafts.csswg.org/css-speech-1/ title='<family-name> is referenced by CSS Speech 1'>CSS Speech 1</a>,
<a href=https://drafts.csswg.org/cssom-1/ title='<family-name> is referenced by CSSOM'>CSSOM</a></dd>
<dt id="family-name@@button/autocomplete@attr-value"><code class=prefix></code><span><strong><code class=markup>family-name</code></strong> (<em>value for <a href='a.html#autocomplete@@button@element-attr'><code>autocomplete</code></a> attribute of <a href='b.html#button@@html%25%25element'><code>button</code></a> element, <a href='a.html#autocomplete@@button@element-attr'><code>autocomplete</code></a> attribute of <a href='f.html#fieldset@@html%25%25element'><code>fieldset</code></a> element, <a href='a.html#autocomplete@@button@element-attr'><code>autocomplete</code></a> attribute of <a href='i.html#input@@html%25%25element'><code>input</code></a> element, <a href='a.html#autocomplete@@button@element-attr'><code>autocomplete</code></a> attribute of <a href='o.html#object@@html%25%25element'><code>object</code></a> element, <a href='a.html#autocomplete@@button@element-attr'><code>autocomplete</code></a> attribute of <a href='o.html#output@@html%25%25element'><code>output</code></a> element, <a href='a.html#autocomplete@@button@element-attr'><code>autocomplete</code></a> attribute of <a href='s.html#select@@html%25%25element'><code>select</code></a> element, <a href='a.html#autocomplete@@button@element-attr'><code>autocomplete</code></a> attribute of <a href='t.html#textarea@@html%25%25element'><code>textarea</code></a> element </em>) <a class='self-link' href='#family-name%40%40button%2Fautocomplete%40attr-value' aria-label="Permalink for family-name">§</a></span></dt>
<dd>Defined in <strong title='family-name is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#attr-fe-autocomplete-family-name>HTML</a></strong> </dd>
<dt id="fantasy@@<generic-family>@value"><code class=prefix></code><span><strong><code class=css>fantasy</code></strong> (<em>CSS value for <a href='g.html#<generic-family>@@@@type'><code><generic-family></code></a>, <a href='f.html#font-family@@@@property'><code>font-family</code></a> property </em>) <a class='self-link' href='#fantasy%40%40%3Cgeneric-family%3E%40value' aria-label="Permalink for fantasy">§</a></span></dt>
<dd>Defined in <strong title='fantasy is defined in CSS Fonts 4'><a href=https://drafts.csswg.org/css-fonts-4/#valdef-font-family-fantasy>CSS Fonts 4</a></strong> , <strong title='fantasy is defined in CSS 2.2'><a href=https://drafts.csswg.org/css2/#valdef-generic-family-fantasy>CSS 2.2</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-2023/ title='fantasy is referenced by CSS Snapshot 2023'>CSS Snapshot 2023</a></dd>
<dt id="fantasy@@CSS%%dfn"><code class=prefix></code><span><strong>fantasy</strong> (<em>concept</em>) <a class='self-link' href='#fantasy%40%40CSS%25%25dfn' aria-label="Permalink for fantasy">§</a></span></dt>
<dd>Defined in <strong title='fantasy is defined in CSS 2.1'><a href=https://www.w3.org/TR/CSS21/fonts.html#fantasy-def>CSS 2.1</a></strong> </dd>
<dt id="farthest-corner@@<radial-extent>@value"><code class=prefix></code><span><strong><code class=css>farthest-corner</code></strong> (<em>CSS value for <a href='r.html#<radial-extent>@@@@type'><code><radial-extent></code></a>, <a href='r.html#radial-gradient()@@css-images%25%25function'><code>radial-gradient()</code></a> function, <a href='r.html#repeating-radial-gradient()@@css-images%25%25function'><code>repeating-radial-gradient()</code></a> function </em>) <a class='self-link' href='#farthest-corner%40%40%3Cradial-extent%3E%40value' aria-label="Permalink for farthest-corner">§</a></span></dt>
<dd>Defined in <strong title='farthest-corner is defined in CSS Images 3'><a href=https://drafts.csswg.org/css-images-3/#valdef-radial-extent-farthest-corner>CSS Images 3</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-2022/ title='farthest-corner is referenced by CSS Snapshot 2022'>CSS Snapshot 2022</a>,
<a href=https://drafts.csswg.org/css-2023/ title='farthest-corner is referenced by CSS Snapshot 2023'>CSS Snapshot 2023</a></dd>
<dt id="farthest-corner@@<ray-size>@value"><code class=prefix></code><span><strong><code class=css>farthest-corner</code></strong> (<em>CSS value for <a href='r.html#<ray-size>@@@@type'><code><ray-size></code></a> </em>) <a class='self-link' href='#farthest-corner%40%40%3Cray-size%3E%40value' aria-label="Permalink for farthest-corner">§</a></span></dt>
<dd>Defined in <strong title='farthest-corner is defined in Motion Path 1'><a href=https://drafts.fxtf.org/motion-1/#size-farthest-corner>Motion Path 1</a></strong> </dd>
<dt id="farthest-side@@<radial-extent>@value"><code class=prefix></code><span><strong><code class=css>farthest-side</code></strong> (<em>CSS value for <a href='r.html#<radial-extent>@@@@type'><code><radial-extent></code></a>, <a href='r.html#radial-gradient()@@css-images%25%25function'><code>radial-gradient()</code></a> function, <a href='r.html#repeating-radial-gradient()@@css-images%25%25function'><code>repeating-radial-gradient()</code></a> function </em>) <a class='self-link' href='#farthest-side%40%40%3Cradial-extent%3E%40value' aria-label="Permalink for farthest-side">§</a></span></dt>
<dd>Defined in <strong title='farthest-side is defined in CSS Images 3'><a href=https://drafts.csswg.org/css-images-3/#valdef-radial-extent-farthest-side>CSS Images 3</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-2022/ title='farthest-side is referenced by CSS Snapshot 2022'>CSS Snapshot 2022</a>,
<a href=https://drafts.csswg.org/css-2023/ title='farthest-side is referenced by CSS Snapshot 2023'>CSS Snapshot 2023</a></dd>
<dt id="farthest-side@@<ray-size>@value"><code class=prefix></code><span><strong><code class=css>farthest-side</code></strong> (<em>CSS value for <a href='r.html#<ray-size>@@@@type'><code><ray-size></code></a> </em>) <a class='self-link' href='#farthest-side%40%40%3Cray-size%3E%40value' aria-label="Permalink for farthest-side">§</a></span></dt>
<dd>Defined in <strong title='farthest-side is defined in Motion Path 1'><a href=https://drafts.fxtf.org/motion-1/#size-farthest-side>Motion Path 1</a></strong> </dd>
<dt id="fast@@voice-rate@value"><code class=prefix></code><span><strong><code class=css>fast</code></strong> (<em>CSS value for <a href='v.html#voice-rate@@@@property'><code>voice-rate</code></a> </em>) <a class='self-link' href='#fast%40%40voice-rate%40value' aria-label="Permalink for fast">§</a></span></dt>
<dd>Defined in <strong title='fast is defined in CSS Speech 1'><a href=https://drafts.csswg.org/css-speech-1/#valdef-voice-rate-fast>CSS Speech 1</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-2022/ title='fast is referenced by CSS Snapshot 2022'>CSS Snapshot 2022</a>,
<a href=https://drafts.csswg.org/css-2023/ title='fast is referenced by CSS Snapshot 2023'>CSS Snapshot 2023</a></dd>
<dt id="fast@@@media/update@value"><code class=prefix></code><span><strong><code class=css>fast</code></strong> (<em>CSS value for <a href='u.html#update@@@media@descriptor'><code>update</code></a> descriptor of <a href='m.html#@media@@@@at-rule'><code>@media</code></a> @rule </em>) <a class='self-link' href='#fast%40%40%40media%2Fupdate%40value' aria-label="Permalink for fast">§</a></span></dt>
<dd>Defined in <strong title='fast is defined in Media Queries 4'><a href=https://drafts.csswg.org/mediaqueries-4/#valdef-media-update-fast>Media Queries 4</a></strong> , <strong title='fast is defined in Media Queries 5'><a href=https://drafts.csswg.org/mediaqueries-5/#valdef-media-update-fast>Media Queries 5</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-2022/ title='fast is referenced by CSS Snapshot 2022'>CSS Snapshot 2022</a>,
<a href=https://drafts.csswg.org/css-2023/ title='fast is referenced by CSS Snapshot 2023'>CSS Snapshot 2023</a></dd>
<dt id="fastMode@@FaceDetectorOptions@dict-member"><code class=prefix><a href='f.html#FaceDetectorOptions@@@@dictionary'>FaceDetectorOptions</a>.</code><span><strong><code class=webidl>fastMode</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#fastMode%40%40FaceDetectorOptions%40dict-member' aria-label="Permalink for <a href='f.html#FaceDetectorOptions@@@@dictionary'>FaceDetectorOptions</a>.fastMode">§</a></span></dt>
<dd>Defined in <strong title='fastMode is defined in Accelerated Shape Detection in Images'><a href=https://wicg.github.io/shape-detection-api/#dom-facedetectoroptions-fastmode>Accelerated Shape Detection in Images</a></strong> </dd>
<dt id="fastSeek@@MediaSessionActionDetails@dict-member"><code class=prefix><a href='m.html#MediaSessionActionDetails@@@@dictionary'>MediaSessionActionDetails</a>.</code><span><strong><code class=webidl>fastSeek</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#fastSeek%40%40MediaSessionActionDetails%40dict-member' aria-label="Permalink for <a href='m.html#MediaSessionActionDetails@@@@dictionary'>MediaSessionActionDetails</a>.fastSeek">§</a></span></dt>
<dd>Defined in <strong title='fastSeek is defined in Media Session'><a href=https://w3c.github.io/mediasession/#dom-mediasessionactiondetails-fastseek>Media Session</a></strong> </dd>
<dt id="fastSeek(time)@@HTMLMediaElement@method"><code class=prefix><a href='h.html#HTMLMediaElement@@@@interface'>HTMLMediaElement</a>.</code><span><strong><code class=webidl>fastSeek(time)</code></strong> (<em>WebIDL operation</em>) <a class='self-link' href='#fastSeek(time)%40%40HTMLMediaElement%40method' aria-label="Permalink for <a href='h.html#HTMLMediaElement@@@@interface'>HTMLMediaElement</a>.fastSeek(time)">§</a></span></dt>
<dd>Defined in <strong title='fastSeek(time) is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/media.html#dom-media-fastseek>HTML</a></strong> </dd>
<dd>Referenced in
<a href=https://w3c.github.io/mediacapture-main/ title='fastSeek(time) is referenced by Media Capture and Streams'>Media Capture and Streams</a>,
<a href=https://w3c.github.io/openscreenprotocol/ title='fastSeek(time) is referenced by Open Screen Protocol'>Open Screen Protocol</a>,
<a href=https://w3c.github.io/remote-playback/ title='fastSeek(time) is referenced by Remote Playback API'>Remote Playback API</a></dd>
<dt id="fatal@@TextDecoderCommon@attribute"><code class=prefix><a href='t.html#TextDecoderCommon@@@@interface'>TextDecoderCommon</a>.</code><span><strong><code class=webidl>fatal</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#fatal%40%40TextDecoderCommon%40attribute' aria-label="Permalink for <a href='t.html#TextDecoderCommon@@@@interface'>TextDecoderCommon</a>.fatal">§</a></span></dt>
<dd>Defined in <strong title='fatal is defined in Encoding'><a href=https://encoding.spec.whatwg.org/#dom-textdecoder-fatal>Encoding</a></strong> </dd>
<dt id="fatal@@TextDecoderOptions@dict-member"><code class=prefix><a href='t.html#TextDecoderOptions@@@@dictionary'>TextDecoderOptions</a>.</code><span><strong><code class=webidl>fatal</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#fatal%40%40TextDecoderOptions%40dict-member' aria-label="Permalink for <a href='t.html#TextDecoderOptions@@@@dictionary'>TextDecoderOptions</a>.fatal">§</a></span></dt>
<dd>Defined in <strong title='fatal is defined in Encoding'><a href=https://encoding.spec.whatwg.org/#dom-textdecoderoptions-fatal>Encoding</a></strong> </dd>
<dt id="fax@@button/autocomplete@attr-value"><code class=prefix></code><span><strong><code class=markup>fax</code></strong> (<em>value for <a href='a.html#autocomplete@@button@element-attr'><code>autocomplete</code></a> attribute of <a href='b.html#button@@html%25%25element'><code>button</code></a> element, <a href='a.html#autocomplete@@button@element-attr'><code>autocomplete</code></a> attribute of <a href='f.html#fieldset@@html%25%25element'><code>fieldset</code></a> element, <a href='a.html#autocomplete@@button@element-attr'><code>autocomplete</code></a> attribute of <a href='i.html#input@@html%25%25element'><code>input</code></a> element, <a href='a.html#autocomplete@@button@element-attr'><code>autocomplete</code></a> attribute of <a href='o.html#object@@html%25%25element'><code>object</code></a> element, <a href='a.html#autocomplete@@button@element-attr'><code>autocomplete</code></a> attribute of <a href='o.html#output@@html%25%25element'><code>output</code></a> element, <a href='a.html#autocomplete@@button@element-attr'><code>autocomplete</code></a> attribute of <a href='s.html#select@@html%25%25element'><code>select</code></a> element, <a href='a.html#autocomplete@@button@element-attr'><code>autocomplete</code></a> attribute of <a href='t.html#textarea@@html%25%25element'><code>textarea</code></a> element </em>) <a class='self-link' href='#fax%40%40button%2Fautocomplete%40attr-value' aria-label="Permalink for fax">§</a></span></dt>
<dd>Defined in <strong title='fax is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#attr-fe-autocomplete-fax>HTML</a></strong> </dd>
<dt id="Featural syllabary@@i18n-glossary%%dfn"><code class=prefix></code><span><strong>Featural syllabary</strong> (<em>concept</em>) <a class='self-link' href='#Featural%20syllabary%40%40i18n-glossary%25%25dfn' aria-label="Permalink for Featural syllabary">§</a></span></dt>
<dd>Defined in <strong title='Featural syllabary is defined in Internationalization Glossary'><a href=https://w3c.github.io/i18n-glossary/#dfn-featural-syllabary>Internationalization Glossary</a></strong> </dd>
<dt id="feature@@user-timing%%dfn"><code class=prefix></code><span><strong>feature</strong> (<em>concept</em>) <a class='self-link' href='#feature%40%40user-timing%25%25dfn' aria-label="Permalink for feature">§</a></span></dt>
<dd>Defined in <strong title='feature is defined in User Timing 3'><a href=https://w3c.github.io/user-timing/#dfn-feature>User Timing 3</a></strong> </dd>
<dt id="<feature-tag-value>@@font-feature-settings@value"><code class=prefix></code><span><strong><code class=css><feature-tag-value></code></strong> (<em>CSS value for <a href='f.html#font-feature-settings@@@@property'><code>font-feature-settings</code></a> </em>) <a class='self-link' href='#%3Cfeature-tag-value%3E%40%40font-feature-settings%40value' aria-label="Permalink for <feature-tag-value>">§</a></span></dt>
<dd>Defined in <strong title='<feature-tag-value> is defined in CSS Fonts 4'><a href=https://drafts.csswg.org/css-fonts-4/#feature-tag-value>CSS Fonts 4</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-2023/ title='<feature-tag-value> is referenced by CSS Snapshot 2023'>CSS Snapshot 2023</a></dd>
<dt id="<feature-value-name>@@@@type"><code class=prefix></code><span><strong><code class=css><feature-value-name></code></strong> (<em>CSS type</em>) <a class='self-link' href='#%3Cfeature-value-name%3E%40%40%40%40type' aria-label="Permalink for <feature-value-name>">§</a></span></dt>
<dd>Defined in <strong title='<feature-value-name> is defined in CSS Fonts 4'><a href=https://drafts.csswg.org/css-fonts-4/#feature-value-name-value>CSS Fonts 4</a></strong> </dd>
<dt id="featureId@@PermissionsPolicyViolationReportBody@attribute"><code class=prefix><a href='p.html#PermissionsPolicyViolationReportBody@@@@interface'>PermissionsPolicyViolationReportBody</a>.</code><span><strong><code class=webidl>featureId</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#featureId%40%40PermissionsPolicyViolationReportBody%40attribute' aria-label="Permalink for <a href='p.html#PermissionsPolicyViolationReportBody@@@@interface'>PermissionsPolicyViolationReportBody</a>.featureId">§</a></span></dt>
<dd>Defined in <strong title='featureId is defined in Permissions Policy'><a href=https://w3c.github.io/webappsec-permissions-policy/#dom-permissionspolicyviolationreportbody-featureid>Permissions Policy</a></strong> </dd>
<dt id="featureless@@selectors%%dfn"><code class=prefix></code><span><strong>featureless</strong> (<em>concept</em>) <a class='self-link' href='#featureless%40%40selectors%25%25dfn' aria-label="Permalink for featureless">§</a></span></dt>
<dd>Defined in <strong title='featureless is defined in Selectors 4'><a href=https://drafts.csswg.org/selectors-4/#featureless>Selectors 4</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-cascade-6/ title='featureless is referenced by CSS Cascading 6'>CSS Cascading 6</a>,
<a href=https://drafts.csswg.org/css-nesting-1/ title='featureless is referenced by CSS Nesting'>CSS Nesting</a>,
<a href=https://drafts.csswg.org/css-scoping-1/ title='featureless is referenced by CSS Scoping 1'>CSS Scoping 1</a></dd>
<dt id="featureLevel@@GPURequestAdapterOptions@dict-member"><code class=prefix><a href='g.html#GPURequestAdapterOptions@@@@dictionary'>GPURequestAdapterOptions</a>.</code><span><strong><code class=webidl>featureLevel</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#featureLevel%40%40GPURequestAdapterOptions%40dict-member' aria-label="Permalink for <a href='g.html#GPURequestAdapterOptions@@@@dictionary'>GPURequestAdapterOptions</a>.featureLevel">§</a></span></dt>
<dd>Defined in <strong title='featureLevel is defined in WebGPU'><a href=https://gpuweb.github.io/gpuweb/#dom-gpurequestadapteroptions-featurelevel>WebGPU</a></strong> </dd>
<dt id="featureReports@@HIDCollectionInfo@dict-member"><code class=prefix><a href='h.html#HIDCollectionInfo@@@@dictionary'>HIDCollectionInfo</a>.</code><span><strong><code class=webidl>featureReports</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#featureReports%40%40HIDCollectionInfo%40dict-member' aria-label="Permalink for <a href='h.html#HIDCollectionInfo@@@@dictionary'>HIDCollectionInfo</a>.featureReports">§</a></span></dt>
<dd>Defined in <strong title='featureReports is defined in WebHID API'><a href=https://wicg.github.io/webhid/#dom-hidcollectioninfo-featurereports>WebHID API</a></strong> </dd>
<dt id="[[features]]@@adapter@attribute"><code class=prefix></code><span><strong><code class=webidl>[[features]]</code></strong> (<em>internal slot for <code>adapter</code> </em>) <a class='self-link' href='#%5B%5Bfeatures%5D%5D%40%40adapter%40attribute' aria-label="Permalink for [[features]]">§</a></span></dt>
<dd>Defined in <strong title='[[features]] is defined in WebGPU'><a href=https://gpuweb.github.io/gpuweb/#dom-adapter-features-slot>WebGPU</a></strong> </dd>
<dt id="[[features]]@@device@attribute"><code class=prefix></code><span><strong><code class=webidl>[[features]]</code></strong> (<em>internal slot for <code>device</code> </em>) <a class='self-link' href='#%5B%5Bfeatures%5D%5D%40%40device%40attribute' aria-label="Permalink for [[features]]">§</a></span></dt>
<dd>Defined in <strong title='[[features]] is defined in WebGPU'><a href=https://gpuweb.github.io/gpuweb/#dom-device-features-slot>WebGPU</a></strong> </dd>
<dt id="features@@FontFace@attribute"><code class=prefix><a href='f.html#FontFace@@@@interface'>FontFace</a>.</code><span><strong><code class=webidl>features</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#features%40%40FontFace%40attribute' aria-label="Permalink for <a href='f.html#FontFace@@@@interface'>FontFace</a>.features">§</a></span></dt>
<dd>Defined in <strong title='features is defined in CSS Font Loading 3'><a href=https://drafts.csswg.org/css-font-loading-3/#dom-fontface-features>CSS Font Loading 3</a></strong> </dd>
<dt id="features@@GPUAdapter@attribute"><code class=prefix><a href='g.html#GPUAdapter@@@@interface'>GPUAdapter</a>.</code><span><strong><code class=webidl>features</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#features%40%40GPUAdapter%40attribute' aria-label="Permalink for <a href='g.html#GPUAdapter@@@@interface'>GPUAdapter</a>.features">§</a></span></dt>
<dd>Defined in <strong title='features is defined in WebGPU'><a href=https://gpuweb.github.io/gpuweb/#dom-gpuadapter-features>WebGPU</a></strong> </dd>
<dt id="features@@GPUDevice@attribute"><code class=prefix><a href='g.html#GPUDevice@@@@interface'>GPUDevice</a>.</code><span><strong><code class=webidl>features</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#features%40%40GPUDevice%40attribute' aria-label="Permalink for <a href='g.html#GPUDevice@@@@interface'>GPUDevice</a>.features">§</a></span></dt>
<dd>Defined in <strong title='features is defined in WebGPU'><a href=https://gpuweb.github.io/gpuweb/#dom-gpudevice-features>WebGPU</a></strong> </dd>
<dt id="features()@@PermissionsPolicy@method"><code class=prefix><a href='p.html#PermissionsPolicy@@@@interface'>PermissionsPolicy</a>.</code><span><strong><code class=webidl>features()</code></strong> (<em>WebIDL operation</em>) <a class='self-link' href='#features()%40%40PermissionsPolicy%40method' aria-label="Permalink for <a href='p.html#PermissionsPolicy@@@@interface'>PermissionsPolicy</a>.features()">§</a></span></dt>
<dd>Defined in <strong title='features() is defined in Permissions Policy'><a href=https://w3c.github.io/webappsec-permissions-policy/#dom-permissionspolicy-features>Permissions Policy</a></strong> </dd>
<dt id="featureSettings@@FontFace@attribute"><code class=prefix><a href='f.html#FontFace@@@@interface'>FontFace</a>.</code><span><strong><code class=webidl>featureSettings</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#featureSettings%40%40FontFace%40attribute' aria-label="Permalink for <a href='f.html#FontFace@@@@interface'>FontFace</a>.featureSettings">§</a></span></dt>
<dd>Defined in <strong title='featureSettings is defined in CSS Font Loading 3'><a href=https://drafts.csswg.org/css-font-loading-3/#dom-fontface-featuresettings>CSS Font Loading 3</a></strong> </dd>
<dt id="featureSettings@@FontFaceDescriptors@dict-member"><code class=prefix><a href='f.html#FontFaceDescriptors@@@@dictionary'>FontFaceDescriptors</a>.</code><span><strong><code class=webidl>featureSettings</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#featureSettings%40%40FontFaceDescriptors%40dict-member' aria-label="Permalink for <a href='f.html#FontFaceDescriptors@@@@dictionary'>FontFaceDescriptors</a>.featureSettings">§</a></span></dt>
<dd>Defined in <strong title='featureSettings is defined in CSS Font Loading 3'><a href=https://drafts.csswg.org/css-font-loading-3/#dom-fontfacedescriptors-featuresettings>CSS Font Loading 3</a></strong> </dd>
<dt id="feBlend@@filter-effects%%element"><code class=prefix></code><span><strong><code class=markup>feBlend</code></strong> (<em>markup element</em>) <a class='self-link' href='#feBlend%40%40filter-effects%25%25element' aria-label="Permalink for feBlend">§</a></span></dt>
<dd>Defined in <strong title='feBlend is defined in Filter Effects 1'><a href=https://drafts.fxtf.org/filter-effects-1/#elementdef-feblend>Filter Effects 1</a></strong> </dd>
<dt id="fecBytesReceived@@RTCInboundRtpStreamStats@dict-member"><code class=prefix><a href='r.html#RTCInboundRtpStreamStats@@@@dictionary'>RTCInboundRtpStreamStats</a>.</code><span><strong><code class=webidl>fecBytesReceived</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#fecBytesReceived%40%40RTCInboundRtpStreamStats%40dict-member' aria-label="Permalink for <a href='r.html#RTCInboundRtpStreamStats@@@@dictionary'>RTCInboundRtpStreamStats</a>.fecBytesReceived">§</a></span></dt>
<dd>Defined in <strong title='fecBytesReceived is defined in WebRTC Statistics'><a href=https://w3c.github.io/webrtc-stats/#dom-rtcinboundrtpstreamstats-fecbytesreceived>WebRTC Statistics</a></strong> </dd>
<dt id="feColorMatrix@@filter-effects%%element"><code class=prefix></code><span><strong><code class=markup>feColorMatrix</code></strong> (<em>markup element</em>) <a class='self-link' href='#feColorMatrix%40%40filter-effects%25%25element' aria-label="Permalink for feColorMatrix">§</a></span></dt>
<dd>Defined in <strong title='feColorMatrix is defined in Filter Effects 1'><a href=https://drafts.fxtf.org/filter-effects-1/#elementdef-fecolormatrix>Filter Effects 1</a></strong> </dd>
<dt id="feComponentTransfer@@filter-effects%%element"><code class=prefix></code><span><strong><code class=markup>feComponentTransfer</code></strong> (<em>markup element</em>) <a class='self-link' href='#feComponentTransfer%40%40filter-effects%25%25element' aria-label="Permalink for feComponentTransfer">§</a></span></dt>
<dd>Defined in <strong title='feComponentTransfer is defined in Filter Effects 1'><a href=https://drafts.fxtf.org/filter-effects-1/#elementdef-fecomponenttransfer>Filter Effects 1</a></strong> </dd>
<dt id="feComposite@@filter-effects%%element"><code class=prefix></code><span><strong><code class=markup>feComposite</code></strong> (<em>markup element</em>) <a class='self-link' href='#feComposite%40%40filter-effects%25%25element' aria-label="Permalink for feComposite">§</a></span></dt>
<dd>Defined in <strong title='feComposite is defined in Filter Effects 1'><a href=https://drafts.fxtf.org/filter-effects-1/#elementdef-fecomposite>Filter Effects 1</a></strong> </dd>
<dt id="feConvolveMatrix@@filter-effects%%element"><code class=prefix></code><span><strong><code class=markup>feConvolveMatrix</code></strong> (<em>markup element</em>) <a class='self-link' href='#feConvolveMatrix%40%40filter-effects%25%25element' aria-label="Permalink for feConvolveMatrix">§</a></span></dt>
<dd>Defined in <strong title='feConvolveMatrix is defined in Filter Effects 1'><a href=https://drafts.fxtf.org/filter-effects-1/#elementdef-feconvolvematrix>Filter Effects 1</a></strong> </dd>
<dt id="fecPacketsDiscarded@@RTCInboundRtpStreamStats@dict-member"><code class=prefix><a href='r.html#RTCInboundRtpStreamStats@@@@dictionary'>RTCInboundRtpStreamStats</a>.</code><span><strong><code class=webidl>fecPacketsDiscarded</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#fecPacketsDiscarded%40%40RTCInboundRtpStreamStats%40dict-member' aria-label="Permalink for <a href='r.html#RTCInboundRtpStreamStats@@@@dictionary'>RTCInboundRtpStreamStats</a>.fecPacketsDiscarded">§</a></span></dt>
<dd>Defined in <strong title='fecPacketsDiscarded is defined in WebRTC Statistics'><a href=https://w3c.github.io/webrtc-stats/#dom-rtcinboundrtpstreamstats-fecpacketsdiscarded>WebRTC Statistics</a></strong> </dd>
<dt id="fecPacketsReceived@@RTCInboundRtpStreamStats@dict-member"><code class=prefix><a href='r.html#RTCInboundRtpStreamStats@@@@dictionary'>RTCInboundRtpStreamStats</a>.</code><span><strong><code class=webidl>fecPacketsReceived</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#fecPacketsReceived%40%40RTCInboundRtpStreamStats%40dict-member' aria-label="Permalink for <a href='r.html#RTCInboundRtpStreamStats@@@@dictionary'>RTCInboundRtpStreamStats</a>.fecPacketsReceived">§</a></span></dt>
<dd>Defined in <strong title='fecPacketsReceived is defined in WebRTC Statistics'><a href=https://w3c.github.io/webrtc-stats/#dom-rtcinboundrtpstreamstats-fecpacketsreceived>WebRTC Statistics</a></strong> </dd>
<dt id="fecSsrc@@RTCInboundRtpStreamStats@dict-member"><code class=prefix><a href='r.html#RTCInboundRtpStreamStats@@@@dictionary'>RTCInboundRtpStreamStats</a>.</code><span><strong><code class=webidl>fecSsrc</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#fecSsrc%40%40RTCInboundRtpStreamStats%40dict-member' aria-label="Permalink for <a href='r.html#RTCInboundRtpStreamStats@@@@dictionary'>RTCInboundRtpStreamStats</a>.fecSsrc">§</a></span></dt>
<dd>Defined in <strong title='fecSsrc is defined in WebRTC Statistics'><a href=https://w3c.github.io/webrtc-stats/#dom-rtcinboundrtpstreamstats-fecssrc>WebRTC Statistics</a></strong> </dd>
<dt id="federated@@CredentialCreationOptions@dict-member"><code class=prefix><a href='c.html#CredentialCreationOptions@@@@dictionary'>CredentialCreationOptions</a>.</code><span><strong><code class=webidl>federated</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#federated%40%40CredentialCreationOptions%40dict-member' aria-label="Permalink for <a href='c.html#CredentialCreationOptions@@@@dictionary'>CredentialCreationOptions</a>.federated">§</a></span></dt>
<dd>Defined in <strong title='federated is defined in Credential Management 1'><a href=https://w3c.github.io/webappsec-credential-management/#dom-credentialcreationoptions-federated>Credential Management 1</a></strong> </dd>
<dt id="federated@@CredentialRequestOptions@dict-member"><code class=prefix><a href='c.html#CredentialRequestOptions@@@@dictionary'>CredentialRequestOptions</a>.</code><span><strong><code class=webidl>federated</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#federated%40%40CredentialRequestOptions%40dict-member' aria-label="Permalink for <a href='c.html#CredentialRequestOptions@@@@dictionary'>CredentialRequestOptions</a>.federated">§</a></span></dt>
<dd>Defined in <strong title='federated is defined in Credential Management 1'><a href=https://w3c.github.io/webappsec-credential-management/#dom-credentialrequestoptions-federated>Credential Management 1</a></strong> </dd>
<dt id="federated@@FederatedCredential@const"><code class=prefix><a href='f.html#FederatedCredential@@@@interface'>FederatedCredential</a>.</code><span><strong><code class=webidl>federated</code></strong> (<em>WebIDL constant</em>) <a class='self-link' href='#federated%40%40FederatedCredential%40const' aria-label="Permalink for <a href='f.html#FederatedCredential@@@@interface'>FederatedCredential</a>.federated">§</a></span></dt>
<dd>Defined in <strong title='federated is defined in Credential Management 1'><a href=https://w3c.github.io/webappsec-credential-management/#dom-federatedcredential-federated>Credential Management 1</a></strong> </dd>
<dt id="FederatedCredential@@@@interface"><code class=prefix></code><span><strong><code class=webidl>FederatedCredential</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#FederatedCredential%40%40%40%40interface' aria-label="Permalink for FederatedCredential">§</a></span></dt>
<dd>Defined in <strong title='FederatedCredential is defined in Credential Management 1'><a href=https://w3c.github.io/webappsec-credential-management/#federatedcredential>Credential Management 1</a></strong> </dd>
<dd>Related terms: <code>FederatedCredential.</code><a href='p.html#protocol@@FederatedCredential@attribute'><code>protocol</code></a>, <code>FederatedCredential.</code><a href='p.html#provider@@FederatedCredential@attribute'><code>provider</code></a>, <code>FederatedCredential.</code><a href='f.html#federated@@FederatedCredential@const'><code>federated</code></a>, <code>new </code><a href='f.html#FederatedCredential(data)@@FederatedCredential@constructor'><code>FederatedCredential(data)</code></a>, <code>FederatedCredential.</code><a href='c.html#[[CollectFromCredentialStore]](origin, options, sameOriginWithAncestors)@@FederatedCredential@method'><code>[[CollectFromCredentialStore]](origin, options, sameOriginWithAncestors)</code></a>, <code>FederatedCredential.</code><a href='c.html#[[Create]](origin, options, sameOriginWithAncestors)@@FederatedCredential@method'><code>[[Create]](origin, options, sameOriginWithAncestors)</code></a>, <code>FederatedCredential.</code><a href='s.html#[[Store]](credential, sameOriginWithAncestors)@@FederatedCredential@method'><code>[[Store]](credential, sameOriginWithAncestors)</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/FederatedCredential.html' title='FederatedCredential entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="FederatedCredential(data)@@FederatedCredential@constructor"><code class=prefix>new </code><span><strong><code class=webidl>FederatedCredential(data)</code></strong> (<em>WebIDL constructor</em>) <a class='self-link' href='#FederatedCredential(data)%40%40FederatedCredential%40constructor' aria-label="Permalink for new FederatedCredential(data)">§</a></span></dt>
<dd>Defined in <strong title='FederatedCredential(data) is defined in Credential Management 1'><a href=https://w3c.github.io/webappsec-credential-management/#dom-federatedcredential-federatedcredential>Credential Management 1</a></strong> </dd>
<dt id="FederatedCredentialInit@@@@dictionary"><code class=prefix></code><span><strong><code class=webidl>FederatedCredentialInit</code></strong> (<em>WebIDL dictionary</em>) <a class='self-link' href='#FederatedCredentialInit%40%40%40%40dictionary' aria-label="Permalink for FederatedCredentialInit">§</a></span></dt>
<dd>Defined in <strong title='FederatedCredentialInit is defined in Credential Management 1'><a href=https://w3c.github.io/webappsec-credential-management/#dictdef-federatedcredentialinit>Credential Management 1</a></strong> </dd>
<dd>Related terms: <code>FederatedCredentialInit.</code><a href='i.html#iconURL@@FederatedCredentialInit@dict-member'><code>iconURL</code></a>, <code>FederatedCredentialInit.</code><a href='n.html#name@@FederatedCredentialInit@dict-member'><code>name</code></a>, <code>FederatedCredentialInit.</code><a href='o.html#origin@@FederatedCredentialInit@dict-member'><code>origin</code></a>, <code>FederatedCredentialInit.</code><a href='p.html#protocol@@FederatedCredentialInit@dict-member'><code>protocol</code></a>, <code>FederatedCredentialInit.</code><a href='p.html#provider@@FederatedCredentialInit@dict-member'><code>provider</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/FederatedCredentialInit.html' title='FederatedCredentialInit entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="FederatedCredentialRequestOptions@@@@dictionary"><code class=prefix></code><span><strong><code class=webidl>FederatedCredentialRequestOptions</code></strong> (<em>WebIDL dictionary</em>) <a class='self-link' href='#FederatedCredentialRequestOptions%40%40%40%40dictionary' aria-label="Permalink for FederatedCredentialRequestOptions">§</a></span></dt>
<dd>Defined in <strong title='FederatedCredentialRequestOptions is defined in Credential Management 1'><a href=https://w3c.github.io/webappsec-credential-management/#dictdef-federatedcredentialrequestoptions>Credential Management 1</a></strong> </dd>
<dd>Related terms: <code>FederatedCredentialRequestOptions.</code><a href='p.html#protocols@@FederatedCredentialRequestOptions@dict-member'><code>protocols</code></a>, <code>FederatedCredentialRequestOptions.</code><a href='p.html#providers@@FederatedCredentialRequestOptions@dict-member'><code>providers</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/FederatedCredentialRequestOptions.html' title='FederatedCredentialRequestOptions entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="feDiffuseLighting@@filter-effects%%element"><code class=prefix></code><span><strong><code class=markup>feDiffuseLighting</code></strong> (<em>markup element</em>) <a class='self-link' href='#feDiffuseLighting%40%40filter-effects%25%25element' aria-label="Permalink for feDiffuseLighting">§</a></span></dt>
<dd>Defined in <strong title='feDiffuseLighting is defined in Filter Effects 1'><a href=https://drafts.fxtf.org/filter-effects-1/#elementdef-fediffuselighting>Filter Effects 1</a></strong> </dd>
<dt id="feDisplacementMap@@filter-effects%%element"><code class=prefix></code><span><strong><code class=markup>feDisplacementMap</code></strong> (<em>markup element</em>) <a class='self-link' href='#feDisplacementMap%40%40filter-effects%25%25element' aria-label="Permalink for feDisplacementMap">§</a></span></dt>
<dd>Defined in <strong title='feDisplacementMap is defined in Filter Effects 1'><a href=https://drafts.fxtf.org/filter-effects-1/#elementdef-fedisplacementmap>Filter Effects 1</a></strong> </dd>
<dt id="feDistantLight@@filter-effects%%element"><code class=prefix></code><span><strong><code class=markup>feDistantLight</code></strong> (<em>markup element</em>) <a class='self-link' href='#feDistantLight%40%40filter-effects%25%25element' aria-label="Permalink for feDistantLight">§</a></span></dt>
<dd>Defined in <strong title='feDistantLight is defined in Filter Effects 1'><a href=https://drafts.fxtf.org/filter-effects-1/#elementdef-fedistantlight>Filter Effects 1</a></strong> </dd>
<dt id="feDropShadow@@filter-effects%%element"><code class=prefix></code><span><strong><code class=markup>feDropShadow</code></strong> (<em>markup element</em>) <a class='self-link' href='#feDropShadow%40%40filter-effects%25%25element' aria-label="Permalink for feDropShadow">§</a></span></dt>
<dd>Defined in <strong title='feDropShadow is defined in Filter Effects 1'><a href=https://drafts.fxtf.org/filter-effects-1/#elementdef-fedropshadow>Filter Effects 1</a></strong> </dd>
<dt id="feedback@@IIRFilterOptions@dict-member"><code class=prefix><a href='i.html#IIRFilterOptions@@@@dictionary'>IIRFilterOptions</a>.</code><span><strong><code class=webidl>feedback</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#feedback%40%40IIRFilterOptions%40dict-member' aria-label="Permalink for <a href='i.html#IIRFilterOptions@@@@dictionary'>IIRFilterOptions</a>.feedback">§</a></span></dt>
<dt><code class=prefix><a href='i.html#IIRFilterOptions@@@@dictionary'>IIRFilterOptions</a>.</code><span><strong><code class=webidl>feedback</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#feedback%40%40IIRFilterOptions%40dict-member' aria-label="Permalink for <a href='i.html#IIRFilterOptions@@@@dictionary'>IIRFilterOptions</a>.feedback">§</a></span></dt>
<dd>Defined in <strong title='feedback is defined in Web Audio API'><a href=https://webaudio.github.io/web-audio-api/#dom-iirfilteroptions-feedback>Web Audio API</a></strong> , <strong title='feedback is defined in Web Audio API 1.1'><a href=https://webaudio.github.io/web-audio-api/#dom-iirfilteroptions-feedback>Web Audio API 1.1</a></strong> </dd>
<dt id="feedforward@@IIRFilterOptions@dict-member"><code class=prefix><a href='i.html#IIRFilterOptions@@@@dictionary'>IIRFilterOptions</a>.</code><span><strong><code class=webidl>feedforward</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#feedforward%40%40IIRFilterOptions%40dict-member' aria-label="Permalink for <a href='i.html#IIRFilterOptions@@@@dictionary'>IIRFilterOptions</a>.feedforward">§</a></span></dt>
<dt><code class=prefix><a href='i.html#IIRFilterOptions@@@@dictionary'>IIRFilterOptions</a>.</code><span><strong><code class=webidl>feedforward</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#feedforward%40%40IIRFilterOptions%40dict-member' aria-label="Permalink for <a href='i.html#IIRFilterOptions@@@@dictionary'>IIRFilterOptions</a>.feedforward">§</a></span></dt>
<dd>Defined in <strong title='feedforward is defined in Web Audio API'><a href=https://webaudio.github.io/web-audio-api/#dom-iirfilteroptions-feedforward>Web Audio API</a></strong> , <strong title='feedforward is defined in Web Audio API 1.1'><a href=https://webaudio.github.io/web-audio-api/#dom-iirfilteroptions-feedforward>Web Audio API 1.1</a></strong> </dd>
<dt id="feFlood@@filter-effects%%element"><code class=prefix></code><span><strong><code class=markup>feFlood</code></strong> (<em>markup element</em>) <a class='self-link' href='#feFlood%40%40filter-effects%25%25element' aria-label="Permalink for feFlood">§</a></span></dt>
<dd>Defined in <strong title='feFlood is defined in Filter Effects 1'><a href=https://drafts.fxtf.org/filter-effects-1/#elementdef-feflood>Filter Effects 1</a></strong> </dd>
<dt id="feFuncA@@filter-effects%%element"><code class=prefix></code><span><strong><code class=markup>feFuncA</code></strong> (<em>markup element</em>) <a class='self-link' href='#feFuncA%40%40filter-effects%25%25element' aria-label="Permalink for feFuncA">§</a></span></dt>
<dd>Defined in <strong title='feFuncA is defined in Filter Effects 1'><a href=https://drafts.fxtf.org/filter-effects-1/#elementdef-fefunca>Filter Effects 1</a></strong> </dd>
<dt id="feFuncB@@filter-effects%%element"><code class=prefix></code><span><strong><code class=markup>feFuncB</code></strong> (<em>markup element</em>) <a class='self-link' href='#feFuncB%40%40filter-effects%25%25element' aria-label="Permalink for feFuncB">§</a></span></dt>
<dd>Defined in <strong title='feFuncB is defined in Filter Effects 1'><a href=https://drafts.fxtf.org/filter-effects-1/#elementdef-fefuncb>Filter Effects 1</a></strong> </dd>
<dt id="feFuncG@@filter-effects%%element"><code class=prefix></code><span><strong><code class=markup>feFuncG</code></strong> (<em>markup element</em>) <a class='self-link' href='#feFuncG%40%40filter-effects%25%25element' aria-label="Permalink for feFuncG">§</a></span></dt>
<dd>Defined in <strong title='feFuncG is defined in Filter Effects 1'><a href=https://drafts.fxtf.org/filter-effects-1/#elementdef-fefuncg>Filter Effects 1</a></strong> </dd>
<dt id="feFuncR@@filter-effects%%element"><code class=prefix></code><span><strong><code class=markup>feFuncR</code></strong> (<em>markup element</em>) <a class='self-link' href='#feFuncR%40%40filter-effects%25%25element' aria-label="Permalink for feFuncR">§</a></span></dt>
<dd>Defined in <strong title='feFuncR is defined in Filter Effects 1'><a href=https://drafts.fxtf.org/filter-effects-1/#elementdef-fefuncr>Filter Effects 1</a></strong> </dd>
<dt id="feGaussianBlur@@filter-effects%%element"><code class=prefix></code><span><strong><code class=markup>feGaussianBlur</code></strong> (<em>markup element</em>) <a class='self-link' href='#feGaussianBlur%40%40filter-effects%25%25element' aria-label="Permalink for feGaussianBlur">§</a></span></dt>
<dd>Defined in <strong title='feGaussianBlur is defined in Filter Effects 1'><a href=https://drafts.fxtf.org/filter-effects-1/#elementdef-fegaussianblur>Filter Effects 1</a></strong> </dd>
<dt id="feImage@@filter-effects%%element"><code class=prefix></code><span><strong><code class=markup>feImage</code></strong> (<em>markup element</em>) <a class='self-link' href='#feImage%40%40filter-effects%25%25element' aria-label="Permalink for feImage">§</a></span></dt>
<dd>Defined in <strong title='feImage is defined in Filter Effects 1'><a href=https://drafts.fxtf.org/filter-effects-1/#elementdef-feimage>Filter Effects 1</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-images-3/ title='feImage is referenced by CSS Images 3'>CSS Images 3</a></dd>
<dt id="female@@voice-family@value"><code class=prefix></code><span><strong><code class=css>female</code></strong> (<em>CSS value for <a href='v.html#voice-family@@@@property'><code>voice-family</code></a> </em>) <a class='self-link' href='#female%40%40voice-family%40value' aria-label="Permalink for female">§</a></span></dt>
<dd>Defined in <strong title='female is defined in CSS Speech 1'><a href=https://drafts.csswg.org/css-speech-1/#valdef-voice-family-female>CSS Speech 1</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-2022/ title='female is referenced by CSS Snapshot 2022'>CSS Snapshot 2022</a>,
<a href=https://drafts.csswg.org/css-2023/ title='female is referenced by CSS Snapshot 2023'>CSS Snapshot 2023</a></dd>
<dt id="feMerge@@filter-effects%%element"><code class=prefix></code><span><strong><code class=markup>feMerge</code></strong> (<em>markup element</em>) <a class='self-link' href='#feMerge%40%40filter-effects%25%25element' aria-label="Permalink for feMerge">§</a></span></dt>
<dd>Defined in <strong title='feMerge is defined in Filter Effects 1'><a href=https://drafts.fxtf.org/filter-effects-1/#elementdef-femerge>Filter Effects 1</a></strong> </dd>
<dt id="feMergeNode@@filter-effects%%element"><code class=prefix></code><span><strong><code class=markup>feMergeNode</code></strong> (<em>markup element</em>) <a class='self-link' href='#feMergeNode%40%40filter-effects%25%25element' aria-label="Permalink for feMergeNode">§</a></span></dt>
<dd>Defined in <strong title='feMergeNode is defined in Filter Effects 1'><a href=https://drafts.fxtf.org/filter-effects-1/#elementdef-femergenode>Filter Effects 1</a></strong> </dd>
<dt id="feMorphology@@filter-effects%%element"><code class=prefix></code><span><strong><code class=markup>feMorphology</code></strong> (<em>markup element</em>) <a class='self-link' href='#feMorphology%40%40filter-effects%25%25element' aria-label="Permalink for feMorphology">§</a></span></dt>
<dd>Defined in <strong title='feMorphology is defined in Filter Effects 1'><a href=https://drafts.fxtf.org/filter-effects-1/#elementdef-femorphology>Filter Effects 1</a></strong> </dd>
<dt id="Fence@@@@interface"><code class=prefix></code><span><strong><code class=webidl>Fence</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#Fence%40%40%40%40interface' aria-label="Permalink for Fence">§</a></span></dt>
<dd>Defined in <strong title='Fence is defined in Fenced Frame'><a href=https://wicg.github.io/fenced-frame/#fence>Fenced Frame</a></strong> </dd>
<dd>Related terms: <code>Fence.</code><a href='d.html#disableUntrustedNetwork()@@Fence@method'><code>disableUntrustedNetwork()</code></a>, <code>Fence.</code><a href='g.html#getNestedConfigs()@@Fence@method'><code>getNestedConfigs()</code></a>, <code>Fence.</code><a href='n.html#notifyEvent(event)@@Fence@method'><code>notifyEvent(event)</code></a>, <code>Fence.</code><a href='r.html#reportEvent(event)@@Fence@method'><code>reportEvent(event)</code></a>, <code>Fence.</code><a href='s.html#setReportEventDataForAutomaticBeacons(event)@@Fence@method'><code>setReportEventDataForAutomaticBeacons(event)</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/Fence.html' title='Fence entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="fence@@mo@element-attr"><code class=prefix></code><span><strong><code class=markup>fence</code></strong> (<em>markup attribute for <a href='m.html#mo@@mathml-core%25%25element'><code>mo</code></a> </em>) <a class='self-link' href='#fence%40%40mo%40element-attr' aria-label="Permalink for fence">§</a></span></dt>
<dd>Defined in <strong title='fence is defined in MathML Core'><a href=https://w3c.github.io/mathml-core/#dfn-fence>MathML Core</a></strong> </dd>
<dt id="fence@@Window@attribute"><code class=prefix></code><span><strong><code class=webidl>fence</code></strong> (<em>WebIDL attribute for <code>Window</code> </em>) <a class='self-link' href='#fence%40%40Window%40attribute' aria-label="Permalink for fence">§</a></span></dt>
<dd>Defined in <strong title='fence is defined in Fenced Frame'><a href=https://wicg.github.io/fenced-frame/#dom-window-fence>Fenced Frame</a></strong> </dd>
<dt id="fenced frame config@@fenced-frame%%dfn"><code class=prefix></code><span><strong>fenced frame config</strong> (<em>concept</em>) <a class='self-link' href='#fenced%20frame%20config%40%40fenced-frame%25%25dfn' aria-label="Permalink for fenced frame config">§</a></span></dt>
<dd>Defined in <strong title='fenced frame config is defined in Fenced Frame'><a href=https://wicg.github.io/fenced-frame/#fenced-frame-config>Fenced Frame</a></strong> </dd>
<dd>Referenced in
<a href=https://wicg.github.io/shared-storage/ title='fenced frame config is referenced by Shared Storage API'>Shared Storage API</a>,
<a href=https://wicg.github.io/turtledove/ title='fenced frame config is referenced by Protected Audience'>Protected Audience</a></dd>
<dd>Related terms: <em>concept</em> <a href='c.html#container size@@fenced frame config@dfn'>container size</a>, <em>concept</em> <a href='c.html#content size@@fenced frame config@dfn'>content size</a>, <em>concept</em> <a href='c.html#cross-origin reporting allowed@@fenced frame config@dfn'>cross-origin reporting allowed</a>, <em>concept</em> <a href='e.html#effective enabled permissions@@fenced frame config@dfn'>effective enabled permissions</a>, <em>concept</em> <a href='e.html#effective sandboxing flags@@fenced frame config@dfn'>effective sandboxing flags</a>, <em>concept</em> <a href='e.html#embedder shared storage context@@fenced frame config@dfn'>embedder shared storage context</a>, <em>concept</em> <a href='e.html#exfiltration budget metadata@@fenced frame config@dfn'>exfiltration budget metadata</a>, <em>concept</em> <a href='f.html#fenced frame reporting metadata@@fenced frame config@dfn'>fenced frame reporting metadata</a>, <em>concept</em> <a href='i.html#interest group descriptor@@fenced frame config@dfn'>interest group descriptor</a>, <em>concept</em> <a href='i.html#is ad component@@fenced frame config@dfn'>is ad component</a>, <em>concept</em> <a href='m.html#mapped url@@fenced frame config@dfn'>mapped url</a>, <em>concept</em> <a href='n.html#nested configs@@fenced frame config@dfn'>nested configs</a>, <em>concept</em> <a href='o.html#on navigate callback@@fenced frame config@dfn'>on navigate callback</a></dd>
<dt id="fenced frame config instance@@fenced-frame%%dfn"><code class=prefix></code><span><strong>fenced frame config instance</strong> (<em>concept</em>) <a class='self-link' href='#fenced%20frame%20config%20instance%40%40fenced-frame%25%25dfn' aria-label="Permalink for fenced frame config instance">§</a></span></dt>
<dd>Defined in <strong title='fenced frame config instance is defined in Fenced Frame'><a href=https://wicg.github.io/fenced-frame/#fenced-frame-config-instance>Fenced Frame</a></strong> </dd>
<dd>Related terms: <em>concept</em> <a href='c.html#container size@@fenced frame config instance@dfn'>container size</a>, <em>concept</em> <a href='c.html#content size@@fenced frame config instance@dfn'>content size</a>, <em>concept</em> <a href='c.html#cross-origin reporting allowed@@fenced frame config instance@dfn'>cross-origin reporting allowed</a>, <em>concept</em> <a href='e.html#effective enabled permissions@@fenced frame config instance@dfn'>effective enabled permissions</a>, <em>concept</em> <a href='e.html#effective sandboxing flags@@fenced frame config instance@dfn'>effective sandboxing flags</a>, <em>concept</em> <a href='e.html#embedder shared storage context@@fenced frame config instance@dfn'>embedder shared storage context</a>, <em>concept</em> <a href='e.html#exfiltration budget metadata reference@@fenced frame config instance@dfn'>exfiltration budget metadata reference</a>, <em>concept</em> <a href='f.html#fenced frame reporter@@fenced frame config instance@dfn'>fenced frame reporter</a>, <em>concept</em> <a href='h.html#has disabled untrusted network@@fenced frame config instance@dfn'>has disabled untrusted network</a>, <em>concept</em> <a href='i.html#interest group descriptor@@fenced frame config instance@dfn'>interest group descriptor</a>, <em>concept</em> <a href='i.html#is ad component@@fenced frame config instance@dfn'>is ad component</a>, <em>concept</em> <a href='m.html#mapped url@@fenced frame config instance@dfn'>mapped url</a>, <em>concept</em> <a href='n.html#nested configs@@fenced frame config instance@dfn'>nested configs</a>, <em>concept</em> <a href='o.html#on navigate callback@@fenced frame config instance@dfn'>on navigate callback</a>, <em>concept</em> <a href='p.html#partition nonce@@fenced frame config instance@dfn'>partition nonce</a></dd>
<dt id="fenced frame config mapping@@traversable navigable@dfn"><code class=prefix></code><span><strong>fenced frame config mapping</strong> (<em>concept for <a href='t.html#traversable navigable@@html%25%25dfn'>traversable navigable</a> </em>) <a class='self-link' href='#fenced%20frame%20config%20mapping%40%40traversable%20navigable%40dfn' aria-label="Permalink for fenced frame config mapping">§</a></span></dt>
<dd>Defined in <strong title='fenced frame config mapping is defined in Fenced Frame'><a href=https://wicg.github.io/fenced-frame/#traversable-navigable-fenced-frame-config-mapping>Fenced Frame</a></strong> </dd>
<dd>Referenced in
<a href=https://wicg.github.io/shared-storage/ title='fenced frame config mapping is referenced by Shared Storage API'>Shared Storage API</a>,
<a href=https://wicg.github.io/turtledove/ title='fenced frame config mapping is referenced by Protected Audience'>Protected Audience</a></dd>
<dd>Related terms: <em>concept</em> <a href='f.html#finalize a pending config@@fenced frame config mapping@dfn'>finalize a pending config</a>, <em>concept</em> <a href='f.html#find a config@@fenced frame config mapping@dfn'>find a config</a>, <em>concept</em> <a href='s.html#store a pending config@@fenced frame config mapping@dfn'>store a pending config</a>, <em>concept</em> <a href='s.html#store nested configs@@fenced frame config mapping@dfn'>store nested configs</a></dd>
<dt id="fenced frame reporter@@fencedframetype@dfn"><code class=prefix></code><span><strong>fenced frame reporter</strong> (<em>concept for <code>fencedframetype</code> </em>) <a class='self-link' href='#fenced%20frame%20reporter%40%40fencedframetype%40dfn' aria-label="Permalink for fenced frame reporter">§</a></span></dt>
<dd>Defined in <strong title='fenced frame reporter is defined in Fenced Frame'><a href=https://wicg.github.io/fenced-frame/#fencedframetype-fenced-frame-reporter>Fenced Frame</a></strong> </dd>
<dd>Referenced in
<a href=https://wicg.github.io/shared-storage/ title='fenced frame reporter is referenced by Shared Storage API'>Shared Storage API</a></dd>
<dt id="fenced frame reporter@@fenced frame config instance@dfn"><code class=prefix></code><span><strong>fenced frame reporter</strong> (<em>concept for <a href='f.html#fenced frame config instance@@fenced-frame%25%25dfn'>fenced frame config instance</a> </em>) <a class='self-link' href='#fenced%20frame%20reporter%40%40fenced%20frame%20config%20instance%40dfn' aria-label="Permalink for fenced frame reporter">§</a></span></dt>
<dd>Defined in <strong title='fenced frame reporter is defined in Fenced Frame'><a href=https://wicg.github.io/fenced-frame/#fenced-frame-config-instance-fenced-frame-reporter>Fenced Frame</a></strong> </dd>
<dt id="fenced frame reporting map@@fencedframetype@dfn"><code class=prefix></code><span><strong>fenced frame reporting map</strong> (<em>concept for <code>fencedframetype</code> </em>) <a class='self-link' href='#fenced%20frame%20reporting%20map%40%40fencedframetype%40dfn' aria-label="Permalink for fenced frame reporting map">§</a></span></dt>
<dd>Defined in <strong title='fenced frame reporting map is defined in Fenced Frame'><a href=https://wicg.github.io/fenced-frame/#fencedframetype-fenced-frame-reporting-map>Fenced Frame</a></strong> </dd>
<dd>Referenced in
<a href=https://wicg.github.io/turtledove/ title='fenced frame reporting map is referenced by Protected Audience'>Protected Audience</a></dd>
<dt id="fenced frame reporting map@@fenced frame reporting metadata@dfn"><code class=prefix></code><span><strong>fenced frame reporting map</strong> (<em>concept for <code>fenced frame reporting metadata</code> </em>) <a class='self-link' href='#fenced%20frame%20reporting%20map%40%40fenced%20frame%20reporting%20metadata%40dfn' aria-label="Permalink for fenced frame reporting map">§</a></span></dt>
<dd>Defined in <strong title='fenced frame reporting map is defined in Fenced Frame'><a href=https://wicg.github.io/fenced-frame/#fenced-frame-reporting-metadata-fenced-frame-reporting-map>Fenced Frame</a></strong> </dd>
<dd>Referenced in
<a href=https://wicg.github.io/turtledove/ title='fenced frame reporting map is referenced by Protected Audience'>Protected Audience</a></dd>
<dt id="fenced frame reporting metadata@@fencedframetype@dfn"><code class=prefix></code><span><strong>fenced frame reporting metadata</strong> (<em>concept for <code>fencedframetype</code> </em>) <a class='self-link' href='#fenced%20frame%20reporting%20metadata%40%40fencedframetype%40dfn' aria-label="Permalink for fenced frame reporting metadata">§</a></span></dt>
<dd>Defined in <strong title='fenced frame reporting metadata is defined in Fenced Frame'><a href=https://wicg.github.io/fenced-frame/#fencedframetype-fenced-frame-reporting-metadata>Fenced Frame</a></strong> </dd>
<dt id="fenced frame reporting metadata@@fenced frame config@dfn"><code class=prefix></code><span><strong>fenced frame reporting metadata</strong> (<em>concept for <a href='f.html#fenced frame config@@fenced-frame%25%25dfn'>fenced frame config</a> </em>) <a class='self-link' href='#fenced%20frame%20reporting%20metadata%40%40fenced%20frame%20config%40dfn' aria-label="Permalink for fenced frame reporting metadata">§</a></span></dt>
<dd>Defined in <strong title='fenced frame reporting metadata is defined in Fenced Frame'><a href=https://wicg.github.io/fenced-frame/#fenced-frame-config-fenced-frame-reporting-metadata>Fenced Frame</a></strong> </dd>
<dd>Referenced in
<a href=https://wicg.github.io/turtledove/ title='fenced frame reporting metadata is referenced by Protected Audience'>Protected Audience</a></dd>
<dt id="fenced frame reporting metadata reference@@fenced frame reporter@dfn"><code class=prefix></code><span><strong>fenced frame reporting metadata reference</strong> (<em>concept for <code>fenced frame reporter</code> </em>) <a class='self-link' href='#fenced%20frame%20reporting%20metadata%20reference%40%40fenced%20frame%20reporter%40dfn' aria-label="Permalink for fenced frame reporting metadata reference">§</a></span></dt>
<dd>Defined in <strong title='fenced frame reporting metadata reference is defined in Fenced Frame'><a href=https://wicg.github.io/fenced-frame/#fenced-frame-reporter-fenced-frame-reporting-metadata-reference>Fenced Frame</a></strong> </dd>
<dt id="fenced navigable@@fenced navigable container@dfn"><code class=prefix></code><span><strong>fenced navigable</strong> (<em>concept for <code>fenced navigable container</code> </em>) <a class='self-link' href='#fenced%20navigable%40%40fenced%20navigable%20container%40dfn' aria-label="Permalink for fenced navigable">§</a></span></dt>
<dd>Defined in <strong title='fenced navigable is defined in Fenced Frame'><a href=https://wicg.github.io/fenced-frame/#fenced-navigable-container-fenced-navigable>Fenced Frame</a></strong> </dd>
<dd>Referenced in
<a href=https://wicg.github.io/attribution-reporting-api/ title='fenced navigable is referenced by Attribution Reporting'>Attribution Reporting</a></dd>
<dt id="fenced-frame@@Supports-Loading-Mode@dfn"><code class=prefix></code><span><strong>fenced-frame</strong> (<em>concept for <code>Supports-Loading-Mode</code> </em>) <a class='self-link' href='#fenced-frame%40%40Supports-Loading-Mode%40dfn' aria-label="Permalink for fenced-frame">§</a></span></dt>
<dd>Defined in <strong title='fenced-frame is defined in Fenced Frame'><a href=https://wicg.github.io/fenced-frame/#supports-loading-mode-fenced-frame>Fenced Frame</a></strong> </dd>
<dt id="fencedframe@@fenced-frame%%element"><code class=prefix></code><span><strong><code class=markup>fencedframe</code></strong> (<em>markup element</em>) <a class='self-link' href='#fencedframe%40%40fenced-frame%25%25element' aria-label="Permalink for fencedframe">§</a></span></dt>
<dd>Defined in <strong title='fencedframe is defined in Fenced Frame'><a href=https://wicg.github.io/fenced-frame/#elementdef-fencedframe>Fenced Frame</a></strong> </dd>
<dd>Referenced in
<a href=https://wicg.github.io/turtledove/ title='fencedframe is referenced by Protected Audience'>Protected Audience</a></dd>
<dd>Related terms: <em>markup attribute</em> <a href='a.html#allow@@fencedframe@element-attr'><code>allow</code></a>, <em>markup attribute</em> <a href='h.html#height@@fencedframe@element-attr'><code>height</code></a>, <em>markup attribute</em> <a href='s.html#sandbox@@fencedframe@element-attr'><code>sandbox</code></a>, <em>markup attribute</em> <a href='w.html#width@@fencedframe@element-attr'><code>width</code></a></dd>
<dt id="FencedFrameConfig@@@@interface"><code class=prefix></code><span><strong><code class=webidl>FencedFrameConfig</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#FencedFrameConfig%40%40%40%40interface' aria-label="Permalink for FencedFrameConfig">§</a></span></dt>
<dd>Defined in <strong title='FencedFrameConfig is defined in Fenced Frame'><a href=https://wicg.github.io/fenced-frame/#fencedframeconfig>Fenced Frame</a></strong> </dd>
<dd>Referenced in
<a href=https://wicg.github.io/shared-storage/ title='FencedFrameConfig is referenced by Shared Storage API'>Shared Storage API</a>,
<a href=https://wicg.github.io/turtledove/ title='FencedFrameConfig is referenced by Protected Audience'>Protected Audience</a></dd>
<dd>Related terms: <code>new </code><a href='f.html#FencedFrameConfig(url)@@FencedFrameConfig@constructor'><code>FencedFrameConfig(url)</code></a>, <code>FencedFrameConfig.</code><a href='s.html#setSharedStorageContext(contextString)@@FencedFrameConfig@method'><code>setSharedStorageContext(contextString)</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/FencedFrameConfig.html' title='FencedFrameConfig entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="FencedFrameConfig(url)@@FencedFrameConfig@constructor"><code class=prefix>new </code><span><strong><code class=webidl>FencedFrameConfig(url)</code></strong> (<em>WebIDL constructor</em>) <a class='self-link' href='#FencedFrameConfig(url)%40%40FencedFrameConfig%40constructor' aria-label="Permalink for new FencedFrameConfig(url)">§</a></span></dt>
<dd>Defined in <strong title='FencedFrameConfig(url) is defined in Fenced Frame'><a href=https://wicg.github.io/fenced-frame/#dom-fencedframeconfig-fencedframeconfig>Fenced Frame</a></strong> </dd>
<dt id="FenceEvent@@@@dictionary"><code class=prefix></code><span><strong><code class=webidl>FenceEvent</code></strong> (<em>WebIDL dictionary</em>) <a class='self-link' href='#FenceEvent%40%40%40%40dictionary' aria-label="Permalink for FenceEvent">§</a></span></dt>
<dd>Defined in <strong title='FenceEvent is defined in Fenced Frame'><a href=https://wicg.github.io/fenced-frame/#dictdef-fenceevent>Fenced Frame</a></strong> </dd>
<dd>Referenced in
<a href=https://wicg.github.io/shared-storage/ title='FenceEvent is referenced by Shared Storage API'>Shared Storage API</a></dd>
<dd>Related terms: <code>FenceEvent.</code><a href='c.html#crossOriginExposed@@FenceEvent@dict-member'><code>crossOriginExposed</code></a>, <code>FenceEvent.</code><a href='d.html#destination@@FenceEvent@dict-member'><code>destination</code></a>, <code>FenceEvent.</code><a href='d.html#destinationURL@@FenceEvent@dict-member'><code>destinationURL</code></a>, <code>FenceEvent.</code><a href='e.html#eventData@@FenceEvent@dict-member'><code>eventData</code></a>, <code>FenceEvent.</code><a href='e.html#eventType@@FenceEvent@dict-member'><code>eventType</code></a>, <code>FenceEvent.</code><a href='o.html#once@@FenceEvent@dict-member'><code>once</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/FenceEvent.html' title='FenceEvent entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="FenceReportingDestination@@@@enum"><code class=prefix></code><span><strong><code class=webidl>FenceReportingDestination</code></strong> (<em>WebIDL enumeration</em>) <a class='self-link' href='#FenceReportingDestination%40%40%40%40enum' aria-label="Permalink for FenceReportingDestination">§</a></span></dt>
<dd>Defined in <strong title='FenceReportingDestination is defined in Fenced Frame'><a href=https://wicg.github.io/fenced-frame/#enumdef-fencereportingdestination>Fenced Frame</a></strong> </dd>
<dd>Related terms: <em>value</em> <a href='b.html#buyer@@FenceReportingDestination@enum-value'><code>buyer</code></a>, <em>value</em> <a href='c.html#component-seller@@FenceReportingDestination@enum-value'><code>component-seller</code></a>, <em>value</em> <a href='d.html#direct-seller@@FenceReportingDestination@enum-value'><code>direct-seller</code></a>, <em>value</em> <a href='s.html#seller@@FenceReportingDestination@enum-value'><code>seller</code></a>, <em>value</em> <a href='s.html#shared-storage-select-url@@FenceReportingDestination@enum-value'><code>shared-storage-select-url</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/FenceReportingDestination.html' title='FenceReportingDestination entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="feOffset@@filter-effects%%element"><code class=prefix></code><span><strong><code class=markup>feOffset</code></strong> (<em>markup element</em>) <a class='self-link' href='#feOffset%40%40filter-effects%25%25element' aria-label="Permalink for feOffset">§</a></span></dt>
<dd>Defined in <strong title='feOffset is defined in Filter Effects 1'><a href=https://drafts.fxtf.org/filter-effects-1/#elementdef-feoffset>Filter Effects 1</a></strong> </dd>
<dt id="fePointLight@@filter-effects%%element"><code class=prefix></code><span><strong><code class=markup>fePointLight</code></strong> (<em>markup element</em>) <a class='self-link' href='#fePointLight%40%40filter-effects%25%25element' aria-label="Permalink for fePointLight">§</a></span></dt>
<dd>Defined in <strong title='fePointLight is defined in Filter Effects 1'><a href=https://drafts.fxtf.org/filter-effects-1/#elementdef-fepointlight>Filter Effects 1</a></strong> </dd>
<dt id="feSpecularLighting@@filter-effects%%element"><code class=prefix></code><span><strong><code class=markup>feSpecularLighting</code></strong> (<em>markup element</em>) <a class='self-link' href='#feSpecularLighting%40%40filter-effects%25%25element' aria-label="Permalink for feSpecularLighting">§</a></span></dt>
<dd>Defined in <strong title='feSpecularLighting is defined in Filter Effects 1'><a href=https://drafts.fxtf.org/filter-effects-1/#elementdef-fespecularlighting>Filter Effects 1</a></strong> </dd>
<dt id="feSpotLight@@filter-effects%%element"><code class=prefix></code><span><strong><code class=markup>feSpotLight</code></strong> (<em>markup element</em>) <a class='self-link' href='#feSpotLight%40%40filter-effects%25%25element' aria-label="Permalink for feSpotLight">§</a></span></dt>
<dd>Defined in <strong title='feSpotLight is defined in Filter Effects 1'><a href=https://drafts.fxtf.org/filter-effects-1/#elementdef-fespotlight>Filter Effects 1</a></strong> </dd>
<dt id="fetch@@fetch%%dfn"><code class=prefix></code><span><strong>fetch</strong> (<em>concept</em>) <a class='self-link' href='#fetch%40%40fetch%25%25dfn' aria-label="Permalink for fetch">§</a></span></dt>
<dd>Defined in <strong title='fetch is defined in Fetch'><a href=https://fetch.spec.whatwg.org/#concept-fetch>Fetch</a></strong> </dd>
<dd>Referenced in
<a href=https://html.spec.whatwg.org/multipage/ title='fetch is referenced by HTML'>HTML</a>,
<a href=https://mimesniff.spec.whatwg.org/ title='fetch is referenced by MIME Sniffing'>MIME Sniffing</a>,
<a href=https://notifications.spec.whatwg.org/ title='fetch is referenced by Notifications API'>Notifications API</a>,
<a href=https://patcg-individual-drafts.github.io/private-aggregation-api/ title='fetch is referenced by Private Aggregation API'>Private Aggregation API</a>,
<a href=https://privacycg.github.io/saa-non-cookie-storage/ title='fetch is referenced by Extending Storage Access API to non-cookie storage'>Extending Storage Access API to non-cookie storage</a>,
<a href=https://tc39.es/source-map/ title='fetch is referenced by Source Map'>Source Map</a>,
<a href=https://websockets.spec.whatwg.org/ title='fetch is referenced by WebSockets'>WebSockets</a>,
<a href=https://wicg.github.io/attribution-reporting-api/ title='fetch is referenced by Attribution Reporting'>Attribution Reporting</a>,
<a href=https://wicg.github.io/background-fetch/ title='fetch is referenced by Background Fetch'>Background Fetch</a>,
<a href=https://wicg.github.io/client-hints-infrastructure/ title='fetch is referenced by Client Hints Infrastructure'>Client Hints Infrastructure</a>,
<a href=https://wicg.github.io/content-index/spec/ title='fetch is referenced by Content Index'>Content Index</a>,
<a href=https://wicg.github.io/cookie-store/ title='fetch is referenced by Cookie Store API'>Cookie Store API</a>,
<a href=https://wicg.github.io/fenced-frame/ title='fetch is referenced by Fenced Frame'>Fenced Frame</a>,
<a href=https://wicg.github.io/isolated-web-apps/isolated-contexts.html title='fetch is referenced by Isolated Contexts'>Isolated Contexts</a>,
<a href=https://wicg.github.io/nav-speculation/prefetch.html title='fetch is referenced by Prefetch'>Prefetch</a>,
<a href=https://wicg.github.io/nav-speculation/speculation-rules.html title='fetch is referenced by Speculation Rules'>Speculation Rules</a>,
<a href=https://wicg.github.io/private-network-access/ title='fetch is referenced by Private Network Access'>Private Network Access</a>,
<a href=https://wicg.github.io/responsive-image-client-hints/ title='fetch is referenced by Responsive Image Client Hints'>Responsive Image Client Hints</a>,
<a href=https://wicg.github.io/shared-storage/ title='fetch is referenced by Shared Storage API'>Shared Storage API</a>,
<a href=https://wicg.github.io/turtledove/ title='fetch is referenced by Protected Audience'>Protected Audience</a>,
<a href=https://wicg.github.io/webpackage/loading.html title='fetch is referenced by Loading Signed Exchanges'>Loading Signed Exchanges</a>,
<a href=https://w3c.github.io/manifest/ title='fetch is referenced by Web Application Manifest'>Web Application Manifest</a>,
<a href=https://w3c.github.io/beacon/ title='fetch is referenced by Beacon'>Beacon</a>,
<a href=https://w3c.github.io/webappsec-csp/ title='fetch is referenced by Content Security Policy 3'>Content Security Policy 3</a>,
<a href=https://drafts.csswg.org/css-fonts-4/ title='fetch is referenced by CSS Fonts 4'>CSS Fonts 4</a>,
<a href=https://drafts.csswg.org/css-values-4/ title='fetch is referenced by CSS Values 4'>CSS Values 4</a>,
<a href=https://drafts.csswg.org/cssom-1/ title='fetch is referenced by CSSOM'>CSSOM</a>,
<a href=https://w3c-fedid.github.io/FedCM/ title='fetch is referenced by Federated Credential Management API'>Federated Credential Management API</a>,
<a href=https://w3c.github.io/FileAPI/ title='fetch is referenced by File API'>File API</a>,
<a href=https://w3c.github.io/image-resource/ title='fetch is referenced by Image Resource'>Image Resource</a>,
<a href=https://w3c.github.io/mediasession/ title='fetch is referenced by Media Session'>Media Session</a>,
<a href=https://w3c.github.io/miniapp-packaging/ title='fetch is referenced by MiniApp Packaging'>MiniApp Packaging</a>,
<a href=https://w3c.github.io/navigation-timing/ title='fetch is referenced by Navigation Timing 2'>Navigation Timing 2</a>,
<a href=https://w3c.github.io/payment-method-id/ title='fetch is referenced by Payment Method Identifiers'>Payment Method Identifiers</a>,
<a href=https://w3c.github.io/payment-method-manifest/ title='fetch is referenced by Payment Method Manifest'>Payment Method Manifest</a>,
<a href=https://w3c.github.io/webappsec-referrer-policy/ title='fetch is referenced by Referrer Policy'>Referrer Policy</a>,
<a href=https://w3c.github.io/reporting/ title='fetch is referenced by Reporting API'>Reporting API</a>,
<a href=https://w3c.github.io/resource-timing/ title='fetch is referenced by Resource Timing'>Resource Timing</a>,
<a href=https://w3c.github.io/ServiceWorker/ title='fetch is referenced by Service Workers'>Service Workers</a>,
<a href=https://w3c.github.io/webappsec-upgrade-insecure-requests/ title='fetch is referenced by Upgrade Insecure Requests'>Upgrade Insecure Requests</a>,
<a href=https://w3c.github.io/webtransport/ title='fetch is referenced by WebTransport'>WebTransport</a>,
<a href=https://xhr.spec.whatwg.org/ title='fetch is referenced by XMLHttpRequest'>XMLHttpRequest</a></dd>
<dd>Related terms: <em>concept</em> <a href='f.html#fetch group@@fetch@dfn'>fetch group</a>, <em>concept</em> <a href='p.html#processEarlyHintsResponse@@fetch@dfn'>processEarlyHintsResponse</a>, <em>concept</em> <a href='p.html#processRequestBodyChunkLength@@fetch@dfn'>processRequestBodyChunkLength</a>, <em>concept</em> <a href='p.html#processRequestEndOfBody@@fetch@dfn'>processRequestEndOfBody</a>, <em>concept</em> <a href='p.html#processResponse@@fetch@dfn'>processResponse</a>, <em>concept</em> <a href='p.html#processResponseConsumeBody@@fetch@dfn'>processResponseConsumeBody</a>, <em>concept</em> <a href='p.html#processResponseEndOfBody@@fetch@dfn'>processResponseEndOfBody</a>, <em>concept</em> <a href='r.html#resumed@@fetch@dfn'>resumed</a>, <em>concept</em> <a href='s.html#suspend@@fetch@dfn'>suspend</a>, <em>concept</em> <a href='u.html#useParallelQueue@@fetch@dfn'>useParallelQueue</a></dd>
<dt id="fetch@@ServiceWorkerGlobalScope@event"><code class=prefix></code><span><strong><code class=webidl>fetch</code></strong> (<em>event for <a href='s.html#ServiceWorkerGlobalScope@@@@interface'><code>ServiceWorkerGlobalScope</code></a> </em>) <a class='self-link' href='#fetch%40%40ServiceWorkerGlobalScope%40event' aria-label="Permalink for fetch">§</a></span></dt>
<dd>Defined in <strong title='fetch is defined in Service Workers'><a href=https://w3c.github.io/ServiceWorker/#service-worker-global-scope-fetch-event>Service Workers</a></strong> </dd>
<dd>Referenced in
<a href=https://fetch.spec.whatwg.org/ title='fetch is referenced by Fetch'>Fetch</a>,
<a href=https://streams.spec.whatwg.org/ title='fetch is referenced by Streams'>Streams</a></dd>
<dt id="fetch a classic script@@html%%dfn"><code class=prefix></code><span><strong>fetch a classic script</strong> (<em>concept</em>) <a class='self-link' href='#fetch%20a%20classic%20script%40%40html%25%25dfn' aria-label="Permalink for fetch a classic script">§</a></span></dt>
<dd>Defined in <strong title='fetch a classic script is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/webappapis.html#fetch-a-classic-script>HTML</a></strong> </dd>
<dd>Referenced in
<a href=https://fetch.spec.whatwg.org/ title='fetch a classic script is referenced by Fetch'>Fetch</a></dd>
<dt id="fetch a classic worker script@@html%%dfn"><code class=prefix></code><span><strong>fetch a classic worker script</strong> (<em>concept</em>) <a class='self-link' href='#fetch%20a%20classic%20worker%20script%40%40html%25%25dfn' aria-label="Permalink for fetch a classic worker script">§</a></span></dt>
<dd>Defined in <strong title='fetch a classic worker script is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/webappapis.html#fetch-a-classic-worker-script>HTML</a></strong> </dd>
<dd>Referenced in
<a href=https://w3c.github.io/ServiceWorker/ title='fetch a classic worker script is referenced by Service Workers'>Service Workers</a></dd>
<dt id="fetch a classic worker-imported script@@html%%dfn"><code class=prefix></code><span><strong>fetch a classic worker-imported script</strong> (<em>concept</em>) <a class='self-link' href='#fetch%20a%20classic%20worker-imported%20script%40%40html%25%25dfn' aria-label="Permalink for fetch a classic worker-imported script">§</a></span></dt>
<dd>Defined in <strong title='fetch a classic worker-imported script is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/webappapis.html#fetch-a-classic-worker-imported-script>HTML</a></strong> </dd>
<dd>Referenced in
<a href=https://w3c.github.io/ServiceWorker/ title='fetch a classic worker-imported script is referenced by Service Workers'>Service Workers</a></dd>
<dt id="fetch a CSS style sheet@@cssom%%dfn"><code class=prefix></code><span><strong>fetch a CSS style sheet</strong> (<em>concept</em>) <a class='self-link' href='#fetch%20a%20CSS%20style%20sheet%40%40cssom%25%25dfn' aria-label="Permalink for fetch a CSS style sheet">§</a></span></dt>
<dd>Defined in <strong title='fetch a CSS style sheet is defined in CSSOM'><a href=https://drafts.csswg.org/cssom-1/#fetch-a-css-style-sheet>CSSOM</a></strong> </dd>
<dt id="fetch a module worker script graph@@html%%dfn"><code class=prefix></code><span><strong>fetch a module worker script graph</strong> (<em>concept</em>) <a class='self-link' href='#fetch%20a%20module%20worker%20script%20graph%40%40html%25%25dfn' aria-label="Permalink for fetch a module worker script graph">§</a></span></dt>
<dd>Defined in <strong title='fetch a module worker script graph is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/webappapis.html#fetch-a-module-worker-script-tree>HTML</a></strong> </dd>
<dd>Referenced in
<a href=https://w3c.github.io/ServiceWorker/ title='fetch a module worker script graph is referenced by Service Workers'>Service Workers</a></dd>
<dt id="fetch a style resource@@css-values%%dfn"><code class=prefix></code><span><strong>fetch a style resource</strong> (<em>concept</em>) <a class='self-link' href='#fetch%20a%20style%20resource%40%40css-values%25%25dfn' aria-label="Permalink for fetch a style resource">§</a></span></dt>
<dd>Defined in <strong title='fetch a style resource is defined in CSS Values 4'><a href=https://drafts.csswg.org/css-values-4/#fetch-a-style-resource>CSS Values 4</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-shapes-2/ title='fetch a style resource is referenced by CSS Shapes 2'>CSS Shapes 2</a>,
<a href=https://fetch.spec.whatwg.org/ title='fetch a style resource is referenced by Fetch'>Fetch</a>,
<a href=https://drafts.csswg.org/css-cascade-4/ title='fetch a style resource is referenced by CSS Cascading 4'>CSS Cascading 4</a>,
<a href=https://drafts.csswg.org/css-color-5/ title='fetch a style resource is referenced by CSS Color 5'>CSS Color 5</a>,
<a href=https://drafts.csswg.org/css-fonts-4/ title='fetch a style resource is referenced by CSS Fonts 4'>CSS Fonts 4</a></dd>
<dt id="fetch an @import@@css-cascade%%dfn"><code class=prefix></code><span><strong>fetch an @import</strong> (<em>concept</em>) <a class='self-link' href='#fetch%20an%20%40import%40%40css-cascade%25%25dfn' aria-label="Permalink for fetch an @import">§</a></span></dt>
<dd>Defined in <strong title='fetch an @import is defined in CSS Cascading 4'><a href=https://drafts.csswg.org/css-cascade-4/#fetch-an-import>CSS Cascading 4</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-2022/ title='fetch an @import is referenced by CSS Snapshot 2022'>CSS Snapshot 2022</a>,
<a href=https://drafts.csswg.org/css-2023/ title='fetch an @import is referenced by CSS Snapshot 2023'>CSS Snapshot 2023</a></dd>
<dt id="fetch an external color profile@@css-color%%dfn"><code class=prefix></code><span><strong>fetch an external color profile</strong> (<em>concept</em>) <a class='self-link' href='#fetch%20an%20external%20color%20profile%40%40css-color%25%25dfn' aria-label="Permalink for fetch an external color profile">§</a></span></dt>
<dd>Defined in <strong title='fetch an external color profile is defined in CSS Color 5'><a href=https://drafts.csswg.org/css-color-5/#fetch-an-external-color-profile>CSS Color 5</a></strong> </dd>
<dt id="fetch an external image for a stylesheet@@css-images%%dfn"><code class=prefix></code><span><strong>fetch an external image for a stylesheet</strong> (<em>concept</em>) <a class='self-link' href='#fetch%20an%20external%20image%20for%20a%20stylesheet%40%40css-images%25%25dfn' aria-label="Permalink for fetch an external image for a stylesheet">§</a></span></dt>
<dd>Defined in <strong title='fetch an external image for a stylesheet is defined in CSS Images 4'><a href=https://drafts.csswg.org/css-images-4/#fetch-an-external-image-for-a-stylesheet>CSS Images 4</a></strong> </dd>