-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathk.html
1044 lines (489 loc) · 130 KB
/
k.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 k"
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="k@@JsonWebKey@dict-member"><code class=prefix><a href='j.html#JsonWebKey@@@@dictionary'>JsonWebKey</a>.</code><span><strong><code class=webidl>k</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#k%40%40JsonWebKey%40dict-member' aria-label="Permalink for <a href='j.html#JsonWebKey@@@@dictionary'>JsonWebKey</a>.k">§</a></span></dt>
<dd>Defined in <strong title='k is defined in Web Cryptography API'><a href=https://w3c.github.io/webcrypto/#dom-jsonwebkey-k>Web Cryptography API</a></strong> </dd>
<dt id="k-rate@@AutomationRate@enum-value"><code class=prefix></code><span><strong><code class=webidl>"k-rate"</code></strong> (<em>value for <a href='a.html#AutomationRate@@@@enum'><code>AutomationRate</code></a> WebIDL enumeration</em>) <a class='self-link' href='#k-rate%40%40AutomationRate%40enum-value' aria-label="Permalink for k-rate">§</a></span></dt>
<dd>Defined in <strong title='k-rate is defined in Web Audio API'><a href=https://webaudio.github.io/web-audio-api/#dom-automationrate-k-rate>Web Audio API</a></strong> , <strong title='k-rate is defined in Web Audio API 1.1'><a href=https://webaudio.github.io/web-audio-api/#dom-automationrate-k-rate>Web Audio API 1.1</a></strong> </dd>
<dt id="k1@@feComposite@element-attr"><code class=prefix></code><span><strong><code class=markup>k1</code></strong> (<em>markup attribute for <code>feComposite</code> </em>) <a class='self-link' href='#k1%40%40feComposite%40element-attr' aria-label="Permalink for k1">§</a></span></dt>
<dd>Defined in <strong title='k1 is defined in Filter Effects 1'><a href=https://drafts.fxtf.org/filter-effects-1/#element-attrdef-fecomposite-k1>Filter Effects 1</a></strong> </dd>
<dt id="k1@@SVGFECompositeElement@attribute"><code class=prefix><a href='s.html#SVGFECompositeElement@@@@interface'>SVGFECompositeElement</a>.</code><span><strong><code class=webidl>k1</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#k1%40%40SVGFECompositeElement%40attribute' aria-label="Permalink for <a href='s.html#SVGFECompositeElement@@@@interface'>SVGFECompositeElement</a>.k1">§</a></span></dt>
<dd>Defined in <strong title='k1 is defined in Filter Effects 1'><a href=https://drafts.fxtf.org/filter-effects-1/#dom-svgfecompositeelement-k1>Filter Effects 1</a></strong> </dd>
<dt id="k2@@feComposite@element-attr"><code class=prefix></code><span><strong><code class=markup>k2</code></strong> (<em>markup attribute for <code>feComposite</code> </em>) <a class='self-link' href='#k2%40%40feComposite%40element-attr' aria-label="Permalink for k2">§</a></span></dt>
<dd>Defined in <strong title='k2 is defined in Filter Effects 1'><a href=https://drafts.fxtf.org/filter-effects-1/#element-attrdef-fecomposite-k2>Filter Effects 1</a></strong> </dd>
<dt id="k2@@SVGFECompositeElement@attribute"><code class=prefix><a href='s.html#SVGFECompositeElement@@@@interface'>SVGFECompositeElement</a>.</code><span><strong><code class=webidl>k2</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#k2%40%40SVGFECompositeElement%40attribute' aria-label="Permalink for <a href='s.html#SVGFECompositeElement@@@@interface'>SVGFECompositeElement</a>.k2">§</a></span></dt>
<dd>Defined in <strong title='k2 is defined in Filter Effects 1'><a href=https://drafts.fxtf.org/filter-effects-1/#dom-svgfecompositeelement-k2>Filter Effects 1</a></strong> </dd>
<dt id="k3@@feComposite@element-attr"><code class=prefix></code><span><strong><code class=markup>k3</code></strong> (<em>markup attribute for <code>feComposite</code> </em>) <a class='self-link' href='#k3%40%40feComposite%40element-attr' aria-label="Permalink for k3">§</a></span></dt>
<dd>Defined in <strong title='k3 is defined in Filter Effects 1'><a href=https://drafts.fxtf.org/filter-effects-1/#element-attrdef-fecomposite-k3>Filter Effects 1</a></strong> </dd>
<dt id="k3@@SVGFECompositeElement@attribute"><code class=prefix><a href='s.html#SVGFECompositeElement@@@@interface'>SVGFECompositeElement</a>.</code><span><strong><code class=webidl>k3</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#k3%40%40SVGFECompositeElement%40attribute' aria-label="Permalink for <a href='s.html#SVGFECompositeElement@@@@interface'>SVGFECompositeElement</a>.k3">§</a></span></dt>
<dd>Defined in <strong title='k3 is defined in Filter Effects 1'><a href=https://drafts.fxtf.org/filter-effects-1/#dom-svgfecompositeelement-k3>Filter Effects 1</a></strong> </dd>
<dt id="k4@@feComposite@element-attr"><code class=prefix></code><span><strong><code class=markup>k4</code></strong> (<em>markup attribute for <code>feComposite</code> </em>) <a class='self-link' href='#k4%40%40feComposite%40element-attr' aria-label="Permalink for k4">§</a></span></dt>
<dd>Defined in <strong title='k4 is defined in Filter Effects 1'><a href=https://drafts.fxtf.org/filter-effects-1/#element-attrdef-fecomposite-k4>Filter Effects 1</a></strong> </dd>
<dt id="k4@@SVGFECompositeElement@attribute"><code class=prefix><a href='s.html#SVGFECompositeElement@@@@interface'>SVGFECompositeElement</a>.</code><span><strong><code class=webidl>k4</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#k4%40%40SVGFECompositeElement%40attribute' aria-label="Permalink for <a href='s.html#SVGFECompositeElement@@@@interface'>SVGFECompositeElement</a>.k4">§</a></span></dt>
<dd>Defined in <strong title='k4 is defined in Filter Effects 1'><a href=https://drafts.fxtf.org/filter-effects-1/#dom-svgfecompositeelement-k4>Filter Effects 1</a></strong> </dd>
<dt id="Kana@@i18n-glossary%%dfn"><code class=prefix></code><span><strong>Kana</strong> (<em>concept</em>) <a class='self-link' href='#Kana%40%40i18n-glossary%25%25dfn' aria-label="Permalink for Kana">§</a></span></dt>
<dd>Defined in <strong title='Kana is defined in Internationalization Glossary'><a href=https://w3c.github.io/i18n-glossary/#dfn-kana>Internationalization Glossary</a></strong> </dd>
<dt id="kannada@@<counter-style-name>@value"><code class=prefix></code><span><strong><code class=css>kannada</code></strong> (<em>CSS value for <a href='c.html#<counter-style-name>@@@@type'><code><counter-style-name></code></a> </em>) <a class='self-link' href='#kannada%40%40%3Ccounter-style-name%3E%40value' aria-label="Permalink for kannada">§</a></span></dt>
<dd>Defined in <strong title='kannada is defined in CSS Counter Styles 3'><a href=https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-name-kannada>CSS Counter Styles 3</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-2022/ title='kannada is referenced by CSS Snapshot 2022'>CSS Snapshot 2022</a>,
<a href=https://drafts.csswg.org/css-2023/ title='kannada is referenced by CSS Snapshot 2023'>CSS Snapshot 2023</a></dd>
<dt id="kAnonStatus@@ReportWinBrowserSignals@dict-member"><code class=prefix><a href='r.html#ReportWinBrowserSignals@@@@dictionary'>ReportWinBrowserSignals</a>.</code><span><strong><code class=webidl>kAnonStatus</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#kAnonStatus%40%40ReportWinBrowserSignals%40dict-member' aria-label="Permalink for <a href='r.html#ReportWinBrowserSignals@@@@dictionary'>ReportWinBrowserSignals</a>.kAnonStatus">§</a></span></dt>
<dd>Defined in <strong title='kAnonStatus is defined in Protected Audience'><a href=https://wicg.github.io/turtledove/#dom-reportwinbrowsersignals-kanonstatus>Protected Audience</a></strong> </dd>
<dt id="KAnonStatus@@@@enum"><code class=prefix></code><span><strong><code class=webidl>KAnonStatus</code></strong> (<em>WebIDL enumeration</em>) <a class='self-link' href='#KAnonStatus%40%40%40%40enum' aria-label="Permalink for KAnonStatus">§</a></span></dt>
<dd>Defined in <strong title='KAnonStatus is defined in Protected Audience'><a href=https://wicg.github.io/turtledove/#enumdef-kanonstatus>Protected Audience</a></strong> </dd>
<dd>Related terms: <em>value</em> <a href='b.html#belowThreshold@@KAnonStatus@enum-value'><code>belowThreshold</code></a>, <em>value</em> <a href='n.html#notCalculated@@KAnonStatus@enum-value'><code>notCalculated</code></a>, <em>value</em> <a href='p.html#passedAndEnforced@@KAnonStatus@enum-value'><code>passedAndEnforced</code></a>, <em>value</em> <a href='p.html#passedNotEnforced@@KAnonStatus@enum-value'><code>passedNotEnforced</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/KAnonStatus.html' title='KAnonStatus entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="katakana@@<counter-style-name>@value"><code class=prefix></code><span><strong><code class=css>katakana</code></strong> (<em>CSS value for <a href='c.html#<counter-style-name>@@@@type'><code><counter-style-name></code></a> </em>) <a class='self-link' href='#katakana%40%40%3Ccounter-style-name%3E%40value' aria-label="Permalink for katakana">§</a></span></dt>
<dd>Defined in <strong title='katakana is defined in CSS Counter Styles 3'><a href=https://drafts.csswg.org/css-counter-styles-3/#katakana>CSS Counter Styles 3</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-2022/ title='katakana is referenced by CSS Snapshot 2022'>CSS Snapshot 2022</a>,
<a href=https://drafts.csswg.org/css-2023/ title='katakana is referenced by CSS Snapshot 2023'>CSS Snapshot 2023</a></dd>
<dt id="katakana-iroha@@<counter-style-name>@value"><code class=prefix></code><span><strong><code class=css>katakana-iroha</code></strong> (<em>CSS value for <a href='c.html#<counter-style-name>@@@@type'><code><counter-style-name></code></a> </em>) <a class='self-link' href='#katakana-iroha%40%40%3Ccounter-style-name%3E%40value' aria-label="Permalink for katakana-iroha">§</a></span></dt>
<dd>Defined in <strong title='katakana-iroha is defined in CSS Counter Styles 3'><a href=https://drafts.csswg.org/css-counter-styles-3/#katakana-iroha>CSS Counter Styles 3</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-2022/ title='katakana-iroha is referenced by CSS Snapshot 2022'>CSS Snapshot 2022</a>,
<a href=https://drafts.csswg.org/css-2023/ title='katakana-iroha is referenced by CSS Snapshot 2023'>CSS Snapshot 2023</a></dd>
<dt id="kbd@@html%%element"><code class=prefix></code><span><strong><code class=markup>kbd</code></strong> (<em>markup element</em>) <a class='self-link' href='#kbd%40%40html%25%25element' aria-label="Permalink for kbd">§</a></span></dt>
<dd>Defined in <strong title='kbd is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-kbd-element>HTML</a></strong> </dd>
<dd>Referenced in
<a href=https://w3c.github.io/html-aam/ title='kbd is referenced by HTML Accessibility API Mappings 1.0'>HTML Accessibility API Mappings 1.0</a>,
<a href=https://w3c.github.io/html-aria/ title='kbd is referenced by ARIA in HTML'>ARIA in HTML</a></dd>
<dt id="keep@@margin-break@value"><code class=prefix></code><span><strong><code class=css>keep</code></strong> (<em>CSS value for <a href='m.html#margin-break@@@@property'><code>margin-break</code></a> </em>) <a class='self-link' href='#keep%40%40margin-break%40value' aria-label="Permalink for keep">§</a></span></dt>
<dd>Defined in <strong title='keep is defined in CSS Fragmentation 4'><a href=https://drafts.csswg.org/css-break-4/#valdef-margin-break-keep>CSS Fragmentation 4</a></strong> </dd>
<dt id="keep@@AlphaOption@enum-value"><code class=prefix></code><span><strong><code class=webidl>"keep"</code></strong> (<em>value for <a href='a.html#AlphaOption@@@@enum'><code>AlphaOption</code></a> WebIDL enumeration</em>) <a class='self-link' href='#keep%40%40AlphaOption%40enum-value' aria-label="Permalink for keep">§</a></span></dt>
<dd>Defined in <strong title='keep is defined in WebCodecs'><a href=https://w3c.github.io/webcodecs/#dom-alphaoption-keep>WebCodecs</a></strong> </dd>
<dt id="keep@@GPUStencilOperation@enum-value"><code class=prefix></code><span><strong><code class=webidl>"keep"</code></strong> (<em>value for <a href='g.html#GPUStencilOperation@@@@enum'><code>GPUStencilOperation</code></a> WebIDL enumeration</em>) <a class='self-link' href='#keep%40%40GPUStencilOperation%40enum-value' aria-label="Permalink for keep">§</a></span></dt>
<dd>Defined in <strong title='keep is defined in WebGPU'><a href=https://gpuweb.github.io/gpuweb/#dom-gpustenciloperation-keep>WebGPU</a></strong> </dd>
<dt id="keep-all@@word-break@value"><code class=prefix></code><span><strong><code class=css>keep-all</code></strong> (<em>CSS value for <a href='w.html#word-break@@@@property'><code>word-break</code></a> </em>) <a class='self-link' href='#keep-all%40%40word-break%40value' aria-label="Permalink for keep-all">§</a></span></dt>
<dd>Defined in <strong title='keep-all is defined in CSS Text 3'><a href=https://drafts.csswg.org/css-text-3/#valdef-word-break-keep-all>CSS Text 3</a></strong> , <strong title='keep-all is defined in CSS Text 4'><a href=https://drafts.csswg.org/css-text-4/#valdef-word-break-keep-all>CSS Text 4</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-2022/ title='keep-all is referenced by CSS Snapshot 2022'>CSS Snapshot 2022</a>,
<a href=https://drafts.csswg.org/css-2023/ title='keep-all is referenced by CSS Snapshot 2023'>CSS Snapshot 2023</a>,
<a href=https://drafts.csswg.org/css-ruby-1/ title='keep-all is referenced by CSS Ruby Annotation Layout 1'>CSS Ruby Annotation Layout 1</a></dd>
<dt id="keepalive@@request@dfn"><code class=prefix></code><span><strong>keepalive</strong> (<em>concept for <a href='r.html#request@@fetch%25%25dfn'>request</a> </em>) <a class='self-link' href='#keepalive%40%40request%40dfn' aria-label="Permalink for keepalive">§</a></span></dt>
<dd>Defined in <strong title='keepalive is defined in Fetch'><a href=https://fetch.spec.whatwg.org/#request-keepalive-flag>Fetch</a></strong> </dd>
<dd>Referenced in
<a href=https://wicg.github.io/attribution-reporting-api/ title='keepalive is referenced by Attribution Reporting'>Attribution Reporting</a>,
<a href=https://w3c.github.io/beacon/ title='keepalive is referenced by Beacon'>Beacon</a>,
<a href=https://w3c.github.io/webappsec-csp/ title='keepalive is referenced by Content Security Policy 3'>Content Security Policy 3</a></dd>
<dt id="keepalive@@BodyInit/extract@dfn"><code class=prefix></code><span><strong>keepalive</strong> (<em>concept for <a href='e.html#extract@@BodyInit@dfn'>extract</a> of <a href='b.html#BodyInit@@@@typedef'><code>BodyInit</code></a> type alias </em>) <a class='self-link' href='#keepalive%40%40BodyInit%2Fextract%40dfn' aria-label="Permalink for keepalive">§</a></span></dt>
<dd>Defined in <strong title='keepalive is defined in Fetch'><a href=https://fetch.spec.whatwg.org/#keepalive>Fetch</a></strong> </dd>
<dt id="keepalive@@Request@attribute"><code class=prefix><a href='r.html#Request@@@@interface'>Request</a>.</code><span><strong><code class=webidl>keepalive</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#keepalive%40%40Request%40attribute' aria-label="Permalink for <a href='r.html#Request@@@@interface'>Request</a>.keepalive">§</a></span></dt>
<dd>Defined in <strong title='keepalive is defined in Fetch'><a href=https://fetch.spec.whatwg.org/#dom-request-keepalive>Fetch</a></strong> </dd>
<dt id="keepalive@@RequestInit@dict-member"><code class=prefix><a href='r.html#RequestInit@@@@dictionary'>RequestInit</a>.</code><span><strong><code class=webidl>keepalive</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#keepalive%40%40RequestInit%40dict-member' aria-label="Permalink for <a href='r.html#RequestInit@@@@dictionary'>RequestInit</a>.keepalive">§</a></span></dt>
<dd>Defined in <strong title='keepalive is defined in Fetch'><a href=https://fetch.spec.whatwg.org/#dom-requestinit-keepalive>Fetch</a></strong> </dd>
<dt id="keepAlive@@SharedStorageRunOperationMethodOptions@dict-member"><code class=prefix><a href='s.html#SharedStorageRunOperationMethodOptions@@@@dictionary'>SharedStorageRunOperationMethodOptions</a>.</code><span><strong><code class=webidl>keepAlive</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#keepAlive%40%40SharedStorageRunOperationMethodOptions%40dict-member' aria-label="Permalink for <a href='s.html#SharedStorageRunOperationMethodOptions@@@@dictionary'>SharedStorageRunOperationMethodOptions</a>.keepAlive">§</a></span></dt>
<dd>Defined in <strong title='keepAlive is defined in Shared Storage API'><a href=https://wicg.github.io/shared-storage/#dom-sharedstoragerunoperationmethodoptions-keepalive>Shared Storage API</a></strong> </dd>
<dt id="keepAliveDelay@@TCPSocketOptions@dict-member"><code class=prefix><a href='t.html#TCPSocketOptions@@@@dictionary'>TCPSocketOptions</a>.</code><span><strong><code class=webidl>keepAliveDelay</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#keepAliveDelay%40%40TCPSocketOptions%40dict-member' aria-label="Permalink for <a href='t.html#TCPSocketOptions@@@@dictionary'>TCPSocketOptions</a>.keepAliveDelay">§</a></span></dt>
<dd>Defined in <strong title='keepAliveDelay is defined in Direct Sockets API'><a href=https://wicg.github.io/direct-sockets/#dom-tcpsocketoptions-keepalivedelay>Direct Sockets API</a></strong> </dd>
<dt id="keepDimensions@@MLArgMinMaxOptions@dict-member"><code class=prefix><a href='m.html#MLArgMinMaxOptions@@@@dictionary'>MLArgMinMaxOptions</a>.</code><span><strong><code class=webidl>keepDimensions</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#keepDimensions%40%40MLArgMinMaxOptions%40dict-member' aria-label="Permalink for <a href='m.html#MLArgMinMaxOptions@@@@dictionary'>MLArgMinMaxOptions</a>.keepDimensions">§</a></span></dt>
<dd>Defined in <strong title='keepDimensions is defined in Web Neural Network API'><a href=https://webmachinelearning.github.io/webnn/#dom-mlargminmaxoptions-keepdimensions>Web Neural Network API</a></strong> </dd>
<dt id="keepDimensions@@MLReduceOptions@dict-member"><code class=prefix><a href='m.html#MLReduceOptions@@@@dictionary'>MLReduceOptions</a>.</code><span><strong><code class=webidl>keepDimensions</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#keepDimensions%40%40MLReduceOptions%40dict-member' aria-label="Permalink for <a href='m.html#MLReduceOptions@@@@dictionary'>MLReduceOptions</a>.keepDimensions">§</a></span></dt>
<dd>Defined in <strong title='keepDimensions is defined in Web Neural Network API'><a href=https://webmachinelearning.github.io/webnn/#dom-mlreduceoptions-keepdimensions>Web Neural Network API</a></strong> </dd>
<dt id="keepExistingData@@FileSystemCreateWritableOptions@dict-member"><code class=prefix><a href='f.html#FileSystemCreateWritableOptions@@@@dictionary'>FileSystemCreateWritableOptions</a>.</code><span><strong><code class=webidl>keepExistingData</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#keepExistingData%40%40FileSystemCreateWritableOptions%40dict-member' aria-label="Permalink for <a href='f.html#FileSystemCreateWritableOptions@@@@dictionary'>FileSystemCreateWritableOptions</a>.keepExistingData">§</a></span></dt>
<dd>Defined in <strong title='keepExistingData is defined in File System'><a href=https://fs.spec.whatwg.org/#dom-filesystemcreatewritableoptions-keepexistingdata>File System</a></strong> </dd>
<dt id="keepRepeatedDevices@@BluetoothLEScan@attribute"><code class=prefix><a href='b.html#BluetoothLEScan@@@@interface'>BluetoothLEScan</a>.</code><span><strong><code class=webidl>keepRepeatedDevices</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#keepRepeatedDevices%40%40BluetoothLEScan%40attribute' aria-label="Permalink for <a href='b.html#BluetoothLEScan@@@@interface'>BluetoothLEScan</a>.keepRepeatedDevices">§</a></span></dt>
<dd>Defined in <strong title='keepRepeatedDevices is defined in Web Bluetooth Scanning'><a href=https://webbluetoothcg.github.io/web-bluetooth/scanning.html#dom-bluetoothlescan-keeprepeateddevices>Web Bluetooth Scanning</a></strong> </dd>
<dt id="keepRepeatedDevices@@BluetoothLEScanOptions@dict-member"><code class=prefix><a href='b.html#BluetoothLEScanOptions@@@@dictionary'>BluetoothLEScanOptions</a>.</code><span><strong><code class=webidl>keepRepeatedDevices</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#keepRepeatedDevices%40%40BluetoothLEScanOptions%40dict-member' aria-label="Permalink for <a href='b.html#BluetoothLEScanOptions@@@@dictionary'>BluetoothLEScanOptions</a>.keepRepeatedDevices">§</a></span></dt>
<dd>Defined in <strong title='keepRepeatedDevices is defined in Web Bluetooth Scanning'><a href=https://webbluetoothcg.github.io/web-bluetooth/scanning.html#dom-bluetoothlescanoptions-keeprepeateddevices>Web Bluetooth Scanning</a></strong> </dd>
<dt id="keepRepeatedDevices@@BluetoothLEScanPermissionDescriptor@dict-member"><code class=prefix><a href='b.html#BluetoothLEScanPermissionDescriptor@@@@dictionary'>BluetoothLEScanPermissionDescriptor</a>.</code><span><strong><code class=webidl>keepRepeatedDevices</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#keepRepeatedDevices%40%40BluetoothLEScanPermissionDescriptor%40dict-member' aria-label="Permalink for <a href='b.html#BluetoothLEScanPermissionDescriptor@@@@dictionary'>BluetoothLEScanPermissionDescriptor</a>.keepRepeatedDevices">§</a></span></dt>
<dd>Defined in <strong title='keepRepeatedDevices is defined in Web Bluetooth Scanning'><a href=https://webbluetoothcg.github.io/web-bluetooth/scanning.html#dom-bluetoothlescanpermissiondescriptor-keeprepeateddevices>Web Bluetooth Scanning</a></strong> </dd>
<dt id="kernelMatrix@@feConvolveMatrix@element-attr"><code class=prefix></code><span><strong><code class=markup>kernelMatrix</code></strong> (<em>markup attribute for <code>feConvolveMatrix</code> </em>) <a class='self-link' href='#kernelMatrix%40%40feConvolveMatrix%40element-attr' aria-label="Permalink for kernelMatrix">§</a></span></dt>
<dd>Defined in <strong title='kernelMatrix is defined in Filter Effects 1'><a href=https://drafts.fxtf.org/filter-effects-1/#element-attrdef-feconvolvematrix-kernelmatrix>Filter Effects 1</a></strong> </dd>
<dt id="kernelMatrix@@SVGFEConvolveMatrixElement@attribute"><code class=prefix><a href='s.html#SVGFEConvolveMatrixElement@@@@interface'>SVGFEConvolveMatrixElement</a>.</code><span><strong><code class=webidl>kernelMatrix</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#kernelMatrix%40%40SVGFEConvolveMatrixElement%40attribute' aria-label="Permalink for <a href='s.html#SVGFEConvolveMatrixElement@@@@interface'>SVGFEConvolveMatrixElement</a>.kernelMatrix">§</a></span></dt>
<dd>Defined in <strong title='kernelMatrix is defined in Filter Effects 1'><a href=https://drafts.fxtf.org/filter-effects-1/#dom-svgfeconvolvematrixelement-kernelmatrix>Filter Effects 1</a></strong> </dd>
<dt id="kernelUnitLength@@feConvolveMatrix@element-attr"><code class=prefix></code><span><strong><code class=markup>kernelUnitLength</code></strong> (<em>markup attribute for <code>feConvolveMatrix</code> </em>) <a class='self-link' href='#kernelUnitLength%40%40feConvolveMatrix%40element-attr' aria-label="Permalink for kernelUnitLength">§</a></span></dt>
<dd>Defined in <strong title='kernelUnitLength is defined in Filter Effects 1'><a href=https://drafts.fxtf.org/filter-effects-1/#element-attrdef-feconvolvematrix-kernelunitlength>Filter Effects 1</a></strong> </dd>
<dt id="kernelUnitLength@@feDiffuseLighting@element-attr"><code class=prefix></code><span><strong><code class=markup>kernelUnitLength</code></strong> (<em>markup attribute for <code>feDiffuseLighting</code> </em>) <a class='self-link' href='#kernelUnitLength%40%40feDiffuseLighting%40element-attr' aria-label="Permalink for kernelUnitLength">§</a></span></dt>
<dd>Defined in <strong title='kernelUnitLength is defined in Filter Effects 1'><a href=https://drafts.fxtf.org/filter-effects-1/#element-attrdef-fediffuselighting-kernelunitlength>Filter Effects 1</a></strong> </dd>
<dt id="kernelUnitLength@@feSpecularLighting@element-attr"><code class=prefix></code><span><strong><code class=markup>kernelUnitLength</code></strong> (<em>markup attribute for <code>feSpecularLighting</code> </em>) <a class='self-link' href='#kernelUnitLength%40%40feSpecularLighting%40element-attr' aria-label="Permalink for kernelUnitLength">§</a></span></dt>
<dd>Defined in <strong title='kernelUnitLength is defined in Filter Effects 1'><a href=https://drafts.fxtf.org/filter-effects-1/#element-attrdef-fespecularlighting-kernelunitlength>Filter Effects 1</a></strong> </dd>
<dt id="kernelUnitLengthX@@SVGFEConvolveMatrixElement@attribute"><code class=prefix><a href='s.html#SVGFEConvolveMatrixElement@@@@interface'>SVGFEConvolveMatrixElement</a>.</code><span><strong><code class=webidl>kernelUnitLengthX</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#kernelUnitLengthX%40%40SVGFEConvolveMatrixElement%40attribute' aria-label="Permalink for <a href='s.html#SVGFEConvolveMatrixElement@@@@interface'>SVGFEConvolveMatrixElement</a>.kernelUnitLengthX">§</a></span></dt>
<dd>Defined in <strong title='kernelUnitLengthX is defined in Filter Effects 1'><a href=https://drafts.fxtf.org/filter-effects-1/#dom-svgfeconvolvematrixelement-kernelunitlengthx>Filter Effects 1</a></strong> </dd>
<dt id="kernelUnitLengthX@@SVGFEDiffuseLightingElement@attribute"><code class=prefix><a href='s.html#SVGFEDiffuseLightingElement@@@@interface'>SVGFEDiffuseLightingElement</a>.</code><span><strong><code class=webidl>kernelUnitLengthX</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#kernelUnitLengthX%40%40SVGFEDiffuseLightingElement%40attribute' aria-label="Permalink for <a href='s.html#SVGFEDiffuseLightingElement@@@@interface'>SVGFEDiffuseLightingElement</a>.kernelUnitLengthX">§</a></span></dt>
<dd>Defined in <strong title='kernelUnitLengthX is defined in Filter Effects 1'><a href=https://drafts.fxtf.org/filter-effects-1/#dom-svgfediffuselightingelement-kernelunitlengthx>Filter Effects 1</a></strong> </dd>
<dt id="kernelUnitLengthX@@SVGFESpecularLightingElement@attribute"><code class=prefix><a href='s.html#SVGFESpecularLightingElement@@@@interface'>SVGFESpecularLightingElement</a>.</code><span><strong><code class=webidl>kernelUnitLengthX</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#kernelUnitLengthX%40%40SVGFESpecularLightingElement%40attribute' aria-label="Permalink for <a href='s.html#SVGFESpecularLightingElement@@@@interface'>SVGFESpecularLightingElement</a>.kernelUnitLengthX">§</a></span></dt>
<dd>Defined in <strong title='kernelUnitLengthX is defined in Filter Effects 1'><a href=https://drafts.fxtf.org/filter-effects-1/#dom-svgfespecularlightingelement-kernelunitlengthx>Filter Effects 1</a></strong> </dd>
<dt id="kernelUnitLengthY@@SVGFEConvolveMatrixElement@attribute"><code class=prefix><a href='s.html#SVGFEConvolveMatrixElement@@@@interface'>SVGFEConvolveMatrixElement</a>.</code><span><strong><code class=webidl>kernelUnitLengthY</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#kernelUnitLengthY%40%40SVGFEConvolveMatrixElement%40attribute' aria-label="Permalink for <a href='s.html#SVGFEConvolveMatrixElement@@@@interface'>SVGFEConvolveMatrixElement</a>.kernelUnitLengthY">§</a></span></dt>
<dd>Defined in <strong title='kernelUnitLengthY is defined in Filter Effects 1'><a href=https://drafts.fxtf.org/filter-effects-1/#dom-svgfeconvolvematrixelement-kernelunitlengthy>Filter Effects 1</a></strong> </dd>
<dt id="kernelUnitLengthY@@SVGFEDiffuseLightingElement@attribute"><code class=prefix><a href='s.html#SVGFEDiffuseLightingElement@@@@interface'>SVGFEDiffuseLightingElement</a>.</code><span><strong><code class=webidl>kernelUnitLengthY</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#kernelUnitLengthY%40%40SVGFEDiffuseLightingElement%40attribute' aria-label="Permalink for <a href='s.html#SVGFEDiffuseLightingElement@@@@interface'>SVGFEDiffuseLightingElement</a>.kernelUnitLengthY">§</a></span></dt>
<dd>Defined in <strong title='kernelUnitLengthY is defined in Filter Effects 1'><a href=https://drafts.fxtf.org/filter-effects-1/#dom-svgfediffuselightingelement-kernelunitlengthy>Filter Effects 1</a></strong> </dd>
<dt id="kernelUnitLengthY@@SVGFESpecularLightingElement@attribute"><code class=prefix><a href='s.html#SVGFESpecularLightingElement@@@@interface'>SVGFESpecularLightingElement</a>.</code><span><strong><code class=webidl>kernelUnitLengthY</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#kernelUnitLengthY%40%40SVGFESpecularLightingElement%40attribute' aria-label="Permalink for <a href='s.html#SVGFESpecularLightingElement@@@@interface'>SVGFESpecularLightingElement</a>.kernelUnitLengthY">§</a></span></dt>
<dd>Defined in <strong title='kernelUnitLengthY is defined in Filter Effects 1'><a href=https://drafts.fxtf.org/filter-effects-1/#dom-svgfespecularlightingelement-kernelunitlengthy>Filter Effects 1</a></strong> </dd>
<dt id="key@@map@dfn"><code class=prefix></code><span><strong>key</strong> (<em>concept for <a href='m.html#map@@html%25%25element'><code>map</code></a> </em>) <a class='self-link' href='#key%40%40map%40dfn' aria-label="Permalink for key">§</a></span></dt>
<dd>Defined in <strong title='key is defined in Infra'><a href=https://infra.spec.whatwg.org/#map-key>Infra</a></strong> </dd>
<dd>Referenced in
<a href=https://html.spec.whatwg.org/multipage/ title='key is referenced by HTML'>HTML</a>,
<a href=https://storage.spec.whatwg.org/ title='key is referenced by Storage'>Storage</a>,
<a href=https://w3c-fedid.github.io/login-status/ title='key is referenced by Login Status API'>Login Status API</a>,
<a href=https://wicg.github.io/attribution-reporting-api/ title='key is referenced by Attribution Reporting'>Attribution Reporting</a>,
<a href=https://wicg.github.io/client-hints-infrastructure/ title='key is referenced by Client Hints Infrastructure'>Client Hints Infrastructure</a>,
<a href=https://wicg.github.io/nav-speculation/speculation-rules.html title='key is referenced by Speculation Rules'>Speculation Rules</a>,
<a href=https://wicg.github.io/private-network-access/ title='key is referenced by Private Network Access'>Private Network Access</a>,
<a href=https://wicg.github.io/shared-storage/ title='key is referenced by Shared Storage API'>Shared Storage API</a>,
<a href=https://wicg.github.io/storage-buckets/ title='key is referenced by Storage Buckets API'>Storage Buckets API</a>,
<a href=https://wicg.github.io/turtledove/ title='key is referenced by Protected Audience'>Protected Audience</a>,
<a href=https://wicg.github.io/WebApiDevice/managed_config/ title='key is referenced by Managed Configuration API'>Managed Configuration API</a>,
<a href=https://w3c.github.io/accelerometer/ title='key is referenced by Accelerometer'>Accelerometer</a>,
<a href=https://w3c.github.io/ambient-light/ title='key is referenced by Ambient Light Sensor'>Ambient Light Sensor</a>,
<a href=https://w3c.github.io/compute-pressure/ title='key is referenced by Compute Pressure 1'>Compute Pressure 1</a>,
<a href=https://drafts.css-houdini.org/css-typed-om-1/ title='key is referenced by CSS Typed OM 1'>CSS Typed OM 1</a>,
<a href=https://w3c.github.io/sensors/ title='key is referenced by Generic Sensor API'>Generic Sensor API</a>,
<a href=https://w3c.github.io/geolocation-sensor/ title='key is referenced by Geolocation Sensor'>Geolocation Sensor</a>,
<a href=https://w3c.github.io/magnetometer/ title='key is referenced by Magnetometer'>Magnetometer</a>,
<a href=https://w3c.github.io/deviceorientation/ title='key is referenced by Device Orientation and Motion'>Device Orientation and Motion</a>,
<a href=https://w3c.github.io/orientation-sensor/ title='key is referenced by Orientation Sensor'>Orientation Sensor</a>,
<a href=https://w3c.github.io/performance-timeline/ title='key is referenced by Performance Timeline'>Performance Timeline</a>,
<a href=https://w3c.github.io/proximity/ title='key is referenced by Proximity Sensor'>Proximity Sensor</a>,
<a href=https://w3c.github.io/pub-manifest/ title='key is referenced by Publication Manifest'>Publication Manifest</a>,
<a href=https://w3c.github.io/rdf-canon/spec/ title='key is referenced by RDF Dataset Canonicalization'>RDF Dataset Canonicalization</a>,
<a href=https://w3c.github.io/rdf-concepts/spec/ title='key is referenced by RDF 1.2 Concepts and Abstract Syntax'>RDF 1.2 Concepts and Abstract Syntax</a>,
<a href=https://w3c.github.io/ServiceWorker/ title='key is referenced by Service Workers'>Service Workers</a>,
<a href=https://w3c.github.io/webauthn/ title='key is referenced by Web Authentication'>Web Authentication</a></dd>
<dt id="key@@permission store entry@dfn"><code class=prefix></code><span><strong>key</strong> (<em>concept for <a href='p.html#permission store entry@@permissions%25%25dfn'>permission store entry</a> </em>) <a class='self-link' href='#key%40%40permission%20store%20entry%40dfn' aria-label="Permalink for key">§</a></span></dt>
<dd>Defined in <strong title='key is defined in Permissions'><a href=https://w3c.github.io/permissions/#dfn-key>Permissions</a></strong> </dd>
<dt id="key@@EncodedAudioChunkType@enum-value"><code class=prefix></code><span><strong><code class=webidl>"key"</code></strong> (<em>value for <a href='e.html#EncodedAudioChunkType@@@@enum'><code>EncodedAudioChunkType</code></a> WebIDL enumeration</em>) <a class='self-link' href='#key%40%40EncodedAudioChunkType%40enum-value' aria-label="Permalink for key">§</a></span></dt>
<dd>Defined in <strong title='key is defined in WebCodecs'><a href=https://w3c.github.io/webcodecs/#dom-encodedaudiochunktype-key>WebCodecs</a></strong> </dd>
<dd>Referenced in
<a href=https://w3c.github.io/webcodecs/aac_codec_registration.html title='key is referenced by AAC WebCodecs Registration'>AAC WebCodecs Registration</a>,
<a href=https://w3c.github.io/webcodecs/alaw_codec_registration.html title='key is referenced by A-law PCM WebCodecs Registration'>A-law PCM WebCodecs Registration</a>,
<a href=https://w3c.github.io/webcodecs/flac_codec_registration.html title='key is referenced by FLAC WebCodecs Registration'>FLAC WebCodecs Registration</a>,
<a href=https://w3c.github.io/webcodecs/mp3_codec_registration.html title='key is referenced by MP3 WebCodecs Registration'>MP3 WebCodecs Registration</a>,
<a href=https://w3c.github.io/webcodecs/opus_codec_registration.html title='key is referenced by Opus WebCodecs Registration'>Opus WebCodecs Registration</a>,
<a href=https://w3c.github.io/webcodecs/pcm_codec_registration.html title='key is referenced by Linear PCM WebCodecs Registration'>Linear PCM WebCodecs Registration</a>,
<a href=https://w3c.github.io/webcodecs/ulaw_codec_registration.html title='key is referenced by u-law PCM WebCodecs Registration'>u-law PCM WebCodecs Registration</a>,
<a href=https://w3c.github.io/webcodecs/vorbis_codec_registration.html title='key is referenced by Vorbis WebCodecs Registration'>Vorbis WebCodecs Registration</a></dd>
<dt id="key@@EncodedVideoChunkType@enum-value"><code class=prefix></code><span><strong><code class=webidl>"key"</code></strong> (<em>value for <a href='e.html#EncodedVideoChunkType@@@@enum'><code>EncodedVideoChunkType</code></a> WebIDL enumeration</em>) <a class='self-link' href='#key%40%40EncodedVideoChunkType%40enum-value' aria-label="Permalink for key">§</a></span></dt>
<dd>Defined in <strong title='key is defined in WebCodecs'><a href=https://w3c.github.io/webcodecs/#dom-encodedvideochunktype-key>WebCodecs</a></strong> </dd>
<dd>Referenced in
<a href=https://w3c.github.io/webcodecs/av1_codec_registration.html title='key is referenced by AV1 WebCodecs Registration'>AV1 WebCodecs Registration</a>,
<a href=https://w3c.github.io/webcodecs/avc_codec_registration.html title='key is referenced by H.264'>H.264</a>,
<a href=https://w3c.github.io/webcodecs/hevc_codec_registration.html title='key is referenced by H.265'>H.265</a>,
<a href=https://w3c.github.io/webcodecs/vp8_codec_registration.html title='key is referenced by VP8 WebCodecs Registration'>VP8 WebCodecs Registration</a>,
<a href=https://w3c.github.io/webcodecs/vp9_codec_registration.html title='key is referenced by VP9 WebCodecs Registration'>VP9 WebCodecs Registration</a></dd>
<dt id="key@@RTCEncodedVideoFrameType@enum-value"><code class=prefix></code><span><strong><code class=webidl>"key"</code></strong> (<em>value for <a href='r.html#RTCEncodedVideoFrameType@@@@enum'><code>RTCEncodedVideoFrameType</code></a> WebIDL enumeration</em>) <a class='self-link' href='#key%40%40RTCEncodedVideoFrameType%40enum-value' aria-label="Permalink for key">§</a></span></dt>
<dd>Defined in <strong title='key is defined in WebRTC Encoded Transform'><a href=https://w3c.github.io/webrtc-encoded-transform/#dom-rtcencodedvideoframetype-key>WebRTC Encoded Transform</a></strong> </dd>
<dt id="key@@IDBCursor@attribute"><code class=prefix><a href='i.html#IDBCursor@@@@interface'>IDBCursor</a>.</code><span><strong><code class=webidl>key</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#key%40%40IDBCursor%40attribute' aria-label="Permalink for <a href='i.html#IDBCursor@@@@interface'>IDBCursor</a>.key">§</a></span></dt>
<dd>Defined in <strong title='key is defined in Indexed DB 3.0'><a href=https://w3c.github.io/IndexedDB/#dom-idbcursor-key>Indexed DB 3.0</a></strong> </dd>
<dt id="key@@KeyboardEvent@attribute"><code class=prefix><a href='k.html#KeyboardEvent@@@@interface'>KeyboardEvent</a>.</code><span><strong><code class=webidl>key</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#key%40%40KeyboardEvent%40attribute' aria-label="Permalink for <a href='k.html#KeyboardEvent@@@@interface'>KeyboardEvent</a>.key">§</a></span></dt>
<dd>Defined in <strong title='key is defined in UI Events'><a href=https://w3c.github.io/uievents/#dom-keyboardevent-key>UI Events</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-nav-1/ title='key is referenced by CSS Spatial Navigation 1'>CSS Spatial Navigation 1</a></dd>
<dt id="key@@KeyboardEventInit@dict-member"><code class=prefix><a href='k.html#KeyboardEventInit@@@@dictionary'>KeyboardEventInit</a>.</code><span><strong><code class=webidl>key</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#key%40%40KeyboardEventInit%40dict-member' aria-label="Permalink for <a href='k.html#KeyboardEventInit@@@@dictionary'>KeyboardEventInit</a>.key">§</a></span></dt>
<dd>Defined in <strong title='key is defined in UI Events'><a href=https://w3c.github.io/uievents/#dom-keyboardeventinit-key>UI Events</a></strong> </dd>
<dt id="key@@NavigationDestination@attribute"><code class=prefix><a href='n.html#NavigationDestination@@@@interface'>NavigationDestination</a>.</code><span><strong><code class=webidl>key</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#key%40%40NavigationDestination%40attribute' aria-label="Permalink for <a href='n.html#NavigationDestination@@@@interface'>NavigationDestination</a>.key">§</a></span></dt>
<dd>Defined in <strong title='key is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigationdestination-key>HTML</a></strong> </dd>
<dt id="key@@NavigationHistoryEntry@attribute"><code class=prefix><a href='n.html#NavigationHistoryEntry@@@@interface'>NavigationHistoryEntry</a>.</code><span><strong><code class=webidl>key</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#key%40%40NavigationHistoryEntry%40attribute' aria-label="Permalink for <a href='n.html#NavigationHistoryEntry@@@@interface'>NavigationHistoryEntry</a>.key">§</a></span></dt>
<dd>Defined in <strong title='key is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-navigationhistoryentry-key>HTML</a></strong> </dd>
<dt id="key@@StorageEvent@attribute"><code class=prefix><a href='s.html#StorageEvent@@@@interface'>StorageEvent</a>.</code><span><strong><code class=webidl>key</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#key%40%40StorageEvent%40attribute' aria-label="Permalink for <a href='s.html#StorageEvent@@@@interface'>StorageEvent</a>.key">§</a></span></dt>
<dd>Defined in <strong title='key is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/webstorage.html#dom-storageevent-key>HTML</a></strong> </dd>
<dt id="[[key chunk required]]@@AudioDecoder@attribute"><code class=prefix><a href='a.html#AudioDecoder@@@@interface'>AudioDecoder</a>.</code><span><strong><code class=webidl>[[key chunk required]]</code></strong> (<em>internal slot</em>) <a class='self-link' href='#%5B%5Bkey%20chunk%20required%5D%5D%40%40AudioDecoder%40attribute' aria-label="Permalink for <a href='a.html#AudioDecoder@@@@interface'>AudioDecoder</a>.[[key chunk required]]">§</a></span></dt>
<dd>Defined in <strong title='[[key chunk required]] is defined in WebCodecs'><a href=https://w3c.github.io/webcodecs/#dom-audiodecoder-key-chunk-required-slot>WebCodecs</a></strong> </dd>
<dt id="[[key chunk required]]@@VideoDecoder@attribute"><code class=prefix><a href='v.html#VideoDecoder@@@@interface'>VideoDecoder</a>.</code><span><strong><code class=webidl>[[key chunk required]]</code></strong> (<em>internal slot</em>) <a class='self-link' href='#%5B%5Bkey%20chunk%20required%5D%5D%40%40VideoDecoder%40attribute' aria-label="Permalink for <a href='v.html#VideoDecoder@@@@interface'>VideoDecoder</a>.[[key chunk required]]">§</a></span></dt>
<dd>Defined in <strong title='[[key chunk required]] is defined in WebCodecs'><a href=https://w3c.github.io/webcodecs/#dom-videodecoder-key-chunk-required-slot>WebCodecs</a></strong> </dd>
<dt id="Key System@@encrypted-media%%dfn"><code class=prefix></code><span><strong>Key System</strong> (<em>concept</em>) <a class='self-link' href='#Key%20System%40%40encrypted-media%25%25dfn' aria-label="Permalink for Key System">§</a></span></dt>
<dd>Defined in <strong title='Key System is defined in Encrypted Media Extensions'><a href=https://w3c.github.io/encrypted-media/#dfn-key-system>Encrypted Media Extensions</a></strong> </dd>
<dd>Referenced in
<a href=https://w3c.github.io/media-capabilities/ title='Key System is referenced by Media Capabilities'>Media Capabilities</a></dd>
<dt id="key_ops@@JsonWebKey@dict-member"><code class=prefix><a href='j.html#JsonWebKey@@@@dictionary'>JsonWebKey</a>.</code><span><strong><code class=webidl>key_ops</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#key_ops%40%40JsonWebKey%40dict-member' aria-label="Permalink for <a href='j.html#JsonWebKey@@@@dictionary'>JsonWebKey</a>.key_ops">§</a></span></dt>
<dd>Defined in <strong title='key_ops is defined in Web Cryptography API'><a href=https://w3c.github.io/webcrypto/#dom-jsonwebkey-key_ops>Web Cryptography API</a></strong> </dd>
<dt id="key-points@@AISummarizerType@enum-value"><code class=prefix></code><span><strong><code class=webidl>"key-points"</code></strong> (<em>value for <a href='a.html#AISummarizerType@@@@enum'><code>AISummarizerType</code></a> WebIDL enumeration</em>) <a class='self-link' href='#key-points%40%40AISummarizerType%40enum-value' aria-label="Permalink for key-points">§</a></span></dt>
<dd>Defined in <strong title='key-points is defined in Writing Assistance APIs'><a href=https://webmachinelearning.github.io/writing-assistance-apis/#dom-aisummarizertype-key-points>Writing Assistance APIs</a></strong> </dd>
<dt id="key(index)@@Storage@method"><code class=prefix><a href='s.html#Storage@@@@interface'>Storage</a>.</code><span><strong><code class=webidl>key(index)</code></strong> (<em>WebIDL operation</em>) <a class='self-link' href='#key(index)%40%40Storage%40method' aria-label="Permalink for <a href='s.html#Storage@@@@interface'>Storage</a>.key(index)">§</a></span></dt>
<dd>Defined in <strong title='key(index) is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/webstorage.html#dom-storage-key>HTML</a></strong> </dd>
<dt id="KeyAlgorithm@@@@dictionary"><code class=prefix></code><span><strong><code class=webidl>KeyAlgorithm</code></strong> (<em>WebIDL dictionary</em>) <a class='self-link' href='#KeyAlgorithm%40%40%40%40dictionary' aria-label="Permalink for KeyAlgorithm">§</a></span></dt>
<dd>Defined in <strong title='KeyAlgorithm is defined in Web Cryptography API'><a href=https://w3c.github.io/webcrypto/#dfn-KeyAlgorithm>Web Cryptography API</a></strong> </dd>
<dd>Related terms: <code>KeyAlgorithm.</code><a href='n.html#name@@KeyAlgorithm@dict-member'><code>name</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/KeyAlgorithm.html' title='KeyAlgorithm entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="keyboard@@Navigator@attribute"><code class=prefix><a href='n.html#Navigator@@@@interface'>Navigator</a>.</code><span><strong><code class=webidl>keyboard</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#keyboard%40%40Navigator%40attribute' aria-label="Permalink for <a href='n.html#Navigator@@@@interface'>Navigator</a>.keyboard">§</a></span></dt>
<dd>Defined in <strong title='keyboard is defined in Keyboard Lock'><a href=https://wicg.github.io/keyboard-lock/#dom-navigator-keyboard>Keyboard Lock</a></strong> </dd>
<dd>Referenced in
<a href=https://wicg.github.io/keyboard-map/ title='keyboard is referenced by Keyboard Map'>Keyboard Map</a></dd>
<dt id="Keyboard@@@@interface"><code class=prefix></code><span><strong><code class=webidl>Keyboard</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#Keyboard%40%40%40%40interface' aria-label="Permalink for Keyboard">§</a></span></dt>
<dd>Defined in <strong title='Keyboard is defined in Keyboard Lock'><a href=https://wicg.github.io/keyboard-lock/#keyboard>Keyboard Lock</a></strong> </dd>
<dd>Referenced in
<a href=https://html.spec.whatwg.org/multipage/ title='Keyboard is referenced by HTML'>HTML</a>,
<a href=https://wicg.github.io/keyboard-map/ title='Keyboard is referenced by Keyboard Map'>Keyboard Map</a></dd>
<dd>Related terms: <em>concept</em> <a href='l.html#lock()@@Keyboard@dfn'>lock()</a>, <em>concept</em> <a href='u.html#unlock()@@Keyboard@dfn'>unlock()</a>, <code>Keyboard.</code><a href='o.html#onlayoutchange@@Keyboard@attribute'><code>onlayoutchange</code></a>, <em>event</em> <a href='l.html#layoutchange@@Keyboard@event'><code>layoutchange</code></a>, <code>Keyboard.</code><a href='g.html#getLayoutMap()@@Keyboard@method'><code>getLayoutMap()</code></a>, <code>Keyboard.</code><a href='l.html#lock(keyCodes)@@Keyboard@method'><code>lock(keyCodes)</code></a>, <code>Keyboard.</code><a href='u.html#unlock()@@Keyboard@method'><code>unlock()</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/Keyboard.html' title='Keyboard entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="KeyboardEvent@@@@interface"><code class=prefix></code><span><strong><code class=webidl>KeyboardEvent</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#KeyboardEvent%40%40%40%40interface' aria-label="Permalink for KeyboardEvent">§</a></span></dt>
<dd>Defined in <strong title='KeyboardEvent is defined in UI Events'><a href=https://w3c.github.io/uievents/#keyboardevent>UI Events</a></strong> </dd>
<dd>Referenced in
<a href=https://dom.spec.whatwg.org/ title='KeyboardEvent is referenced by DOM'>DOM</a>,
<a href=https://drafts.csswg.org/css-nav-1/ title='KeyboardEvent is referenced by CSS Spatial Navigation 1'>CSS Spatial Navigation 1</a></dd>
<dd>Related terms: <code>KeyboardEvent.</code><a href='a.html#altKey@@KeyboardEvent@attribute'><code>altKey</code></a>, <code>KeyboardEvent.</code><a href='c.html#charCode@@KeyboardEvent@attribute'><code>charCode</code></a>, <code>KeyboardEvent.</code><a href='c.html#code@@KeyboardEvent@attribute'><code>code</code></a>, <code>KeyboardEvent.</code><a href='c.html#ctrlKey@@KeyboardEvent@attribute'><code>ctrlKey</code></a>, <code>KeyboardEvent.</code><a href='i.html#isComposing@@KeyboardEvent@attribute'><code>isComposing</code></a>, <code>KeyboardEvent.</code><a href='k.html#key@@KeyboardEvent@attribute'><code>key</code></a>, <code>KeyboardEvent.</code><a href='k.html#keyCode@@KeyboardEvent@attribute'><code>keyCode</code></a>, <code>KeyboardEvent.</code><a href='l.html#location@@KeyboardEvent@attribute'><code>location</code></a>, <code>KeyboardEvent.</code><a href='m.html#metaKey@@KeyboardEvent@attribute'><code>metaKey</code></a>, <code>KeyboardEvent.</code><a href='r.html#repeat@@KeyboardEvent@attribute'><code>repeat</code></a>, <code>KeyboardEvent.</code><a href='s.html#shiftKey@@KeyboardEvent@attribute'><code>shiftKey</code></a>, <code>KeyboardEvent.</code><a href='d.html#DOM_KEY_LOCATION_LEFT@@KeyboardEvent@const'><code>DOM_KEY_LOCATION_LEFT</code></a>, <code>KeyboardEvent.</code><a href='d.html#DOM_KEY_LOCATION_NUMPAD@@KeyboardEvent@const'><code>DOM_KEY_LOCATION_NUMPAD</code></a>, <code>KeyboardEvent.</code><a href='d.html#DOM_KEY_LOCATION_RIGHT@@KeyboardEvent@const'><code>DOM_KEY_LOCATION_RIGHT</code></a>, <code>KeyboardEvent.</code><a href='d.html#DOM_KEY_LOCATION_STANDARD@@KeyboardEvent@const'><code>DOM_KEY_LOCATION_STANDARD</code></a>, <code>new </code><a href='k.html#KeyboardEvent(type, eventInitDict)@@KeyboardEvent@constructor'><code>KeyboardEvent(type, eventInitDict)</code></a>, <code>KeyboardEvent.</code><a href='g.html#getModifierState(keyArg)@@KeyboardEvent@method'><code>getModifierState(keyArg)</code></a>, <code>KeyboardEvent.</code><a href='i.html#initKeyboardEvent(typeArg, bubblesArg, cancelableArg, viewArg, keyArg, locationArg, ctrlKey, altKey, shiftKey, metaKey)@@KeyboardEvent@method'><code>initKeyboardEvent(typeArg, bubblesArg, cancelableArg, viewArg, keyArg, locationArg, ctrlKey, altKey, shiftKey, metaKey)</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/KeyboardEvent.html' title='KeyboardEvent entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="KeyboardEvent(type, eventInitDict)@@KeyboardEvent@constructor"><code class=prefix>new </code><span><strong><code class=webidl>KeyboardEvent(type, eventInitDict)</code></strong> (<em>WebIDL constructor</em>) <a class='self-link' href='#KeyboardEvent(type%2C%20eventInitDict)%40%40KeyboardEvent%40constructor' aria-label="Permalink for new KeyboardEvent(type, eventInitDict)">§</a></span></dt>
<dd>Defined in <strong title='KeyboardEvent(type, eventInitDict) is defined in UI Events'><a href=https://w3c.github.io/uievents/#dom-keyboardevent-keyboardevent>UI Events</a></strong> </dd>
<dt id="KeyboardEventInit@@@@dictionary"><code class=prefix></code><span><strong><code class=webidl>KeyboardEventInit</code></strong> (<em>WebIDL dictionary</em>) <a class='self-link' href='#KeyboardEventInit%40%40%40%40dictionary' aria-label="Permalink for KeyboardEventInit">§</a></span></dt>
<dd>Defined in <strong title='KeyboardEventInit is defined in UI Events'><a href=https://w3c.github.io/uievents/#dictdef-keyboardeventinit>UI Events</a></strong> </dd>
<dd>Related terms: <code>KeyboardEventInit.</code><a href='c.html#code@@KeyboardEventInit@dict-member'><code>code</code></a>, <code>KeyboardEventInit.</code><a href='i.html#isComposing@@KeyboardEventInit@dict-member'><code>isComposing</code></a>, <code>KeyboardEventInit.</code><a href='k.html#key@@KeyboardEventInit@dict-member'><code>key</code></a>, <code>KeyboardEventInit.</code><a href='l.html#location@@KeyboardEventInit@dict-member'><code>location</code></a>, <code>KeyboardEventInit.</code><a href='r.html#repeat@@KeyboardEventInit@dict-member'><code>repeat</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/KeyboardEventInit.html' title='KeyboardEventInit entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="KeyboardLayoutMap@@@@interface"><code class=prefix></code><span><strong><code class=webidl>KeyboardLayoutMap</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#KeyboardLayoutMap%40%40%40%40interface' aria-label="Permalink for KeyboardLayoutMap">§</a></span></dt>
<dd>Defined in <strong title='KeyboardLayoutMap is defined in Keyboard Map'><a href=https://wicg.github.io/keyboard-map/#keyboardlayoutmap>Keyboard Map</a></strong> </dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/KeyboardLayoutMap.html' title='KeyboardLayoutMap entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="keyboardlock@@html%%dfn"><code class=prefix></code><span><strong>keyboardlock</strong> (<em>concept</em>) <a class='self-link' href='#keyboardlock%40%40html%25%25dfn' aria-label="Permalink for keyboardlock">§</a></span></dt>
<dd>Defined in <strong title='keyboardlock is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/nav-history-apis.html#blocking-keyboard-lock>HTML</a></strong> </dd>
<dt id="keyCode@@KeyboardEvent@attribute"><code class=prefix><a href='k.html#KeyboardEvent@@@@interface'>KeyboardEvent</a>.</code><span><strong><code class=webidl>keyCode</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#keyCode%40%40KeyboardEvent%40attribute' aria-label="Permalink for <a href='k.html#KeyboardEvent@@@@interface'>KeyboardEvent</a>.keyCode">§</a></span></dt>
<dd>Defined in <strong title='keyCode is defined in UI Events'><a href=https://w3c.github.io/uievents/#dom-keyboardevent-keycode>UI Events</a></strong> </dd>
<dd>Referenced in
<a href=https://w3c.github.io/event-timing/ title='keyCode is referenced by Event Timing API'>Event Timing API</a></dd>
<dt id="keyFor(sym)@@Symbol@method"><code class=prefix><a href='s.html#Symbol@@@@interface'>Symbol</a>.</code><span><strong><code class=webidl>keyFor(sym)</code></strong> (<em>WebIDL operation</em>) <a class='self-link' href='#keyFor(sym)%40%40Symbol%40method' aria-label="Permalink for <a href='s.html#Symbol@@@@interface'>Symbol</a>.keyFor(sym)">§</a></span></dt>
<dd>Defined in <strong title='keyFor(sym) is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-symbol.keyfor>ECMAScript</a></strong> </dd>
<dt id="KeyFormat@@@@enum"><code class=prefix></code><span><strong><code class=webidl>KeyFormat</code></strong> (<em>WebIDL enumeration</em>) <a class='self-link' href='#KeyFormat%40%40%40%40enum' aria-label="Permalink for KeyFormat">§</a></span></dt>
<dd>Defined in <strong title='KeyFormat is defined in Web Cryptography API'><a href=https://w3c.github.io/webcrypto/#dom-keyformat>Web Cryptography API</a></strong> </dd>
<dd>Related terms: <em>value</em> <a href='j.html#jwk@@KeyFormat@enum-value'><code>jwk</code></a>, <em>value</em> <a href='p.html#pkcs8@@KeyFormat@enum-value'><code>pkcs8</code></a>, <em>value</em> <a href='r.html#raw@@KeyFormat@enum-value'><code>raw</code></a>, <em>value</em> <a href='s.html#spki@@KeyFormat@enum-value'><code>spki</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/KeyFormat.html' title='KeyFormat entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="KeyForSymbol@@ecmascript%%abstract-op"><code class=prefix></code><span><strong><code class=concept>KeyForSymbol</code></strong> (<em>algorithm</em>) <a class='self-link' href='#KeyForSymbol%40%40ecmascript%25%25abstract-op' aria-label="Permalink for KeyForSymbol">§</a></span></dt>
<dd>Defined in <strong title='KeyForSymbol is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-keyforsymbol>ECMAScript</a></strong> </dd>
<dt id="keyFrame@@VideoEncoderEncodeOptions@dict-member"><code class=prefix><a href='v.html#VideoEncoderEncodeOptions@@@@dictionary'>VideoEncoderEncodeOptions</a>.</code><span><strong><code class=webidl>keyFrame</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#keyFrame%40%40VideoEncoderEncodeOptions%40dict-member' aria-label="Permalink for <a href='v.html#VideoEncoderEncodeOptions@@@@dictionary'>VideoEncoderEncodeOptions</a>.keyFrame">§</a></span></dt>
<dd>Defined in <strong title='keyFrame is defined in WebCodecs'><a href=https://w3c.github.io/webcodecs/#dom-videoencoderencodeoptions-keyframe>WebCodecs</a></strong> </dd>
<dt id="KEYFRAME_RULE@@CSSRule@const"><code class=prefix><a href='c.html#CSSRule@@@@interface'>CSSRule</a>.</code><span><strong><code class=webidl>KEYFRAME_RULE</code></strong> (<em>WebIDL constant</em>) <a class='self-link' href='#KEYFRAME_RULE%40%40CSSRule%40const' aria-label="Permalink for <a href='c.html#CSSRule@@@@interface'>CSSRule</a>.KEYFRAME_RULE">§</a></span></dt>
<dd>Defined in <strong title='KEYFRAME_RULE is defined in CSS Animations 1'><a href=https://drafts.csswg.org/css-animations-1/#dom-cssrule-keyframe_rule>CSS Animations 1</a></strong> </dd>
<dt id="<keyframe-block>@@@@type"><code class=prefix></code><span><strong><code class=css><keyframe-block></code></strong> (<em>CSS type</em>) <a class='self-link' href='#%3Ckeyframe-block%3E%40%40%40%40type' aria-label="Permalink for <keyframe-block>">§</a></span></dt>
<dd>Defined in <strong title='<keyframe-block> is defined in CSS Animations 1'><a href=https://drafts.csswg.org/css-animations-1/#typedef-keyframe-block>CSS Animations 1</a></strong> </dd>
<dt id="<keyframe-selector>@@@@type"><code class=prefix></code><span><strong><code class=css><keyframe-selector></code></strong> (<em>CSS type</em>) <a class='self-link' href='#%3Ckeyframe-selector%3E%40%40%40%40type' aria-label="Permalink for <keyframe-selector>">§</a></span></dt>
<dd>Defined in <strong title='<keyframe-selector> is defined in CSS Animations 1'><a href=https://drafts.csswg.org/css-animations-1/#typedef-keyframe-selector>CSS Animations 1</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-animations-2/ title='<keyframe-selector> is referenced by CSS Animations 2'>CSS Animations 2</a>,
<a href=https://drafts.csswg.org/css-syntax-3/ title='<keyframe-selector> is referenced by CSS Syntax 3'>CSS Syntax 3</a>,
<a href=https://drafts.csswg.org/scroll-animations-1/ title='<keyframe-selector> is referenced by Scroll-driven Animations'>Scroll-driven Animations</a>,
<a href=https://drafts.csswg.org/web-animations-2/ title='<keyframe-selector> is referenced by Web Animations 2'>Web Animations 2</a></dd>
<dt id="KeyframeAnimationOptions@@@@dictionary"><code class=prefix></code><span><strong><code class=webidl>KeyframeAnimationOptions</code></strong> (<em>WebIDL dictionary</em>) <a class='self-link' href='#KeyframeAnimationOptions%40%40%40%40dictionary' aria-label="Permalink for KeyframeAnimationOptions">§</a></span></dt>
<dd>Defined in <strong title='KeyframeAnimationOptions is defined in Web Animations'><a href=https://drafts.csswg.org/web-animations-1/#dictdef-keyframeanimationoptions>Web Animations</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/web-animations-2/ title='KeyframeAnimationOptions is referenced by Web Animations 2'>Web Animations 2</a></dd>
<dd>Related terms: <code>KeyframeAnimationOptions.</code><a href='i.html#id@@KeyframeAnimationOptions@dict-member'><code>id</code></a>, <code>KeyframeAnimationOptions.</code><a href='r.html#rangeEnd@@KeyframeAnimationOptions@dict-member'><code>rangeEnd</code></a>, <code>KeyframeAnimationOptions.</code><a href='r.html#rangeStart@@KeyframeAnimationOptions@dict-member'><code>rangeStart</code></a>, <code>KeyframeAnimationOptions.</code><a href='t.html#timeline@@KeyframeAnimationOptions@dict-member'><code>timeline</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/KeyframeAnimationOptions.html' title='KeyframeAnimationOptions entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="KeyframeEffect@@@@interface"><code class=prefix></code><span><strong><code class=webidl>KeyframeEffect</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#KeyframeEffect%40%40%40%40interface' aria-label="Permalink for KeyframeEffect">§</a></span></dt>
<dd>Defined in <strong title='KeyframeEffect is defined in Web Animations'><a href=https://drafts.csswg.org/web-animations-1/#keyframeeffect>Web Animations</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-animations-2/ title='KeyframeEffect is referenced by CSS Animations 2'>CSS Animations 2</a>,
<a href=https://drafts.csswg.org/web-animations-2/ title='KeyframeEffect is referenced by Web Animations 2'>Web Animations 2</a></dd>
<dd>Related terms: <code>KeyframeEffect.</code><a href='c.html#composite@@KeyframeEffect@attribute'><code>composite</code></a>, <code>KeyframeEffect.</code><a href='i.html#iterationComposite@@KeyframeEffect@attribute'><code>iterationComposite</code></a>, <code>KeyframeEffect.</code><a href='p.html#pseudo-element parsing@@KeyframeEffect@attribute'><code>pseudo-element parsing</code></a>, <code>KeyframeEffect.</code><a href='p.html#pseudoElement@@KeyframeEffect@attribute'><code>pseudoElement</code></a>, <code>KeyframeEffect.</code><a href='t.html#target@@KeyframeEffect@attribute'><code>target</code></a>, <code>undefined</code><a href='k.html#KeyframeEffect(source)@@KeyframeEffect@constructor'><code>KeyframeEffect(source)</code></a>, <code>undefined</code><a href='k.html#KeyframeEffect(target, keyframes, options)@@KeyframeEffect@constructor'><code>KeyframeEffect(target, keyframes, options)</code></a>, <code>KeyframeEffect.</code><a href='g.html#getKeyframes()@@KeyframeEffect@method'><code>getKeyframes()</code></a>, <code>KeyframeEffect.</code><a href='s.html#setKeyframes(keyframes)@@KeyframeEffect@method'><code>setKeyframes(keyframes)</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/KeyframeEffect.html' title='KeyframeEffect entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="KeyframeEffect(source)@@KeyframeEffect@constructor"><code class=prefix>new </code><span><strong><code class=webidl>KeyframeEffect(source)</code></strong> (<em>WebIDL constructor</em>) <a class='self-link' href='#KeyframeEffect(source)%40%40KeyframeEffect%40constructor' aria-label="Permalink for new KeyframeEffect(source)">§</a></span></dt>
<dt><code class=prefix>new </code><span><strong><code class=webidl>KeyframeEffect(source)</code></strong> (<em>WebIDL constructor</em>) <a class='self-link' href='#KeyframeEffect(source)%40%40KeyframeEffect%40constructor' aria-label="Permalink for new KeyframeEffect(source)">§</a></span></dt>
<dd>Defined in <strong title='KeyframeEffect(source) is defined in Web Animations'><a href=https://drafts.csswg.org/web-animations-1/#dom-keyframeeffect-keyframeeffect-source>Web Animations</a></strong> , <strong title='KeyframeEffect(source) is defined in Web Animations 2'><a href=https://drafts.csswg.org/web-animations-2/#dom-keyframeeffect-keyframeeffect-source>Web Animations 2</a></strong> </dd>
<dt id="KeyframeEffect(target, keyframes, options)@@KeyframeEffect@constructor"><code class=prefix>new </code><span><strong><code class=webidl>KeyframeEffect(target, keyframes, options)</code></strong> (<em>WebIDL constructor</em>) <a class='self-link' href='#KeyframeEffect(target%2C%20keyframes%2C%20options)%40%40KeyframeEffect%40constructor' aria-label="Permalink for new KeyframeEffect(target, keyframes, options)">§</a></span></dt>
<dt><code class=prefix>new </code><span><strong><code class=webidl>KeyframeEffect(target, keyframes, options)</code></strong> (<em>WebIDL constructor</em>) <a class='self-link' href='#KeyframeEffect(target%2C%20keyframes%2C%20options)%40%40KeyframeEffect%40constructor' aria-label="Permalink for new KeyframeEffect(target, keyframes, options)">§</a></span></dt>
<dd>Defined in <strong title='KeyframeEffect(target, keyframes, options) is defined in Web Animations'><a href=https://drafts.csswg.org/web-animations-1/#dom-keyframeeffect-keyframeeffect>Web Animations</a></strong> , <strong title='KeyframeEffect(target, keyframes, options) is defined in Web Animations 2'><a href=https://drafts.csswg.org/web-animations-2/#dom-keyframeeffect-keyframeeffect>Web Animations 2</a></strong> </dd>
<dt id="KeyframeEffectOptions@@@@dictionary"><code class=prefix></code><span><strong><code class=webidl>KeyframeEffectOptions</code></strong> (<em>WebIDL dictionary</em>) <a class='self-link' href='#KeyframeEffectOptions%40%40%40%40dictionary' aria-label="Permalink for KeyframeEffectOptions">§</a></span></dt>
<dd>Defined in <strong title='KeyframeEffectOptions is defined in Web Animations'><a href=https://drafts.csswg.org/web-animations-1/#dictdef-keyframeeffectoptions>Web Animations</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/web-animations-2/ title='KeyframeEffectOptions is referenced by Web Animations 2'>Web Animations 2</a></dd>
<dd>Related terms: <code>KeyframeEffectOptions.</code><a href='c.html#composite@@KeyframeEffectOptions@dict-member'><code>composite</code></a>, <code>KeyframeEffectOptions.</code><a href='i.html#iterationComposite@@KeyframeEffectOptions@dict-member'><code>iterationComposite</code></a>, <code>KeyframeEffectOptions.</code><a href='p.html#pseudoElement@@KeyframeEffectOptions@dict-member'><code>pseudoElement</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/KeyframeEffectOptions.html' title='KeyframeEffectOptions entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="KeyFrameRequestEvent@@@@interface"><code class=prefix></code><span><strong><code class=webidl>KeyFrameRequestEvent</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#KeyFrameRequestEvent%40%40%40%40interface' aria-label="Permalink for KeyFrameRequestEvent">§</a></span></dt>
<dd>Defined in <strong title='KeyFrameRequestEvent is defined in WebRTC Encoded Transform'><a href=https://w3c.github.io/webrtc-encoded-transform/#keyframerequestevent>WebRTC Encoded Transform</a></strong> </dd>
<dd>Related terms: <code>KeyFrameRequestEvent.</code><a href='r.html#rid@@KeyFrameRequestEvent@attribute'><code>rid</code></a>, <code>new </code><a href='k.html#KeyFrameRequestEvent(type, rid)@@KeyFrameRequestEvent@constructor'><code>KeyFrameRequestEvent(type, rid)</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/KeyFrameRequestEvent.html' title='KeyFrameRequestEvent entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="KeyFrameRequestEvent(type, rid)@@KeyFrameRequestEvent@constructor"><code class=prefix>new </code><span><strong><code class=webidl>KeyFrameRequestEvent(type, rid)</code></strong> (<em>WebIDL constructor</em>) <a class='self-link' href='#KeyFrameRequestEvent(type%2C%20rid)%40%40KeyFrameRequestEvent%40constructor' aria-label="Permalink for new KeyFrameRequestEvent(type, rid)">§</a></span></dt>
<dd>Defined in <strong title='KeyFrameRequestEvent(type, rid) is defined in WebRTC Encoded Transform'><a href=https://w3c.github.io/webrtc-encoded-transform/#dom-keyframerequestevent-keyframerequestevent>WebRTC Encoded Transform</a></strong> </dd>
<dt id="@keyframes@@@@at-rule"><code class=prefix></code><span><strong><code class=css>@keyframes</code></strong> (<em>CSS @rule</em>) <a class='self-link' href='#%40keyframes%40%40%40%40at-rule' aria-label="Permalink for @keyframes">§</a></span></dt>
<dd>Defined in <strong title='@keyframes is defined in CSS Animations 1'><a href=https://drafts.csswg.org/css-animations-1/#at-ruledef-keyframes>CSS Animations 1</a></strong> </dd>
<dd>Referenced in
<a href=https://compat.spec.whatwg.org/ title='@keyframes is referenced by Compatibility'>Compatibility</a>,
<a href=https://drafts.csswg.org/css-variables-2/ title='@keyframes is referenced by CSS Variables 2'>CSS Variables 2</a>,
<a href=https://drafts.csswg.org/css-2022/ title='@keyframes is referenced by CSS Snapshot 2022'>CSS Snapshot 2022</a>,
<a href=https://drafts.csswg.org/css-2023/ title='@keyframes is referenced by CSS Snapshot 2023'>CSS Snapshot 2023</a>,
<a href=https://drafts.csswg.org/css-animations-2/ title='@keyframes is referenced by CSS Animations 2'>CSS Animations 2</a>,
<a href=https://drafts.csswg.org/css-cascade-5/ title='@keyframes is referenced by CSS Cascading 5'>CSS Cascading 5</a>,
<a href=https://drafts.csswg.org/css-cascade-6/ title='@keyframes is referenced by CSS Cascading 6'>CSS Cascading 6</a>,
<a href=https://drafts.csswg.org/css-conditional-5/ title='@keyframes is referenced by CSS Conditional 5'>CSS Conditional 5</a>,
<a href=https://drafts.csswg.org/css-scoping-1/ title='@keyframes is referenced by CSS Scoping 1'>CSS Scoping 1</a>,
<a href=https://drafts.csswg.org/css-syntax-3/ title='@keyframes is referenced by CSS Syntax 3'>CSS Syntax 3</a>,
<a href=https://drafts.csswg.org/css-transitions-2/ title='@keyframes is referenced by CSS Transitions 2'>CSS Transitions 2</a>,
<a href=https://drafts.csswg.org/css-variables-1/ title='@keyframes is referenced by CSS Variables 1'>CSS Variables 1</a>,
<a href=https://drafts.csswg.org/scroll-animations-1/ title='@keyframes is referenced by Scroll-driven Animations'>Scroll-driven Animations</a>,
<a href=https://drafts.csswg.org/web-animations-2/ title='@keyframes is referenced by Web Animations 2'>Web Animations 2</a></dd>
<dt id="KEYFRAMES_RULE@@CSSRule@const"><code class=prefix><a href='c.html#CSSRule@@@@interface'>CSSRule</a>.</code><span><strong><code class=webidl>KEYFRAMES_RULE</code></strong> (<em>WebIDL constant</em>) <a class='self-link' href='#KEYFRAMES_RULE%40%40CSSRule%40const' aria-label="Permalink for <a href='c.html#CSSRule@@@@interface'>CSSRule</a>.KEYFRAMES_RULE">§</a></span></dt>
<dd>Defined in <strong title='KEYFRAMES_RULE is defined in CSS Animations 1'><a href=https://drafts.csswg.org/css-animations-1/#dom-cssrule-keyframes_rule>CSS Animations 1</a></strong> </dd>
<dt id="<keyframes-name>@@@@type"><code class=prefix></code><span><strong><code class=css><keyframes-name></code></strong> (<em>CSS type</em>) <a class='self-link' href='#%3Ckeyframes-name%3E%40%40%40%40type' aria-label="Permalink for <keyframes-name>">§</a></span></dt>
<dd>Defined in <strong title='<keyframes-name> is defined in CSS Animations 1'><a href=https://drafts.csswg.org/css-animations-1/#typedef-keyframes-name>CSS Animations 1</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-animations-2/ title='<keyframes-name> is referenced by CSS Animations 2'>CSS Animations 2</a></dd>
<dt id="<keyframes-name>@@animation-name@value"><code class=prefix></code><span><strong><code class=css><keyframes-name></code></strong> (<em>CSS value for <a href='a.html#animation-name@@@@property'><code>animation-name</code></a> </em>) <a class='self-link' href='#%3Ckeyframes-name%3E%40%40animation-name%40value' aria-label="Permalink for <keyframes-name>">§</a></span></dt>
<dd>Defined in <strong title='<keyframes-name> is defined in CSS Animations 1'><a href=https://drafts.csswg.org/css-animations-1/#valdef-animation-name-keyframes-name>CSS Animations 1</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-2022/ title='<keyframes-name> is referenced by CSS Snapshot 2022'>CSS Snapshot 2022</a>,
<a href=https://drafts.csswg.org/css-2023/ title='<keyframes-name> is referenced by CSS Snapshot 2023'>CSS Snapshot 2023</a></dd>
<dt id="keyFramesDecoded@@RTCInboundRtpStreamStats@dict-member"><code class=prefix><a href='r.html#RTCInboundRtpStreamStats@@@@dictionary'>RTCInboundRtpStreamStats</a>.</code><span><strong><code class=webidl>keyFramesDecoded</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#keyFramesDecoded%40%40RTCInboundRtpStreamStats%40dict-member' aria-label="Permalink for <a href='r.html#RTCInboundRtpStreamStats@@@@dictionary'>RTCInboundRtpStreamStats</a>.keyFramesDecoded">§</a></span></dt>
<dd>Defined in <strong title='keyFramesDecoded is defined in WebRTC Statistics'><a href=https://w3c.github.io/webrtc-stats/#dom-rtcinboundrtpstreamstats-keyframesdecoded>WebRTC Statistics</a></strong> </dd>
<dt id="keyFramesEncoded@@RTCOutboundRtpStreamStats@dict-member"><code class=prefix><a href='r.html#RTCOutboundRtpStreamStats@@@@dictionary'>RTCOutboundRtpStreamStats</a>.</code><span><strong><code class=webidl>keyFramesEncoded</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#keyFramesEncoded%40%40RTCOutboundRtpStreamStats%40dict-member' aria-label="Permalink for <a href='r.html#RTCOutboundRtpStreamStats@@@@dictionary'>RTCOutboundRtpStreamStats</a>.keyFramesEncoded">§</a></span></dt>
<dd>Defined in <strong title='keyFramesEncoded is defined in WebRTC Statistics'><a href=https://w3c.github.io/webrtc-stats/#dom-rtcoutboundrtpstreamstats-keyframesencoded>WebRTC Statistics</a></strong> </dd>
<dt id="keygen@@html%%element"><code class=prefix></code><span><strong><code class=markup>keygen</code></strong> (<em>markup element</em>) <a class='self-link' href='#keygen%40%40html%25%25element' aria-label="Permalink for keygen">§</a></span></dt>
<dd>Defined in <strong title='keygen is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/obsolete.html#keygen>HTML</a></strong> </dd>
<dt id="keyID@@SFrameTransformErrorEventType@enum-value"><code class=prefix></code><span><strong><code class=webidl>"keyID"</code></strong> (<em>value for <a href='s.html#SFrameTransformErrorEventType@@@@enum'><code>SFrameTransformErrorEventType</code></a> WebIDL enumeration</em>) <a class='self-link' href='#keyID%40%40SFrameTransformErrorEventType%40enum-value' aria-label="Permalink for keyID">§</a></span></dt>
<dd>Defined in <strong title='keyID is defined in WebRTC Encoded Transform'><a href=https://w3c.github.io/webrtc-encoded-transform/#dom-sframetransformerroreventtype-keyid>WebRTC Encoded Transform</a></strong> </dd>
<dt id="keyID@@SFrameTransformErrorEvent@attribute"><code class=prefix><a href='s.html#SFrameTransformErrorEvent@@@@interface'>SFrameTransformErrorEvent</a>.</code><span><strong><code class=webidl>keyID</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#keyID%40%40SFrameTransformErrorEvent%40attribute' aria-label="Permalink for <a href='s.html#SFrameTransformErrorEvent@@@@interface'>SFrameTransformErrorEvent</a>.keyID">§</a></span></dt>
<dd>Defined in <strong title='keyID is defined in WebRTC Encoded Transform'><a href=https://w3c.github.io/webrtc-encoded-transform/#dom-sframetransformerrorevent-keyid>WebRTC Encoded Transform</a></strong> </dd>
<dt id="keyID@@SFrameTransformErrorEventInit@dict-member"><code class=prefix><a href='s.html#SFrameTransformErrorEventInit@@@@dictionary'>SFrameTransformErrorEventInit</a>.</code><span><strong><code class=webidl>keyID</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#keyID%40%40SFrameTransformErrorEventInit%40dict-member' aria-label="Permalink for <a href='s.html#SFrameTransformErrorEventInit@@@@dictionary'>SFrameTransformErrorEventInit</a>.keyID">§</a></span></dt>
<dd>Defined in <strong title='keyID is defined in WebRTC Encoded Transform'><a href=https://w3c.github.io/webrtc-encoded-transform/#dom-sframetransformerroreventinit-keyid>WebRTC Encoded Transform</a></strong> </dd>
<dt id="keyPath@@IDBIndex@attribute"><code class=prefix><a href='i.html#IDBIndex@@@@interface'>IDBIndex</a>.</code><span><strong><code class=webidl>keyPath</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#keyPath%40%40IDBIndex%40attribute' aria-label="Permalink for <a href='i.html#IDBIndex@@@@interface'>IDBIndex</a>.keyPath">§</a></span></dt>
<dd>Defined in <strong title='keyPath is defined in Indexed DB 3.0'><a href=https://w3c.github.io/IndexedDB/#dom-idbindex-keypath>Indexed DB 3.0</a></strong> </dd>
<dt id="keyPath@@IDBObjectStore@attribute"><code class=prefix><a href='i.html#IDBObjectStore@@@@interface'>IDBObjectStore</a>.</code><span><strong><code class=webidl>keyPath</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#keyPath%40%40IDBObjectStore%40attribute' aria-label="Permalink for <a href='i.html#IDBObjectStore@@@@interface'>IDBObjectStore</a>.keyPath">§</a></span></dt>
<dd>Defined in <strong title='keyPath is defined in Indexed DB 3.0'><a href=https://w3c.github.io/IndexedDB/#dom-idbobjectstore-keypath>Indexed DB 3.0</a></strong> </dd>
<dt id="keyPath@@IDBObjectStoreParameters@dict-member"><code class=prefix><a href='i.html#IDBObjectStoreParameters@@@@dictionary'>IDBObjectStoreParameters</a>.</code><span><strong><code class=webidl>keyPath</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#keyPath%40%40IDBObjectStoreParameters%40dict-member' aria-label="Permalink for <a href='i.html#IDBObjectStoreParameters@@@@dictionary'>IDBObjectStoreParameters</a>.keyPath">§</a></span></dt>
<dd>Defined in <strong title='keyPath is defined in Indexed DB 3.0'><a href=https://w3c.github.io/IndexedDB/#dom-idbobjectstoreparameters-keypath>Indexed DB 3.0</a></strong> </dd>
<dt id="keyPoints@@animate@element-attr"><code class=prefix></code><span><strong><code class=markup>keyPoints</code></strong> (<em>markup attribute for <a href='a.html#animate@@svg-animations%25%25element'><code>animate</code></a> </em>) <a class='self-link' href='#keyPoints%40%40animate%40element-attr' aria-label="Permalink for keyPoints">§</a></span></dt>
<dd>Defined in <strong title='keyPoints is defined in SVG Animations 2'><a href=https://svgwg.org/specs/animations/#KeyPointsAttribute>SVG Animations 2</a></strong> </dd>
<dd>Referenced in
<a href=https://svgwg.org/svg2-draft/ title='keyPoints is referenced by SVG 2'>SVG 2</a></dd>
<dt id="keys@@PushSubscriptionJSON@dict-member"><code class=prefix><a href='p.html#PushSubscriptionJSON@@@@dictionary'>PushSubscriptionJSON</a>.</code><span><strong><code class=webidl>keys</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#keys%40%40PushSubscriptionJSON%40dict-member' aria-label="Permalink for <a href='p.html#PushSubscriptionJSON@@@@dictionary'>PushSubscriptionJSON</a>.keys">§</a></span></dt>
<dd>Defined in <strong title='keys is defined in Push API'><a href=https://w3c.github.io/push-api/#dom-pushsubscriptionjson-keys>Push API</a></strong> </dd>
<dt id="keys()@@%TypedArray%@method"><code class=prefix><a href='t.html#%TypedArray%@@@@interface'>%TypedArray%</a>.</code><span><strong><code class=webidl>keys()</code></strong> (<em>WebIDL operation</em>) <a class='self-link' href='#keys()%40%40%25TypedArray%25%40method' aria-label="Permalink for <a href='t.html#%TypedArray%@@@@interface'>%TypedArray%</a>.keys()">§</a></span></dt>
<dd>Defined in <strong title='keys() is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/indexed-collections.html#sec-%25typedarray%25.prototype.keys>ECMAScript</a></strong> </dd>
<dt id="keys()@@Array@method"><code class=prefix><a href='a.html#Array@@@@interface'>Array</a>.</code><span><strong><code class=webidl>keys()</code></strong> (<em>WebIDL operation</em>) <a class='self-link' href='#keys()%40%40Array%40method' aria-label="Permalink for <a href='a.html#Array@@@@interface'>Array</a>.keys()">§</a></span></dt>
<dd>Defined in <strong title='keys() is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/indexed-collections.html#sec-array.prototype.keys>ECMAScript</a></strong> </dd>
<dd>Referenced in
<a href=https://webidl.spec.whatwg.org/ title='keys() is referenced by Web IDL'>Web IDL</a></dd>
<dt id="keys()@@CacheStorage@method"><code class=prefix><a href='c.html#CacheStorage@@@@interface'>CacheStorage</a>.</code><span><strong><code class=webidl>keys()</code></strong> (<em>WebIDL operation</em>) <a class='self-link' href='#keys()%40%40CacheStorage%40method' aria-label="Permalink for <a href='c.html#CacheStorage@@@@interface'>CacheStorage</a>.keys()">§</a></span></dt>
<dd>Defined in <strong title='keys() is defined in Service Workers'><a href=https://w3c.github.io/ServiceWorker/#dom-cachestorage-keys>Service Workers</a></strong> </dd>
<dt id="keys()@@Map@method"><code class=prefix><a href='m.html#Map@@@@interface'>Map</a>.</code><span><strong><code class=webidl>keys()</code></strong> (<em>WebIDL operation</em>) <a class='self-link' href='#keys()%40%40Map%40method' aria-label="Permalink for <a href='m.html#Map@@@@interface'>Map</a>.keys()">§</a></span></dt>
<dd>Defined in <strong title='keys() is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/keyed-collections.html#sec-map.prototype.keys>ECMAScript</a></strong> </dd>
<dt id="keys()@@Set@method"><code class=prefix></code><span><strong><code class=webidl>keys()</code></strong> (<em>WebIDL operation for <code>Set</code> </em>) <a class='self-link' href='#keys()%40%40Set%40method' aria-label="Permalink for keys()">§</a></span></dt>
<dd>Defined in <strong title='keys() is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/keyed-collections.html#sec-set.prototype.keys>ECMAScript</a></strong> </dd>
<dt id="keys()@@StorageBucketManager@method"><code class=prefix><a href='s.html#StorageBucketManager@@@@interface'>StorageBucketManager</a>.</code><span><strong><code class=webidl>keys()</code></strong> (<em>WebIDL operation</em>) <a class='self-link' href='#keys()%40%40StorageBucketManager%40method' aria-label="Permalink for <a href='s.html#StorageBucketManager@@@@interface'>StorageBucketManager</a>.keys()">§</a></span></dt>
<dd>Defined in <strong title='keys() is defined in Storage Buckets API'><a href=https://wicg.github.io/storage-buckets/#dom-storagebucketmanager-keys>Storage Buckets API</a></strong> </dd>
<dt id="keys(O)@@Object@method"><code class=prefix><a href='o.html#Object@@@@interface'>Object</a>.</code><span><strong><code class=webidl>keys(O)</code></strong> (<em>WebIDL operation</em>) <a class='self-link' href='#keys(O)%40%40Object%40method' aria-label="Permalink for <a href='o.html#Object@@@@interface'>Object</a>.keys(O)">§</a></span></dt>
<dd>Defined in <strong title='keys(O) is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-object.keys>ECMAScript</a></strong> </dd>
<dt id="keys(request, options)@@Cache@method"><code class=prefix><a href='c.html#Cache@@@@interface'>Cache</a>.</code><span><strong><code class=webidl>keys(request, options)</code></strong> (<em>WebIDL operation</em>) <a class='self-link' href='#keys(request%2C%20options)%40%40Cache%40method' aria-label="Permalink for <a href='c.html#Cache@@@@interface'>Cache</a>.keys(request, options)">§</a></span></dt>
<dd>Defined in <strong title='keys(request, options) is defined in Service Workers'><a href=https://w3c.github.io/ServiceWorker/#dom-cache-keys>Service Workers</a></strong> </dd>
<dt id="keySplines@@animate@element-attr"><code class=prefix></code><span><strong><code class=markup>keySplines</code></strong> (<em>markup attribute for <a href='a.html#animate@@svg-animations%25%25element'><code>animate</code></a> </em>) <a class='self-link' href='#keySplines%40%40animate%40element-attr' aria-label="Permalink for keySplines">§</a></span></dt>
<dd>Defined in <strong title='keySplines is defined in SVG Animations 2'><a href=https://svgwg.org/specs/animations/#KeySplinesAttribute>SVG Animations 2</a></strong> </dd>
<dd>Referenced in
<a href=https://svgwg.org/svg2-draft/ title='keySplines is referenced by SVG 2'>SVG 2</a></dd>
<dt id="keyStatuses@@MediaKeySession@attribute"><code class=prefix><a href='m.html#MediaKeySession@@@@interface'>MediaKeySession</a>.</code><span><strong><code class=webidl>keyStatuses</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#keyStatuses%40%40MediaKeySession%40attribute' aria-label="Permalink for <a href='m.html#MediaKeySession@@@@interface'>MediaKeySession</a>.keyStatuses">§</a></span></dt>
<dd>Defined in <strong title='keyStatuses is defined in Encrypted Media Extensions'><a href=https://w3c.github.io/encrypted-media/#dom-mediakeysession-keystatuses>Encrypted Media Extensions</a></strong> </dd>
<dt id="keySystem@@MediaCapabilitiesKeySystemConfiguration@dict-member"><code class=prefix><a href='m.html#MediaCapabilitiesKeySystemConfiguration@@@@dictionary'>MediaCapabilitiesKeySystemConfiguration</a>.</code><span><strong><code class=webidl>keySystem</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#keySystem%40%40MediaCapabilitiesKeySystemConfiguration%40dict-member' aria-label="Permalink for <a href='m.html#MediaCapabilitiesKeySystemConfiguration@@@@dictionary'>MediaCapabilitiesKeySystemConfiguration</a>.keySystem">§</a></span></dt>
<dd>Defined in <strong title='keySystem is defined in Media Capabilities'><a href=https://w3c.github.io/media-capabilities/#dom-mediacapabilitieskeysystemconfiguration-keysystem>Media Capabilities</a></strong> </dd>
<dt id="keySystem@@MediaKeySystemAccess@attribute"><code class=prefix><a href='m.html#MediaKeySystemAccess@@@@interface'>MediaKeySystemAccess</a>.</code><span><strong><code class=webidl>keySystem</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#keySystem%40%40MediaKeySystemAccess%40attribute' aria-label="Permalink for <a href='m.html#MediaKeySystemAccess@@@@interface'>MediaKeySystemAccess</a>.keySystem">§</a></span></dt>
<dd>Defined in <strong title='keySystem is defined in Encrypted Media Extensions'><a href=https://w3c.github.io/encrypted-media/#dom-mediakeysystemaccess-keysystem>Encrypted Media Extensions</a></strong> </dd>
<dd>Referenced in
<a href=https://w3c.github.io/media-capabilities/ title='keySystem is referenced by Media Capabilities'>Media Capabilities</a></dd>
<dt id="keySystemAccess@@MediaCapabilitiesDecodingInfo@dict-member"><code class=prefix><a href='m.html#MediaCapabilitiesDecodingInfo@@@@dictionary'>MediaCapabilitiesDecodingInfo</a>.</code><span><strong><code class=webidl>keySystemAccess</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#keySystemAccess%40%40MediaCapabilitiesDecodingInfo%40dict-member' aria-label="Permalink for <a href='m.html#MediaCapabilitiesDecodingInfo@@@@dictionary'>MediaCapabilitiesDecodingInfo</a>.keySystemAccess">§</a></span></dt>
<dd>Defined in <strong title='keySystemAccess is defined in Media Capabilities'><a href=https://w3c.github.io/media-capabilities/#dom-mediacapabilitiesdecodinginfo-keysystemaccess>Media Capabilities</a></strong> </dd>
<dt id="keySystemConfiguration@@MediaDecodingConfiguration@dict-member"><code class=prefix><a href='m.html#MediaDecodingConfiguration@@@@dictionary'>MediaDecodingConfiguration</a>.</code><span><strong><code class=webidl>keySystemConfiguration</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#keySystemConfiguration%40%40MediaDecodingConfiguration%40dict-member' aria-label="Permalink for <a href='m.html#MediaDecodingConfiguration@@@@dictionary'>MediaDecodingConfiguration</a>.keySystemConfiguration">§</a></span></dt>
<dd>Defined in <strong title='keySystemConfiguration is defined in Media Capabilities'><a href=https://w3c.github.io/media-capabilities/#dom-mediadecodingconfiguration-keysystemconfiguration>Media Capabilities</a></strong> </dd>
<dt id="KeySystemTrackConfiguration@@@@dictionary"><code class=prefix></code><span><strong><code class=webidl>KeySystemTrackConfiguration</code></strong> (<em>WebIDL dictionary</em>) <a class='self-link' href='#KeySystemTrackConfiguration%40%40%40%40dictionary' aria-label="Permalink for KeySystemTrackConfiguration">§</a></span></dt>
<dd>Defined in <strong title='KeySystemTrackConfiguration is defined in Media Capabilities'><a href=https://w3c.github.io/media-capabilities/#dictdef-keysystemtrackconfiguration>Media Capabilities</a></strong> </dd>
<dd>Related terms: <code>KeySystemTrackConfiguration.</code><a href='e.html#encryptionScheme@@KeySystemTrackConfiguration@dict-member'><code>encryptionScheme</code></a>, <code>KeySystemTrackConfiguration.</code><a href='r.html#robustness@@KeySystemTrackConfiguration@dict-member'><code>robustness</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/KeySystemTrackConfiguration.html' title='KeySystemTrackConfiguration entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="keyText@@CSSKeyframeRule@attribute"><code class=prefix><a href='c.html#CSSKeyframeRule@@@@interface'>CSSKeyframeRule</a>.</code><span><strong><code class=webidl>keyText</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#keyText%40%40CSSKeyframeRule%40attribute' aria-label="Permalink for <a href='c.html#CSSKeyframeRule@@@@interface'>CSSKeyframeRule</a>.keyText">§</a></span></dt>
<dd>Defined in <strong title='keyText is defined in CSS Animations 1'><a href=https://drafts.csswg.org/css-animations-1/#dom-csskeyframerule-keytext>CSS Animations 1</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/cssom-1/ title='keyText is referenced by CSSOM'>CSSOM</a></dd>
<dt id="keyTimes@@animate@element-attr"><code class=prefix></code><span><strong><code class=markup>keyTimes</code></strong> (<em>markup attribute for <a href='a.html#animate@@svg-animations%25%25element'><code>animate</code></a> </em>) <a class='self-link' href='#keyTimes%40%40animate%40element-attr' aria-label="Permalink for keyTimes">§</a></span></dt>
<dd>Defined in <strong title='keyTimes is defined in SVG Animations 2'><a href=https://svgwg.org/specs/animations/#KeyTimesAttribute>SVG Animations 2</a></strong> </dd>
<dd>Referenced in
<a href=https://svgwg.org/svg2-draft/ title='keyTimes is referenced by SVG 2'>SVG 2</a></dd>
<dt id="KeyType@@@@enum"><code class=prefix></code><span><strong><code class=webidl>KeyType</code></strong> (<em>WebIDL enumeration</em>) <a class='self-link' href='#KeyType%40%40%40%40enum' aria-label="Permalink for KeyType">§</a></span></dt>
<dd>Defined in <strong title='KeyType is defined in Web Cryptography API'><a href=https://w3c.github.io/webcrypto/#dom-keytype>Web Cryptography API</a></strong> </dd>
<dd>Related terms: <em>value</em> <a href='p.html#private@@KeyType@enum-value'><code>private</code></a>, <em>value</em> <a href='p.html#public@@KeyType@enum-value'><code>public</code></a>, <em>value</em> <a href='s.html#secret@@KeyType@enum-value'><code>secret</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/KeyType.html' title='KeyType entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="KeyUsage@@@@enum"><code class=prefix></code><span><strong><code class=webidl>KeyUsage</code></strong> (<em>WebIDL enumeration</em>) <a class='self-link' href='#KeyUsage%40%40%40%40enum' aria-label="Permalink for KeyUsage">§</a></span></dt>
<dd>Defined in <strong title='KeyUsage is defined in Web Cryptography API'><a href=https://w3c.github.io/webcrypto/#dom-keyusage>Web Cryptography API</a></strong> </dd>
<dd>Related terms: <em>value</em> <a href='d.html#decrypt@@KeyUsage@enum-value'><code>decrypt</code></a>, <em>value</em> <a href='d.html#deriveBits@@KeyUsage@enum-value'><code>deriveBits</code></a>, <em>value</em> <a href='d.html#deriveKey@@KeyUsage@enum-value'><code>deriveKey</code></a>, <em>value</em> <a href='e.html#encrypt@@KeyUsage@enum-value'><code>encrypt</code></a>, <em>value</em> <a href='s.html#sign@@KeyUsage@enum-value'><code>sign</code></a>, <em>value</em> <a href='u.html#unwrapKey@@KeyUsage@enum-value'><code>unwrapKey</code></a>, <em>value</em> <a href='v.html#verify@@KeyUsage@enum-value'><code>verify</code></a>, <em>value</em> <a href='w.html#wrapKey@@KeyUsage@enum-value'><code>wrapKey</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/KeyUsage.html' title='KeyUsage entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="keyword@@ECMAScript@dfn"><code class=prefix></code><span><strong>keyword</strong> (<em>concept for <code>ECMAScript</code> </em>) <a class='self-link' href='#keyword%40%40ECMAScript%40dfn' aria-label="Permalink for keyword">§</a></span></dt>
<dd>Defined in <strong title='keyword is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/ecmascript-language-lexical-grammar.html#sec-keywords-and-reserved-words>ECMAScript</a></strong> </dd>
<dt id="keyword@@CSS@dfn"><code class=prefix></code><span><strong>keyword</strong> (<em>concept for <code>CSS</code> </em>) <a class='self-link' href='#keyword%40%40CSS%40dfn' aria-label="Permalink for keyword">§</a></span></dt>
<dd>Defined in <strong title='keyword is defined in CSS Values 3'><a href=https://drafts.csswg.org/css-values-3/#css-keyword>CSS Values 3</a></strong> , <strong title='keyword is defined in CSS Values 4'><a href=https://drafts.csswg.org/css-values-4/#css-keyword>CSS Values 4</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-2022/ title='keyword is referenced by CSS Snapshot 2022'>CSS Snapshot 2022</a>,
<a href=https://drafts.csswg.org/css-2023/ title='keyword is referenced by CSS Snapshot 2023'>CSS Snapshot 2023</a>,
<a href=https://drafts.csswg.org/css-color-4/ title='keyword is referenced by CSS Color 4'>CSS Color 4</a>,
<a href=https://drafts.csswg.org/cssom-1/ title='keyword is referenced by CSSOM'>CSSOM</a></dd>
<dt id="keyword redefinition@@JsonLdErrorCode@enum-value"><code class=prefix></code><span><strong><code class=webidl>"keyword redefinition"</code></strong> (<em>value for <a href='j.html#JsonLdErrorCode@@@@enum'><code>JsonLdErrorCode</code></a> WebIDL enumeration</em>) <a class='self-link' href='#keyword%20redefinition%40%40JsonLdErrorCode%40enum-value' aria-label="Permalink for keyword redefinition">§</a></span></dt>
<dd>Defined in <strong title='keyword redefinition is defined in JSON-LD 1.1 Processing Algorithms and API'><a href=https://w3c.github.io/json-ld-api/#dom-jsonlderrorcode-keyword-redefinition>JSON-LD 1.1 Processing Algorithms and API</a></strong> </dd>
<dt id="keyword-source@@CSP%%grammar"><code class=prefix></code><span><strong><code class=grammar>keyword-source</code></strong> (<em>grammar</em>) <a class='self-link' href='#keyword-source%40%40CSP%25%25grammar' aria-label="Permalink for keyword-source">§</a></span></dt>
<dd>Defined in <strong title='keyword-source is defined in Content Security Policy 3'><a href=https://w3c.github.io/webappsec-csp/#grammardef-keyword-source>Content Security Policy 3</a></strong> </dd>
<dd>Referenced in
<a href=https://w3c.github.io/webappsec-cspee/ title='keyword-source is referenced by Content Security Policy: Embedded Enforcement'>Content Security Policy: Embedded Enforcement</a></dd>
<dt id="keywords@@meta/name@attr-value"><code class=prefix></code><span><strong><code class=markup>keywords</code></strong> (<em>value for <a href='n.html#name@@meta@element-attr'><code>name</code></a> attribute of <a href='m.html#meta@@html%25%25element'><code>meta</code></a> element </em>) <a class='self-link' href='#keywords%40%40meta%2Fname%40attr-value' aria-label="Permalink for keywords">§</a></span></dt>
<dd>Defined in <strong title='keywords is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/semantics.html#meta-keywords>HTML</a></strong> </dd>
<dt id="khaki@@css-color%%dfn"><code class=prefix></code><span><strong>khaki</strong> (<em>concept</em>) <a class='self-link' href='#khaki%40%40css-color%25%25dfn' aria-label="Permalink for khaki">§</a></span></dt>
<dd>Defined in <strong title='khaki is defined in CSS Color 3'><a href=https://drafts.csswg.org/css-color-3/#khaki>CSS Color 3</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-2022/ title='khaki is referenced by CSS Snapshot 2022'>CSS Snapshot 2022</a>,
<a href=https://drafts.csswg.org/css-2023/ title='khaki is referenced by CSS Snapshot 2023'>CSS Snapshot 2023</a></dd>
<dt id="khaki@@<color>@value"><code class=prefix></code><span><strong><code class=css>khaki</code></strong> (<em>CSS value for <a href='c.html#<color>@@@@type'><code><color></code></a>, <a href='n.html#<named-color>@@@@type'><code><named-color></code></a> type </em>) <a class='self-link' href='#khaki%40%40%3Ccolor%3E%40value' aria-label="Permalink for khaki">§</a></span></dt>
<dd>Defined in <strong title='khaki is defined in CSS Color 4'><a href=https://drafts.csswg.org/css-color-4/#valdef-color-khaki>CSS Color 4</a></strong> </dd>
<dt id="khmer@@<counter-style-name>@value"><code class=prefix></code><span><strong><code class=css>khmer</code></strong> (<em>CSS value for <a href='c.html#<counter-style-name>@@@@type'><code><counter-style-name></code></a> </em>) <a class='self-link' href='#khmer%40%40%3Ccounter-style-name%3E%40value' aria-label="Permalink for khmer">§</a></span></dt>
<dd>Defined in <strong title='khmer is defined in CSS Counter Styles 3'><a href=https://drafts.csswg.org/css-counter-styles-3/#valdef-counter-style-name-khmer>CSS Counter Styles 3</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-2022/ title='khmer is referenced by CSS Snapshot 2022'>CSS Snapshot 2022</a>,
<a href=https://drafts.csswg.org/css-2023/ title='khmer is referenced by CSS Snapshot 2023'>CSS Snapshot 2023</a></dd>
<dt id="kHz@@<frequency>@value"><code class=prefix></code><span><strong><code class=css>kHz</code></strong> (<em>CSS value for <a href='f.html#<frequency>@@@@type'><code><frequency></code></a> </em>) <a class='self-link' href='#kHz%40%40%3Cfrequency%3E%40value' aria-label="Permalink for kHz">§</a></span></dt>
<dd>Defined in <strong title='kHz is defined in CSS Values 3'><a href=https://drafts.csswg.org/css-values-3/#kHz>CSS Values 3</a></strong> , <strong title='kHz is defined in CSS Values 4'><a href=https://drafts.csswg.org/css-values-4/#kHz>CSS Values 4</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-2022/ title='kHz is referenced by CSS Snapshot 2022'>CSS Snapshot 2022</a>,
<a href=https://drafts.csswg.org/css-2023/ title='kHz is referenced by CSS Snapshot 2023'>CSS Snapshot 2023</a></dd>
<dt id="kHz(value)@@CSS@method"><code class=prefix></code><span><strong><code class=webidl>kHz(value)</code></strong> (<em>WebIDL operation for <code>CSS</code> </em>) <a class='self-link' href='#kHz(value)%40%40CSS%40method' aria-label="Permalink for kHz(value)">§</a></span></dt>
<dd>Defined in <strong title='kHz(value) is defined in CSS Typed OM 1'><a href=https://drafts.css-houdini.org/css-typed-om-1/#dom-css-khz>CSS Typed OM 1</a></strong> </dd>
<dt id="kind@@file system locator@dfn"><code class=prefix></code><span><strong>kind</strong> (<em>concept for <a href='f.html#file system locator@@fs%25%25dfn'>file system locator</a> </em>) <a class='self-link' href='#kind%40%40file%20system%20locator%40dfn' aria-label="Permalink for kind">§</a></span></dt>
<dd>Defined in <strong title='kind is defined in File System'><a href=https://fs.spec.whatwg.org/#locator-kind>File System</a></strong> </dd>
<dt id="kind@@track@element-attr"><code class=prefix></code><span><strong><code class=markup>kind</code></strong> (<em>markup attribute for <a href='t.html#track@@html%25%25element'><code>track</code></a> </em>) <a class='self-link' href='#kind%40%40track%40element-attr' aria-label="Permalink for kind">§</a></span></dt>
<dd>Defined in <strong title='kind is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/media.html#attr-track-kind>HTML</a></strong> </dd>
<dd>Referenced in
<a href=https://w3c.github.io/html-aam/ title='kind is referenced by HTML Accessibility API Mappings 1.0'>HTML Accessibility API Mappings 1.0</a></dd>
<dd>Related terms: <em>value</em> <a href='c.html#captions@@track/kind@attr-value'><code>captions</code></a>, <em>value</em> <a href='c.html#chapters@@track/kind@attr-value'><code>chapters</code></a>, <em>value</em> <a href='d.html#descriptions@@track/kind@attr-value'><code>descriptions</code></a>, <em>value</em> <a href='m.html#metadata@@track/kind@attr-value'><code>metadata</code></a>, <em>value</em> <a href='s.html#subtitles@@track/kind@attr-value'><code>subtitles</code></a></dd>
<dt id="kind@@AudioTrack@attribute"><code class=prefix><a href='a.html#AudioTrack@@@@interface'>AudioTrack</a>.</code><span><strong><code class=webidl>kind</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#kind%40%40AudioTrack%40attribute' aria-label="Permalink for <a href='a.html#AudioTrack@@@@interface'>AudioTrack</a>.kind">§</a></span></dt>
<dd>Defined in <strong title='kind is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/media.html#dom-audiotrack-kind>HTML</a></strong> </dd>
<dd>Referenced in
<a href=https://w3c.github.io/media-source/ title='kind is referenced by Media Source Extensions™'>Media Source Extensions™</a></dd>
<dt id="kind@@DataTransferItem@attribute"><code class=prefix><a href='d.html#DataTransferItem@@@@interface'>DataTransferItem</a>.</code><span><strong><code class=webidl>kind</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#kind%40%40DataTransferItem%40attribute' aria-label="Permalink for <a href='d.html#DataTransferItem@@@@interface'>DataTransferItem</a>.kind">§</a></span></dt>
<dd>Defined in <strong title='kind is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/dnd.html#dom-datatransferitem-kind>HTML</a></strong> </dd>
<dt id="kind@@ExternType@dict-member"><code class=prefix><a href='e.html#ExternType@@@@dictionary'>ExternType</a>.</code><span><strong><code class=webidl>kind</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#kind%40%40ExternType%40dict-member' aria-label="Permalink for <a href='e.html#ExternType@@@@dictionary'>ExternType</a>.kind">§</a></span></dt>
<dd>Defined in <strong title='kind is defined in WebAssembly JavaScript Interface: Type Reflection'><a href=https://webassembly.github.io/js-types/js-api/#dom-externtype-kind>WebAssembly JavaScript Interface: Type Reflection</a></strong> </dd>
<dt id="kind@@FileSystemHandle@attribute"><code class=prefix><a href='f.html#FileSystemHandle@@@@interface'>FileSystemHandle</a>.</code><span><strong><code class=webidl>kind</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#kind%40%40FileSystemHandle%40attribute' aria-label="Permalink for <a href='f.html#FileSystemHandle@@@@interface'>FileSystemHandle</a>.kind">§</a></span></dt>
<dd>Defined in <strong title='kind is defined in File System'><a href=https://fs.spec.whatwg.org/#dom-filesystemhandle-kind>File System</a></strong> </dd>
<dt id="kind@@HTMLTrackElement@attribute"><code class=prefix><a href='h.html#HTMLTrackElement@@@@interface'>HTMLTrackElement</a>.</code><span><strong><code class=webidl>kind</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#kind%40%40HTMLTrackElement%40attribute' aria-label="Permalink for <a href='h.html#HTMLTrackElement@@@@interface'>HTMLTrackElement</a>.kind">§</a></span></dt>
<dd>Defined in <strong title='kind is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/media.html#dom-track-kind>HTML</a></strong> </dd>
<dt id="kind@@MediaDeviceInfo@attribute"><code class=prefix><a href='m.html#MediaDeviceInfo@@@@interface'>MediaDeviceInfo</a>.</code><span><strong><code class=webidl>kind</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#kind%40%40MediaDeviceInfo%40attribute' aria-label="Permalink for <a href='m.html#MediaDeviceInfo@@@@interface'>MediaDeviceInfo</a>.kind">§</a></span></dt>
<dd>Defined in <strong title='kind is defined in Media Capture and Streams'><a href=https://w3c.github.io/mediacapture-main/#dom-mediadeviceinfo-kind>Media Capture and Streams</a></strong> </dd>
<dt id="kind@@MediaStreamTrack@attribute"><code class=prefix><a href='m.html#MediaStreamTrack@@@@interface'>MediaStreamTrack</a>.</code><span><strong><code class=webidl>kind</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#kind%40%40MediaStreamTrack%40attribute' aria-label="Permalink for <a href='m.html#MediaStreamTrack@@@@interface'>MediaStreamTrack</a>.kind">§</a></span></dt>
<dd>Defined in <strong title='kind is defined in Media Capture and Streams'><a href=https://w3c.github.io/mediacapture-main/#dom-mediastreamtrack-kind>Media Capture and Streams</a></strong> </dd>
<dd>Referenced in
<a href=https://w3c.github.io/mediacapture-image/ title='kind is referenced by MediaStream Image Capture'>MediaStream Image Capture</a></dd>
<dt id="kind@@ModuleExportDescriptor@dict-member"><code class=prefix><a href='m.html#ModuleExportDescriptor@@@@dictionary'>ModuleExportDescriptor</a>.</code><span><strong><code class=webidl>kind</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#kind%40%40ModuleExportDescriptor%40dict-member' aria-label="Permalink for <a href='m.html#ModuleExportDescriptor@@@@dictionary'>ModuleExportDescriptor</a>.kind">§</a></span></dt>
<dt><code class=prefix><a href='m.html#ModuleExportDescriptor@@@@dictionary'>ModuleExportDescriptor</a>.</code><span><strong><code class=webidl>kind</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#kind%40%40ModuleExportDescriptor%40dict-member' aria-label="Permalink for <a href='m.html#ModuleExportDescriptor@@@@dictionary'>ModuleExportDescriptor</a>.kind">§</a></span></dt><dt><code class=prefix><a href='m.html#ModuleExportDescriptor@@@@dictionary'>ModuleExportDescriptor</a>.</code><span><strong><code class=webidl>kind</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#kind%40%40ModuleExportDescriptor%40dict-member' aria-label="Permalink for <a href='m.html#ModuleExportDescriptor@@@@dictionary'>ModuleExportDescriptor</a>.kind">§</a></span></dt><dt><code class=prefix><a href='m.html#ModuleExportDescriptor@@@@dictionary'>ModuleExportDescriptor</a>.</code><span><strong><code class=webidl>kind</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#kind%40%40ModuleExportDescriptor%40dict-member' aria-label="Permalink for <a href='m.html#ModuleExportDescriptor@@@@dictionary'>ModuleExportDescriptor</a>.kind">§</a></span></dt><dt><code class=prefix><a href='m.html#ModuleExportDescriptor@@@@dictionary'>ModuleExportDescriptor</a>.</code><span><strong><code class=webidl>kind</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#kind%40%40ModuleExportDescriptor%40dict-member' aria-label="Permalink for <a href='m.html#ModuleExportDescriptor@@@@dictionary'>ModuleExportDescriptor</a>.kind">§</a></span></dt><dt><code class=prefix><a href='m.html#ModuleExportDescriptor@@@@dictionary'>ModuleExportDescriptor</a>.</code><span><strong><code class=webidl>kind</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#kind%40%40ModuleExportDescriptor%40dict-member' aria-label="Permalink for <a href='m.html#ModuleExportDescriptor@@@@dictionary'>ModuleExportDescriptor</a>.kind">§</a></span></dt><dt><code class=prefix><a href='m.html#ModuleExportDescriptor@@@@dictionary'>ModuleExportDescriptor</a>.</code><span><strong><code class=webidl>kind</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#kind%40%40ModuleExportDescriptor%40dict-member' aria-label="Permalink for <a href='m.html#ModuleExportDescriptor@@@@dictionary'>ModuleExportDescriptor</a>.kind">§</a></span></dt>
<dd>Defined in <strong title='kind is defined in WebAssembly JavaScript Interface: Content Security Policy'><a href=https://webassembly.github.io/content-security-policy/js-api/#dom-moduleexportdescriptor-kind>WebAssembly JavaScript Interface: Content Security Policy</a></strong> , <strong title='kind is defined in WebAssembly JavaScript Interface: ESM Integration'><a href=https://webassembly.github.io/esm-integration/js-api/#dom-moduleexportdescriptor-kind>WebAssembly JavaScript Interface: ESM Integration</a></strong> , <strong title='kind is defined in WebAssembly JavaScript Interface: Exception Handling'><a href=https://webassembly.github.io/exception-handling/js-api/#dom-moduleexportdescriptor-kind>WebAssembly JavaScript Interface: Exception Handling</a></strong> , <strong title='kind is defined in WebAssembly JavaScript Interface: Promise Integration'><a href=https://webassembly.github.io/js-promise-integration/js-api/#dom-moduleexportdescriptor-kind>WebAssembly JavaScript Interface: Promise Integration</a></strong> , <strong title='kind is defined in WebAssembly JavaScript Interface: JS String Builtins'><a href=https://webassembly.github.io/js-string-builtins/js-api/#dom-moduleexportdescriptor-kind>WebAssembly JavaScript Interface: JS String Builtins</a></strong> , <strong title='kind is defined in WebAssembly JavaScript Interface: Threading'><a href=https://webassembly.github.io/threads/js-api/#dom-moduleexportdescriptor-kind>WebAssembly JavaScript Interface: Threading</a></strong> , <strong title='kind is defined in WebAssembly JavaScript Interface'><a href=https://webassembly.github.io/spec/js-api/#dom-moduleexportdescriptor-kind>WebAssembly JavaScript Interface</a></strong> </dd>
<dt id="kind@@ModuleImportDescriptor@dict-member"><code class=prefix><a href='m.html#ModuleImportDescriptor@@@@dictionary'>ModuleImportDescriptor</a>.</code><span><strong><code class=webidl>kind</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#kind%40%40ModuleImportDescriptor%40dict-member' aria-label="Permalink for <a href='m.html#ModuleImportDescriptor@@@@dictionary'>ModuleImportDescriptor</a>.kind">§</a></span></dt>
<dt><code class=prefix><a href='m.html#ModuleImportDescriptor@@@@dictionary'>ModuleImportDescriptor</a>.</code><span><strong><code class=webidl>kind</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#kind%40%40ModuleImportDescriptor%40dict-member' aria-label="Permalink for <a href='m.html#ModuleImportDescriptor@@@@dictionary'>ModuleImportDescriptor</a>.kind">§</a></span></dt><dt><code class=prefix><a href='m.html#ModuleImportDescriptor@@@@dictionary'>ModuleImportDescriptor</a>.</code><span><strong><code class=webidl>kind</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#kind%40%40ModuleImportDescriptor%40dict-member' aria-label="Permalink for <a href='m.html#ModuleImportDescriptor@@@@dictionary'>ModuleImportDescriptor</a>.kind">§</a></span></dt><dt><code class=prefix><a href='m.html#ModuleImportDescriptor@@@@dictionary'>ModuleImportDescriptor</a>.</code><span><strong><code class=webidl>kind</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#kind%40%40ModuleImportDescriptor%40dict-member' aria-label="Permalink for <a href='m.html#ModuleImportDescriptor@@@@dictionary'>ModuleImportDescriptor</a>.kind">§</a></span></dt><dt><code class=prefix><a href='m.html#ModuleImportDescriptor@@@@dictionary'>ModuleImportDescriptor</a>.</code><span><strong><code class=webidl>kind</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#kind%40%40ModuleImportDescriptor%40dict-member' aria-label="Permalink for <a href='m.html#ModuleImportDescriptor@@@@dictionary'>ModuleImportDescriptor</a>.kind">§</a></span></dt><dt><code class=prefix><a href='m.html#ModuleImportDescriptor@@@@dictionary'>ModuleImportDescriptor</a>.</code><span><strong><code class=webidl>kind</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#kind%40%40ModuleImportDescriptor%40dict-member' aria-label="Permalink for <a href='m.html#ModuleImportDescriptor@@@@dictionary'>ModuleImportDescriptor</a>.kind">§</a></span></dt><dt><code class=prefix><a href='m.html#ModuleImportDescriptor@@@@dictionary'>ModuleImportDescriptor</a>.</code><span><strong><code class=webidl>kind</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#kind%40%40ModuleImportDescriptor%40dict-member' aria-label="Permalink for <a href='m.html#ModuleImportDescriptor@@@@dictionary'>ModuleImportDescriptor</a>.kind">§</a></span></dt>
<dd>Defined in <strong title='kind is defined in WebAssembly JavaScript Interface: Content Security Policy'><a href=https://webassembly.github.io/content-security-policy/js-api/#dom-moduleimportdescriptor-kind>WebAssembly JavaScript Interface: Content Security Policy</a></strong> , <strong title='kind is defined in WebAssembly JavaScript Interface: ESM Integration'><a href=https://webassembly.github.io/esm-integration/js-api/#dom-moduleimportdescriptor-kind>WebAssembly JavaScript Interface: ESM Integration</a></strong> , <strong title='kind is defined in WebAssembly JavaScript Interface: Exception Handling'><a href=https://webassembly.github.io/exception-handling/js-api/#dom-moduleimportdescriptor-kind>WebAssembly JavaScript Interface: Exception Handling</a></strong> , <strong title='kind is defined in WebAssembly JavaScript Interface: Promise Integration'><a href=https://webassembly.github.io/js-promise-integration/js-api/#dom-moduleimportdescriptor-kind>WebAssembly JavaScript Interface: Promise Integration</a></strong> , <strong title='kind is defined in WebAssembly JavaScript Interface: JS String Builtins'><a href=https://webassembly.github.io/js-string-builtins/js-api/#dom-moduleimportdescriptor-kind>WebAssembly JavaScript Interface: JS String Builtins</a></strong> , <strong title='kind is defined in WebAssembly JavaScript Interface: Threading'><a href=https://webassembly.github.io/threads/js-api/#dom-moduleimportdescriptor-kind>WebAssembly JavaScript Interface: Threading</a></strong> , <strong title='kind is defined in WebAssembly JavaScript Interface'><a href=https://webassembly.github.io/spec/js-api/#dom-moduleimportdescriptor-kind>WebAssembly JavaScript Interface</a></strong> </dd>
<dt id="kind@@RTCAudioPlayoutStats@dict-member"><code class=prefix><a href='r.html#RTCAudioPlayoutStats@@@@dictionary'>RTCAudioPlayoutStats</a>.</code><span><strong><code class=webidl>kind</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#kind%40%40RTCAudioPlayoutStats%40dict-member' aria-label="Permalink for <a href='r.html#RTCAudioPlayoutStats@@@@dictionary'>RTCAudioPlayoutStats</a>.kind">§</a></span></dt>
<dd>Defined in <strong title='kind is defined in WebRTC Statistics'><a href=https://w3c.github.io/webrtc-stats/#dom-rtcaudioplayoutstats-kind>WebRTC Statistics</a></strong> </dd>
<dt id="kind@@RTCMediaSourceStats@dict-member"><code class=prefix><a href='r.html#RTCMediaSourceStats@@@@dictionary'>RTCMediaSourceStats</a>.</code><span><strong><code class=webidl>kind</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#kind%40%40RTCMediaSourceStats%40dict-member' aria-label="Permalink for <a href='r.html#RTCMediaSourceStats@@@@dictionary'>RTCMediaSourceStats</a>.kind">§</a></span></dt>
<dd>Defined in <strong title='kind is defined in WebRTC Statistics'><a href=https://w3c.github.io/webrtc-stats/#dom-rtcmediasourcestats-kind>WebRTC Statistics</a></strong> </dd>
<dt id="kind@@RTCRtpStreamStats@dict-member"><code class=prefix><a href='r.html#RTCRtpStreamStats@@@@dictionary'>RTCRtpStreamStats</a>.</code><span><strong><code class=webidl>kind</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#kind%40%40RTCRtpStreamStats%40dict-member' aria-label="Permalink for <a href='r.html#RTCRtpStreamStats@@@@dictionary'>RTCRtpStreamStats</a>.kind">§</a></span></dt>
<dd>Defined in <strong title='kind is defined in WebRTC Statistics'><a href=https://w3c.github.io/webrtc-stats/#dom-rtcrtpstreamstats-kind>WebRTC Statistics</a></strong> </dd>
<dt id="kind@@TextTrack@attribute"><code class=prefix><a href='t.html#TextTrack@@@@interface'>TextTrack</a>.</code><span><strong><code class=webidl>kind</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#kind%40%40TextTrack%40attribute' aria-label="Permalink for <a href='t.html#TextTrack@@@@interface'>TextTrack</a>.kind">§</a></span></dt>
<dd>Defined in <strong title='kind is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/media.html#dom-texttrack-kind>HTML</a></strong> </dd>
<dd>Referenced in
<a href=https://w3c.github.io/media-source/ title='kind is referenced by Media Source Extensions™'>Media Source Extensions™</a></dd>
<dt id="kind@@VideoTrack@attribute"><code class=prefix><a href='v.html#VideoTrack@@@@interface'>VideoTrack</a>.</code><span><strong><code class=webidl>kind</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#kind%40%40VideoTrack%40attribute' aria-label="Permalink for <a href='v.html#VideoTrack@@@@interface'>VideoTrack</a>.kind">§</a></span></dt>
<dd>Defined in <strong title='kind is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/media.html#dom-videotrack-kind>HTML</a></strong> </dd>
<dd>Referenced in
<a href=https://w3c.github.io/media-source/ title='kind is referenced by Media Source Extensions™'>Media Source Extensions™</a></dd>
<dt id="knee@@DynamicsCompressorNode@attribute"><code class=prefix><a href='d.html#DynamicsCompressorNode@@@@interface'>DynamicsCompressorNode</a>.</code><span><strong><code class=webidl>knee</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#knee%40%40DynamicsCompressorNode%40attribute' aria-label="Permalink for <a href='d.html#DynamicsCompressorNode@@@@interface'>DynamicsCompressorNode</a>.knee">§</a></span></dt>
<dt><code class=prefix><a href='d.html#DynamicsCompressorNode@@@@interface'>DynamicsCompressorNode</a>.</code><span><strong><code class=webidl>knee</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#knee%40%40DynamicsCompressorNode%40attribute' aria-label="Permalink for <a href='d.html#DynamicsCompressorNode@@@@interface'>DynamicsCompressorNode</a>.knee">§</a></span></dt>
<dd>Defined in <strong title='knee is defined in Web Audio API'><a href=https://webaudio.github.io/web-audio-api/#dom-dynamicscompressornode-knee>Web Audio API</a></strong> , <strong title='knee is defined in Web Audio API 1.1'><a href=https://webaudio.github.io/web-audio-api/#dom-dynamicscompressornode-knee>Web Audio API 1.1</a></strong> </dd>
<dt id="knee@@DynamicsCompressorOptions@dict-member"><code class=prefix><a href='d.html#DynamicsCompressorOptions@@@@dictionary'>DynamicsCompressorOptions</a>.</code><span><strong><code class=webidl>knee</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#knee%40%40DynamicsCompressorOptions%40dict-member' aria-label="Permalink for <a href='d.html#DynamicsCompressorOptions@@@@dictionary'>DynamicsCompressorOptions</a>.knee">§</a></span></dt>
<dt><code class=prefix><a href='d.html#DynamicsCompressorOptions@@@@dictionary'>DynamicsCompressorOptions</a>.</code><span><strong><code class=webidl>knee</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#knee%40%40DynamicsCompressorOptions%40dict-member' aria-label="Permalink for <a href='d.html#DynamicsCompressorOptions@@@@dictionary'>DynamicsCompressorOptions</a>.knee">§</a></span></dt>
<dd>Defined in <strong title='knee is defined in Web Audio API'><a href=https://webaudio.github.io/web-audio-api/#dom-dynamicscompressoroptions-knee>Web Audio API</a></strong> , <strong title='knee is defined in Web Audio API 1.1'><a href=https://webaudio.github.io/web-audio-api/#dom-dynamicscompressoroptions-knee>Web Audio API 1.1</a></strong> </dd>
<dt id="knownSources@@PressureObserver@attribute"><code class=prefix><a href='p.html#PressureObserver@@@@interface'>PressureObserver</a>.</code><span><strong><code class=webidl>knownSources</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#knownSources%40%40PressureObserver%40attribute' aria-label="Permalink for <a href='p.html#PressureObserver@@@@interface'>PressureObserver</a>.knownSources">§</a></span></dt>
<dd>Defined in <strong title='knownSources is defined in Compute Pressure 1'><a href=https://w3c.github.io/compute-pressure/#dom-pressureobserver-knownsources>Compute Pressure 1</a></strong> </dd>