-
Notifications
You must be signed in to change notification settings - Fork 2
/
n.html
6821 lines (3425 loc) · 830 KB
/
n.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 n"
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="n@@JsonWebKey@dict-member"><code class=prefix><a href='j.html#JsonWebKey@@@@dictionary'>JsonWebKey</a>.</code><span><strong><code class=webidl>n</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#n%40%40JsonWebKey%40dict-member' aria-label="Permalink for <a href='j.html#JsonWebKey@@@@dictionary'>JsonWebKey</a>.n">§</a></span></dt>
<dd>Defined in <strong title='n is defined in Web Cryptography API'><a href=https://w3c.github.io/webcrypto/#dom-jsonwebkey-n>Web Cryptography API</a></strong> </dd>
<dt id="<n-dimension>@@@@type"><code class=prefix></code><span><strong><code class=css><n-dimension></code></strong> (<em>CSS type</em>) <a class='self-link' href='#%3Cn-dimension%3E%40%40%40%40type' aria-label="Permalink for <n-dimension>">§</a></span></dt>
<dd>Defined in <strong title='<n-dimension> is defined in CSS Syntax 3'><a href=https://drafts.csswg.org/css-syntax-3/#typedef-n-dimension>CSS Syntax 3</a></strong> </dd>
<dt id="n-resize@@cursor@value"><code class=prefix></code><span><strong><code class=css>n-resize</code></strong> (<em>CSS value for <a href='c.html#cursor@@@@property'><code>cursor</code></a> </em>) <a class='self-link' href='#n-resize%40%40cursor%40value' aria-label="Permalink for n-resize">§</a></span></dt>
<dd>Defined in <strong title='n-resize is defined in CSS User Interface 3'><a href=https://drafts.csswg.org/css-ui-3/#valdef-cursor-n-resize>CSS User Interface 3</a></strong> , <strong title='n-resize is defined in CSS User Interface 4'><a href=https://drafts.csswg.org/css-ui-4/#valdef-cursor-n-resize>CSS User Interface 4</a></strong> , <strong title='n-resize is defined in CSS 2.2'><a href=https://drafts.csswg.org/css2/#valdef-cursor-n-resize>CSS 2.2</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-2022/ title='n-resize is referenced by CSS Snapshot 2022'>CSS Snapshot 2022</a>,
<a href=https://drafts.csswg.org/css-2023/ title='n-resize is referenced by CSS Snapshot 2023'>CSS Snapshot 2023</a></dd>
<dt id="<na-name>@@@@type"><code class=prefix></code><span><strong><code class=css><na-name></code></strong> (<em>CSS type</em>) <a class='self-link' href='#%3Cna-name%3E%40%40%40%40type' aria-label="Permalink for <na-name>">§</a></span></dt>
<dd>Defined in <strong title='<na-name> is defined in Non-element Selectors 1'><a href=https://drafts.csswg.org/selectors-nonelement-1/#typedef-na-name>Non-element Selectors 1</a></strong> </dd>
<dt id="<na-prefix>@@@@type"><code class=prefix></code><span><strong><code class=css><na-prefix></code></strong> (<em>CSS type</em>) <a class='self-link' href='#%3Cna-prefix%3E%40%40%40%40type' aria-label="Permalink for <na-prefix>">§</a></span></dt>
<dd>Defined in <strong title='<na-prefix> is defined in Non-element Selectors 1'><a href=https://drafts.csswg.org/selectors-nonelement-1/#typedef-na-prefix>Non-element Selectors 1</a></strong> </dd>
<dt id="nackCount@@RTCInboundRtpStreamStats@dict-member"><code class=prefix><a href='r.html#RTCInboundRtpStreamStats@@@@dictionary'>RTCInboundRtpStreamStats</a>.</code><span><strong><code class=webidl>nackCount</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#nackCount%40%40RTCInboundRtpStreamStats%40dict-member' aria-label="Permalink for <a href='r.html#RTCInboundRtpStreamStats@@@@dictionary'>RTCInboundRtpStreamStats</a>.nackCount">§</a></span></dt>
<dd>Defined in <strong title='nackCount is defined in WebRTC Statistics'><a href=https://w3c.github.io/webrtc-stats/#dom-rtcinboundrtpstreamstats-nackcount>WebRTC Statistics</a></strong> </dd>
<dt id="nackCount@@RTCOutboundRtpStreamStats@dict-member"><code class=prefix><a href='r.html#RTCOutboundRtpStreamStats@@@@dictionary'>RTCOutboundRtpStreamStats</a>.</code><span><strong><code class=webidl>nackCount</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#nackCount%40%40RTCOutboundRtpStreamStats%40dict-member' aria-label="Permalink for <a href='r.html#RTCOutboundRtpStreamStats@@@@dictionary'>RTCOutboundRtpStreamStats</a>.nackCount">§</a></span></dt>
<dd>Defined in <strong title='nackCount is defined in WebRTC Statistics'><a href=https://w3c.github.io/webrtc-stats/#dom-rtcoutboundrtpstreamstats-nackcount>WebRTC Statistics</a></strong> </dd>
<dt id="naively convert from CMYK to RGBA@@css-color%%dfn"><code class=prefix></code><span><strong>naively convert from CMYK to RGBA</strong> (<em>concept</em>) <a class='self-link' href='#naively%20convert%20from%20CMYK%20to%20RGBA%40%40css-color%25%25dfn' aria-label="Permalink for naively convert from CMYK to RGBA">§</a></span></dt>
<dd>Defined in <strong title='naively convert from CMYK to RGBA is defined in CSS Color 5'><a href=https://drafts.csswg.org/css-color-5/#naively-convert-from-cmyk-to-rgba>CSS Color 5</a></strong> </dd>
<dt id="naively convert from RGBA to CMYK@@css-color%%dfn"><code class=prefix></code><span><strong>naively convert from RGBA to CMYK</strong> (<em>concept</em>) <a class='self-link' href='#naively%20convert%20from%20RGBA%20to%20CMYK%40%40css-color%25%25dfn' aria-label="Permalink for naively convert from RGBA to CMYK">§</a></span></dt>
<dd>Defined in <strong title='naively convert from RGBA to CMYK is defined in CSS Color 5'><a href=https://drafts.csswg.org/css-color-5/#naively-convert-from-rgba-to-cmyk>CSS Color 5</a></strong> </dd>
<dt id="[[name]]@@MLOperand@attribute"><code class=prefix><a href='m.html#MLOperand@@@@interface'>MLOperand</a>.</code><span><strong><code class=webidl>[[name]]</code></strong> (<em>internal slot</em>) <a class='self-link' href='#%5B%5Bname%5D%5D%40%40MLOperand%40attribute' aria-label="Permalink for <a href='m.html#MLOperand@@@@interface'>MLOperand</a>.[[name]]">§</a></span></dt>
<dd>Defined in <strong title='[[name]] is defined in Web Neural Network API'><a href=https://webmachinelearning.github.io/webnn/#dom-mloperand-name-slot>Web Neural Network API</a></strong> </dd>
<dt id="name@@slot@dfn"><code class=prefix></code><span><strong>name</strong> (<em>concept for <a href='s.html#slot@@dom%25%25dfn'>slot</a> </em>) <a class='self-link' href='#name%40%40slot%40dfn' aria-label="Permalink for name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in DOM'><a href=https://dom.spec.whatwg.org/#slot-name>DOM</a></strong> </dd>
<dd>Referenced in
<a href=https://html.spec.whatwg.org/multipage/ title='name is referenced by HTML'>HTML</a></dd>
<dt id="name@@slottable@dfn"><code class=prefix></code><span><strong>name</strong> (<em>concept for <a href='s.html#slottable@@dom%25%25dfn'>slottable</a> </em>) <a class='self-link' href='#name%40%40slottable%40dfn' aria-label="Permalink for name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in DOM'><a href=https://dom.spec.whatwg.org/#slotable-name>DOM</a></strong> </dd>
<dt id="name@@DocumentType@dfn"><code class=prefix></code><span><strong>name</strong> (<em>concept for <a href='d.html#DocumentType@@@@interface'><code>DocumentType</code></a> </em>) <a class='self-link' href='#name%40%40DocumentType%40dfn' aria-label="Permalink for name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in DOM'><a href=https://dom.spec.whatwg.org/#concept-doctype-name>DOM</a></strong> </dd>
<dd>Referenced in
<a href=https://html.spec.whatwg.org/multipage/ title='name is referenced by HTML'>HTML</a></dd>
<dt id="name@@encoding@dfn"><code class=prefix></code><span><strong>name</strong> (<em>concept for <a href='e.html#encoding@@encoding%25%25dfn'>encoding</a> </em>) <a class='self-link' href='#name%40%40encoding%40dfn' aria-label="Permalink for name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Encoding'><a href=https://encoding.spec.whatwg.org/#name>Encoding</a></strong> </dd>
<dd>Referenced in
<a href=https://dom.spec.whatwg.org/ title='name is referenced by DOM'>DOM</a>,
<a href=https://html.spec.whatwg.org/multipage/ title='name is referenced by HTML'>HTML</a>,
<a href=https://w3c.github.io/web-nfc/ title='name is referenced by Web NFC API'>Web NFC API</a></dd>
<dt id="name@@header@dfn"><code class=prefix></code><span><strong>name</strong> (<em>concept for <a href='h.html#header@@fetch%25%25dfn'>header</a> </em>) <a class='self-link' href='#name%40%40header%40dfn' aria-label="Permalink for name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Fetch'><a href=https://fetch.spec.whatwg.org/#concept-header-name>Fetch</a></strong> </dd>
<dd>Referenced in
<a href=https://wicg.github.io/background-fetch/ title='name is referenced by Background Fetch'>Background Fetch</a>,
<a href=https://wicg.github.io/client-hints-infrastructure/ title='name is referenced by Client Hints Infrastructure'>Client Hints Infrastructure</a>,
<a href=https://wicg.github.io/fenced-frame/ title='name is referenced by Fenced Frame'>Fenced Frame</a>,
<a href=https://wicg.github.io/webpackage/loading.html title='name is referenced by Loading Signed Exchanges'>Loading Signed Exchanges</a>,
<a href=https://w3c-fedid.github.io/FedCM/ title='name is referenced by Federated Credential Management API'>Federated Credential Management API</a>,
<a href=https://w3c.github.io/network-error-logging/ title='name is referenced by Network Error Logging'>Network Error Logging</a>,
<a href=https://w3c.github.io/ServiceWorker/ title='name is referenced by Service Workers'>Service Workers</a>,
<a href=https://w3c.github.io/webdriver/ title='name is referenced by WebDriver'>WebDriver</a>,
<a href=https://xhr.spec.whatwg.org/ title='name is referenced by XMLHttpRequest'>XMLHttpRequest</a></dd>
<dt id="name@@meta@element-attr"><code class=prefix></code><span><strong><code class=markup>name</code></strong> (<em>markup attribute for <a href='m.html#meta@@html%25%25element'><code>meta</code></a> </em>) <a class='self-link' href='#name%40%40meta%40element-attr' aria-label="Permalink for name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/semantics.html#attr-meta-name>HTML</a></strong> </dd>
<dd>Referenced in
<a href=https://w3c.github.io/manifest/ title='name is referenced by Web Application Manifest'>Web Application Manifest</a>,
<a href=https://w3c.github.io/epub-specs/epub33/core/ title='name is referenced by EPUB 3.3'>EPUB 3.3</a>,
<a href=https://w3c.github.io/html-aam/ title='name is referenced by HTML Accessibility API Mappings 1.0'>HTML Accessibility API Mappings 1.0</a>,
<a href=https://w3c.github.io/webappsec-referrer-policy/ title='name is referenced by Referrer Policy'>Referrer Policy</a></dd>
<dd>Related terms: <em>value</em> <a href='a.html#application-name@@meta/name@attr-value'><code>application-name</code></a>, <em>value</em> <a href='a.html#author@@meta/name@attr-value'><code>author</code></a>, <em>value</em> <a href='c.html#color-scheme@@meta/name@attr-value'><code>color-scheme</code></a>, <em>value</em> <a href='d.html#description@@meta/name@attr-value'><code>description</code></a>, <em>value</em> <a href='g.html#generator@@meta/name@attr-value'><code>generator</code></a>, <em>value</em> <a href='k.html#keywords@@meta/name@attr-value'><code>keywords</code></a>, <em>value</em> <a href='r.html#referrer@@meta/name@attr-value'><code>referrer</code></a>, <em>value</em> <a href='t.html#theme-color@@meta/name@attr-value'><code>theme-color</code></a></dd>
<dt id="name@@iframe@element-attr"><code class=prefix></code><span><strong><code class=markup>name</code></strong> (<em>markup attribute for <a href='i.html#iframe@@html%25%25element'><code>iframe</code></a> </em>) <a class='self-link' href='#name%40%40iframe%40element-attr' aria-label="Permalink for name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/iframe-embed-object.html#attr-iframe-name>HTML</a></strong> </dd>
<dd>Referenced in
<a href=https://w3c.github.io/html-aam/ title='name is referenced by HTML Accessibility API Mappings 1.0'>HTML Accessibility API Mappings 1.0</a>,
<a href=https://w3c.github.io/longtasks/ title='name is referenced by Long Tasks API'>Long Tasks API</a></dd>
<dt id="name@@object@element-attr"><code class=prefix></code><span><strong><code class=markup>name</code></strong> (<em>markup attribute for <a href='o.html#object@@html%25%25element'><code>object</code></a> </em>) <a class='self-link' href='#name%40%40object%40element-attr' aria-label="Permalink for name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/iframe-embed-object.html#attr-object-name>HTML</a></strong> </dd>
<dd>Referenced in
<a href=https://w3c.github.io/html-aam/ title='name is referenced by HTML Accessibility API Mappings 1.0'>HTML Accessibility API Mappings 1.0</a>,
<a href=https://w3c.github.io/longtasks/ title='name is referenced by Long Tasks API'>Long Tasks API</a></dd>
<dt id="name@@map@element-attr"><code class=prefix></code><span><strong><code class=markup>name</code></strong> (<em>markup attribute for <a href='m.html#map@@html%25%25element'><code>map</code></a> </em>) <a class='self-link' href='#name%40%40map%40element-attr' aria-label="Permalink for name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/image-maps.html#attr-map-name>HTML</a></strong> </dd>
<dd>Referenced in
<a href=https://w3c.github.io/html-aam/ title='name is referenced by HTML Accessibility API Mappings 1.0'>HTML Accessibility API Mappings 1.0</a></dd>
<dt id="name@@form@element-attr"><code class=prefix></code><span><strong><code class=markup>name</code></strong> (<em>markup attribute for <a href='f.html#form@@html%25%25element'><code>form</code></a> </em>) <a class='self-link' href='#name%40%40form%40element-attr' aria-label="Permalink for name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/forms.html#attr-form-name>HTML</a></strong> </dd>
<dd>Referenced in
<a href=https://w3c.github.io/html-aam/ title='name is referenced by HTML Accessibility API Mappings 1.0'>HTML Accessibility API Mappings 1.0</a></dd>
<dt id="name@@button@element-attr"><code class=prefix></code><span><strong><code class=markup>name</code></strong> (<em>markup attribute for <a href='b.html#button@@html%25%25element'><code>button</code></a>, <a href='f.html#fieldset@@html%25%25element'><code>fieldset</code></a> element, <a href='i.html#input@@html%25%25element'><code>input</code></a> element, <a href='o.html#output@@html%25%25element'><code>output</code></a> element, <a href='s.html#select@@html%25%25element'><code>select</code></a> element, <a href='t.html#textarea@@html%25%25element'><code>textarea</code></a> element </em>) <a class='self-link' href='#name%40%40button%40element-attr' aria-label="Permalink for name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#attr-fe-name>HTML</a></strong> </dd>
<dd>Referenced in
<a href=https://w3c.github.io/html-aam/ title='name is referenced by HTML Accessibility API Mappings 1.0'>HTML Accessibility API Mappings 1.0</a></dd>
<dt id="name@@button/autocomplete@attr-value"><code class=prefix></code><span><strong><code class=markup>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='#name%40%40button%2Fautocomplete%40attr-value' aria-label="Permalink for name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#attr-fe-autocomplete-name>HTML</a></strong> </dd>
<dt id="name@@entry list/entry@dfn"><code class=prefix></code><span><strong>name</strong> (<em>concept for <a href='e.html#entry@@entry list@dfn'>entry</a> of <a href='e.html#entry list@@html%25%25dfn'>entry list</a> </em>) <a class='self-link' href='#name%40%40entry%20list%2Fentry%40dfn' aria-label="Permalink for name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#form-entry-name>HTML</a></strong> </dd>
<dd>Referenced in
<a href=https://xhr.spec.whatwg.org/ title='name is referenced by XMLHttpRequest'>XMLHttpRequest</a></dd>
<dt id="name@@details@element-attr"><code class=prefix></code><span><strong><code class=markup>name</code></strong> (<em>markup attribute for <a href='d.html#details@@html%25%25element'><code>details</code></a> </em>) <a class='self-link' href='#name%40%40details%40element-attr' aria-label="Permalink for name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/interactive-elements.html#attr-details-name>HTML</a></strong> </dd>
<dt id="name@@slot@element-attr"><code class=prefix></code><span><strong><code class=markup>name</code></strong> (<em>markup attribute for <a href='s.html#slot@@html%25%25element'><code>slot</code></a> </em>) <a class='self-link' href='#name%40%40slot%40element-attr' aria-label="Permalink for name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/scripting.html#attr-slot-name>HTML</a></strong> </dd>
<dd>Referenced in
<a href=https://w3c.github.io/html-aam/ title='name is referenced by HTML Accessibility API Mappings 1.0'>HTML Accessibility API Mappings 1.0</a></dd>
<dt id="name@@custom element definition@dfn"><code class=prefix></code><span><strong>name</strong> (<em>concept for <a href='c.html#custom element definition@@Element@dfn'>custom element definition</a> </em>) <a class='self-link' href='#name%40%40custom%20element%20definition%40dfn' aria-label="Permalink for name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/custom-elements.html#concept-custom-element-definition-name>HTML</a></strong> </dd>
<dd>Referenced in
<a href=https://dom.spec.whatwg.org/ title='name is referenced by DOM'>DOM</a></dd>
<dt id="name@@WorkerGlobalScope@dfn"><code class=prefix></code><span><strong>name</strong> (<em>concept for <a href='w.html#WorkerGlobalScope@@@@interface'><code>WorkerGlobalScope</code></a> </em>) <a class='self-link' href='#name%40%40WorkerGlobalScope%40dfn' aria-label="Permalink for name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/workers.html#concept-workerglobalscope-name>HTML</a></strong> </dd>
<dt id="name@@a@element-attr"><code class=prefix></code><span><strong><code class=markup>name</code></strong> (<em>markup attribute for <a href='a.html#a@@html%25%25element'><code>a</code></a> </em>) <a class='self-link' href='#name%40%40a%40element-attr' aria-label="Permalink for name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/obsolete.html#attr-a-name>HTML</a></strong> </dd>
<dt id="name@@embed@element-attr"><code class=prefix></code><span><strong><code class=markup>name</code></strong> (<em>markup attribute for <a href='e.html#embed@@html%25%25element'><code>embed</code></a> </em>) <a class='self-link' href='#name%40%40embed%40element-attr' aria-label="Permalink for name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/obsolete.html#attr-embed-name>HTML</a></strong> </dd>
<dt id="name@@img@element-attr"><code class=prefix></code><span><strong><code class=markup>name</code></strong> (<em>markup attribute for <a href='i.html#img@@html%25%25element'><code>img</code></a> </em>) <a class='self-link' href='#name%40%40img%40element-attr' aria-label="Permalink for name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/obsolete.html#attr-img-name>HTML</a></strong> </dd>
<dt id="name@@option@element-attr"><code class=prefix></code><span><strong><code class=markup>name</code></strong> (<em>markup attribute for <a href='o.html#option@@html%25%25element'><code>option</code></a> </em>) <a class='self-link' href='#name%40%40option%40element-attr' aria-label="Permalink for name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/obsolete.html#attr-option-name>HTML</a></strong> </dd>
<dt id="name@@struct@dfn"><code class=prefix></code><span><strong>name</strong> (<em>concept for <a href='s.html#struct@@infra%25%25dfn'>struct</a>, <a href='t.html#tuple@@infra%25%25dfn'>tuple</a> </em>) <a class='self-link' href='#name%40%40struct%40dfn' aria-label="Permalink for name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Infra'><a href=https://infra.spec.whatwg.org/#struct-name>Infra</a></strong> </dd>
<dd>Referenced in
<a href=https://webidl.spec.whatwg.org/ title='name is referenced by Web IDL'>Web IDL</a></dd>
<dt id="name@@DOMException@dfn"><code class=prefix></code><span><strong>name</strong> (<em>concept for <a href='d.html#DOMException@@@@interface'><code>DOMException</code></a> </em>) <a class='self-link' href='#name%40%40DOMException%40dfn' aria-label="Permalink for name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Web IDL'><a href=https://webidl.spec.whatwg.org/#domexception-name>Web IDL</a></strong> </dd>
<dd>Referenced in
<a href=https://fs.spec.whatwg.org/ title='name is referenced by File System'>File System</a>,
<a href=https://gpuweb.github.io/gpuweb/ title='name is referenced by WebGPU'>WebGPU</a></dd>
<dt id="name@@interest group descriptor@dfn"><code class=prefix></code><span><strong>name</strong> (<em>concept for <code>interest group descriptor</code> </em>) <a class='self-link' href='#name%40%40interest%20group%20descriptor%40dfn' aria-label="Permalink for name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Fenced Frame'><a href=https://wicg.github.io/fenced-frame/#interest-group-descriptor-name>Fenced Frame</a></strong> </dd>
<dd>Referenced in
<a href=https://wicg.github.io/turtledove/ title='name is referenced by Protected Audience'>Protected Audience</a></dd>
<dt id="name@@manifest@dfn"><code class=prefix></code><span><strong>name</strong> (<em>concept for <a href='m.html#manifest@@appmanifest%25%25dfn'>manifest</a> </em>) <a class='self-link' href='#name%40%40manifest%40dfn' aria-label="Permalink for name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Web Application Manifest'><a href=https://w3c.github.io/manifest/#dfn-name>Web Application Manifest</a></strong> </dd>
<dt id="name@@ContactProperty@enum-value"><code class=prefix></code><span><strong><code class=webidl>"name"</code></strong> (<em>value for <a href='c.html#ContactProperty@@@@enum'><code>ContactProperty</code></a> WebIDL enumeration</em>) <a class='self-link' href='#name%40%40ContactProperty%40enum-value' aria-label="Permalink for name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Contact Picker API'><a href=https://w3c.github.io/contact-picker/#dom-contactproperty-name>Contact Picker API</a></strong> </dd>
<dt id="name@@directive@dfn"><code class=prefix></code><span><strong>name</strong> (<em>concept for <code>directive</code> </em>) <a class='self-link' href='#name%40%40directive%40dfn' aria-label="Permalink for name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Content Security Policy 3'><a href=https://w3c.github.io/webappsec-csp/#directive-name>Content Security Policy 3</a></strong> </dd>
<dd>Referenced in
<a href=https://wicg.github.io/isolated-web-apps/isolated-contexts.html title='name is referenced by Isolated Contexts'>Isolated Contexts</a>,
<a href=https://wicg.github.io/turtledove/ title='name is referenced by Protected Audience'>Protected Audience</a>,
<a href=https://w3c.github.io/webappsec-cspee/ title='name is referenced by Content Security Policy: Embedded Enforcement'>Content Security Policy: Embedded Enforcement</a>,
<a href=https://w3c.github.io/trusted-types/dist/spec/ title='name is referenced by Trusted Types'>Trusted Types</a></dd>
<dt id="name@@CSS counter@dfn"><code class=prefix></code><span><strong>name</strong> (<em>concept for <code>CSS counter</code> </em>) <a class='self-link' href='#name%40%40CSS%20counter%40dfn' aria-label="Permalink for name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in CSS Lists 3'><a href=https://drafts.csswg.org/css-lists-3/#css-counter-name>CSS Lists 3</a></strong> </dd>
<dt id="name@@powerful feature@dfn"><code class=prefix></code><span><strong>name</strong> (<em>concept for <a href='p.html#powerful feature@@permissions%25%25dfn'>powerful feature</a> </em>) <a class='self-link' href='#name%40%40powerful%20feature%40dfn' aria-label="Permalink for name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Permissions'><a href=https://w3c.github.io/permissions/#dfn-name>Permissions</a></strong> </dd>
<dd>Referenced in
<a href=https://notifications.spec.whatwg.org/ title='name is referenced by Notifications API'>Notifications API</a>,
<a href=https://privacycg.github.io/requestStorageAccessFor/ title='name is referenced by requestStorageAccessFor API'>requestStorageAccessFor API</a>,
<a href=https://privacycg.github.io/storage-access/ title='name is referenced by The Storage Access API'>The Storage Access API</a>,
<a href=https://webbluetoothcg.github.io/web-bluetooth/ title='name is referenced by Web Bluetooth'>Web Bluetooth</a>,
<a href=https://wicg.github.io/background-sync/spec/ title='name is referenced by Background Sync'>Background Sync</a>,
<a href=https://wicg.github.io/local-font-access/ title='name is referenced by Local Font Access'>Local Font Access</a>,
<a href=https://wicg.github.io/private-network-access/ title='name is referenced by Private Network Access'>Private Network Access</a>,
<a href=https://w3c.github.io/ambient-light/ title='name is referenced by Ambient Light Sensor'>Ambient Light Sensor</a>,
<a href=https://w3c.github.io/sensors/ title='name is referenced by Generic Sensor API'>Generic Sensor API</a>,
<a href=https://w3c.github.io/window-management/ title='name is referenced by Window Management'>Window Management</a></dd>
<dt id="name@@vc-data-model%%dfn"><code class=prefix></code><span><strong>name</strong> (<em>concept</em>) <a class='self-link' href='#name%40%40vc-data-model%25%25dfn' aria-label="Permalink for name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Verifiable Credentials Data Model v2.0'><a href=https://w3c.github.io/vc-data-model/#dfn-name>Verifiable Credentials Data Model v2.0</a></strong> </dd>
<dt id="name@@AggregateError@attribute"><code class=prefix><a href='a.html#AggregateError@@ecmascript%25%25exception'>AggregateError</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40AggregateError%40attribute' aria-label="Permalink for <a href='a.html#AggregateError@@ecmascript%25%25exception'>AggregateError</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-aggregate-error.prototype.name>ECMAScript</a></strong> </dd>
<dt id="name@@Algorithm@dict-member"><code class=prefix><a href='a.html#Algorithm@@@@dictionary'>Algorithm</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#name%40%40Algorithm%40dict-member' aria-label="Permalink for <a href='a.html#Algorithm@@@@dictionary'>Algorithm</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Web Cryptography API'><a href=https://w3c.github.io/webcrypto/#dom-algorithm-name>Web Cryptography API</a></strong> </dd>
<dt id="name@@Attr@attribute"><code class=prefix><a href='a.html#Attr@@@@interface'>Attr</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40Attr%40attribute' aria-label="Permalink for <a href='a.html#Attr@@@@interface'>Attr</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in DOM'><a href=https://dom.spec.whatwg.org/#dom-attr-name>DOM</a></strong> </dd>
<dt id="name@@AuctionAdInterestGroupKey@dict-member"><code class=prefix><a href='a.html#AuctionAdInterestGroupKey@@@@dictionary'>AuctionAdInterestGroupKey</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#name%40%40AuctionAdInterestGroupKey%40dict-member' aria-label="Permalink for <a href='a.html#AuctionAdInterestGroupKey@@@@dictionary'>AuctionAdInterestGroupKey</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Protected Audience'><a href=https://wicg.github.io/turtledove/#dom-auctionadinterestgroupkey-name>Protected Audience</a></strong> </dd>
<dt id="name@@AudioParamDescriptor@dict-member"><code class=prefix><a href='a.html#AudioParamDescriptor@@@@dictionary'>AudioParamDescriptor</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#name%40%40AudioParamDescriptor%40dict-member' aria-label="Permalink for <a href='a.html#AudioParamDescriptor@@@@dictionary'>AudioParamDescriptor</a>.name">§</a></span></dt>
<dt><code class=prefix><a href='a.html#AudioParamDescriptor@@@@dictionary'>AudioParamDescriptor</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#name%40%40AudioParamDescriptor%40dict-member' aria-label="Permalink for <a href='a.html#AudioParamDescriptor@@@@dictionary'>AudioParamDescriptor</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Web Audio API'><a href=https://webaudio.github.io/web-audio-api/#dom-audioparamdescriptor-name>Web Audio API</a></strong> , <strong title='name is defined in Web Audio API 1.1'><a href=https://webaudio.github.io/web-audio-api/#dom-audioparamdescriptor-name>Web Audio API 1.1</a></strong> </dd>
<dt id="name@@Baseline@attribute"><code class=prefix><a href='b.html#Baseline@@@@interface'>Baseline</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40Baseline%40attribute' aria-label="Permalink for <a href='b.html#Baseline@@@@interface'>Baseline</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Font Metrics API 1'><a href=https://drafts.css-houdini.org/font-metrics-api-1/#dom-baseline-name>Font Metrics API 1</a></strong> </dd>
<dt id="name@@BluetoothAdvertisingEvent@attribute"><code class=prefix><a href='b.html#BluetoothAdvertisingEvent@@@@interface'>BluetoothAdvertisingEvent</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40BluetoothAdvertisingEvent%40attribute' aria-label="Permalink for <a href='b.html#BluetoothAdvertisingEvent@@@@interface'>BluetoothAdvertisingEvent</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Web Bluetooth'><a href=https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothadvertisingevent-name>Web Bluetooth</a></strong> </dd>
<dt id="name@@BluetoothAdvertisingEventInit@dict-member"><code class=prefix><a href='b.html#BluetoothAdvertisingEventInit@@@@dictionary'>BluetoothAdvertisingEventInit</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#name%40%40BluetoothAdvertisingEventInit%40dict-member' aria-label="Permalink for <a href='b.html#BluetoothAdvertisingEventInit@@@@dictionary'>BluetoothAdvertisingEventInit</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Web Bluetooth'><a href=https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothadvertisingeventinit-name>Web Bluetooth</a></strong> </dd>
<dt id="name@@BluetoothDevice@attribute"><code class=prefix><a href='b.html#BluetoothDevice@@@@interface'>BluetoothDevice</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40BluetoothDevice%40attribute' aria-label="Permalink for <a href='b.html#BluetoothDevice@@@@interface'>BluetoothDevice</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Web Bluetooth'><a href=https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothdevice-name>Web Bluetooth</a></strong> </dd>
<dt id="name@@BluetoothLEScanFilter@attribute"><code class=prefix><a href='b.html#BluetoothLEScanFilter@@@@interface'>BluetoothLEScanFilter</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40BluetoothLEScanFilter%40attribute' aria-label="Permalink for <a href='b.html#BluetoothLEScanFilter@@@@interface'>BluetoothLEScanFilter</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Web Bluetooth Scanning'><a href=https://webbluetoothcg.github.io/web-bluetooth/scanning.html#dom-bluetoothlescanfilter-name>Web Bluetooth Scanning</a></strong> </dd>
<dt id="name@@BluetoothLEScanFilterInit@dict-member"><code class=prefix><a href='b.html#BluetoothLEScanFilterInit@@@@dictionary'>BluetoothLEScanFilterInit</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#name%40%40BluetoothLEScanFilterInit%40dict-member' aria-label="Permalink for <a href='b.html#BluetoothLEScanFilterInit@@@@dictionary'>BluetoothLEScanFilterInit</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Web Bluetooth'><a href=https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothlescanfilterinit-name>Web Bluetooth</a></strong> </dd>
<dt id="name@@BroadcastChannel@attribute"><code class=prefix><a href='b.html#BroadcastChannel@@@@interface'>BroadcastChannel</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40BroadcastChannel%40attribute' aria-label="Permalink for <a href='b.html#BroadcastChannel@@@@interface'>BroadcastChannel</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/web-messaging.html#dom-broadcastchannel-name>HTML</a></strong> </dd>
<dt id="name@@ContactInfo@dict-member"><code class=prefix><a href='c.html#ContactInfo@@@@dictionary'>ContactInfo</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#name%40%40ContactInfo%40dict-member' aria-label="Permalink for <a href='c.html#ContactInfo@@@@dictionary'>ContactInfo</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Contact Picker API'><a href=https://w3c.github.io/contact-picker/#dom-contactinfo-name>Contact Picker API</a></strong> </dd>
<dt id="name@@CookieInit@dict-member"><code class=prefix><a href='c.html#CookieInit@@@@dictionary'>CookieInit</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#name%40%40CookieInit%40dict-member' aria-label="Permalink for <a href='c.html#CookieInit@@@@dictionary'>CookieInit</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Cookie Store API'><a href=https://wicg.github.io/cookie-store/#dom-cookieinit-name>Cookie Store API</a></strong> </dd>
<dt id="name@@CookieListItem@dict-member"><code class=prefix><a href='c.html#CookieListItem@@@@dictionary'>CookieListItem</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#name%40%40CookieListItem%40dict-member' aria-label="Permalink for <a href='c.html#CookieListItem@@@@dictionary'>CookieListItem</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Cookie Store API'><a href=https://wicg.github.io/cookie-store/#dom-cookielistitem-name>Cookie Store API</a></strong> </dd>
<dt id="name@@CookieStoreDeleteOptions@dict-member"><code class=prefix><a href='c.html#CookieStoreDeleteOptions@@@@dictionary'>CookieStoreDeleteOptions</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#name%40%40CookieStoreDeleteOptions%40dict-member' aria-label="Permalink for <a href='c.html#CookieStoreDeleteOptions@@@@dictionary'>CookieStoreDeleteOptions</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Cookie Store API'><a href=https://wicg.github.io/cookie-store/#dom-cookiestoredeleteoptions-name>Cookie Store API</a></strong> </dd>
<dt id="name@@CookieStoreGetOptions@dict-member"><code class=prefix><a href='c.html#CookieStoreGetOptions@@@@dictionary'>CookieStoreGetOptions</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#name%40%40CookieStoreGetOptions%40dict-member' aria-label="Permalink for <a href='c.html#CookieStoreGetOptions@@@@dictionary'>CookieStoreGetOptions</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Cookie Store API'><a href=https://wicg.github.io/cookie-store/#dom-cookiestoregetoptions-name>Cookie Store API</a></strong> </dd>
<dt id="name@@CredentialUserData@attribute"><code class=prefix><a href='c.html#CredentialUserData@@@@interface'>CredentialUserData</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40CredentialUserData%40attribute' aria-label="Permalink for <a href='c.html#CredentialUserData@@@@interface'>CredentialUserData</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Credential Management 1'><a href=https://w3c.github.io/webappsec-credential-management/#dom-credentialuserdata-name>Credential Management 1</a></strong> </dd>
<dt id="name@@CSSColorProfileRule@attribute"><code class=prefix><a href='c.html#CSSColorProfileRule@@@@interface'>CSSColorProfileRule</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40CSSColorProfileRule%40attribute' aria-label="Permalink for <a href='c.html#CSSColorProfileRule@@@@interface'>CSSColorProfileRule</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in CSS Color 5'><a href=https://drafts.csswg.org/css-color-5/#dom-csscolorprofilerule-name>CSS Color 5</a></strong> </dd>
<dt id="name@@CSSCounterStyleRule@attribute"><code class=prefix><a href='c.html#CSSCounterStyleRule@@@@interface'>CSSCounterStyleRule</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40CSSCounterStyleRule%40attribute' aria-label="Permalink for <a href='c.html#CSSCounterStyleRule@@@@interface'>CSSCounterStyleRule</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in CSS Counter Styles 3'><a href=https://drafts.csswg.org/css-counter-styles-3/#dom-csscounterstylerule-name>CSS Counter Styles 3</a></strong> </dd>
<dt id="name@@CSSFontPaletteValuesRule@attribute"><code class=prefix><a href='c.html#CSSFontPaletteValuesRule@@@@interface'>CSSFontPaletteValuesRule</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40CSSFontPaletteValuesRule%40attribute' aria-label="Permalink for <a href='c.html#CSSFontPaletteValuesRule@@@@interface'>CSSFontPaletteValuesRule</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in CSS Fonts 4'><a href=https://drafts.csswg.org/css-fonts-4/#dom-cssfontpalettevaluesrule-name>CSS Fonts 4</a></strong> </dd>
<dt id="name@@CSSKeyframesRule@attribute"><code class=prefix><a href='c.html#CSSKeyframesRule@@@@interface'>CSSKeyframesRule</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40CSSKeyframesRule%40attribute' aria-label="Permalink for <a href='c.html#CSSKeyframesRule@@@@interface'>CSSKeyframesRule</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in CSS Animations 1'><a href=https://drafts.csswg.org/css-animations-1/#dom-csskeyframesrule-name>CSS Animations 1</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/cssom-1/ title='name is referenced by CSSOM'>CSSOM</a></dd>
<dt id="name@@CSSLayerBlockRule@attribute"><code class=prefix><a href='c.html#CSSLayerBlockRule@@@@interface'>CSSLayerBlockRule</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40CSSLayerBlockRule%40attribute' aria-label="Permalink for <a href='c.html#CSSLayerBlockRule@@@@interface'>CSSLayerBlockRule</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in CSS Cascading 5'><a href=https://drafts.csswg.org/css-cascade-5/#dom-csslayerblockrule-name>CSS Cascading 5</a></strong> </dd>
<dt id="name@@CSSMarginRule@attribute"><code class=prefix><a href='c.html#CSSMarginRule@@@@interface'>CSSMarginRule</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40CSSMarginRule%40attribute' aria-label="Permalink for <a href='c.html#CSSMarginRule@@@@interface'>CSSMarginRule</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in CSSOM'><a href=https://drafts.csswg.org/cssom-1/#dom-cssmarginrule-name>CSSOM</a></strong> </dd>
<dt id="name@@CSSParserAtRule@attribute"><code class=prefix><a href='c.html#CSSParserAtRule@@@@interface'>CSSParserAtRule</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40CSSParserAtRule%40attribute' aria-label="Permalink for <a href='c.html#CSSParserAtRule@@@@interface'>CSSParserAtRule</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in CSS Parser API'><a href=https://wicg.github.io/css-parser-api/#dom-cssparseratrule-name>CSS Parser API</a></strong> </dd>
<dt id="name@@CSSParserBlock@attribute"><code class=prefix><a href='c.html#CSSParserBlock@@@@interface'>CSSParserBlock</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40CSSParserBlock%40attribute' aria-label="Permalink for <a href='c.html#CSSParserBlock@@@@interface'>CSSParserBlock</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in CSS Parser API'><a href=https://wicg.github.io/css-parser-api/#dom-cssparserblock-name>CSS Parser API</a></strong> </dd>
<dt id="name@@CSSParserDeclaration@attribute"><code class=prefix><a href='c.html#CSSParserDeclaration@@@@interface'>CSSParserDeclaration</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40CSSParserDeclaration%40attribute' aria-label="Permalink for <a href='c.html#CSSParserDeclaration@@@@interface'>CSSParserDeclaration</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in CSS Parser API'><a href=https://wicg.github.io/css-parser-api/#dom-cssparserdeclaration-name>CSS Parser API</a></strong> </dd>
<dt id="name@@CSSParserFunction@attribute"><code class=prefix><a href='c.html#CSSParserFunction@@@@interface'>CSSParserFunction</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40CSSParserFunction%40attribute' aria-label="Permalink for <a href='c.html#CSSParserFunction@@@@interface'>CSSParserFunction</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in CSS Parser API'><a href=https://wicg.github.io/css-parser-api/#dom-cssparserfunction-name>CSS Parser API</a></strong> </dd>
<dt id="name@@CSSPositionTryRule@attribute"><code class=prefix><a href='c.html#CSSPositionTryRule@@@@interface'>CSSPositionTryRule</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40CSSPositionTryRule%40attribute' aria-label="Permalink for <a href='c.html#CSSPositionTryRule@@@@interface'>CSSPositionTryRule</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in CSS Anchor Positioning'><a href=https://drafts.csswg.org/css-anchor-position-1/#dom-csspositiontryrule-name>CSS Anchor Positioning</a></strong> </dd>
<dt id="name@@CSSPropertyRule@attribute"><code class=prefix><a href='c.html#CSSPropertyRule@@@@interface'>CSSPropertyRule</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40CSSPropertyRule%40attribute' aria-label="Permalink for <a href='c.html#CSSPropertyRule@@@@interface'>CSSPropertyRule</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in CSS Properties and Values API 1'><a href=https://drafts.css-houdini.org/css-properties-values-api-1/#dom-csspropertyrule-name>CSS Properties and Values API 1</a></strong> </dd>
<dt id="name@@CurrentUserDetailsOptions@dict-member"><code class=prefix><a href='c.html#CurrentUserDetailsOptions@@@@dictionary'>CurrentUserDetailsOptions</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#name%40%40CurrentUserDetailsOptions%40dict-member' aria-label="Permalink for <a href='c.html#CurrentUserDetailsOptions@@@@dictionary'>CurrentUserDetailsOptions</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Web Authentication'><a href=https://w3c.github.io/webauthn/#dom-currentuserdetailsoptions-name>Web Authentication</a></strong> </dd>
<dt id="name@@DedicatedWorkerGlobalScope@attribute"><code class=prefix><a href='d.html#DedicatedWorkerGlobalScope@@@@interface'>DedicatedWorkerGlobalScope</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40DedicatedWorkerGlobalScope%40attribute' aria-label="Permalink for <a href='d.html#DedicatedWorkerGlobalScope@@@@interface'>DedicatedWorkerGlobalScope</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/workers.html#dom-dedicatedworkerglobalscope-name>HTML</a></strong> </dd>
<dt id="name@@DocumentType@attribute"><code class=prefix><a href='d.html#DocumentType@@@@interface'>DocumentType</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40DocumentType%40attribute' aria-label="Permalink for <a href='d.html#DocumentType@@@@interface'>DocumentType</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in DOM'><a href=https://dom.spec.whatwg.org/#dom-documenttype-name>DOM</a></strong> </dd>
<dt id="name@@DOMException@attribute"><code class=prefix><a href='d.html#DOMException@@@@interface'>DOMException</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40DOMException%40attribute' aria-label="Permalink for <a href='d.html#DOMException@@@@interface'>DOMException</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Web IDL'><a href=https://webidl.spec.whatwg.org/#dom-domexception-name>Web IDL</a></strong> </dd>
<dd>Referenced in
<a href=https://screen-share.github.io/element-capture/ title='name is referenced by Element Capture'>Element Capture</a>,
<a href=https://wicg.github.io/capability-delegation/spec.html title='name is referenced by Capability Delegation'>Capability Delegation</a>,
<a href=https://wicg.github.io/handwriting-recognition/ title='name is referenced by Handwriting Recognition API'>Handwriting Recognition API</a>,
<a href=https://w3c.github.io/mediacapture-output/ title='name is referenced by Audio Output Devices API'>Audio Output Devices API</a>,
<a href=https://w3c.github.io/mediacapture-region/ title='name is referenced by Region Capture'>Region Capture</a>,
<a href=https://w3c.github.io/mediacapture-main/ title='name is referenced by Media Capture and Streams'>Media Capture and Streams</a>,
<a href=https://w3c.github.io/mediacapture-viewport/ title='name is referenced by Viewport Capture'>Viewport Capture</a>,
<a href=https://w3c.github.io/mediacapture-screen-share/ title='name is referenced by Screen Capture'>Screen Capture</a>,
<a href=https://w3c.github.io/webrtc-pc/ title='name is referenced by WebRTC 1.0'>WebRTC 1.0</a></dd>
<dt id="name@@endpoint group@attribute"><code class=prefix><a href='e.html#endpoint group@@network-reporting%25%25dfn'>endpoint group</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40endpoint%20group%40attribute' aria-label="Permalink for <a href='e.html#endpoint group@@network-reporting%25%25dfn'>endpoint group</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Network Reporting API'><a href=https://w3c.github.io/reporting/network-reporting.html#dom-endpoint-group-name>Network Reporting API</a></strong> </dd>
<dt id="name@@endpoint@attribute"><code class=prefix><a href='e.html#endpoint@@reporting%25%25dfn'>endpoint</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40endpoint%40attribute' aria-label="Permalink for <a href='e.html#endpoint@@reporting%25%25dfn'>endpoint</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Reporting API'><a href=https://w3c.github.io/reporting/#dom-endpoint-name>Reporting API</a></strong> </dd>
<dd>Referenced in
<a href=https://w3c.github.io/reporting/network-reporting.html title='name is referenced by Network Reporting API'>Network Reporting API</a></dd>
<dt id="name@@Error@attribute"><code class=prefix><a href='e.html#Error@@ecmascript%25%25exception'>Error</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40Error%40attribute' aria-label="Permalink for <a href='e.html#Error@@ecmascript%25%25exception'>Error</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-error.prototype.name>ECMAScript</a></strong> </dd>
<dt id="name@@FederatedCredentialInit@dict-member"><code class=prefix><a href='f.html#FederatedCredentialInit@@@@dictionary'>FederatedCredentialInit</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#name%40%40FederatedCredentialInit%40dict-member' aria-label="Permalink for <a href='f.html#FederatedCredentialInit@@@@dictionary'>FederatedCredentialInit</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Credential Management 1'><a href=https://w3c.github.io/webappsec-credential-management/#dom-federatedcredentialinit-name>Credential Management 1</a></strong> </dd>
<dt id="name@@File@attribute"><code class=prefix><a href='f.html#File@@@@interface'>File</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40File%40attribute' aria-label="Permalink for <a href='f.html#File@@@@interface'>File</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in File API'><a href=https://w3c.github.io/FileAPI/#dfn-name>File API</a></strong> </dd>
<dd>Referenced in
<a href=https://fetch.spec.whatwg.org/ title='name is referenced by Fetch'>Fetch</a>,
<a href=https://fs.spec.whatwg.org/ title='name is referenced by File System'>File System</a>,
<a href=https://html.spec.whatwg.org/multipage/ title='name is referenced by HTML'>HTML</a>,
<a href=https://wicg.github.io/entries-api/ title='name is referenced by File and Directory Entries API'>File and Directory Entries API</a>,
<a href=https://w3c.github.io/clipboard-apis/ title='name is referenced by Clipboard API and events'>Clipboard API and events</a>,
<a href=https://w3c.github.io/IndexedDB/ title='name is referenced by Indexed DB 3.0'>Indexed DB 3.0</a></dd>
<dt id="name@@FileSystem@attribute"><code class=prefix><a href='f.html#FileSystem@@@@interface'>FileSystem</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40FileSystem%40attribute' aria-label="Permalink for <a href='f.html#FileSystem@@@@interface'>FileSystem</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in File and Directory Entries API'><a href=https://wicg.github.io/entries-api/#dom-filesystem-name>File and Directory Entries API</a></strong> </dd>
<dt id="name@@FileSystemEntry@attribute"><code class=prefix><a href='f.html#FileSystemEntry@@@@interface'>FileSystemEntry</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40FileSystemEntry%40attribute' aria-label="Permalink for <a href='f.html#FileSystemEntry@@@@interface'>FileSystemEntry</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in File and Directory Entries API'><a href=https://wicg.github.io/entries-api/#dom-filesystementry-name>File and Directory Entries API</a></strong> </dd>
<dt id="name@@FileSystemHandle@attribute"><code class=prefix><a href='f.html#FileSystemHandle@@@@interface'>FileSystemHandle</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40FileSystemHandle%40attribute' aria-label="Permalink for <a href='f.html#FileSystemHandle@@@@interface'>FileSystemHandle</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in File System'><a href=https://fs.spec.whatwg.org/#dom-filesystemhandle-name>File System</a></strong> </dd>
<dt id="name@@Font@attribute"><code class=prefix><a href='f.html#Font@@@@interface'>Font</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40Font%40attribute' aria-label="Permalink for <a href='f.html#Font@@@@interface'>Font</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Font Metrics API 1'><a href=https://drafts.css-houdini.org/font-metrics-api-1/#dom-font-name>Font Metrics API 1</a></strong> </dd>
<dt id="name@@FontFaceVariationAxis@attribute"><code class=prefix><a href='f.html#FontFaceVariationAxis@@@@interface'>FontFaceVariationAxis</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40FontFaceVariationAxis%40attribute' aria-label="Permalink for <a href='f.html#FontFaceVariationAxis@@@@interface'>FontFaceVariationAxis</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in CSS Font Loading 3'><a href=https://drafts.csswg.org/css-font-loading-3/#dom-fontfacevariationaxis-name>CSS Font Loading 3</a></strong> </dd>
<dt id="name@@GenerateBidInterestGroup@dict-member"><code class=prefix><a href='g.html#GenerateBidInterestGroup@@@@dictionary'>GenerateBidInterestGroup</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#name%40%40GenerateBidInterestGroup%40dict-member' aria-label="Permalink for <a href='g.html#GenerateBidInterestGroup@@@@dictionary'>GenerateBidInterestGroup</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Protected Audience'><a href=https://wicg.github.io/turtledove/#dom-generatebidinterestgroup-name>Protected Audience</a></strong> </dd>
<dt id="name@@HTMLAnchorElement@attribute"><code class=prefix><a href='h.html#HTMLAnchorElement@@@@interface'>HTMLAnchorElement</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40HTMLAnchorElement%40attribute' aria-label="Permalink for <a href='h.html#HTMLAnchorElement@@@@interface'>HTMLAnchorElement</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/obsolete.html#dom-a-name>HTML</a></strong> </dd>
<dt id="name@@HTMLButtonElement@attribute"><code class=prefix><a href='h.html#HTMLButtonElement@@@@interface'>HTMLButtonElement</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40HTMLButtonElement%40attribute' aria-label="Permalink for <a href='h.html#HTMLButtonElement@@@@interface'>HTMLButtonElement</a>.name">§</a></span></dt>
<dt><code class=prefix><a href='h.html#HTMLFieldSetElement@@@@interface'>HTMLFieldSetElement</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40HTMLButtonElement%40attribute' aria-label="Permalink for <a href='h.html#HTMLFieldSetElement@@@@interface'>HTMLFieldSetElement</a>.name">§</a></span></dt><dt><code class=prefix><a href='h.html#HTMLInputElement@@@@interface'>HTMLInputElement</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40HTMLButtonElement%40attribute' aria-label="Permalink for <a href='h.html#HTMLInputElement@@@@interface'>HTMLInputElement</a>.name">§</a></span></dt><dt><code class=prefix><a href='h.html#HTMLOutputElement@@@@interface'>HTMLOutputElement</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40HTMLButtonElement%40attribute' aria-label="Permalink for <a href='h.html#HTMLOutputElement@@@@interface'>HTMLOutputElement</a>.name">§</a></span></dt><dt><code class=prefix><a href='h.html#HTMLSelectElement@@@@interface'>HTMLSelectElement</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40HTMLButtonElement%40attribute' aria-label="Permalink for <a href='h.html#HTMLSelectElement@@@@interface'>HTMLSelectElement</a>.name">§</a></span></dt><dt><code class=prefix><a href='h.html#HTMLTextAreaElement@@@@interface'>HTMLTextAreaElement</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40HTMLButtonElement%40attribute' aria-label="Permalink for <a href='h.html#HTMLTextAreaElement@@@@interface'>HTMLTextAreaElement</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#dom-fe-name>HTML</a></strong> </dd>
<dt id="name@@HTMLDetailsElement@attribute"><code class=prefix><a href='h.html#HTMLDetailsElement@@@@interface'>HTMLDetailsElement</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40HTMLDetailsElement%40attribute' aria-label="Permalink for <a href='h.html#HTMLDetailsElement@@@@interface'>HTMLDetailsElement</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/interactive-elements.html#dom-details-name>HTML</a></strong> </dd>
<dt id="name@@HTMLEmbedElement@attribute"><code class=prefix><a href='h.html#HTMLEmbedElement@@@@interface'>HTMLEmbedElement</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40HTMLEmbedElement%40attribute' aria-label="Permalink for <a href='h.html#HTMLEmbedElement@@@@interface'>HTMLEmbedElement</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/obsolete.html#dom-embed-name>HTML</a></strong> </dd>
<dt id="name@@HTMLFormElement@attribute"><code class=prefix><a href='h.html#HTMLFormElement@@@@interface'>HTMLFormElement</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40HTMLFormElement%40attribute' aria-label="Permalink for <a href='h.html#HTMLFormElement@@@@interface'>HTMLFormElement</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/forms.html#dom-form-name>HTML</a></strong> </dd>
<dt id="name@@HTMLFrameElement@attribute"><code class=prefix><a href='h.html#HTMLFrameElement@@@@interface'>HTMLFrameElement</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40HTMLFrameElement%40attribute' aria-label="Permalink for <a href='h.html#HTMLFrameElement@@@@interface'>HTMLFrameElement</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/obsolete.html#dom-frame-name>HTML</a></strong> </dd>
<dt id="name@@HTMLIFrameElement@attribute"><code class=prefix><a href='h.html#HTMLIFrameElement@@@@interface'>HTMLIFrameElement</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40HTMLIFrameElement%40attribute' aria-label="Permalink for <a href='h.html#HTMLIFrameElement@@@@interface'>HTMLIFrameElement</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/iframe-embed-object.html#dom-iframe-name>HTML</a></strong> </dd>
<dt id="name@@HTMLImageElement@attribute"><code class=prefix><a href='h.html#HTMLImageElement@@@@interface'>HTMLImageElement</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40HTMLImageElement%40attribute' aria-label="Permalink for <a href='h.html#HTMLImageElement@@@@interface'>HTMLImageElement</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/obsolete.html#dom-img-name>HTML</a></strong> </dd>
<dt id="name@@HTMLMapElement@attribute"><code class=prefix><a href='h.html#HTMLMapElement@@@@interface'>HTMLMapElement</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40HTMLMapElement%40attribute' aria-label="Permalink for <a href='h.html#HTMLMapElement@@@@interface'>HTMLMapElement</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/image-maps.html#dom-map-name>HTML</a></strong> </dd>
<dt id="name@@HTMLMetaElement@attribute"><code class=prefix><a href='h.html#HTMLMetaElement@@@@interface'>HTMLMetaElement</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40HTMLMetaElement%40attribute' aria-label="Permalink for <a href='h.html#HTMLMetaElement@@@@interface'>HTMLMetaElement</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/semantics.html#dom-meta-name>HTML</a></strong> </dd>
<dt id="name@@HTMLObjectElement@attribute"><code class=prefix><a href='h.html#HTMLObjectElement@@@@interface'>HTMLObjectElement</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40HTMLObjectElement%40attribute' aria-label="Permalink for <a href='h.html#HTMLObjectElement@@@@interface'>HTMLObjectElement</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/iframe-embed-object.html#dom-object-name>HTML</a></strong> </dd>
<dt id="name@@HTMLParamElement@attribute"><code class=prefix><a href='h.html#HTMLParamElement@@@@interface'>HTMLParamElement</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40HTMLParamElement%40attribute' aria-label="Permalink for <a href='h.html#HTMLParamElement@@@@interface'>HTMLParamElement</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/obsolete.html#dom-param-name>HTML</a></strong> </dd>
<dt id="name@@HTMLSlotElement@attribute"><code class=prefix><a href='h.html#HTMLSlotElement@@@@interface'>HTMLSlotElement</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40HTMLSlotElement%40attribute' aria-label="Permalink for <a href='h.html#HTMLSlotElement@@@@interface'>HTMLSlotElement</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/scripting.html#dom-slot-name>HTML</a></strong> </dd>
<dt id="name@@IDBDatabase@attribute"><code class=prefix><a href='i.html#IDBDatabase@@@@interface'>IDBDatabase</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40IDBDatabase%40attribute' aria-label="Permalink for <a href='i.html#IDBDatabase@@@@interface'>IDBDatabase</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Indexed DB 3.0'><a href=https://w3c.github.io/IndexedDB/#dom-idbdatabase-name>Indexed DB 3.0</a></strong> </dd>
<dt id="name@@IDBDatabaseInfo@dict-member"><code class=prefix><a href='i.html#IDBDatabaseInfo@@@@dictionary'>IDBDatabaseInfo</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#name%40%40IDBDatabaseInfo%40dict-member' aria-label="Permalink for <a href='i.html#IDBDatabaseInfo@@@@dictionary'>IDBDatabaseInfo</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Indexed DB 3.0'><a href=https://w3c.github.io/IndexedDB/#dom-idbdatabaseinfo-name>Indexed DB 3.0</a></strong> </dd>
<dt id="name@@IDBIndex@attribute"><code class=prefix><a href='i.html#IDBIndex@@@@interface'>IDBIndex</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40IDBIndex%40attribute' aria-label="Permalink for <a href='i.html#IDBIndex@@@@interface'>IDBIndex</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Indexed DB 3.0'><a href=https://w3c.github.io/IndexedDB/#dom-idbindex-name>Indexed DB 3.0</a></strong> </dd>
<dt id="name@@IDBObjectStore@attribute"><code class=prefix><a href='i.html#IDBObjectStore@@@@interface'>IDBObjectStore</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40IDBObjectStore%40attribute' aria-label="Permalink for <a href='i.html#IDBObjectStore@@@@interface'>IDBObjectStore</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Indexed DB 3.0'><a href=https://w3c.github.io/IndexedDB/#dom-idbobjectstore-name>Indexed DB 3.0</a></strong> </dd>
<dt id="name@@IdentityProviderAccount@dict-member"><code class=prefix><a href='i.html#IdentityProviderAccount@@@@dictionary'>IdentityProviderAccount</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#name%40%40IdentityProviderAccount%40dict-member' aria-label="Permalink for <a href='i.html#IdentityProviderAccount@@@@dictionary'>IdentityProviderAccount</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Federated Credential Management API'><a href=https://w3c-fedid.github.io/FedCM/#dom-identityprovideraccount-name>Federated Credential Management API</a></strong> </dd>
<dt id="name@@IdentityProviderBranding@dict-member"><code class=prefix><a href='i.html#IdentityProviderBranding@@@@dictionary'>IdentityProviderBranding</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#name%40%40IdentityProviderBranding%40dict-member' aria-label="Permalink for <a href='i.html#IdentityProviderBranding@@@@dictionary'>IdentityProviderBranding</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Federated Credential Management API'><a href=https://w3c-fedid.github.io/FedCM/#dom-identityproviderbranding-name>Federated Credential Management API</a></strong> </dd>
<dt id="name@@IdentityUserInfo@dict-member"><code class=prefix><a href='i.html#IdentityUserInfo@@@@dictionary'>IdentityUserInfo</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#name%40%40IdentityUserInfo%40dict-member' aria-label="Permalink for <a href='i.html#IdentityUserInfo@@@@dictionary'>IdentityUserInfo</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Federated Credential Management API'><a href=https://w3c-fedid.github.io/FedCM/#dom-identityuserinfo-name>Federated Credential Management API</a></strong> </dd>
<dt id="name@@KeyAlgorithm@dict-member"><code class=prefix><a href='k.html#KeyAlgorithm@@@@dictionary'>KeyAlgorithm</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#name%40%40KeyAlgorithm%40dict-member' aria-label="Permalink for <a href='k.html#KeyAlgorithm@@@@dictionary'>KeyAlgorithm</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Web Cryptography API'><a href=https://w3c.github.io/webcrypto/#dom-keyalgorithm-name>Web Cryptography API</a></strong> </dd>
<dt id="name@@Lock@attribute"><code class=prefix><a href='l.html#Lock@@@@interface'>Lock</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40Lock%40attribute' aria-label="Permalink for <a href='l.html#Lock@@@@interface'>Lock</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Web Locks API'><a href=https://w3c.github.io/web-locks/#dom-lock-name>Web Locks API</a></strong> </dd>
<dt id="name@@LockInfo@dict-member"><code class=prefix><a href='l.html#LockInfo@@@@dictionary'>LockInfo</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#name%40%40LockInfo%40dict-member' aria-label="Permalink for <a href='l.html#LockInfo@@@@dictionary'>LockInfo</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Web Locks API'><a href=https://w3c.github.io/web-locks/#dom-lockinfo-name>Web Locks API</a></strong> </dd>
<dt id="name@@MIDIPort@attribute"><code class=prefix><a href='m.html#MIDIPort@@@@interface'>MIDIPort</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40MIDIPort%40attribute' aria-label="Permalink for <a href='m.html#MIDIPort@@@@interface'>MIDIPort</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Web MIDI API'><a href=https://webaudio.github.io/web-midi-api/#dom-midiport-name>Web MIDI API</a></strong> </dd>
<dt id="name@@ModuleExportDescriptor@dict-member"><code class=prefix><a href='m.html#ModuleExportDescriptor@@@@dictionary'>ModuleExportDescriptor</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#name%40%40ModuleExportDescriptor%40dict-member' aria-label="Permalink for <a href='m.html#ModuleExportDescriptor@@@@dictionary'>ModuleExportDescriptor</a>.name">§</a></span></dt>
<dt><code class=prefix><a href='m.html#ModuleExportDescriptor@@@@dictionary'>ModuleExportDescriptor</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#name%40%40ModuleExportDescriptor%40dict-member' aria-label="Permalink for <a href='m.html#ModuleExportDescriptor@@@@dictionary'>ModuleExportDescriptor</a>.name">§</a></span></dt><dt><code class=prefix><a href='m.html#ModuleExportDescriptor@@@@dictionary'>ModuleExportDescriptor</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#name%40%40ModuleExportDescriptor%40dict-member' aria-label="Permalink for <a href='m.html#ModuleExportDescriptor@@@@dictionary'>ModuleExportDescriptor</a>.name">§</a></span></dt><dt><code class=prefix><a href='m.html#ModuleExportDescriptor@@@@dictionary'>ModuleExportDescriptor</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#name%40%40ModuleExportDescriptor%40dict-member' aria-label="Permalink for <a href='m.html#ModuleExportDescriptor@@@@dictionary'>ModuleExportDescriptor</a>.name">§</a></span></dt><dt><code class=prefix><a href='m.html#ModuleExportDescriptor@@@@dictionary'>ModuleExportDescriptor</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#name%40%40ModuleExportDescriptor%40dict-member' aria-label="Permalink for <a href='m.html#ModuleExportDescriptor@@@@dictionary'>ModuleExportDescriptor</a>.name">§</a></span></dt><dt><code class=prefix><a href='m.html#ModuleExportDescriptor@@@@dictionary'>ModuleExportDescriptor</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#name%40%40ModuleExportDescriptor%40dict-member' aria-label="Permalink for <a href='m.html#ModuleExportDescriptor@@@@dictionary'>ModuleExportDescriptor</a>.name">§</a></span></dt><dt><code class=prefix><a href='m.html#ModuleExportDescriptor@@@@dictionary'>ModuleExportDescriptor</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#name%40%40ModuleExportDescriptor%40dict-member' aria-label="Permalink for <a href='m.html#ModuleExportDescriptor@@@@dictionary'>ModuleExportDescriptor</a>.name">§</a></span></dt><dt><code class=prefix><a href='m.html#ModuleExportDescriptor@@@@dictionary'>ModuleExportDescriptor</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#name%40%40ModuleExportDescriptor%40dict-member' aria-label="Permalink for <a href='m.html#ModuleExportDescriptor@@@@dictionary'>ModuleExportDescriptor</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in WebAssembly JavaScript Interface: Content Security Policy'><a href=https://webassembly.github.io/content-security-policy/js-api/#dom-moduleexportdescriptor-name>WebAssembly JavaScript Interface: Content Security Policy</a></strong> , <strong title='name is defined in WebAssembly JavaScript Interface: ESM Integration'><a href=https://webassembly.github.io/esm-integration/js-api/#dom-moduleexportdescriptor-name>WebAssembly JavaScript Interface: ESM Integration</a></strong> , <strong title='name is defined in WebAssembly JavaScript Interface: Exception Handling'><a href=https://webassembly.github.io/exception-handling/js-api/#dom-moduleexportdescriptor-name>WebAssembly JavaScript Interface: Exception Handling</a></strong> , <strong title='name is defined in WebAssembly JavaScript Interface: Promise Integration'><a href=https://webassembly.github.io/js-promise-integration/js-api/#dom-moduleexportdescriptor-name>WebAssembly JavaScript Interface: Promise Integration</a></strong> , <strong title='name is defined in WebAssembly JavaScript Interface: JS String Builtins'><a href=https://webassembly.github.io/js-string-builtins/js-api/#dom-moduleexportdescriptor-name>WebAssembly JavaScript Interface: JS String Builtins</a></strong> , <strong title='name is defined in WebAssembly JavaScript Interface: Type Reflection'><a href=https://webassembly.github.io/js-types/js-api/#dom-moduleexportdescriptor-name>WebAssembly JavaScript Interface: Type Reflection</a></strong> , <strong title='name is defined in WebAssembly JavaScript Interface: Threading'><a href=https://webassembly.github.io/threads/js-api/#dom-moduleexportdescriptor-name>WebAssembly JavaScript Interface: Threading</a></strong> , <strong title='name is defined in WebAssembly JavaScript Interface'><a href=https://webassembly.github.io/spec/js-api/#dom-moduleexportdescriptor-name>WebAssembly JavaScript Interface</a></strong> </dd>
<dt id="name@@ModuleImportDescriptor@dict-member"><code class=prefix><a href='m.html#ModuleImportDescriptor@@@@dictionary'>ModuleImportDescriptor</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#name%40%40ModuleImportDescriptor%40dict-member' aria-label="Permalink for <a href='m.html#ModuleImportDescriptor@@@@dictionary'>ModuleImportDescriptor</a>.name">§</a></span></dt>
<dt><code class=prefix><a href='m.html#ModuleImportDescriptor@@@@dictionary'>ModuleImportDescriptor</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#name%40%40ModuleImportDescriptor%40dict-member' aria-label="Permalink for <a href='m.html#ModuleImportDescriptor@@@@dictionary'>ModuleImportDescriptor</a>.name">§</a></span></dt><dt><code class=prefix><a href='m.html#ModuleImportDescriptor@@@@dictionary'>ModuleImportDescriptor</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#name%40%40ModuleImportDescriptor%40dict-member' aria-label="Permalink for <a href='m.html#ModuleImportDescriptor@@@@dictionary'>ModuleImportDescriptor</a>.name">§</a></span></dt><dt><code class=prefix><a href='m.html#ModuleImportDescriptor@@@@dictionary'>ModuleImportDescriptor</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#name%40%40ModuleImportDescriptor%40dict-member' aria-label="Permalink for <a href='m.html#ModuleImportDescriptor@@@@dictionary'>ModuleImportDescriptor</a>.name">§</a></span></dt><dt><code class=prefix><a href='m.html#ModuleImportDescriptor@@@@dictionary'>ModuleImportDescriptor</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#name%40%40ModuleImportDescriptor%40dict-member' aria-label="Permalink for <a href='m.html#ModuleImportDescriptor@@@@dictionary'>ModuleImportDescriptor</a>.name">§</a></span></dt><dt><code class=prefix><a href='m.html#ModuleImportDescriptor@@@@dictionary'>ModuleImportDescriptor</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#name%40%40ModuleImportDescriptor%40dict-member' aria-label="Permalink for <a href='m.html#ModuleImportDescriptor@@@@dictionary'>ModuleImportDescriptor</a>.name">§</a></span></dt><dt><code class=prefix><a href='m.html#ModuleImportDescriptor@@@@dictionary'>ModuleImportDescriptor</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#name%40%40ModuleImportDescriptor%40dict-member' aria-label="Permalink for <a href='m.html#ModuleImportDescriptor@@@@dictionary'>ModuleImportDescriptor</a>.name">§</a></span></dt><dt><code class=prefix><a href='m.html#ModuleImportDescriptor@@@@dictionary'>ModuleImportDescriptor</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#name%40%40ModuleImportDescriptor%40dict-member' aria-label="Permalink for <a href='m.html#ModuleImportDescriptor@@@@dictionary'>ModuleImportDescriptor</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in WebAssembly JavaScript Interface: Content Security Policy'><a href=https://webassembly.github.io/content-security-policy/js-api/#dom-moduleimportdescriptor-name>WebAssembly JavaScript Interface: Content Security Policy</a></strong> , <strong title='name is defined in WebAssembly JavaScript Interface: ESM Integration'><a href=https://webassembly.github.io/esm-integration/js-api/#dom-moduleimportdescriptor-name>WebAssembly JavaScript Interface: ESM Integration</a></strong> , <strong title='name is defined in WebAssembly JavaScript Interface: Exception Handling'><a href=https://webassembly.github.io/exception-handling/js-api/#dom-moduleimportdescriptor-name>WebAssembly JavaScript Interface: Exception Handling</a></strong> , <strong title='name is defined in WebAssembly JavaScript Interface: Promise Integration'><a href=https://webassembly.github.io/js-promise-integration/js-api/#dom-moduleimportdescriptor-name>WebAssembly JavaScript Interface: Promise Integration</a></strong> , <strong title='name is defined in WebAssembly JavaScript Interface: JS String Builtins'><a href=https://webassembly.github.io/js-string-builtins/js-api/#dom-moduleimportdescriptor-name>WebAssembly JavaScript Interface: JS String Builtins</a></strong> , <strong title='name is defined in WebAssembly JavaScript Interface: Type Reflection'><a href=https://webassembly.github.io/js-types/js-api/#dom-moduleimportdescriptor-name>WebAssembly JavaScript Interface: Type Reflection</a></strong> , <strong title='name is defined in WebAssembly JavaScript Interface: Threading'><a href=https://webassembly.github.io/threads/js-api/#dom-moduleimportdescriptor-name>WebAssembly JavaScript Interface: Threading</a></strong> , <strong title='name is defined in WebAssembly JavaScript Interface'><a href=https://webassembly.github.io/spec/js-api/#dom-moduleimportdescriptor-name>WebAssembly JavaScript Interface</a></strong> </dd>
<dt id="name@@NamedFlow@attribute"><code class=prefix><a href='n.html#NamedFlow@@@@interface'>NamedFlow</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40NamedFlow%40attribute' aria-label="Permalink for <a href='n.html#NamedFlow@@@@interface'>NamedFlow</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in CSS Regions 1'><a href=https://drafts.csswg.org/css-regions-1/#dom-namedflow-name>CSS Regions 1</a></strong> </dd>
<dt id="name@@NativeError@attribute"><code class=prefix></code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute for <code>NativeError</code> </em>) <a class='self-link' href='#name%40%40NativeError%40attribute' aria-label="Permalink for name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-nativeerror.prototype.name>ECMAScript</a></strong> </dd>
<dt id="name@@NotRestoredReasons@attribute"><code class=prefix><a href='n.html#NotRestoredReasons@@@@interface'>NotRestoredReasons</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40NotRestoredReasons%40attribute' aria-label="Permalink for <a href='n.html#NotRestoredReasons@@@@interface'>NotRestoredReasons</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-not-restored-reasons-name>HTML</a></strong> </dd>
<dt id="name@@PasswordCredentialData@dict-member"><code class=prefix><a href='p.html#PasswordCredentialData@@@@dictionary'>PasswordCredentialData</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#name%40%40PasswordCredentialData%40dict-member' aria-label="Permalink for <a href='p.html#PasswordCredentialData@@@@dictionary'>PasswordCredentialData</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Credential Management 1'><a href=https://w3c.github.io/webappsec-credential-management/#dom-passwordcredentialdata-name>Credential Management 1</a></strong> </dd>
<dt id="name@@PayerErrors@dict-member"><code class=prefix><a href='p.html#PayerErrors@@@@dictionary'>PayerErrors</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#name%40%40PayerErrors%40dict-member' aria-label="Permalink for <a href='p.html#PayerErrors@@@@dictionary'>PayerErrors</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Payment Request API'><a href=https://w3c.github.io/payment-request/#dom-payererrors-name>Payment Request API</a></strong> </dd>
<dt id="name@@PerformanceEntry@attribute"><code class=prefix><a href='p.html#PerformanceEntry@@@@interface'>PerformanceEntry</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40PerformanceEntry%40attribute' aria-label="Permalink for <a href='p.html#PerformanceEntry@@@@interface'>PerformanceEntry</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Performance Timeline'><a href=https://w3c.github.io/performance-timeline/#dom-performanceentry-name>Performance Timeline</a></strong> </dd>
<dd>Referenced in
<a href=https://html.spec.whatwg.org/multipage/ title='name is referenced by HTML'>HTML</a>,
<a href=https://wicg.github.io/element-timing/ title='name is referenced by Element Timing API'>Element Timing API</a>,
<a href=https://wicg.github.io/layout-instability/ title='name is referenced by Layout Instability'>Layout Instability</a>,
<a href=https://wicg.github.io/soft-navigations/ title='name is referenced by Soft Navigations'>Soft Navigations</a>,
<a href=https://w3c.github.io/event-timing/ title='name is referenced by Event Timing API'>Event Timing API</a>,
<a href=https://w3c.github.io/largest-contentful-paint/ title='name is referenced by Largest Contentful Paint'>Largest Contentful Paint</a>,
<a href=https://w3c.github.io/longtasks/ title='name is referenced by Long Tasks API'>Long Tasks API</a>,
<a href=https://w3c.github.io/paint-timing/ title='name is referenced by Paint Timing'>Paint Timing</a></dd>
<dt id="name@@PerformanceLongAnimationFrameTiming@attribute"><code class=prefix><a href='p.html#PerformanceLongAnimationFrameTiming@@@@interface'>PerformanceLongAnimationFrameTiming</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40PerformanceLongAnimationFrameTiming%40attribute' aria-label="Permalink for <a href='p.html#PerformanceLongAnimationFrameTiming@@@@interface'>PerformanceLongAnimationFrameTiming</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Long Animation Frames API'><a href=https://w3c.github.io/long-animation-frames/#dom-performancelonganimationframetiming-name>Long Animation Frames API</a></strong> </dd>
<dt id="name@@PerformanceLongTaskTiming@attribute"><code class=prefix><a href='p.html#PerformanceLongTaskTiming@@@@interface'>PerformanceLongTaskTiming</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40PerformanceLongTaskTiming%40attribute' aria-label="Permalink for <a href='p.html#PerformanceLongTaskTiming@@@@interface'>PerformanceLongTaskTiming</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Long Tasks API'><a href=https://w3c.github.io/longtasks/#dom-performancelongtasktiming-name>Long Tasks API</a></strong> </dd>
<dt id="name@@PerformanceScriptTiming@attribute"><code class=prefix><a href='p.html#PerformanceScriptTiming@@@@interface'>PerformanceScriptTiming</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40PerformanceScriptTiming%40attribute' aria-label="Permalink for <a href='p.html#PerformanceScriptTiming@@@@interface'>PerformanceScriptTiming</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Long Animation Frames API'><a href=https://w3c.github.io/long-animation-frames/#dom-performancescripttiming-name>Long Animation Frames API</a></strong> </dd>
<dt id="name@@PerformanceServerTiming@attribute"><code class=prefix><a href='p.html#PerformanceServerTiming@@@@interface'>PerformanceServerTiming</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40PerformanceServerTiming%40attribute' aria-label="Permalink for <a href='p.html#PerformanceServerTiming@@@@interface'>PerformanceServerTiming</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Server Timing'><a href=https://w3c.github.io/server-timing/#dom-performanceservertiming-name>Server Timing</a></strong> </dd>
<dt id="name@@PermissionDescriptor@dict-member"><code class=prefix><a href='p.html#PermissionDescriptor@@@@dictionary'>PermissionDescriptor</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#name%40%40PermissionDescriptor%40dict-member' aria-label="Permalink for <a href='p.html#PermissionDescriptor@@@@dictionary'>PermissionDescriptor</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Permissions'><a href=https://w3c.github.io/permissions/#dom-permissiondescriptor-name>Permissions</a></strong> </dd>
<dd>Referenced in
<a href=https://privacycg.github.io/requestStorageAccessFor/ title='name is referenced by requestStorageAccessFor API'>requestStorageAccessFor API</a>,
<a href=https://webbluetoothcg.github.io/web-bluetooth/ title='name is referenced by Web Bluetooth'>Web Bluetooth</a>,
<a href=https://wicg.github.io/background-fetch/ title='name is referenced by Background Fetch'>Background Fetch</a>,
<a href=https://wicg.github.io/file-system-access/ title='name is referenced by File System Access'>File System Access</a>,
<a href=https://wicg.github.io/first-party-sets/ title='name is referenced by User Agent Interaction with Related Website Sets'>User Agent Interaction with Related Website Sets</a>,
<a href=https://wicg.github.io/local-font-access/ title='name is referenced by Local Font Access'>Local Font Access</a>,
<a href=https://wicg.github.io/periodic-background-sync/ title='name is referenced by Web Periodic Background Synchronization'>Web Periodic Background Synchronization</a>,
<a href=https://wicg.github.io/permissions-request/ title='name is referenced by Requesting Permissions'>Requesting Permissions</a>,
<a href=https://wicg.github.io/permissions-revoke/ title='name is referenced by Relinquishing Permissions'>Relinquishing Permissions</a></dd>
<dt id="name@@PermissionStatus@attribute"><code class=prefix><a href='p.html#PermissionStatus@@@@interface'>PermissionStatus</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40PermissionStatus%40attribute' aria-label="Permalink for <a href='p.html#PermissionStatus@@@@interface'>PermissionStatus</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Permissions'><a href=https://w3c.github.io/permissions/#dom-permissionstatus-name>Permissions</a></strong> </dd>
<dt id="name@@Plugin@attribute"><code class=prefix><a href='p.html#Plugin@@@@interface'>Plugin</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40Plugin%40attribute' aria-label="Permalink for <a href='p.html#Plugin@@@@interface'>Plugin</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/system-state.html#dom-plugin-name>HTML</a></strong> </dd>
<dt id="name@@ProfilerFrame@dict-member"><code class=prefix><a href='p.html#ProfilerFrame@@@@dictionary'>ProfilerFrame</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#name%40%40ProfilerFrame%40dict-member' aria-label="Permalink for <a href='p.html#ProfilerFrame@@@@dictionary'>ProfilerFrame</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in JS Self-Profiling API'><a href=https://wicg.github.io/js-self-profiling/#dom-profilerframe-name>JS Self-Profiling API</a></strong> </dd>
<dt id="name@@PropertyDefinition@dict-member"><code class=prefix><a href='p.html#PropertyDefinition@@@@dictionary'>PropertyDefinition</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#name%40%40PropertyDefinition%40dict-member' aria-label="Permalink for <a href='p.html#PropertyDefinition@@@@dictionary'>PropertyDefinition</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in CSS Properties and Values API 1'><a href=https://drafts.css-houdini.org/css-properties-values-api-1/#dom-propertydefinition-name>CSS Properties and Values API 1</a></strong> </dd>
<dt id="name@@PublicKeyCredentialEntity@dict-member"><code class=prefix><a href='p.html#PublicKeyCredentialEntity@@@@dictionary'>PublicKeyCredentialEntity</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#name%40%40PublicKeyCredentialEntity%40dict-member' aria-label="Permalink for <a href='p.html#PublicKeyCredentialEntity@@@@dictionary'>PublicKeyCredentialEntity</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Web Authentication'><a href=https://w3c.github.io/webauthn/#dom-publickeycredentialentity-name>Web Authentication</a></strong> </dd>
<dd>Referenced in
<a href=https://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticator-protocol-v2.1-ps-errata-20220621.html title='name is referenced by CTAP'>CTAP</a>,
<a href=https://w3c.github.io/secure-payment-confirmation/ title='name is referenced by Secure Payment Confirmation'>Secure Payment Confirmation</a></dd>
<dt id="name@@PublicKeyCredentialUserEntityJSON@dict-member"><code class=prefix><a href='p.html#PublicKeyCredentialUserEntityJSON@@@@dictionary'>PublicKeyCredentialUserEntityJSON</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#name%40%40PublicKeyCredentialUserEntityJSON%40dict-member' aria-label="Permalink for <a href='p.html#PublicKeyCredentialUserEntityJSON@@@@dictionary'>PublicKeyCredentialUserEntityJSON</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Web Authentication'><a href=https://w3c.github.io/webauthn/#dom-publickeycredentialuserentityjson-name>Web Authentication</a></strong> </dd>
<dt id="name@@RTCIdentityAssertion@attribute"><code class=prefix><a href='r.html#RTCIdentityAssertion@@@@interface'>RTCIdentityAssertion</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40RTCIdentityAssertion%40attribute' aria-label="Permalink for <a href='r.html#RTCIdentityAssertion@@@@interface'>RTCIdentityAssertion</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Identity for WebRTC 1.0'><a href=https://w3c.github.io/webrtc-identity/#dom-rtcidentityassertion-name>Identity for WebRTC 1.0</a></strong> </dd>
<dt id="name@@SanitizerAttributeNamespace@dict-member"><code class=prefix><a href='s.html#SanitizerAttributeNamespace@@@@dictionary'>SanitizerAttributeNamespace</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#name%40%40SanitizerAttributeNamespace%40dict-member' aria-label="Permalink for <a href='s.html#SanitizerAttributeNamespace@@@@dictionary'>SanitizerAttributeNamespace</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in HTML Sanitizer API'><a href=https://wicg.github.io/sanitizer-api/#dom-sanitizerattributenamespace-name>HTML Sanitizer API</a></strong> </dd>
<dt id="name@@SanitizerElementNamespace@dict-member"><code class=prefix><a href='s.html#SanitizerElementNamespace@@@@dictionary'>SanitizerElementNamespace</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#name%40%40SanitizerElementNamespace%40dict-member' aria-label="Permalink for <a href='s.html#SanitizerElementNamespace@@@@dictionary'>SanitizerElementNamespace</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in HTML Sanitizer API'><a href=https://wicg.github.io/sanitizer-api/#dom-sanitizerelementnamespace-name>HTML Sanitizer API</a></strong> </dd>
<dt id="name@@SharedWorkerGlobalScope@attribute"><code class=prefix><a href='s.html#SharedWorkerGlobalScope@@@@interface'>SharedWorkerGlobalScope</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40SharedWorkerGlobalScope%40attribute' aria-label="Permalink for <a href='s.html#SharedWorkerGlobalScope@@@@interface'>SharedWorkerGlobalScope</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/workers.html#dom-sharedworkerglobalscope-name>HTML</a></strong> </dd>
<dt id="name@@SpeechSynthesisEvent@attribute"><code class=prefix><a href='s.html#SpeechSynthesisEvent@@@@interface'>SpeechSynthesisEvent</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40SpeechSynthesisEvent%40attribute' aria-label="Permalink for <a href='s.html#SpeechSynthesisEvent@@@@interface'>SpeechSynthesisEvent</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Web Speech API'><a href=https://wicg.github.io/speech-api/#dom-speechsynthesisevent-name>Web Speech API</a></strong> </dd>
<dt id="name@@SpeechSynthesisEventInit@dict-member"><code class=prefix><a href='s.html#SpeechSynthesisEventInit@@@@dictionary'>SpeechSynthesisEventInit</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#name%40%40SpeechSynthesisEventInit%40dict-member' aria-label="Permalink for <a href='s.html#SpeechSynthesisEventInit@@@@dictionary'>SpeechSynthesisEventInit</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Web Speech API'><a href=https://wicg.github.io/speech-api/#dom-speechsynthesiseventinit-name>Web Speech API</a></strong> </dd>
<dt id="name@@SpeechSynthesisVoice@attribute"><code class=prefix><a href='s.html#SpeechSynthesisVoice@@@@interface'>SpeechSynthesisVoice</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40SpeechSynthesisVoice%40attribute' aria-label="Permalink for <a href='s.html#SpeechSynthesisVoice@@@@interface'>SpeechSynthesisVoice</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Web Speech API'><a href=https://wicg.github.io/speech-api/#dom-speechsynthesisvoice-name>Web Speech API</a></strong> </dd>
<dt id="name@@StorageBucket@attribute"><code class=prefix><a href='s.html#StorageBucket@@@@interface'>StorageBucket</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40StorageBucket%40attribute' aria-label="Permalink for <a href='s.html#StorageBucket@@@@interface'>StorageBucket</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Storage Buckets API'><a href=https://wicg.github.io/storage-buckets/#dom-storagebucket-name>Storage Buckets API</a></strong> </dd>
<dt id="name@@TaskAttributionTiming@attribute"><code class=prefix><a href='t.html#TaskAttributionTiming@@@@interface'>TaskAttributionTiming</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40TaskAttributionTiming%40attribute' aria-label="Permalink for <a href='t.html#TaskAttributionTiming@@@@interface'>TaskAttributionTiming</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Long Tasks API'><a href=https://w3c.github.io/longtasks/#dom-taskattributiontiming-name>Long Tasks API</a></strong> </dd>
<dt id="name@@TrackingExData@dict-member"><code class=prefix><a href='t.html#TrackingExData@@@@dictionary'>TrackingExData</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#name%40%40TrackingExData%40dict-member' aria-label="Permalink for <a href='t.html#TrackingExData@@@@dictionary'>TrackingExData</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in DNT'><a href=https://w3c.github.io/dnt/drafts/tracking-dnt.html#dom-trackingexdata-name>DNT</a></strong> </dd>
<dt id="name@@TrustedTypePolicy@attribute"><code class=prefix><a href='t.html#TrustedTypePolicy@@@@interface'>TrustedTypePolicy</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40TrustedTypePolicy%40attribute' aria-label="Permalink for <a href='t.html#TrustedTypePolicy@@@@interface'>TrustedTypePolicy</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in Trusted Types'><a href=https://w3c.github.io/trusted-types/dist/spec/#dom-trustedtypepolicy-name>Trusted Types</a></strong> </dd>
<dt id="name@@Window@attribute"><code class=prefix><a href='w.html#Window@@@@interface'>Window</a>.</code><span><strong><code class=webidl>name</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#name%40%40Window%40attribute' aria-label="Permalink for <a href='w.html#Window@@@@interface'>Window</a>.name">§</a></span></dt>
<dd>Defined in <strong title='name is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-name>HTML</a></strong> </dd>
<dt id="<name-repeat>@@@@type"><code class=prefix></code><span><strong><code class=css><name-repeat></code></strong> (<em>CSS type</em>) <a class='self-link' href='#%3Cname-repeat%3E%40%40%40%40type' aria-label="Permalink for <name-repeat>">§</a></span></dt>
<dd>Defined in <strong title='<name-repeat> is defined in CSS Grid Layout 2'><a href=https://drafts.csswg.org/css-grid-2/#typedef-name-repeat>CSS Grid Layout 2</a></strong> </dd>
<dt id="named@@SlotAssignmentMode@enum-value"><code class=prefix></code><span><strong><code class=webidl>"named"</code></strong> (<em>value for <a href='s.html#SlotAssignmentMode@@@@enum'><code>SlotAssignmentMode</code></a> WebIDL enumeration</em>) <a class='self-link' href='#named%40%40SlotAssignmentMode%40enum-value' aria-label="Permalink for named">§</a></span></dt>
<dd>Defined in <strong title='named is defined in DOM'><a href=https://dom.spec.whatwg.org/#dom-slotassignmentmode-named>DOM</a></strong> </dd>
<dt id="named attribute@@dom%%dfn"><code class=prefix></code><span><strong>named attribute</strong> (<em>concept</em>) <a class='self-link' href='#named%20attribute%40%40dom%25%25dfn' aria-label="Permalink for named attribute">§</a></span></dt>
<dd>Defined in <strong title='named attribute is defined in DOM'><a href=https://dom.spec.whatwg.org/#concept-named-attribute>DOM</a></strong> </dd>
<dt id="named color@@css-color%%dfn"><code class=prefix></code><span><strong>named color</strong> (<em>concept</em>) <a class='self-link' href='#named%20color%40%40css-color%25%25dfn' aria-label="Permalink for named color">§</a></span></dt>
<dd>Defined in <strong title='named color is defined in CSS Color 4'><a href=https://drafts.csswg.org/css-color-4/#named-color>CSS Color 4</a></strong> </dd>
<dt id="named definition@@webidl%%dfn"><code class=prefix></code><span><strong>named definition</strong> (<em>concept</em>) <a class='self-link' href='#named%20definition%40%40webidl%25%25dfn' aria-label="Permalink for named definition">§</a></span></dt>
<dd>Defined in <strong title='named definition is defined in Web IDL'><a href=https://webidl.spec.whatwg.org/#dfn-named-definition>Web IDL</a></strong> </dd>
<dt id="named graph@@vc-data-integrity%%dfn"><code class=prefix></code><span><strong>named graph</strong> (<em>concept</em>) <a class='self-link' href='#named%20graph%40%40vc-data-integrity%25%25dfn' aria-label="Permalink for named graph">§</a></span></dt>
<dd>Defined in <strong title='named graph is defined in Verifiable Credential Data Integrity 1.0'><a href=https://w3c.github.io/vc-data-integrity/#dfn-named-graph>Verifiable Credential Data Integrity 1.0</a></strong> </dd>
<dt id="named grid area@@css-grid%%dfn"><code class=prefix></code><span><strong>named grid area</strong> (<em>concept</em>) <a class='self-link' href='#named%20grid%20area%40%40css-grid%25%25dfn' aria-label="Permalink for named grid area">§</a></span></dt>
<dd>Defined in <strong title='named grid area is defined in CSS Grid Layout 1'><a href=https://drafts.csswg.org/css-grid-1/#named-grid-area>CSS Grid Layout 1</a></strong> , <strong title='named grid area is defined in CSS Grid Layout 2'><a href=https://drafts.csswg.org/css-grid-2/#named-grid-area>CSS Grid Layout 2</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-2022/ title='named grid area is referenced by CSS Snapshot 2022'>CSS Snapshot 2022</a>,
<a href=https://drafts.csswg.org/css-2023/ title='named grid area is referenced by CSS Snapshot 2023'>CSS Snapshot 2023</a></dd>
<dt id="Named properties@@webidl%%dfn"><code class=prefix></code><span><strong>Named properties</strong> (<em>concept</em>) <a class='self-link' href='#Named%20properties%40%40webidl%25%25dfn' aria-label="Permalink for Named properties">§</a></span></dt>
<dd>Defined in <strong title='Named properties is defined in Web IDL'><a href=https://webidl.spec.whatwg.org/#idl-named-properties>Web IDL</a></strong> </dd>
<dt id="named properties object@@webidl%%dfn"><code class=prefix></code><span><strong>named properties object</strong> (<em>concept</em>) <a class='self-link' href='#named%20properties%20object%40%40webidl%25%25dfn' aria-label="Permalink for named properties object">§</a></span></dt>
<dd>Defined in <strong title='named properties object is defined in Web IDL'><a href=https://webidl.spec.whatwg.org/#dfn-named-properties-object>Web IDL</a></strong> </dd>
<dd>Referenced in
<a href=https://html.spec.whatwg.org/multipage/ title='named properties object is referenced by HTML'>HTML</a></dd>
<dt id="named property deleter@@webidl%%dfn"><code class=prefix></code><span><strong>named property deleter</strong> (<em>concept</em>) <a class='self-link' href='#named%20property%20deleter%40%40webidl%25%25dfn' aria-label="Permalink for named property deleter">§</a></span></dt>
<dd>Defined in <strong title='named property deleter is defined in Web IDL'><a href=https://webidl.spec.whatwg.org/#dfn-named-property-deleter>Web IDL</a></strong> </dd>
<dt id="named property getter@@webidl%%dfn"><code class=prefix></code><span><strong>named property getter</strong> (<em>concept</em>) <a class='self-link' href='#named%20property%20getter%40%40webidl%25%25dfn' aria-label="Permalink for named property getter">§</a></span></dt>
<dd>Defined in <strong title='named property getter is defined in Web IDL'><a href=https://webidl.spec.whatwg.org/#dfn-named-property-getter>Web IDL</a></strong> </dd>