-
Notifications
You must be signed in to change notification settings - Fork 8
/
extended-attributes.html
2871 lines (2841 loc) · 550 KB
/
extended-attributes.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: Extended Attributes
layout: base
---
<p>Extended attributes usage:</p>
<ul class=long>
<li><a href="https://webidl.spec.whatwg.org/#Exposed">Exposed</a>
<ul class=long>
<li>used on interface <code><a href='names/CompressionStream.html'>CompressionStream</a></code> in <a href="https://compression.spec.whatwg.org/">Compression Standard</a></li>
<li>used on interface <code><a href='names/DecompressionStream.html'>DecompressionStream</a></code> in <a href="https://compression.spec.whatwg.org/">Compression Standard</a></li>
<li>used on namespace <code><a href='names/console.html'>console</a></code> in <a href="https://console.spec.whatwg.org/">Console Standard</a></li>
<li>used on interface <code><a href='names/Event.html'>Event</a></code> in <a href="https://dom.spec.whatwg.org/">DOM Standard</a></li>
<li>used on interface <code><a href='names/CustomEvent.html'>CustomEvent</a></code> in <a href="https://dom.spec.whatwg.org/">DOM Standard</a></li>
<li>used on interface <code><a href='names/EventTarget.html'>EventTarget</a></code> in <a href="https://dom.spec.whatwg.org/">DOM Standard</a></li>
<li>used on interface <code><a href='names/AbortController.html'>AbortController</a></code> in <a href="https://dom.spec.whatwg.org/">DOM Standard</a></li>
<li>used on interface <code><a href='names/AbortSignal.html'>AbortSignal</a></code> in <a href="https://dom.spec.whatwg.org/">DOM Standard</a></li>
<li>used on operation <code><a href='names/AbortSignal.html'>AbortSignal</a>.timeout</code> in <a href="https://dom.spec.whatwg.org/">DOM Standard</a></li>
<li>used on interface <code><a href='names/NodeList.html'>NodeList</a></code> in <a href="https://dom.spec.whatwg.org/">DOM Standard</a></li>
<li>used on interface <code><a href='names/HTMLCollection.html'>HTMLCollection</a></code> in <a href="https://dom.spec.whatwg.org/">DOM Standard</a></li>
<li>used on interface <code><a href='names/MutationObserver.html'>MutationObserver</a></code> in <a href="https://dom.spec.whatwg.org/">DOM Standard</a></li>
<li>used on interface <code><a href='names/MutationRecord.html'>MutationRecord</a></code> in <a href="https://dom.spec.whatwg.org/">DOM Standard</a></li>
<li>used on interface <code><a href='names/Node.html'>Node</a></code> in <a href="https://dom.spec.whatwg.org/">DOM Standard</a></li>
<li>used on interface <code><a href='names/Document.html'>Document</a></code> in <a href="https://dom.spec.whatwg.org/">DOM Standard</a></li>
<li>used on interface <code><a href='names/XMLDocument.html'>XMLDocument</a></code> in <a href="https://dom.spec.whatwg.org/">DOM Standard</a></li>
<li>used on interface <code><a href='names/DOMImplementation.html'>DOMImplementation</a></code> in <a href="https://dom.spec.whatwg.org/">DOM Standard</a></li>
<li>used on interface <code><a href='names/DocumentType.html'>DocumentType</a></code> in <a href="https://dom.spec.whatwg.org/">DOM Standard</a></li>
<li>used on interface <code><a href='names/DocumentFragment.html'>DocumentFragment</a></code> in <a href="https://dom.spec.whatwg.org/">DOM Standard</a></li>
<li>used on interface <code><a href='names/ShadowRoot.html'>ShadowRoot</a></code> in <a href="https://dom.spec.whatwg.org/">DOM Standard</a></li>
<li>used on interface <code><a href='names/Element.html'>Element</a></code> in <a href="https://dom.spec.whatwg.org/">DOM Standard</a></li>
<li>used on interface <code><a href='names/NamedNodeMap.html'>NamedNodeMap</a></code> in <a href="https://dom.spec.whatwg.org/">DOM Standard</a></li>
<li>used on interface <code><a href='names/Attr.html'>Attr</a></code> in <a href="https://dom.spec.whatwg.org/">DOM Standard</a></li>
<li>used on interface <code><a href='names/CharacterData.html'>CharacterData</a></code> in <a href="https://dom.spec.whatwg.org/">DOM Standard</a></li>
<li>used on interface <code><a href='names/Text.html'>Text</a></code> in <a href="https://dom.spec.whatwg.org/">DOM Standard</a></li>
<li>used on interface <code><a href='names/CDATASection.html'>CDATASection</a></code> in <a href="https://dom.spec.whatwg.org/">DOM Standard</a></li>
<li>used on interface <code><a href='names/ProcessingInstruction.html'>ProcessingInstruction</a></code> in <a href="https://dom.spec.whatwg.org/">DOM Standard</a></li>
<li>used on interface <code><a href='names/Comment.html'>Comment</a></code> in <a href="https://dom.spec.whatwg.org/">DOM Standard</a></li>
<li>used on interface <code><a href='names/AbstractRange.html'>AbstractRange</a></code> in <a href="https://dom.spec.whatwg.org/">DOM Standard</a></li>
<li>used on interface <code><a href='names/StaticRange.html'>StaticRange</a></code> in <a href="https://dom.spec.whatwg.org/">DOM Standard</a></li>
<li>used on interface <code><a href='names/Range.html'>Range</a></code> in <a href="https://dom.spec.whatwg.org/">DOM Standard</a></li>
<li>used on interface <code><a href='names/NodeIterator.html'>NodeIterator</a></code> in <a href="https://dom.spec.whatwg.org/">DOM Standard</a></li>
<li>used on interface <code><a href='names/TreeWalker.html'>TreeWalker</a></code> in <a href="https://dom.spec.whatwg.org/">DOM Standard</a></li>
<li>used on callback interface <code><a href='names/NodeFilter.html'>NodeFilter</a></code> in <a href="https://dom.spec.whatwg.org/">DOM Standard</a></li>
<li>used on interface <code><a href='names/DOMTokenList.html'>DOMTokenList</a></code> in <a href="https://dom.spec.whatwg.org/">DOM Standard</a></li>
<li>used on interface <code><a href='names/XPathResult.html'>XPathResult</a></code> in <a href="https://dom.spec.whatwg.org/">DOM Standard</a></li>
<li>used on interface <code><a href='names/XPathExpression.html'>XPathExpression</a></code> in <a href="https://dom.spec.whatwg.org/">DOM Standard</a></li>
<li>used on interface <code><a href='names/XPathEvaluator.html'>XPathEvaluator</a></code> in <a href="https://dom.spec.whatwg.org/">DOM Standard</a></li>
<li>used on interface <code><a href='names/XSLTProcessor.html'>XSLTProcessor</a></code> in <a href="https://dom.spec.whatwg.org/">DOM Standard</a></li>
<li>used on interface <code><a href='names/FontMetrics.html'>FontMetrics</a></code> in <a href="https://drafts.css-houdini.org/font-metrics-api-1/">Font Metrics API Level 1</a></li>
<li>used on interface <code><a href='names/Baseline.html'>Baseline</a></code> in <a href="https://drafts.css-houdini.org/font-metrics-api-1/">Font Metrics API Level 1</a></li>
<li>used on interface <code><a href='names/Font.html'>Font</a></code> in <a href="https://drafts.css-houdini.org/font-metrics-api-1/">Font Metrics API Level 1</a></li>
<li>used on interface <code><a href='names/CSSFunctionRule.html'>CSSFunctionRule</a></code> in <a href="https://drafts.csswg.org/css-mixins-1/">CSS Functions and Mixins Module</a></li>
<li>used on interface <code><a href='names/TextDecoder.html'>TextDecoder</a></code> in <a href="https://encoding.spec.whatwg.org/">Encoding Standard</a></li>
<li>used on interface <code><a href='names/TextEncoder.html'>TextEncoder</a></code> in <a href="https://encoding.spec.whatwg.org/">Encoding Standard</a></li>
<li>used on interface <code><a href='names/TextDecoderStream.html'>TextDecoderStream</a></code> in <a href="https://encoding.spec.whatwg.org/">Encoding Standard</a></li>
<li>used on interface <code><a href='names/TextEncoderStream.html'>TextEncoderStream</a></code> in <a href="https://encoding.spec.whatwg.org/">Encoding Standard</a></li>
<li>used on interface <code><a href='names/Headers.html'>Headers</a></code> in <a href="https://fetch.spec.whatwg.org/">Fetch Standard</a></li>
<li>used on interface <code><a href='names/Request.html'>Request</a></code> in <a href="https://fetch.spec.whatwg.org/">Fetch Standard</a></li>
<li>used on interface <code><a href='names/Response.html'>Response</a></code> in <a href="https://fetch.spec.whatwg.org/">Fetch Standard</a></li>
<li>used on interface <code><a href='names/FileSystemHandle.html'>FileSystemHandle</a></code> in <a href="https://fs.spec.whatwg.org/">File System Standard</a></li>
<li>used on interface <code><a href='names/FileSystemFileHandle.html'>FileSystemFileHandle</a></code> in <a href="https://fs.spec.whatwg.org/">File System Standard</a></li>
<li>used on operation <code><a href='names/FileSystemFileHandle.html'>FileSystemFileHandle</a>.createSyncAccessHandle</code> in <a href="https://fs.spec.whatwg.org/">File System Standard</a></li>
<li>used on interface <code><a href='names/FileSystemDirectoryHandle.html'>FileSystemDirectoryHandle</a></code> in <a href="https://fs.spec.whatwg.org/">File System Standard</a></li>
<li>used on interface <code><a href='names/FileSystemWritableFileStream.html'>FileSystemWritableFileStream</a></code> in <a href="https://fs.spec.whatwg.org/">File System Standard</a></li>
<li>used on interface <code><a href='names/FileSystemSyncAccessHandle.html'>FileSystemSyncAccessHandle</a></code> in <a href="https://fs.spec.whatwg.org/">File System Standard</a></li>
<li>used on interface <code><a href='names/HTMLAllCollection.html'>HTMLAllCollection</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLFormControlsCollection.html'>HTMLFormControlsCollection</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/RadioNodeList.html'>RadioNodeList</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLOptionsCollection.html'>HTMLOptionsCollection</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/DOMStringList.html'>DOMStringList</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLElement.html'>HTMLElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLUnknownElement.html'>HTMLUnknownElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/DOMStringMap.html'>DOMStringMap</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLHtmlElement.html'>HTMLHtmlElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLHeadElement.html'>HTMLHeadElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLTitleElement.html'>HTMLTitleElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLBaseElement.html'>HTMLBaseElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLLinkElement.html'>HTMLLinkElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLMetaElement.html'>HTMLMetaElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLStyleElement.html'>HTMLStyleElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLBodyElement.html'>HTMLBodyElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLHeadingElement.html'>HTMLHeadingElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLParagraphElement.html'>HTMLParagraphElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLHRElement.html'>HTMLHRElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLPreElement.html'>HTMLPreElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLQuoteElement.html'>HTMLQuoteElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLOListElement.html'>HTMLOListElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLUListElement.html'>HTMLUListElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLMenuElement.html'>HTMLMenuElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLLIElement.html'>HTMLLIElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLDListElement.html'>HTMLDListElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLDivElement.html'>HTMLDivElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLAnchorElement.html'>HTMLAnchorElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLDataElement.html'>HTMLDataElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLTimeElement.html'>HTMLTimeElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLSpanElement.html'>HTMLSpanElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLBRElement.html'>HTMLBRElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLModElement.html'>HTMLModElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLPictureElement.html'>HTMLPictureElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLSourceElement.html'>HTMLSourceElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLImageElement.html'>HTMLImageElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLIFrameElement.html'>HTMLIFrameElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLEmbedElement.html'>HTMLEmbedElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLObjectElement.html'>HTMLObjectElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLVideoElement.html'>HTMLVideoElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLAudioElement.html'>HTMLAudioElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLTrackElement.html'>HTMLTrackElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLMediaElement.html'>HTMLMediaElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/MediaError.html'>MediaError</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/AudioTrackList.html'>AudioTrackList</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/AudioTrack.html'>AudioTrack</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/VideoTrackList.html'>VideoTrackList</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/VideoTrack.html'>VideoTrack</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/TextTrackList.html'>TextTrackList</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/TextTrack.html'>TextTrack</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/TextTrackCueList.html'>TextTrackCueList</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/TextTrackCue.html'>TextTrackCue</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/TimeRanges.html'>TimeRanges</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/TrackEvent.html'>TrackEvent</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLMapElement.html'>HTMLMapElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLAreaElement.html'>HTMLAreaElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLTableElement.html'>HTMLTableElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLTableCaptionElement.html'>HTMLTableCaptionElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLTableColElement.html'>HTMLTableColElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLTableSectionElement.html'>HTMLTableSectionElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLTableRowElement.html'>HTMLTableRowElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLTableCellElement.html'>HTMLTableCellElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLFormElement.html'>HTMLFormElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLLabelElement.html'>HTMLLabelElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLInputElement.html'>HTMLInputElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLButtonElement.html'>HTMLButtonElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLSelectElement.html'>HTMLSelectElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLDataListElement.html'>HTMLDataListElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLOptGroupElement.html'>HTMLOptGroupElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLOptionElement.html'>HTMLOptionElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLTextAreaElement.html'>HTMLTextAreaElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLOutputElement.html'>HTMLOutputElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLProgressElement.html'>HTMLProgressElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLMeterElement.html'>HTMLMeterElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLFieldSetElement.html'>HTMLFieldSetElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLLegendElement.html'>HTMLLegendElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/ValidityState.html'>ValidityState</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/SubmitEvent.html'>SubmitEvent</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/FormDataEvent.html'>FormDataEvent</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLDetailsElement.html'>HTMLDetailsElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLDialogElement.html'>HTMLDialogElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLScriptElement.html'>HTMLScriptElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLTemplateElement.html'>HTMLTemplateElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLSlotElement.html'>HTMLSlotElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLCanvasElement.html'>HTMLCanvasElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/CanvasRenderingContext2D.html'>CanvasRenderingContext2D</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/CanvasGradient.html'>CanvasGradient</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/CanvasPattern.html'>CanvasPattern</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/TextMetrics.html'>TextMetrics</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/ImageData.html'>ImageData</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/Path2D.html'>Path2D</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/ImageBitmapRenderingContext.html'>ImageBitmapRenderingContext</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/OffscreenCanvas.html'>OffscreenCanvas</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/OffscreenCanvasRenderingContext2D.html'>OffscreenCanvasRenderingContext2D</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/CustomElementRegistry.html'>CustomElementRegistry</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/ElementInternals.html'>ElementInternals</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/CustomStateSet.html'>CustomStateSet</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/VisibilityStateEntry.html'>VisibilityStateEntry</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/UserActivation.html'>UserActivation</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/ToggleEvent.html'>ToggleEvent</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/CloseWatcher.html'>CloseWatcher</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/DataTransfer.html'>DataTransfer</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/DataTransferItemList.html'>DataTransferItemList</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/DataTransferItem.html'>DataTransferItem</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/DragEvent.html'>DragEvent</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/Window.html'>Window</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/BarProp.html'>BarProp</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/Location.html'>Location</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/History.html'>History</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/Navigation.html'>Navigation</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/NavigationHistoryEntry.html'>NavigationHistoryEntry</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/NavigationTransition.html'>NavigationTransition</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/NavigationActivation.html'>NavigationActivation</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/NavigateEvent.html'>NavigateEvent</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/NavigationDestination.html'>NavigationDestination</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/NavigationCurrentEntryChangeEvent.html'>NavigationCurrentEntryChangeEvent</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/PopStateEvent.html'>PopStateEvent</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HashChangeEvent.html'>HashChangeEvent</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/PageSwapEvent.html'>PageSwapEvent</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/PageRevealEvent.html'>PageRevealEvent</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/PageTransitionEvent.html'>PageTransitionEvent</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/BeforeUnloadEvent.html'>BeforeUnloadEvent</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/NotRestoredReasonDetails.html'>NotRestoredReasonDetails</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/NotRestoredReasons.html'>NotRestoredReasons</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/ErrorEvent.html'>ErrorEvent</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/PromiseRejectionEvent.html'>PromiseRejectionEvent</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/DOMParser.html'>DOMParser</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/Navigator.html'>Navigator</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on attribute <code><a href='names/NavigatorID.html'>NavigatorID</a>.productSub</code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on attribute <code><a href='names/NavigatorID.html'>NavigatorID</a>.vendor</code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on attribute <code><a href='names/NavigatorID.html'>NavigatorID</a>.vendorSub</code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/PluginArray.html'>PluginArray</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/MimeTypeArray.html'>MimeTypeArray</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/Plugin.html'>Plugin</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/MimeType.html'>MimeType</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/ImageBitmap.html'>ImageBitmap</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/MessageEvent.html'>MessageEvent</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/EventSource.html'>EventSource</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/MessageChannel.html'>MessageChannel</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/MessagePort.html'>MessagePort</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/BroadcastChannel.html'>BroadcastChannel</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/WorkerGlobalScope.html'>WorkerGlobalScope</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/DedicatedWorkerGlobalScope.html'>DedicatedWorkerGlobalScope</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/SharedWorkerGlobalScope.html'>SharedWorkerGlobalScope</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/Worker.html'>Worker</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/SharedWorker.html'>SharedWorker</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/WorkerNavigator.html'>WorkerNavigator</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/WorkerLocation.html'>WorkerLocation</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/WorkletGlobalScope.html'>WorkletGlobalScope</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/Worklet.html'>Worklet</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/Storage.html'>Storage</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/StorageEvent.html'>StorageEvent</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLMarqueeElement.html'>HTMLMarqueeElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLFrameSetElement.html'>HTMLFrameSetElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLFrameElement.html'>HTMLFrameElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLDirectoryElement.html'>HTMLDirectoryElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLFontElement.html'>HTMLFontElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/HTMLParamElement.html'>HTMLParamElement</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/External.html'>External</a></code> in <a href="https://html.spec.whatwg.org/multipage/">HTML Standard</a></li>
<li>used on interface <code><a href='names/XRAnchor.html'>XRAnchor</a></code> in <a href="https://immersive-web.github.io/anchors/">WebXR Anchors Module</a></li>
<li>used on interface <code><a href='names/XRAnchorSet.html'>XRAnchorSet</a></code> in <a href="https://immersive-web.github.io/anchors/">WebXR Anchors Module</a></li>
<li>used on interface <code><a href='names/HTMLModelElement.html'>HTMLModelElement</a></code> in <a href="https://immersive-web.github.io/model-element/">The <model> element</a></li>
<li>used on interface <code><a href='names/XRCamera.html'>XRCamera</a></code> in <a href="https://immersive-web.github.io/raw-camera-access/">WebXR Raw Camera Access Module</a></li>
<li>used on interface <code><a href='names/XRPlane.html'>XRPlane</a></code> in <a href="https://immersive-web.github.io/real-world-geometry/plane-detection.html">WebXR Plane Detection Module</a></li>
<li>used on interface <code><a href='names/XRPlaneSet.html'>XRPlaneSet</a></code> in <a href="https://immersive-web.github.io/real-world-geometry/plane-detection.html">WebXR Plane Detection Module</a></li>
<li>used on interface <code><a href='names/XRMesh.html'>XRMesh</a></code> in <a href="https://immersive-web.github.io/real-world-meshing/">WebXR Mesh Detection Module</a></li>
<li>used on interface <code><a href='names/XRMeshSet.html'>XRMeshSet</a></code> in <a href="https://immersive-web.github.io/real-world-meshing/">WebXR Mesh Detection Module</a></li>
<li>used on interface <code><a href='names/Notification.html'>Notification</a></code> in <a href="https://notifications.spec.whatwg.org/">Notifications API Standard</a></li>
<li>used on operation <code><a href='names/Notification.html'>Notification</a>.requestPermission</code> in <a href="https://notifications.spec.whatwg.org/">Notifications API Standard</a></li>
<li>used on interface <code><a href='names/NotificationEvent.html'>NotificationEvent</a></code> in <a href="https://notifications.spec.whatwg.org/">Notifications API Standard</a></li>
<li>used on interface <code><a href='names/PrivateAggregation.html'>PrivateAggregation</a></code> in <a href="https://patcg-individual-drafts.github.io/private-aggregation-api/">Private Aggregation API</a></li>
<li>used on interface <code><a href='names/StorageAccessHandle.html'>StorageAccessHandle</a></code> in <a href="https://privacycg.github.io/saa-non-cookie-storage/">Extending Storage Access API (SAA) to non-cookie storage</a></li>
<li>used on interface <code><a href='names/ANGLE_instanced_arrays.html'>ANGLE_instanced_arrays</a></code> in <a href="https://registry.khronos.org/webgl/extensions/ANGLE_instanced_arrays/">WebGL ANGLE_instanced_arrays Khronos Ratified Extension Specification</a></li>
<li>used on interface <code><a href='names/EXT_blend_minmax.html'>EXT_blend_minmax</a></code> in <a href="https://registry.khronos.org/webgl/extensions/EXT_blend_minmax/">WebGL EXT_blend_minmax Khronos Ratified Extension Specification</a></li>
<li>used on interface <code><a href='names/EXT_color_buffer_float.html'>EXT_color_buffer_float</a></code> in <a href="https://registry.khronos.org/webgl/extensions/EXT_color_buffer_float/">WebGL EXT_color_buffer_float Extension Specification</a></li>
<li>used on interface <code><a href='names/EXT_color_buffer_half_float.html'>EXT_color_buffer_half_float</a></code> in <a href="https://registry.khronos.org/webgl/extensions/EXT_color_buffer_half_float/">WebGL EXT_color_buffer_half_float Extension Specification</a></li>
<li>used on interface <code><a href='names/EXT_disjoint_timer_query_webgl2.html'>EXT_disjoint_timer_query_webgl2</a></code> in <a href="https://registry.khronos.org/webgl/extensions/EXT_disjoint_timer_query_webgl2/">WebGL EXT_disjoint_timer_query_webgl2 Extension Specification</a></li>
<li>used on interface <code><a href='names/WebGLTimerQueryEXT.html'>WebGLTimerQueryEXT</a></code> in <a href="https://registry.khronos.org/webgl/extensions/EXT_disjoint_timer_query/">WebGL EXT_disjoint_timer_query Extension Specification</a></li>
<li>used on interface <code><a href='names/EXT_disjoint_timer_query.html'>EXT_disjoint_timer_query</a></code> in <a href="https://registry.khronos.org/webgl/extensions/EXT_disjoint_timer_query/">WebGL EXT_disjoint_timer_query Extension Specification</a></li>
<li>used on interface <code><a href='names/EXT_float_blend.html'>EXT_float_blend</a></code> in <a href="https://registry.khronos.org/webgl/extensions/EXT_float_blend/">WebGL EXT_float_blend Extension Specification</a></li>
<li>used on interface <code><a href='names/EXT_frag_depth.html'>EXT_frag_depth</a></code> in <a href="https://registry.khronos.org/webgl/extensions/EXT_frag_depth/">WebGL EXT_frag_depth Khronos Ratified Extension Specification</a></li>
<li>used on interface <code><a href='names/EXT_shader_texture_lod.html'>EXT_shader_texture_lod</a></code> in <a href="https://registry.khronos.org/webgl/extensions/EXT_shader_texture_lod/">WebGL EXT_shader_texture_lod Khronos Ratified Extension Specification</a></li>
<li>used on interface <code><a href='names/EXT_sRGB.html'>EXT_sRGB</a></code> in <a href="https://registry.khronos.org/webgl/extensions/EXT_sRGB/">WebGL EXT_sRGB Extension Specification</a></li>
<li>used on interface <code><a href='names/EXT_texture_compression_bptc.html'>EXT_texture_compression_bptc</a></code> in <a href="https://registry.khronos.org/webgl/extensions/EXT_texture_compression_bptc/">WebGL EXT_texture_compression_bptc Extension Specification</a></li>
<li>used on interface <code><a href='names/EXT_texture_compression_rgtc.html'>EXT_texture_compression_rgtc</a></code> in <a href="https://registry.khronos.org/webgl/extensions/EXT_texture_compression_rgtc/">WebGL EXT_texture_compression_rgtc Extension Specification</a></li>
<li>used on interface <code><a href='names/EXT_texture_filter_anisotropic.html'>EXT_texture_filter_anisotropic</a></code> in <a href="https://registry.khronos.org/webgl/extensions/EXT_texture_filter_anisotropic/">WebGL EXT_texture_filter_anisotropic Khronos Ratified Extension Specification</a></li>
<li>used on interface <code><a href='names/EXT_texture_norm16.html'>EXT_texture_norm16</a></code> in <a href="https://registry.khronos.org/webgl/extensions/EXT_texture_norm16/">WebGL EXT_texture_norm16 Extension Specification</a></li>
<li>used on interface <code><a href='names/KHR_parallel_shader_compile.html'>KHR_parallel_shader_compile</a></code> in <a href="https://registry.khronos.org/webgl/extensions/KHR_parallel_shader_compile/">WebGL KHR_parallel_shader_compile Extension Specification</a></li>
<li>used on interface <code><a href='names/OES_draw_buffers_indexed.html'>OES_draw_buffers_indexed</a></code> in <a href="https://registry.khronos.org/webgl/extensions/OES_draw_buffers_indexed/">WebGL OES_draw_buffers_indexed Extension Specification</a></li>
<li>used on interface <code><a href='names/OES_element_index_uint.html'>OES_element_index_uint</a></code> in <a href="https://registry.khronos.org/webgl/extensions/OES_element_index_uint/">WebGL OES_element_index_uint Khronos Ratified Extension Specification</a></li>
<li>used on interface <code><a href='names/OES_fbo_render_mipmap.html'>OES_fbo_render_mipmap</a></code> in <a href="https://registry.khronos.org/webgl/extensions/OES_fbo_render_mipmap/">WebGL OES_fbo_render_mipmap Extension Specification</a></li>
<li>used on interface <code><a href='names/OES_standard_derivatives.html'>OES_standard_derivatives</a></code> in <a href="https://registry.khronos.org/webgl/extensions/OES_standard_derivatives/">WebGL OES_standard_derivatives Khronos Ratified Extension Specification</a></li>
<li>used on interface <code><a href='names/OES_texture_float_linear.html'>OES_texture_float_linear</a></code> in <a href="https://registry.khronos.org/webgl/extensions/OES_texture_float_linear/">WebGL OES_texture_float_linear Khronos Ratified Extension Specification</a></li>
<li>used on interface <code><a href='names/OES_texture_float.html'>OES_texture_float</a></code> in <a href="https://registry.khronos.org/webgl/extensions/OES_texture_float/">WebGL OES_texture_float Khronos Ratified Extension Specification</a></li>
<li>used on interface <code><a href='names/OES_texture_half_float_linear.html'>OES_texture_half_float_linear</a></code> in <a href="https://registry.khronos.org/webgl/extensions/OES_texture_half_float_linear/">WebGL OES_texture_half_float_linear Khronos Ratified Extension Specification</a></li>
<li>used on interface <code><a href='names/OES_texture_half_float.html'>OES_texture_half_float</a></code> in <a href="https://registry.khronos.org/webgl/extensions/OES_texture_half_float/">WebGL OES_texture_half_float Khronos Ratified Extension Specification</a></li>
<li>used on interface <code><a href='names/WebGLVertexArrayObjectOES.html'>WebGLVertexArrayObjectOES</a></code> in <a href="https://registry.khronos.org/webgl/extensions/OES_vertex_array_object/">WebGL OES_vertex_array_object Khronos Ratified Extension Specification</a></li>
<li>used on interface <code><a href='names/OES_vertex_array_object.html'>OES_vertex_array_object</a></code> in <a href="https://registry.khronos.org/webgl/extensions/OES_vertex_array_object/">WebGL OES_vertex_array_object Khronos Ratified Extension Specification</a></li>
<li>used on interface <code><a href='names/OVR_multiview2.html'>OVR_multiview2</a></code> in <a href="https://registry.khronos.org/webgl/extensions/OVR_multiview2/">WebGL OVR_multiview2 Extension Specification</a></li>
<li>used on interface <code><a href='names/WEBGL_blend_equation_advanced_coherent.html'>WEBGL_blend_equation_advanced_coherent</a></code> in <a href="https://registry.khronos.org/webgl/extensions/WEBGL_blend_equation_advanced_coherent/">WebGL WEBGL_blend_equation_advanced_coherent Extension Draft Specification</a></li>
<li>used on interface <code><a href='names/WEBGL_clip_cull_distance.html'>WEBGL_clip_cull_distance</a></code> in <a href="https://registry.khronos.org/webgl/extensions/WEBGL_clip_cull_distance/">WebGL WEBGL_clip_cull_distance Extension Specification</a></li>
<li>used on interface <code><a href='names/WEBGL_color_buffer_float.html'>WEBGL_color_buffer_float</a></code> in <a href="https://registry.khronos.org/webgl/extensions/WEBGL_color_buffer_float/">WebGL WEBGL_color_buffer_float Extension Specification</a></li>
<li>used on interface <code><a href='names/WEBGL_compressed_texture_astc.html'>WEBGL_compressed_texture_astc</a></code> in <a href="https://registry.khronos.org/webgl/extensions/WEBGL_compressed_texture_astc/">WebGL WEBGL_compressed_texture_astc Extension Specification</a></li>
<li>used on interface <code><a href='names/WEBGL_compressed_texture_etc.html'>WEBGL_compressed_texture_etc</a></code> in <a href="https://registry.khronos.org/webgl/extensions/WEBGL_compressed_texture_etc/">WebGL WEBGL_compressed_texture_etc Extension Specification</a></li>
<li>used on interface <code><a href='names/WEBGL_compressed_texture_etc1.html'>WEBGL_compressed_texture_etc1</a></code> in <a href="https://registry.khronos.org/webgl/extensions/WEBGL_compressed_texture_etc1/">WebGL WEBGL_compressed_texture_etc1 Extension Specification</a></li>
<li>used on interface <code><a href='names/WEBGL_compressed_texture_pvrtc.html'>WEBGL_compressed_texture_pvrtc</a></code> in <a href="https://registry.khronos.org/webgl/extensions/WEBGL_compressed_texture_pvrtc/">WebGL WEBGL_compressed_texture_pvrtc Extension Specification</a></li>
<li>used on interface <code><a href='names/WEBGL_compressed_texture_s3tc_srgb.html'>WEBGL_compressed_texture_s3tc_srgb</a></code> in <a href="https://registry.khronos.org/webgl/extensions/WEBGL_compressed_texture_s3tc_srgb/">WebGL WEBGL_compressed_texture_s3tc_srgb Extension Specification</a></li>
<li>used on interface <code><a href='names/WEBGL_compressed_texture_s3tc.html'>WEBGL_compressed_texture_s3tc</a></code> in <a href="https://registry.khronos.org/webgl/extensions/WEBGL_compressed_texture_s3tc/">WebGL WEBGL_compressed_texture_s3tc Khronos Ratified Extension Specification</a></li>
<li>used on interface <code><a href='names/WEBGL_debug_renderer_info.html'>WEBGL_debug_renderer_info</a></code> in <a href="https://registry.khronos.org/webgl/extensions/WEBGL_debug_renderer_info/">WebGL WEBGL_debug_renderer_info Khronos Ratified Extension Specification</a></li>
<li>used on interface <code><a href='names/WEBGL_debug_shaders.html'>WEBGL_debug_shaders</a></code> in <a href="https://registry.khronos.org/webgl/extensions/WEBGL_debug_shaders/">WebGL WEBGL_debug_shaders Khronos Ratified Extension Specification</a></li>
<li>used on interface <code><a href='names/WEBGL_depth_texture.html'>WEBGL_depth_texture</a></code> in <a href="https://registry.khronos.org/webgl/extensions/WEBGL_depth_texture/">WebGL WEBGL_depth_texture Khronos Ratified Extension Specification</a></li>
<li>used on interface <code><a href='names/WEBGL_draw_buffers.html'>WEBGL_draw_buffers</a></code> in <a href="https://registry.khronos.org/webgl/extensions/WEBGL_draw_buffers/">WebGL WEBGL_draw_buffers Khronos Ratified Extension Specification</a></li>
<li>used on interface <code><a href='names/WEBGL_draw_instanced_base_vertex_base_instance.html'>WEBGL_draw_instanced_base_vertex_base_instance</a></code> in <a href="https://registry.khronos.org/webgl/extensions/WEBGL_draw_instanced_base_vertex_base_instance/">WebGL WEBGL_draw_instanced_base_vertex_base_instance Extension Draft Specification</a></li>
<li>used on interface <code><a href='names/WEBGL_lose_context.html'>WEBGL_lose_context</a></code> in <a href="https://registry.khronos.org/webgl/extensions/WEBGL_lose_context/">WebGL WEBGL_lose_context Khronos Ratified Extension Specification</a></li>
<li>used on interface <code><a href='names/WEBGL_multi_draw_instanced_base_vertex_base_instance.html'>WEBGL_multi_draw_instanced_base_vertex_base_instance</a></code> in <a href="https://registry.khronos.org/webgl/extensions/WEBGL_multi_draw_instanced_base_vertex_base_instance/">WebGL WEBGL_multi_draw_instanced_base_vertex_base_instance Extension Draft Specification</a></li>
<li>used on interface <code><a href='names/WEBGL_multi_draw.html'>WEBGL_multi_draw</a></code> in <a href="https://registry.khronos.org/webgl/extensions/WEBGL_multi_draw/">WebGL WEBGL_multi_draw Extension Specification</a></li>
<li>used on interface <code><a href='names/WEBGL_provoking_vertex.html'>WEBGL_provoking_vertex</a></code> in <a href="https://registry.khronos.org/webgl/extensions/WEBGL_provoking_vertex/">WebGL WEBGL_provoking_vertex Extension Specification</a></li>
<li>used on interface <code><a href='names/WebGLObject.html'>WebGLObject</a></code> in <a href="https://registry.khronos.org/webgl/specs/latest/1.0/">WebGL Specification</a></li>
<li>used on interface <code><a href='names/WebGLBuffer.html'>WebGLBuffer</a></code> in <a href="https://registry.khronos.org/webgl/specs/latest/1.0/">WebGL Specification</a></li>
<li>used on interface <code><a href='names/WebGLFramebuffer.html'>WebGLFramebuffer</a></code> in <a href="https://registry.khronos.org/webgl/specs/latest/1.0/">WebGL Specification</a></li>
<li>used on interface <code><a href='names/WebGLProgram.html'>WebGLProgram</a></code> in <a href="https://registry.khronos.org/webgl/specs/latest/1.0/">WebGL Specification</a></li>
<li>used on interface <code><a href='names/WebGLRenderbuffer.html'>WebGLRenderbuffer</a></code> in <a href="https://registry.khronos.org/webgl/specs/latest/1.0/">WebGL Specification</a></li>
<li>used on interface <code><a href='names/WebGLShader.html'>WebGLShader</a></code> in <a href="https://registry.khronos.org/webgl/specs/latest/1.0/">WebGL Specification</a></li>
<li>used on interface <code><a href='names/WebGLTexture.html'>WebGLTexture</a></code> in <a href="https://registry.khronos.org/webgl/specs/latest/1.0/">WebGL Specification</a></li>
<li>used on interface <code><a href='names/WebGLUniformLocation.html'>WebGLUniformLocation</a></code> in <a href="https://registry.khronos.org/webgl/specs/latest/1.0/">WebGL Specification</a></li>
<li>used on interface <code><a href='names/WebGLActiveInfo.html'>WebGLActiveInfo</a></code> in <a href="https://registry.khronos.org/webgl/specs/latest/1.0/">WebGL Specification</a></li>
<li>used on interface <code><a href='names/WebGLShaderPrecisionFormat.html'>WebGLShaderPrecisionFormat</a></code> in <a href="https://registry.khronos.org/webgl/specs/latest/1.0/">WebGL Specification</a></li>
<li>used on interface <code><a href='names/WebGLRenderingContext.html'>WebGLRenderingContext</a></code> in <a href="https://registry.khronos.org/webgl/specs/latest/1.0/">WebGL Specification</a></li>
<li>used on interface <code><a href='names/WebGLContextEvent.html'>WebGLContextEvent</a></code> in <a href="https://registry.khronos.org/webgl/specs/latest/1.0/">WebGL Specification</a></li>
<li>used on interface <code><a href='names/WebGLQuery.html'>WebGLQuery</a></code> in <a href="https://registry.khronos.org/webgl/specs/latest/2.0/">WebGL 2.0 Specification</a></li>
<li>used on interface <code><a href='names/WebGLSampler.html'>WebGLSampler</a></code> in <a href="https://registry.khronos.org/webgl/specs/latest/2.0/">WebGL 2.0 Specification</a></li>
<li>used on interface <code><a href='names/WebGLSync.html'>WebGLSync</a></code> in <a href="https://registry.khronos.org/webgl/specs/latest/2.0/">WebGL 2.0 Specification</a></li>
<li>used on interface <code><a href='names/WebGLTransformFeedback.html'>WebGLTransformFeedback</a></code> in <a href="https://registry.khronos.org/webgl/specs/latest/2.0/">WebGL 2.0 Specification</a></li>
<li>used on interface <code><a href='names/WebGLVertexArrayObject.html'>WebGLVertexArrayObject</a></code> in <a href="https://registry.khronos.org/webgl/specs/latest/2.0/">WebGL 2.0 Specification</a></li>
<li>used on interface <code><a href='names/WebGL2RenderingContext.html'>WebGL2RenderingContext</a></code> in <a href="https://registry.khronos.org/webgl/specs/latest/2.0/">WebGL 2.0 Specification</a></li>
<li>used on interface <code><a href='names/CapturedMouseEvent.html'>CapturedMouseEvent</a></code> in <a href="https://screen-share.github.io/captured-mouse-events/">Captured Mouse Events</a></li>
<li>used on interface <code><a href='names/RestrictionTarget.html'>RestrictionTarget</a></code> in <a href="https://screen-share.github.io/element-capture/">Element Capture</a></li>
<li>used on operation <code><a href='names/RestrictionTarget.html'>RestrictionTarget</a>.fromElement</code> in <a href="https://screen-share.github.io/element-capture/">Element Capture</a></li>
<li>used on interface <code><a href='names/StorageManager.html'>StorageManager</a></code> in <a href="https://storage.spec.whatwg.org/">Storage Standard</a></li>
<li>used on operation <code><a href='names/StorageManager.html'>StorageManager</a>.persist</code> in <a href="https://storage.spec.whatwg.org/">Storage Standard</a></li>
<li>used on interface <code><a href='names/ReadableStream.html'>ReadableStream</a></code> in <a href="https://streams.spec.whatwg.org/">Streams Standard</a></li>
<li>used on interface <code><a href='names/ReadableStreamDefaultReader.html'>ReadableStreamDefaultReader</a></code> in <a href="https://streams.spec.whatwg.org/">Streams Standard</a></li>
<li>used on interface <code><a href='names/ReadableStreamBYOBReader.html'>ReadableStreamBYOBReader</a></code> in <a href="https://streams.spec.whatwg.org/">Streams Standard</a></li>
<li>used on interface <code><a href='names/ReadableStreamDefaultController.html'>ReadableStreamDefaultController</a></code> in <a href="https://streams.spec.whatwg.org/">Streams Standard</a></li>
<li>used on interface <code><a href='names/ReadableByteStreamController.html'>ReadableByteStreamController</a></code> in <a href="https://streams.spec.whatwg.org/">Streams Standard</a></li>
<li>used on interface <code><a href='names/ReadableStreamBYOBRequest.html'>ReadableStreamBYOBRequest</a></code> in <a href="https://streams.spec.whatwg.org/">Streams Standard</a></li>
<li>used on interface <code><a href='names/WritableStream.html'>WritableStream</a></code> in <a href="https://streams.spec.whatwg.org/">Streams Standard</a></li>
<li>used on interface <code><a href='names/WritableStreamDefaultWriter.html'>WritableStreamDefaultWriter</a></code> in <a href="https://streams.spec.whatwg.org/">Streams Standard</a></li>
<li>used on interface <code><a href='names/WritableStreamDefaultController.html'>WritableStreamDefaultController</a></code> in <a href="https://streams.spec.whatwg.org/">Streams Standard</a></li>
<li>used on interface <code><a href='names/TransformStream.html'>TransformStream</a></code> in <a href="https://streams.spec.whatwg.org/">Streams Standard</a></li>
<li>used on interface <code><a href='names/TransformStreamDefaultController.html'>TransformStreamDefaultController</a></code> in <a href="https://streams.spec.whatwg.org/">Streams Standard</a></li>
<li>used on interface <code><a href='names/ByteLengthQueuingStrategy.html'>ByteLengthQueuingStrategy</a></code> in <a href="https://streams.spec.whatwg.org/">Streams Standard</a></li>
<li>used on interface <code><a href='names/CountQueuingStrategy.html'>CountQueuingStrategy</a></code> in <a href="https://streams.spec.whatwg.org/">Streams Standard</a></li>
<li>used on interface <code><a href='names/TimeEvent.html'>TimeEvent</a></code> in <a href="https://svgwg.org/specs/animations/">SVG Animations</a></li>
<li>used on interface <code><a href='names/SVGAnimationElement.html'>SVGAnimationElement</a></code> in <a href="https://svgwg.org/specs/animations/">SVG Animations</a></li>
<li>used on interface <code><a href='names/SVGAnimateElement.html'>SVGAnimateElement</a></code> in <a href="https://svgwg.org/specs/animations/">SVG Animations</a></li>
<li>used on interface <code><a href='names/SVGSetElement.html'>SVGSetElement</a></code> in <a href="https://svgwg.org/specs/animations/">SVG Animations</a></li>
<li>used on interface <code><a href='names/SVGAnimateMotionElement.html'>SVGAnimateMotionElement</a></code> in <a href="https://svgwg.org/specs/animations/">SVG Animations</a></li>
<li>used on interface <code><a href='names/SVGMPathElement.html'>SVGMPathElement</a></code> in <a href="https://svgwg.org/specs/animations/">SVG Animations</a></li>
<li>used on interface <code><a href='names/SVGAnimateTransformElement.html'>SVGAnimateTransformElement</a></code> in <a href="https://svgwg.org/specs/animations/">SVG Animations</a></li>
<li>used on interface <code><a href='names/SVGDiscardElement.html'>SVGDiscardElement</a></code> in <a href="https://svgwg.org/specs/animations/">SVG Animations</a></li>
<li>used on namespace <code><a href='names/TestUtils.html'>TestUtils</a></code> in <a href="https://testutils.spec.whatwg.org/">Test Utils Standard</a></li>
<li>used on interface <code><a href='names/URL.html'>URL</a></code> in <a href="https://url.spec.whatwg.org/">URL Standard</a></li>
<li>used on interface <code><a href='names/URLSearchParams.html'>URLSearchParams</a></code> in <a href="https://url.spec.whatwg.org/">URL Standard</a></li>
<li>used on interface <code><a href='names/URLPattern.html'>URLPattern</a></code> in <a href="https://urlpattern.spec.whatwg.org/">URL Pattern Standard</a></li>
<li>used on interface <code><a href='names/GamepadPose.html'>GamepadPose</a></code> in <a href="https://w3c.github.io/gamepad/extensions.html">Gamepad Extensions</a></li>
<li>used on interface <code><a href='names/GamepadTouch.html'>GamepadTouch</a></code> in <a href="https://w3c.github.io/gamepad/extensions.html">Gamepad Extensions</a></li>
<li>used on interface <code><a href='names/PerformanceLongAnimationFrameTiming.html'>PerformanceLongAnimationFrameTiming</a></code> in <a href="https://w3c.github.io/long-animation-frames/">Long Animation Frames API</a></li>
<li>used on interface <code><a href='names/PerformanceScriptTiming.html'>PerformanceScriptTiming</a></code> in <a href="https://w3c.github.io/long-animation-frames/">Long Animation Frames API</a></li>
<li>used on interface <code><a href='names/VideoPlaybackQuality.html'>VideoPlaybackQuality</a></code> in <a href="https://w3c.github.io/media-playback-quality/">Media Playback Quality</a></li>
<li>used on interface <code><a href='names/CaptureActionEvent.html'>CaptureActionEvent</a></code> in <a href="https://w3c.github.io/mediacapture-handle/actions/">The Capture-Handle Actions Mechanism</a></li>
<li>used on interface <code><a href='names/NDEFMessage.html'>NDEFMessage</a></code> in <a href="https://w3c.github.io/web-nfc/">Web NFC</a></li>
<li>used on interface <code><a href='names/NDEFRecord.html'>NDEFRecord</a></code> in <a href="https://w3c.github.io/web-nfc/">Web NFC</a></li>
<li>used on interface <code><a href='names/NDEFReader.html'>NDEFReader</a></code> in <a href="https://w3c.github.io/web-nfc/">Web NFC</a></li>
<li>used on interface <code><a href='names/NDEFReadingEvent.html'>NDEFReadingEvent</a></code> in <a href="https://w3c.github.io/web-nfc/">Web NFC</a></li>
<li>used on interface <code><a href='names/Bluetooth.html'>Bluetooth</a></code> in <a href="https://webbluetoothcg.github.io/web-bluetooth/">Web Bluetooth</a></li>
<li>used on interface <code><a href='names/BluetoothPermissionResult.html'>BluetoothPermissionResult</a></code> in <a href="https://webbluetoothcg.github.io/web-bluetooth/">Web Bluetooth</a></li>
<li>used on interface <code><a href='names/ValueEvent.html'>ValueEvent</a></code> in <a href="https://webbluetoothcg.github.io/web-bluetooth/">Web Bluetooth</a></li>
<li>used on interface <code><a href='names/BluetoothDevice.html'>BluetoothDevice</a></code> in <a href="https://webbluetoothcg.github.io/web-bluetooth/">Web Bluetooth</a></li>
<li>used on interface <code><a href='names/BluetoothManufacturerDataMap.html'>BluetoothManufacturerDataMap</a></code> in <a href="https://webbluetoothcg.github.io/web-bluetooth/">Web Bluetooth</a></li>
<li>used on interface <code><a href='names/BluetoothServiceDataMap.html'>BluetoothServiceDataMap</a></code> in <a href="https://webbluetoothcg.github.io/web-bluetooth/">Web Bluetooth</a></li>
<li>used on interface <code><a href='names/BluetoothAdvertisingEvent.html'>BluetoothAdvertisingEvent</a></code> in <a href="https://webbluetoothcg.github.io/web-bluetooth/">Web Bluetooth</a></li>
<li>used on interface <code><a href='names/BluetoothRemoteGATTServer.html'>BluetoothRemoteGATTServer</a></code> in <a href="https://webbluetoothcg.github.io/web-bluetooth/">Web Bluetooth</a></li>
<li>used on interface <code><a href='names/BluetoothRemoteGATTService.html'>BluetoothRemoteGATTService</a></code> in <a href="https://webbluetoothcg.github.io/web-bluetooth/">Web Bluetooth</a></li>
<li>used on interface <code><a href='names/BluetoothRemoteGATTCharacteristic.html'>BluetoothRemoteGATTCharacteristic</a></code> in <a href="https://webbluetoothcg.github.io/web-bluetooth/">Web Bluetooth</a></li>
<li>used on interface <code><a href='names/BluetoothCharacteristicProperties.html'>BluetoothCharacteristicProperties</a></code> in <a href="https://webbluetoothcg.github.io/web-bluetooth/">Web Bluetooth</a></li>
<li>used on interface <code><a href='names/BluetoothRemoteGATTDescriptor.html'>BluetoothRemoteGATTDescriptor</a></code> in <a href="https://webbluetoothcg.github.io/web-bluetooth/">Web Bluetooth</a></li>
<li>used on interface <code><a href='names/BluetoothUUID.html'>BluetoothUUID</a></code> in <a href="https://webbluetoothcg.github.io/web-bluetooth/">Web Bluetooth</a></li>
<li>used on interface <code><a href='names/BluetoothDataFilter.html'>BluetoothDataFilter</a></code> in <a href="https://webbluetoothcg.github.io/web-bluetooth/scanning.html">Web Bluetooth Scanning</a></li>
<li>used on interface <code><a href='names/BluetoothManufacturerDataFilter.html'>BluetoothManufacturerDataFilter</a></code> in <a href="https://webbluetoothcg.github.io/web-bluetooth/scanning.html">Web Bluetooth Scanning</a></li>
<li>used on interface <code><a href='names/BluetoothServiceDataFilter.html'>BluetoothServiceDataFilter</a></code> in <a href="https://webbluetoothcg.github.io/web-bluetooth/scanning.html">Web Bluetooth Scanning</a></li>
<li>used on interface <code><a href='names/BluetoothLEScanFilter.html'>BluetoothLEScanFilter</a></code> in <a href="https://webbluetoothcg.github.io/web-bluetooth/scanning.html">Web Bluetooth Scanning</a></li>
<li>used on interface <code><a href='names/BluetoothLEScan.html'>BluetoothLEScan</a></code> in <a href="https://webbluetoothcg.github.io/web-bluetooth/scanning.html">Web Bluetooth Scanning</a></li>
<li>used on interface <code><a href='names/BluetoothLEScanPermissionResult.html'>BluetoothLEScanPermissionResult</a></code> in <a href="https://webbluetoothcg.github.io/web-bluetooth/scanning.html">Web Bluetooth Scanning</a></li>
<li>used on interface <code><a href='names/DOMException.html'>DOMException</a></code> in <a href="https://webidl.spec.whatwg.org/">Web IDL Standard</a></li>
<li>used on interface <code><a href='names/WebSocket.html'>WebSocket</a></code> in <a href="https://websockets.spec.whatwg.org/">WebSockets Standard</a></li>
<li>used on interface <code><a href='names/CloseEvent.html'>CloseEvent</a></code> in <a href="https://websockets.spec.whatwg.org/">WebSockets Standard</a></li>
<li>used on interface <code><a href='names/BackgroundFetchManager.html'>BackgroundFetchManager</a></code> in <a href="https://wicg.github.io/background-fetch/">Background Fetch</a></li>
<li>used on interface <code><a href='names/BackgroundFetchRegistration.html'>BackgroundFetchRegistration</a></code> in <a href="https://wicg.github.io/background-fetch/">Background Fetch</a></li>
<li>used on interface <code><a href='names/BackgroundFetchRecord.html'>BackgroundFetchRecord</a></code> in <a href="https://wicg.github.io/background-fetch/">Background Fetch</a></li>
<li>used on interface <code><a href='names/BackgroundFetchEvent.html'>BackgroundFetchEvent</a></code> in <a href="https://wicg.github.io/background-fetch/">Background Fetch</a></li>
<li>used on interface <code><a href='names/BackgroundFetchUpdateUIEvent.html'>BackgroundFetchUpdateUIEvent</a></code> in <a href="https://wicg.github.io/background-fetch/">Background Fetch</a></li>
<li>used on interface <code><a href='names/SyncManager.html'>SyncManager</a></code> in <a href="https://wicg.github.io/background-sync/spec/">Web Background Synchronization</a></li>
<li>used on interface <code><a href='names/SyncEvent.html'>SyncEvent</a></code> in <a href="https://wicg.github.io/background-sync/spec/">Web Background Synchronization</a></li>
<li>used on interface <code><a href='names/ContentIndex.html'>ContentIndex</a></code> in <a href="https://wicg.github.io/content-index/spec/">Content Index</a></li>
<li>used on interface <code><a href='names/ContentIndexEvent.html'>ContentIndexEvent</a></code> in <a href="https://wicg.github.io/content-index/spec/">Content Index</a></li>
<li>used on interface <code><a href='names/CookieStore.html'>CookieStore</a></code> in <a href="https://wicg.github.io/cookie-store/">Cookie Store API</a></li>
<li>used on attribute <code><a href='names/CookieStore.html'>CookieStore</a>.onchange</code> in <a href="https://wicg.github.io/cookie-store/">Cookie Store API</a></li>
<li>used on interface <code><a href='names/CookieStoreManager.html'>CookieStoreManager</a></code> in <a href="https://wicg.github.io/cookie-store/">Cookie Store API</a></li>
<li>used on interface <code><a href='names/CookieChangeEvent.html'>CookieChangeEvent</a></code> in <a href="https://wicg.github.io/cookie-store/">Cookie Store API</a></li>
<li>used on interface <code><a href='names/ExtendableCookieChangeEvent.html'>ExtendableCookieChangeEvent</a></code> in <a href="https://wicg.github.io/cookie-store/">Cookie Store API</a></li>
<li>used on interface <code><a href='names/CrashReportBody.html'>CrashReportBody</a></code> in <a href="https://wicg.github.io/crash-reporting/">Crash Reporting</a></li>
<li>used on interface <code><a href='names/ScriptingPolicyReportBody.html'>ScriptingPolicyReportBody</a></code> in <a href="https://wicg.github.io/csp-next/scripting-policy.html">Scripting Policy</a></li>
<li>used on interface <code><a href='names/CSSParserRule.html'>CSSParserRule</a></code> in <a href="https://wicg.github.io/css-parser-api/">CSS Parser API</a></li>
<li>used on interface <code><a href='names/CSSParserAtRule.html'>CSSParserAtRule</a></code> in <a href="https://wicg.github.io/css-parser-api/">CSS Parser API</a></li>
<li>used on interface <code><a href='names/CSSParserQualifiedRule.html'>CSSParserQualifiedRule</a></code> in <a href="https://wicg.github.io/css-parser-api/">CSS Parser API</a></li>
<li>used on interface <code><a href='names/CSSParserDeclaration.html'>CSSParserDeclaration</a></code> in <a href="https://wicg.github.io/css-parser-api/">CSS Parser API</a></li>
<li>used on interface <code><a href='names/CSSParserValue.html'>CSSParserValue</a></code> in <a href="https://wicg.github.io/css-parser-api/">CSS Parser API</a></li>
<li>used on interface <code><a href='names/CSSParserBlock.html'>CSSParserBlock</a></code> in <a href="https://wicg.github.io/css-parser-api/">CSS Parser API</a></li>
<li>used on interface <code><a href='names/CSSParserFunction.html'>CSSParserFunction</a></code> in <a href="https://wicg.github.io/css-parser-api/">CSS Parser API</a></li>
<li>used on interface <code><a href='names/DataCue.html'>DataCue</a></code> in <a href="https://wicg.github.io/datacue/">DataCue API</a></li>
<li>used on interface <code><a href='names/DeprecationReportBody.html'>DeprecationReportBody</a></code> in <a href="https://wicg.github.io/deprecation-reporting/">Deprecation Reporting</a></li>
<li>used on interface <code><a href='names/DigitalCredential.html'>DigitalCredential</a></code> in <a href="https://wicg.github.io/digital-credentials/">Digital Credentials</a></li>
<li>used on interface <code><a href='names/DigitalGoodsService.html'>DigitalGoodsService</a></code> in <a href="https://wicg.github.io/digital-goods/">Digital Goods API</a></li>
<li>used on interface <code><a href='names/DocumentPictureInPicture.html'>DocumentPictureInPicture</a></code> in <a href="https://wicg.github.io/document-picture-in-picture/">Document Picture-in-Picture Specification</a></li>
<li>used on interface <code><a href='names/DocumentPictureInPictureEvent.html'>DocumentPictureInPictureEvent</a></code> in <a href="https://wicg.github.io/document-picture-in-picture/">Document Picture-in-Picture Specification</a></li>
<li>used on interface <code><a href='names/PerformanceElementTiming.html'>PerformanceElementTiming</a></code> in <a href="https://wicg.github.io/element-timing/">Element Timing API</a></li>
<li>used on interface <code><a href='names/FileSystemEntry.html'>FileSystemEntry</a></code> in <a href="https://wicg.github.io/entries-api/">File and Directory Entries API</a></li>
<li>used on interface <code><a href='names/FileSystemDirectoryEntry.html'>FileSystemDirectoryEntry</a></code> in <a href="https://wicg.github.io/entries-api/">File and Directory Entries API</a></li>
<li>used on interface <code><a href='names/FileSystemDirectoryReader.html'>FileSystemDirectoryReader</a></code> in <a href="https://wicg.github.io/entries-api/">File and Directory Entries API</a></li>
<li>used on interface <code><a href='names/FileSystemFileEntry.html'>FileSystemFileEntry</a></code> in <a href="https://wicg.github.io/entries-api/">File and Directory Entries API</a></li>
<li>used on interface <code><a href='names/FileSystem.html'>FileSystem</a></code> in <a href="https://wicg.github.io/entries-api/">File and Directory Entries API</a></li>
<li>used on interface <code><a href='names/EyeDropper.html'>EyeDropper</a></code> in <a href="https://wicg.github.io/eyedropper-api/">EyeDropper API</a></li>
<li>used on interface <code><a href='names/HTMLFencedFrameElement.html'>HTMLFencedFrameElement</a></code> in <a href="https://wicg.github.io/fenced-frame/">Fenced Frame</a></li>
<li>used on interface <code><a href='names/FencedFrameConfig.html'>FencedFrameConfig</a></code> in <a href="https://wicg.github.io/fenced-frame/">Fenced Frame</a></li>
<li>used on interface <code><a href='names/Fence.html'>Fence</a></code> in <a href="https://wicg.github.io/fenced-frame/">Fenced Frame</a></li>
<li>used on interface <code><a href='names/HandwritingRecognizer.html'>HandwritingRecognizer</a></code> in <a href="https://wicg.github.io/handwriting-recognition/">Handwriting Recognition API</a></li>
<li>used on interface <code><a href='names/HandwritingDrawing.html'>HandwritingDrawing</a></code> in <a href="https://wicg.github.io/handwriting-recognition/">Handwriting Recognition API</a></li>
<li>used on interface <code><a href='names/HandwritingStroke.html'>HandwritingStroke</a></code> in <a href="https://wicg.github.io/handwriting-recognition/">Handwriting Recognition API</a></li>
<li>used on interface <code><a href='names/IdleDetector.html'>IdleDetector</a></code> in <a href="https://wicg.github.io/idle-detection/">Idle Detection API</a></li>
<li>used on operation <code><a href='names/IdleDetector.html'>IdleDetector</a>.requestPermission</code> in <a href="https://wicg.github.io/idle-detection/">Idle Detection API</a></li>
<li>used on interface <code><a href='names/Ink.html'>Ink</a></code> in <a href="https://wicg.github.io/ink-enhancement/">Ink API</a></li>
<li>used on interface <code><a href='names/DelegatedInkTrailPresenter.html'>DelegatedInkTrailPresenter</a></code> in <a href="https://wicg.github.io/ink-enhancement/">Ink API</a></li>
<li>used on interface <code><a href='names/InputDeviceCapabilities.html'>InputDeviceCapabilities</a></code> in <a href="https://wicg.github.io/input-device-capabilities/">Input Device Capabilities</a></li>
<li>used on interface <code><a href='names/InterventionReportBody.html'>InterventionReportBody</a></code> in <a href="https://wicg.github.io/intervention-reporting/">Intervention Reporting</a></li>
<li>used on interface <code><a href='names/Scheduling.html'>Scheduling</a></code> in <a href="https://wicg.github.io/is-input-pending/">Early detection of input events</a></li>
<li>used on interface <code><a href='names/Profiler.html'>Profiler</a></code> in <a href="https://wicg.github.io/js-self-profiling/">JS Self-Profiling API</a></li>
<li>used on interface <code><a href='names/Keyboard.html'>Keyboard</a></code> in <a href="https://wicg.github.io/keyboard-lock/">Keyboard Lock</a></li>
<li>used on interface <code><a href='names/KeyboardLayoutMap.html'>KeyboardLayoutMap</a></code> in <a href="https://wicg.github.io/keyboard-map/">Keyboard Map</a></li>
<li>used on interface <code><a href='names/LayoutShift.html'>LayoutShift</a></code> in <a href="https://wicg.github.io/layout-instability/">Layout Instability API</a></li>
<li>used on interface <code><a href='names/LayoutShiftAttribution.html'>LayoutShiftAttribution</a></code> in <a href="https://wicg.github.io/layout-instability/">Layout Instability API</a></li>
<li>used on interface <code><a href='names/FontData.html'>FontData</a></code> in <a href="https://wicg.github.io/local-font-access/">Local Font Access API</a></li>
<li>used on interface <code><a href='names/BeforeInstallPromptEvent.html'>BeforeInstallPromptEvent</a></code> in <a href="https://wicg.github.io/manifest-incubations/">Manifest Incubations</a></li>
<li>used on interface <code><a href='names/NetworkInformation.html'>NetworkInformation</a></code> in <a href="https://wicg.github.io/netinfo/">Network Information API</a></li>
<li>used on interface <code><a href='names/Subscriber.html'>Subscriber</a></code> in <a href="https://wicg.github.io/observable/">Observable</a></li>
<li>used on interface <code><a href='names/Observable.html'>Observable</a></code> in <a href="https://wicg.github.io/observable/">Observable</a></li>
<li>used on interface <code><a href='names/PeriodicSyncManager.html'>PeriodicSyncManager</a></code> in <a href="https://wicg.github.io/periodic-background-sync/">Web Periodic Background Synchronization</a></li>
<li>used on interface <code><a href='names/PeriodicSyncEvent.html'>PeriodicSyncEvent</a></code> in <a href="https://wicg.github.io/periodic-background-sync/">Web Periodic Background Synchronization</a></li>
<li>used on interface <code><a href='names/HTMLPortalElement.html'>HTMLPortalElement</a></code> in <a href="https://wicg.github.io/portals/">Portals</a></li>
<li>used on interface <code><a href='names/PortalHost.html'>PortalHost</a></code> in <a href="https://wicg.github.io/portals/">Portals</a></li>
<li>used on interface <code><a href='names/PortalActivateEvent.html'>PortalActivateEvent</a></code> in <a href="https://wicg.github.io/portals/">Portals</a></li>
<li>used on interface <code><a href='names/Sanitizer.html'>Sanitizer</a></code> in <a href="https://wicg.github.io/sanitizer-api/">HTML Sanitizer API</a></li>
<li>used on interface <code><a href='names/Scheduler.html'>Scheduler</a></code> in <a href="https://wicg.github.io/scheduling-apis/">Prioritized Task Scheduling</a></li>
<li>used on interface <code><a href='names/TaskPriorityChangeEvent.html'>TaskPriorityChangeEvent</a></code> in <a href="https://wicg.github.io/scheduling-apis/">Prioritized Task Scheduling</a></li>
<li>used on interface <code><a href='names/TaskController.html'>TaskController</a></code> in <a href="https://wicg.github.io/scheduling-apis/">Prioritized Task Scheduling</a></li>
<li>used on interface <code><a href='names/TaskSignal.html'>TaskSignal</a></code> in <a href="https://wicg.github.io/scheduling-apis/">Prioritized Task Scheduling</a></li>
<li>used on interface <code><a href='names/FragmentDirective.html'>FragmentDirective</a></code> in <a href="https://wicg.github.io/scroll-to-text-fragment/">URL Fragment Text Directives</a></li>
<li>used on interface <code><a href='names/Serial.html'>Serial</a></code> in <a href="https://wicg.github.io/serial/">Web Serial API</a></li>
<li>used on operation <code><a href='names/Serial.html'>Serial</a>.requestPort</code> in <a href="https://wicg.github.io/serial/">Web Serial API</a></li>
<li>used on interface <code><a href='names/SerialPort.html'>SerialPort</a></code> in <a href="https://wicg.github.io/serial/">Web Serial API</a></li>
<li>used on interface <code><a href='names/FaceDetector.html'>FaceDetector</a></code> in <a href="https://wicg.github.io/shape-detection-api/">Accelerated Shape Detection in Images</a></li>
<li>used on interface <code><a href='names/BarcodeDetector.html'>BarcodeDetector</a></code> in <a href="https://wicg.github.io/shape-detection-api/">Accelerated Shape Detection in Images</a></li>
<li>used on interface <code><a href='names/TextDetector.html'>TextDetector</a></code> in <a href="https://wicg.github.io/shape-detection-api/text.html">Accelerated Text Detection in Images</a></li>
<li>used on interface <code><a href='names/SharedStorageWorklet.html'>SharedStorageWorklet</a></code> in <a href="https://wicg.github.io/shared-storage/">Shared Storage API</a></li>
<li>used on interface <code><a href='names/SharedStorageWorkletGlobalScope.html'>SharedStorageWorkletGlobalScope</a></code> in <a href="https://wicg.github.io/shared-storage/">Shared Storage API</a></li>
<li>used on interface <code><a href='names/SharedStorage.html'>SharedStorage</a></code> in <a href="https://wicg.github.io/shared-storage/">Shared Storage API</a></li>
<li>used on operation <code><a href='names/SharedStorage.html'>SharedStorage</a>.selectURL</code> in <a href="https://wicg.github.io/shared-storage/">Shared Storage API</a></li>
<li>used on operation <code><a href='names/SharedStorage.html'>SharedStorage</a>.run</code> in <a href="https://wicg.github.io/shared-storage/">Shared Storage API</a></li>
<li>used on operation <code><a href='names/SharedStorage.html'>SharedStorage</a>.createWorklet</code> in <a href="https://wicg.github.io/shared-storage/">Shared Storage API</a></li>
<li>used on attribute <code><a href='names/SharedStorage.html'>SharedStorage</a>.worklet</code> in <a href="https://wicg.github.io/shared-storage/">Shared Storage API</a></li>
<li>used on operation <code><a href='names/SharedStorage.html'>SharedStorage</a>.get</code> in <a href="https://wicg.github.io/shared-storage/">Shared Storage API</a></li>
<li>used on operation <code><a href='names/SharedStorage.html'>SharedStorage</a>.length</code> in <a href="https://wicg.github.io/shared-storage/">Shared Storage API</a></li>
<li>used on operation <code><a href='names/SharedStorage.html'>SharedStorage</a>.remainingBudget</code> in <a href="https://wicg.github.io/shared-storage/">Shared Storage API</a></li>
<li>used on iterable <code><a href='names/SharedStorage.html'>SharedStorage</a></code> in <a href="https://wicg.github.io/shared-storage/">Shared Storage API</a></li>
<li>used on interface <code><a href='names/SpeechRecognition.html'>SpeechRecognition</a></code> in <a href="https://wicg.github.io/speech-api/">Web Speech API</a></li>
<li>used on interface <code><a href='names/SpeechRecognitionErrorEvent.html'>SpeechRecognitionErrorEvent</a></code> in <a href="https://wicg.github.io/speech-api/">Web Speech API</a></li>
<li>used on interface <code><a href='names/SpeechRecognitionAlternative.html'>SpeechRecognitionAlternative</a></code> in <a href="https://wicg.github.io/speech-api/">Web Speech API</a></li>
<li>used on interface <code><a href='names/SpeechRecognitionResult.html'>SpeechRecognitionResult</a></code> in <a href="https://wicg.github.io/speech-api/">Web Speech API</a></li>
<li>used on interface <code><a href='names/SpeechRecognitionResultList.html'>SpeechRecognitionResultList</a></code> in <a href="https://wicg.github.io/speech-api/">Web Speech API</a></li>
<li>used on interface <code><a href='names/SpeechRecognitionEvent.html'>SpeechRecognitionEvent</a></code> in <a href="https://wicg.github.io/speech-api/">Web Speech API</a></li>
<li>used on interface <code><a href='names/SpeechGrammar.html'>SpeechGrammar</a></code> in <a href="https://wicg.github.io/speech-api/">Web Speech API</a></li>
<li>used on interface <code><a href='names/SpeechGrammarList.html'>SpeechGrammarList</a></code> in <a href="https://wicg.github.io/speech-api/">Web Speech API</a></li>
<li>used on interface <code><a href='names/SpeechSynthesis.html'>SpeechSynthesis</a></code> in <a href="https://wicg.github.io/speech-api/">Web Speech API</a></li>
<li>used on interface <code><a href='names/SpeechSynthesisUtterance.html'>SpeechSynthesisUtterance</a></code> in <a href="https://wicg.github.io/speech-api/">Web Speech API</a></li>
<li>used on interface <code><a href='names/SpeechSynthesisEvent.html'>SpeechSynthesisEvent</a></code> in <a href="https://wicg.github.io/speech-api/">Web Speech API</a></li>
<li>used on interface <code><a href='names/SpeechSynthesisErrorEvent.html'>SpeechSynthesisErrorEvent</a></code> in <a href="https://wicg.github.io/speech-api/">Web Speech API</a></li>
<li>used on interface <code><a href='names/SpeechSynthesisVoice.html'>SpeechSynthesisVoice</a></code> in <a href="https://wicg.github.io/speech-api/">Web Speech API</a></li>
<li>used on interface <code><a href='names/StorageBucketManager.html'>StorageBucketManager</a></code> in <a href="https://wicg.github.io/storage-buckets/">Storage Buckets API</a></li>
<li>used on interface <code><a href='names/StorageBucket.html'>StorageBucket</a></code> in <a href="https://wicg.github.io/storage-buckets/">Storage Buckets API</a></li>
<li>used on operation <code><a href='names/StorageBucket.html'>StorageBucket</a>.persist</code> in <a href="https://wicg.github.io/storage-buckets/">Storage Buckets API</a></li>
<li>used on interface <code><a href='names/InterestGroupScriptRunnerGlobalScope.html'>InterestGroupScriptRunnerGlobalScope</a></code> in <a href="https://wicg.github.io/turtledove/">Protected Audience (formerly FLEDGE)</a></li>
<li>used on interface <code><a href='names/ForDebuggingOnly.html'>ForDebuggingOnly</a></code> in <a href="https://wicg.github.io/turtledove/">Protected Audience (formerly FLEDGE)</a></li>
<li>used on interface <code><a href='names/RealTimeReporting.html'>RealTimeReporting</a></code> in <a href="https://wicg.github.io/turtledove/">Protected Audience (formerly FLEDGE)</a></li>
<li>used on interface <code><a href='names/InterestGroupBiddingAndScoringScriptRunnerGlobalScope.html'>InterestGroupBiddingAndScoringScriptRunnerGlobalScope</a></code> in <a href="https://wicg.github.io/turtledove/">Protected Audience (formerly FLEDGE)</a></li>
<li>used on interface <code><a href='names/InterestGroupBiddingScriptRunnerGlobalScope.html'>InterestGroupBiddingScriptRunnerGlobalScope</a></code> in <a href="https://wicg.github.io/turtledove/">Protected Audience (formerly FLEDGE)</a></li>
<li>used on interface <code><a href='names/InterestGroupScoringScriptRunnerGlobalScope.html'>InterestGroupScoringScriptRunnerGlobalScope</a></code> in <a href="https://wicg.github.io/turtledove/">Protected Audience (formerly FLEDGE)</a></li>
<li>used on interface <code><a href='names/InterestGroupReportingScriptRunnerGlobalScope.html'>InterestGroupReportingScriptRunnerGlobalScope</a></code> in <a href="https://wicg.github.io/turtledove/">Protected Audience (formerly FLEDGE)</a></li>
<li>used on interface <code><a href='names/ProtectedAudience.html'>ProtectedAudience</a></code> in <a href="https://wicg.github.io/turtledove/">Protected Audience (formerly FLEDGE)</a></li>
<li>used on interface <code><a href='names/NavigatorUAData.html'>NavigatorUAData</a></code> in <a href="https://wicg.github.io/ua-client-hints/">User-Agent Client Hints</a></li>
<li>used on interface <code><a href='names/LaunchParams.html'>LaunchParams</a></code> in <a href="https://wicg.github.io/web-app-launch/">Web App Launch Handler API</a></li>
<li>used on interface <code><a href='names/LaunchQueue.html'>LaunchQueue</a></code> in <a href="https://wicg.github.io/web-app-launch/">Web App Launch Handler API</a></li>
<li>used on interface <code><a href='names/OTPCredential.html'>OTPCredential</a></code> in <a href="https://wicg.github.io/web-otp/">WebOTP API</a></li>
<li>used on interface <code><a href='names/NavigatorManagedData.html'>NavigatorManagedData</a></code> in <a href="https://wicg.github.io/WebApiDevice/managed_config/">Managed Configuration API</a></li>
<li>used on interface <code><a href='names/HID.html'>HID</a></code> in <a href="https://wicg.github.io/webhid/">WebHID API</a></li>
<li>used on operation <code><a href='names/HID.html'>HID</a>.requestDevice</code> in <a href="https://wicg.github.io/webhid/">WebHID API</a></li>
<li>used on interface <code><a href='names/HIDDevice.html'>HIDDevice</a></code> in <a href="https://wicg.github.io/webhid/">WebHID API</a></li>
<li>used on interface <code><a href='names/HIDConnectionEvent.html'>HIDConnectionEvent</a></code> in <a href="https://wicg.github.io/webhid/">WebHID API</a></li>
<li>used on interface <code><a href='names/HIDInputReportEvent.html'>HIDInputReportEvent</a></code> in <a href="https://wicg.github.io/webhid/">WebHID API</a></li>
<li>used on interface <code><a href='names/USB.html'>USB</a></code> in <a href="https://wicg.github.io/webusb/">WebUSB API</a></li>
<li>used on operation <code><a href='names/USB.html'>USB</a>.requestDevice</code> in <a href="https://wicg.github.io/webusb/">WebUSB API</a></li>
<li>used on interface <code><a href='names/USBConnectionEvent.html'>USBConnectionEvent</a></code> in <a href="https://wicg.github.io/webusb/">WebUSB API</a></li>
<li>used on interface <code><a href='names/USBInTransferResult.html'>USBInTransferResult</a></code> in <a href="https://wicg.github.io/webusb/">WebUSB API</a></li>
<li>used on interface <code><a href='names/USBOutTransferResult.html'>USBOutTransferResult</a></code> in <a href="https://wicg.github.io/webusb/">WebUSB API</a></li>
<li>used on interface <code><a href='names/USBIsochronousInTransferPacket.html'>USBIsochronousInTransferPacket</a></code> in <a href="https://wicg.github.io/webusb/">WebUSB API</a></li>
<li>used on interface <code><a href='names/USBIsochronousInTransferResult.html'>USBIsochronousInTransferResult</a></code> in <a href="https://wicg.github.io/webusb/">WebUSB API</a></li>
<li>used on interface <code><a href='names/USBIsochronousOutTransferPacket.html'>USBIsochronousOutTransferPacket</a></code> in <a href="https://wicg.github.io/webusb/">WebUSB API</a></li>
<li>used on interface <code><a href='names/USBIsochronousOutTransferResult.html'>USBIsochronousOutTransferResult</a></code> in <a href="https://wicg.github.io/webusb/">WebUSB API</a></li>
<li>used on interface <code><a href='names/USBDevice.html'>USBDevice</a></code> in <a href="https://wicg.github.io/webusb/">WebUSB API</a></li>
<li>used on interface <code><a href='names/USBConfiguration.html'>USBConfiguration</a></code> in <a href="https://wicg.github.io/webusb/">WebUSB API</a></li>
<li>used on interface <code><a href='names/USBInterface.html'>USBInterface</a></code> in <a href="https://wicg.github.io/webusb/">WebUSB API</a></li>
<li>used on interface <code><a href='names/USBAlternateInterface.html'>USBAlternateInterface</a></code> in <a href="https://wicg.github.io/webusb/">WebUSB API</a></li>
<li>used on interface <code><a href='names/USBEndpoint.html'>USBEndpoint</a></code> in <a href="https://wicg.github.io/webusb/">WebUSB API</a></li>
<li>used on interface <code><a href='names/USBPermissionResult.html'>USBPermissionResult</a></code> in <a href="https://wicg.github.io/webusb/">WebUSB API</a></li>
<li>used on interface <code><a href='names/WindowControlsOverlay.html'>WindowControlsOverlay</a></code> in <a href="https://wicg.github.io/window-controls-overlay/">Window Controls Overlay</a></li>
<li>used on interface <code><a href='names/WindowControlsOverlayGeometryChangeEvent.html'>WindowControlsOverlayGeometryChangeEvent</a></code> in <a href="https://wicg.github.io/window-controls-overlay/">Window Controls Overlay</a></li>
<li>used on interface <code><a href='names/Accelerometer.html'>Accelerometer</a></code> in <a href="https://www.w3.org/TR/accelerometer/">Accelerometer</a></li>
<li>used on interface <code><a href='names/LinearAccelerationSensor.html'>LinearAccelerationSensor</a></code> in <a href="https://www.w3.org/TR/accelerometer/">Accelerometer</a></li>
<li>used on interface <code><a href='names/GravitySensor.html'>GravitySensor</a></code> in <a href="https://www.w3.org/TR/accelerometer/">Accelerometer</a></li>
<li>used on interface <code><a href='names/AmbientLightSensor.html'>AmbientLightSensor</a></code> in <a href="https://www.w3.org/TR/ambient-light/">Ambient Light Sensor</a></li>
<li>used on interface <code><a href='names/AudioSession.html'>AudioSession</a></code> in <a href="https://www.w3.org/TR/audio-session/">Audio Session</a></li>
<li>used on interface <code><a href='names/BatteryManager.html'>BatteryManager</a></code> in <a href="https://www.w3.org/TR/battery-status/">Battery Status API</a></li>
<li>used on interface <code><a href='names/ClipboardEvent.html'>ClipboardEvent</a></code> in <a href="https://www.w3.org/TR/clipboard-apis/">Clipboard API and events</a></li>
<li>used on interface <code><a href='names/ClipboardItem.html'>ClipboardItem</a></code> in <a href="https://www.w3.org/TR/clipboard-apis/">Clipboard API and events</a></li>
<li>used on interface <code><a href='names/Clipboard.html'>Clipboard</a></code> in <a href="https://www.w3.org/TR/clipboard-apis/">Clipboard API and events</a></li>
<li>used on interface <code><a href='names/PressureObserver.html'>PressureObserver</a></code> in <a href="https://www.w3.org/TR/compute-pressure/">Compute Pressure Level 1</a></li>
<li>used on interface <code><a href='names/PressureRecord.html'>PressureRecord</a></code> in <a href="https://www.w3.org/TR/compute-pressure/">Compute Pressure Level 1</a></li>
<li>used on interface <code><a href='names/ContactAddress.html'>ContactAddress</a></code> in <a href="https://www.w3.org/TR/contact-picker/">Contact Picker API</a></li>
<li>used on interface <code><a href='names/ContactsManager.html'>ContactsManager</a></code> in <a href="https://www.w3.org/TR/contact-picker/">Contact Picker API</a></li>
<li>used on interface <code><a href='names/Credential.html'>Credential</a></code> in <a href="https://www.w3.org/TR/credential-management-1/">Credential Management Level 1</a></li>
<li>used on interface <code><a href='names/CredentialsContainer.html'>CredentialsContainer</a></code> in <a href="https://www.w3.org/TR/credential-management-1/">Credential Management Level 1</a></li>
<li>used on interface <code><a href='names/PasswordCredential.html'>PasswordCredential</a></code> in <a href="https://www.w3.org/TR/credential-management-1/">Credential Management Level 1</a></li>
<li>used on interface <code><a href='names/FederatedCredential.html'>FederatedCredential</a></code> in <a href="https://www.w3.org/TR/credential-management-1/">Credential Management Level 1</a></li>
<li>used on interface <code><a href='names/CSPViolationReportBody.html'>CSPViolationReportBody</a></code> in <a href="https://www.w3.org/TR/CSP3/">Content Security Policy Level 3</a></li>
<li>used on interface <code><a href='names/SecurityPolicyViolationEvent.html'>SecurityPolicyViolationEvent</a></code> in <a href="https://www.w3.org/TR/CSP3/">Content Security Policy Level 3</a></li>
<li>used on interface <code><a href='names/CSSPositionTryRule.html'>CSSPositionTryRule</a></code> in <a href="https://www.w3.org/TR/css-anchor-position-1/">CSS Anchor Positioning</a></li>
<li>used on interface <code><a href='names/CSSPositionTryDescriptors.html'>CSSPositionTryDescriptors</a></code> in <a href="https://www.w3.org/TR/css-anchor-position-1/">CSS Anchor Positioning</a></li>
<li>used on interface <code><a href='names/AnimationWorkletGlobalScope.html'>AnimationWorkletGlobalScope</a></code> in <a href="https://www.w3.org/TR/css-animation-worklet-1/">CSS Animation Worklet API</a></li>
<li>used on interface <code><a href='names/WorkletAnimationEffect.html'>WorkletAnimationEffect</a></code> in <a href="https://www.w3.org/TR/css-animation-worklet-1/">CSS Animation Worklet API</a></li>
<li>used on interface <code><a href='names/WorkletAnimation.html'>WorkletAnimation</a></code> in <a href="https://www.w3.org/TR/css-animation-worklet-1/">CSS Animation Worklet API</a></li>
<li>used on interface <code><a href='names/WorkletGroupEffect.html'>WorkletGroupEffect</a></code> in <a href="https://www.w3.org/TR/css-animation-worklet-1/">CSS Animation Worklet API</a></li>
<li>used on interface <code><a href='names/AnimationEvent.html'>AnimationEvent</a></code> in <a href="https://www.w3.org/TR/css-animations-1/">CSS Animations Level 1</a></li>
<li>used on interface <code><a href='names/CSSKeyframeRule.html'>CSSKeyframeRule</a></code> in <a href="https://www.w3.org/TR/css-animations-1/">CSS Animations Level 1</a></li>
<li>used on interface <code><a href='names/CSSKeyframesRule.html'>CSSKeyframesRule</a></code> in <a href="https://www.w3.org/TR/css-animations-1/">CSS Animations Level 1</a></li>
<li>used on interface <code><a href='names/CSSAnimation.html'>CSSAnimation</a></code> in <a href="https://www.w3.org/TR/css-animations-2/">CSS Animations Level 2</a></li>
<li>used on interface <code><a href='names/CSSLayerBlockRule.html'>CSSLayerBlockRule</a></code> in <a href="https://www.w3.org/TR/css-cascade-5/">CSS Cascading and Inheritance Level 5</a></li>
<li>used on interface <code><a href='names/CSSLayerStatementRule.html'>CSSLayerStatementRule</a></code> in <a href="https://www.w3.org/TR/css-cascade-5/">CSS Cascading and Inheritance Level 5</a></li>
<li>used on interface <code><a href='names/CSSScopeRule.html'>CSSScopeRule</a></code> in <a href="https://www.w3.org/TR/css-cascade-6/">CSS Cascading and Inheritance Level 6</a></li>
<li>used on interface <code><a href='names/CSSColorProfileRule.html'>CSSColorProfileRule</a></code> in <a href="https://www.w3.org/TR/css-color-5/">CSS Color Module Level 5</a></li>
<li>used on interface <code><a href='names/CSSConditionRule.html'>CSSConditionRule</a></code> in <a href="https://www.w3.org/TR/css-conditional-3/">CSS Conditional Rules Module Level 3</a></li>
<li>used on interface <code><a href='names/CSSMediaRule.html'>CSSMediaRule</a></code> in <a href="https://www.w3.org/TR/css-conditional-3/">CSS Conditional Rules Module Level 3</a></li>
<li>used on interface <code><a href='names/CSSSupportsRule.html'>CSSSupportsRule</a></code> in <a href="https://www.w3.org/TR/css-conditional-3/">CSS Conditional Rules Module Level 3</a></li>
<li>used on interface <code><a href='names/CSSContainerRule.html'>CSSContainerRule</a></code> in <a href="https://www.w3.org/TR/css-conditional-5/">CSS Conditional Rules Module Level 5</a></li>
<li>used on interface <code><a href='names/ContentVisibilityAutoStateChangeEvent.html'>ContentVisibilityAutoStateChangeEvent</a></code> in <a href="https://www.w3.org/TR/css-contain-2/">CSS Containment Module Level 2</a></li>
<li>used on interface <code><a href='names/CSSCounterStyleRule.html'>CSSCounterStyleRule</a></code> in <a href="https://www.w3.org/TR/css-counter-styles-3/">CSS Counter Styles Level 3</a></li>
<li>used on interface <code><a href='names/FontFace.html'>FontFace</a></code> in <a href="https://www.w3.org/TR/css-font-loading-3/">CSS Font Loading Module Level 3</a></li>
<li>used on interface <code><a href='names/FontFaceFeatures.html'>FontFaceFeatures</a></code> in <a href="https://www.w3.org/TR/css-font-loading-3/">CSS Font Loading Module Level 3</a></li>
<li>used on interface <code><a href='names/FontFaceVariationAxis.html'>FontFaceVariationAxis</a></code> in <a href="https://www.w3.org/TR/css-font-loading-3/">CSS Font Loading Module Level 3</a></li>
<li>used on interface <code><a href='names/FontFaceVariations.html'>FontFaceVariations</a></code> in <a href="https://www.w3.org/TR/css-font-loading-3/">CSS Font Loading Module Level 3</a></li>
<li>used on interface <code><a href='names/FontFacePalette.html'>FontFacePalette</a></code> in <a href="https://www.w3.org/TR/css-font-loading-3/">CSS Font Loading Module Level 3</a></li>
<li>used on interface <code><a href='names/FontFacePalettes.html'>FontFacePalettes</a></code> in <a href="https://www.w3.org/TR/css-font-loading-3/">CSS Font Loading Module Level 3</a></li>
<li>used on interface <code><a href='names/FontFaceSetLoadEvent.html'>FontFaceSetLoadEvent</a></code> in <a href="https://www.w3.org/TR/css-font-loading-3/">CSS Font Loading Module Level 3</a></li>
<li>used on interface <code><a href='names/FontFaceSet.html'>FontFaceSet</a></code> in <a href="https://www.w3.org/TR/css-font-loading-3/">CSS Font Loading Module Level 3</a></li>
<li>used on interface <code><a href='names/CSSFontFaceDescriptors.html'>CSSFontFaceDescriptors</a></code> in <a href="https://www.w3.org/TR/css-fonts-4/">CSS Fonts Module Level 4</a></li>
<li>used on interface <code><a href='names/CSSFontFaceRule.html'>CSSFontFaceRule</a></code> in <a href="https://www.w3.org/TR/css-fonts-4/">CSS Fonts Module Level 4</a></li>
<li>used on interface <code><a href='names/CSSFontFeatureValuesRule.html'>CSSFontFeatureValuesRule</a></code> in <a href="https://www.w3.org/TR/css-fonts-4/">CSS Fonts Module Level 4</a></li>
<li>used on interface <code><a href='names/CSSFontFeatureValuesMap.html'>CSSFontFeatureValuesMap</a></code> in <a href="https://www.w3.org/TR/css-fonts-4/">CSS Fonts Module Level 4</a></li>
<li>used on interface <code><a href='names/CSSFontPaletteValuesRule.html'>CSSFontPaletteValuesRule</a></code> in <a href="https://www.w3.org/TR/css-fonts-4/">CSS Fonts Module Level 4</a></li>
<li>used on interface <code><a href='names/Highlight.html'>Highlight</a></code> in <a href="https://www.w3.org/TR/css-highlight-api-1/">CSS Custom Highlight API Module Level 1</a></li>
<li>used on interface <code><a href='names/HighlightRegistry.html'>HighlightRegistry</a></code> in <a href="https://www.w3.org/TR/css-highlight-api-1/">CSS Custom Highlight API Module Level 1</a></li>
<li>used on interface <code><a href='names/LayoutWorkletGlobalScope.html'>LayoutWorkletGlobalScope</a></code> in <a href="https://www.w3.org/TR/css-layout-api-1/">CSS Layout API Level 1</a></li>
<li>used on interface <code><a href='names/LayoutChild.html'>LayoutChild</a></code> in <a href="https://www.w3.org/TR/css-layout-api-1/">CSS Layout API Level 1</a></li>
<li>used on interface <code><a href='names/LayoutFragment.html'>LayoutFragment</a></code> in <a href="https://www.w3.org/TR/css-layout-api-1/">CSS Layout API Level 1</a></li>
<li>used on interface <code><a href='names/IntrinsicSizes.html'>IntrinsicSizes</a></code> in <a href="https://www.w3.org/TR/css-layout-api-1/">CSS Layout API Level 1</a></li>
<li>used on interface <code><a href='names/LayoutConstraints.html'>LayoutConstraints</a></code> in <a href="https://www.w3.org/TR/css-layout-api-1/">CSS Layout API Level 1</a></li>
<li>used on interface <code><a href='names/ChildBreakToken.html'>ChildBreakToken</a></code> in <a href="https://www.w3.org/TR/css-layout-api-1/">CSS Layout API Level 1</a></li>
<li>used on interface <code><a href='names/BreakToken.html'>BreakToken</a></code> in <a href="https://www.w3.org/TR/css-layout-api-1/">CSS Layout API Level 1</a></li>
<li>used on interface <code><a href='names/LayoutEdges.html'>LayoutEdges</a></code> in <a href="https://www.w3.org/TR/css-layout-api-1/">CSS Layout API Level 1</a></li>
<li>used on interface <code><a href='names/FragmentResult.html'>FragmentResult</a></code> in <a href="https://www.w3.org/TR/css-layout-api-1/">CSS Layout API Level 1</a></li>
<li>used on interface <code><a href='names/SVGClipPathElement.html'>SVGClipPathElement</a></code> in <a href="https://www.w3.org/TR/css-masking-1/">CSS Masking Module Level 1</a></li>
<li>used on interface <code><a href='names/SVGMaskElement.html'>SVGMaskElement</a></code> in <a href="https://www.w3.org/TR/css-masking-1/">CSS Masking Module Level 1</a></li>
<li>used on interface <code><a href='names/NavigationEvent.html'>NavigationEvent</a></code> in <a href="https://www.w3.org/TR/css-nav-1/">CSS Spatial Navigation Level 1</a></li>
<li>used on interface <code><a href='names/CSSNestedDeclarations.html'>CSSNestedDeclarations</a></code> in <a href="https://www.w3.org/TR/css-nesting-1/">CSS Nesting Module</a></li>
<li>used on interface <code><a href='names/PaintWorkletGlobalScope.html'>PaintWorkletGlobalScope</a></code> in <a href="https://www.w3.org/TR/css-paint-api-1/">CSS Painting API Level 1</a></li>
<li>used on interface <code><a href='names/PaintRenderingContext2D.html'>PaintRenderingContext2D</a></code> in <a href="https://www.w3.org/TR/css-paint-api-1/">CSS Painting API Level 1</a></li>
<li>used on interface <code><a href='names/PaintSize.html'>PaintSize</a></code> in <a href="https://www.w3.org/TR/css-paint-api-1/">CSS Painting API Level 1</a></li>
<li>used on interface <code><a href='names/CSSPropertyRule.html'>CSSPropertyRule</a></code> in <a href="https://www.w3.org/TR/css-properties-values-api-1/">CSS Properties and Values API Level 1</a></li>
<li>used on interface <code><a href='names/CSSPseudoElement.html'>CSSPseudoElement</a></code> in <a href="https://www.w3.org/TR/css-pseudo-4/">CSS Pseudo-Elements Module Level 4</a></li>
<li>used on interface <code><a href='names/NamedFlowMap.html'>NamedFlowMap</a></code> in <a href="https://www.w3.org/TR/css-regions-1/">CSS Regions Module Level 1</a></li>
<li>used on interface <code><a href='names/NamedFlow.html'>NamedFlow</a></code> in <a href="https://www.w3.org/TR/css-regions-1/">CSS Regions Module Level 1</a></li>
<li>used on interface <code><a href='names/SnapEvent.html'>SnapEvent</a></code> in <a href="https://www.w3.org/TR/css-scroll-snap-2/">CSS Scroll Snap Module Level 2</a></li>
<li>used on interface <code><a href='names/TransitionEvent.html'>TransitionEvent</a></code> in <a href="https://www.w3.org/TR/css-transitions-1/">CSS Transitions Level 1</a></li>
<li>used on interface <code><a href='names/CSSStartingStyleRule.html'>CSSStartingStyleRule</a></code> in <a href="https://www.w3.org/TR/css-transitions-2/">CSS Transitions Level 2</a></li>
<li>used on interface <code><a href='names/CSSTransition.html'>CSSTransition</a></code> in <a href="https://www.w3.org/TR/css-transitions-2/">CSS Transitions Level 2</a></li>
<li>used on interface <code><a href='names/CSSStyleValue.html'>CSSStyleValue</a></code> in <a href="https://www.w3.org/TR/css-typed-om-1/">CSS Typed OM Level 1</a></li>
<li>used on operation <code><a href='names/CSSStyleValue.html'>CSSStyleValue</a>.parse</code> in <a href="https://www.w3.org/TR/css-typed-om-1/">CSS Typed OM Level 1</a></li>
<li>used on operation <code><a href='names/CSSStyleValue.html'>CSSStyleValue</a>.parseAll</code> in <a href="https://www.w3.org/TR/css-typed-om-1/">CSS Typed OM Level 1</a></li>
<li>used on interface <code><a href='names/StylePropertyMapReadOnly.html'>StylePropertyMapReadOnly</a></code> in <a href="https://www.w3.org/TR/css-typed-om-1/">CSS Typed OM Level 1</a></li>
<li>used on interface <code><a href='names/StylePropertyMap.html'>StylePropertyMap</a></code> in <a href="https://www.w3.org/TR/css-typed-om-1/">CSS Typed OM Level 1</a></li>
<li>used on interface <code><a href='names/CSSUnparsedValue.html'>CSSUnparsedValue</a></code> in <a href="https://www.w3.org/TR/css-typed-om-1/">CSS Typed OM Level 1</a></li>
<li>used on interface <code><a href='names/CSSVariableReferenceValue.html'>CSSVariableReferenceValue</a></code> in <a href="https://www.w3.org/TR/css-typed-om-1/">CSS Typed OM Level 1</a></li>
<li>used on interface <code><a href='names/CSSKeywordValue.html'>CSSKeywordValue</a></code> in <a href="https://www.w3.org/TR/css-typed-om-1/">CSS Typed OM Level 1</a></li>
<li>used on interface <code><a href='names/CSSNumericValue.html'>CSSNumericValue</a></code> in <a href="https://www.w3.org/TR/css-typed-om-1/">CSS Typed OM Level 1</a></li>
<li>used on operation <code><a href='names/CSSNumericValue.html'>CSSNumericValue</a>.parse</code> in <a href="https://www.w3.org/TR/css-typed-om-1/">CSS Typed OM Level 1</a></li>
<li>used on interface <code><a href='names/CSSUnitValue.html'>CSSUnitValue</a></code> in <a href="https://www.w3.org/TR/css-typed-om-1/">CSS Typed OM Level 1</a></li>
<li>used on interface <code><a href='names/CSSMathValue.html'>CSSMathValue</a></code> in <a href="https://www.w3.org/TR/css-typed-om-1/">CSS Typed OM Level 1</a></li>
<li>used on interface <code><a href='names/CSSMathSum.html'>CSSMathSum</a></code> in <a href="https://www.w3.org/TR/css-typed-om-1/">CSS Typed OM Level 1</a></li>
<li>used on interface <code><a href='names/CSSMathProduct.html'>CSSMathProduct</a></code> in <a href="https://www.w3.org/TR/css-typed-om-1/">CSS Typed OM Level 1</a></li>
<li>used on interface <code><a href='names/CSSMathNegate.html'>CSSMathNegate</a></code> in <a href="https://www.w3.org/TR/css-typed-om-1/">CSS Typed OM Level 1</a></li>
<li>used on interface <code><a href='names/CSSMathInvert.html'>CSSMathInvert</a></code> in <a href="https://www.w3.org/TR/css-typed-om-1/">CSS Typed OM Level 1</a></li>
<li>used on interface <code><a href='names/CSSMathMin.html'>CSSMathMin</a></code> in <a href="https://www.w3.org/TR/css-typed-om-1/">CSS Typed OM Level 1</a></li>
<li>used on interface <code><a href='names/CSSMathMax.html'>CSSMathMax</a></code> in <a href="https://www.w3.org/TR/css-typed-om-1/">CSS Typed OM Level 1</a></li>
<li>used on interface <code><a href='names/CSSMathClamp.html'>CSSMathClamp</a></code> in <a href="https://www.w3.org/TR/css-typed-om-1/">CSS Typed OM Level 1</a></li>
<li>used on interface <code><a href='names/CSSNumericArray.html'>CSSNumericArray</a></code> in <a href="https://www.w3.org/TR/css-typed-om-1/">CSS Typed OM Level 1</a></li>
<li>used on interface <code><a href='names/CSSTransformValue.html'>CSSTransformValue</a></code> in <a href="https://www.w3.org/TR/css-typed-om-1/">CSS Typed OM Level 1</a></li>
<li>used on interface <code><a href='names/CSSTransformComponent.html'>CSSTransformComponent</a></code> in <a href="https://www.w3.org/TR/css-typed-om-1/">CSS Typed OM Level 1</a></li>
<li>used on interface <code><a href='names/CSSTranslate.html'>CSSTranslate</a></code> in <a href="https://www.w3.org/TR/css-typed-om-1/">CSS Typed OM Level 1</a></li>
<li>used on interface <code><a href='names/CSSRotate.html'>CSSRotate</a></code> in <a href="https://www.w3.org/TR/css-typed-om-1/">CSS Typed OM Level 1</a></li>
<li>used on interface <code><a href='names/CSSScale.html'>CSSScale</a></code> in <a href="https://www.w3.org/TR/css-typed-om-1/">CSS Typed OM Level 1</a></li>
<li>used on interface <code><a href='names/CSSSkew.html'>CSSSkew</a></code> in <a href="https://www.w3.org/TR/css-typed-om-1/">CSS Typed OM Level 1</a></li>
<li>used on interface <code><a href='names/CSSSkewX.html'>CSSSkewX</a></code> in <a href="https://www.w3.org/TR/css-typed-om-1/">CSS Typed OM Level 1</a></li>
<li>used on interface <code><a href='names/CSSSkewY.html'>CSSSkewY</a></code> in <a href="https://www.w3.org/TR/css-typed-om-1/">CSS Typed OM Level 1</a></li>
<li>used on interface <code><a href='names/CSSPerspective.html'>CSSPerspective</a></code> in <a href="https://www.w3.org/TR/css-typed-om-1/">CSS Typed OM Level 1</a></li>
<li>used on interface <code><a href='names/CSSMatrixComponent.html'>CSSMatrixComponent</a></code> in <a href="https://www.w3.org/TR/css-typed-om-1/">CSS Typed OM Level 1</a></li>
<li>used on interface <code><a href='names/CSSImageValue.html'>CSSImageValue</a></code> in <a href="https://www.w3.org/TR/css-typed-om-1/">CSS Typed OM Level 1</a></li>
<li>used on interface <code><a href='names/CSSColorValue.html'>CSSColorValue</a></code> in <a href="https://www.w3.org/TR/css-typed-om-1/">CSS Typed OM Level 1</a></li>
<li>used on operation <code><a href='names/CSSColorValue.html'>CSSColorValue</a>.parse</code> in <a href="https://www.w3.org/TR/css-typed-om-1/">CSS Typed OM Level 1</a></li>
<li>used on interface <code><a href='names/CSSRGB.html'>CSSRGB</a></code> in <a href="https://www.w3.org/TR/css-typed-om-1/">CSS Typed OM Level 1</a></li>
<li>used on interface <code><a href='names/CSSHSL.html'>CSSHSL</a></code> in <a href="https://www.w3.org/TR/css-typed-om-1/">CSS Typed OM Level 1</a></li>
<li>used on interface <code><a href='names/CSSHWB.html'>CSSHWB</a></code> in <a href="https://www.w3.org/TR/css-typed-om-1/">CSS Typed OM Level 1</a></li>
<li>used on interface <code><a href='names/CSSLab.html'>CSSLab</a></code> in <a href="https://www.w3.org/TR/css-typed-om-1/">CSS Typed OM Level 1</a></li>
<li>used on interface <code><a href='names/CSSLCH.html'>CSSLCH</a></code> in <a href="https://www.w3.org/TR/css-typed-om-1/">CSS Typed OM Level 1</a></li>
<li>used on interface <code><a href='names/CSSOKLab.html'>CSSOKLab</a></code> in <a href="https://www.w3.org/TR/css-typed-om-1/">CSS Typed OM Level 1</a></li>
<li>used on interface <code><a href='names/CSSOKLCH.html'>CSSOKLCH</a></code> in <a href="https://www.w3.org/TR/css-typed-om-1/">CSS Typed OM Level 1</a></li>
<li>used on interface <code><a href='names/CSSColor.html'>CSSColor</a></code> in <a href="https://www.w3.org/TR/css-typed-om-1/">CSS Typed OM Level 1</a></li>
<li>used on interface <code><a href='names/ViewTransition.html'>ViewTransition</a></code> in <a href="https://www.w3.org/TR/css-view-transitions-1/">CSS View Transitions Module Level 1</a></li>
<li>used on interface <code><a href='names/CSSViewTransitionRule.html'>CSSViewTransitionRule</a></code> in <a href="https://www.w3.org/TR/css-view-transitions-2/">CSS View Transitions Module Level 2</a></li>
<li>used on interface <code><a href='names/ViewTransitionTypeSet.html'>ViewTransitionTypeSet</a></code> in <a href="https://www.w3.org/TR/css-view-transitions-2/">CSS View Transitions Module Level 2</a></li>
<li>used on interface <code><a href='names/Viewport.html'>Viewport</a></code> in <a href="https://www.w3.org/TR/css-viewport-1/">CSS Viewport Module Level 1</a></li>
<li>used on interface <code><a href='names/MediaList.html'>MediaList</a></code> in <a href="https://www.w3.org/TR/cssom-1/">CSS Object Model (CSSOM)</a></li>
<li>used on interface <code><a href='names/StyleSheet.html'>StyleSheet</a></code> in <a href="https://www.w3.org/TR/cssom-1/">CSS Object Model (CSSOM)</a></li>
<li>used on interface <code><a href='names/CSSStyleSheet.html'>CSSStyleSheet</a></code> in <a href="https://www.w3.org/TR/cssom-1/">CSS Object Model (CSSOM)</a></li>
<li>used on interface <code><a href='names/StyleSheetList.html'>StyleSheetList</a></code> in <a href="https://www.w3.org/TR/cssom-1/">CSS Object Model (CSSOM)</a></li>
<li>used on interface <code><a href='names/CSSRuleList.html'>CSSRuleList</a></code> in <a href="https://www.w3.org/TR/cssom-1/">CSS Object Model (CSSOM)</a></li>
<li>used on interface <code><a href='names/CSSRule.html'>CSSRule</a></code> in <a href="https://www.w3.org/TR/cssom-1/">CSS Object Model (CSSOM)</a></li>
<li>used on interface <code><a href='names/CSSStyleRule.html'>CSSStyleRule</a></code> in <a href="https://www.w3.org/TR/cssom-1/">CSS Object Model (CSSOM)</a></li>
<li>used on interface <code><a href='names/CSSImportRule.html'>CSSImportRule</a></code> in <a href="https://www.w3.org/TR/cssom-1/">CSS Object Model (CSSOM)</a></li>
<li>used on interface <code><a href='names/CSSGroupingRule.html'>CSSGroupingRule</a></code> in <a href="https://www.w3.org/TR/cssom-1/">CSS Object Model (CSSOM)</a></li>
<li>used on interface <code><a href='names/CSSPageDescriptors.html'>CSSPageDescriptors</a></code> in <a href="https://www.w3.org/TR/cssom-1/">CSS Object Model (CSSOM)</a></li>
<li>used on interface <code><a href='names/CSSPageRule.html'>CSSPageRule</a></code> in <a href="https://www.w3.org/TR/cssom-1/">CSS Object Model (CSSOM)</a></li>
<li>used on interface <code><a href='names/CSSMarginRule.html'>CSSMarginRule</a></code> in <a href="https://www.w3.org/TR/cssom-1/">CSS Object Model (CSSOM)</a></li>
<li>used on interface <code><a href='names/CSSNamespaceRule.html'>CSSNamespaceRule</a></code> in <a href="https://www.w3.org/TR/cssom-1/">CSS Object Model (CSSOM)</a></li>
<li>used on interface <code><a href='names/CSSStyleDeclaration.html'>CSSStyleDeclaration</a></code> in <a href="https://www.w3.org/TR/cssom-1/">CSS Object Model (CSSOM)</a></li>
<li>used on interface <code><a href='names/CSSStyleProperties.html'>CSSStyleProperties</a></code> in <a href="https://www.w3.org/TR/cssom-1/">CSS Object Model (CSSOM)</a></li>
<li>used on namespace <code><a href='names/CSS.html'>CSS</a></code> in <a href="https://www.w3.org/TR/cssom-1/">CSS Object Model (CSSOM)</a></li>
<li>used on interface <code><a href='names/MediaQueryList.html'>MediaQueryList</a></code> in <a href="https://www.w3.org/TR/cssom-view-1/">CSSOM View Module</a></li>
<li>used on interface <code><a href='names/MediaQueryListEvent.html'>MediaQueryListEvent</a></code> in <a href="https://www.w3.org/TR/cssom-view-1/">CSSOM View Module</a></li>
<li>used on interface <code><a href='names/Screen.html'>Screen</a></code> in <a href="https://www.w3.org/TR/cssom-view-1/">CSSOM View Module</a></li>
<li>used on interface <code><a href='names/CaretPosition.html'>CaretPosition</a></code> in <a href="https://www.w3.org/TR/cssom-view-1/">CSSOM View Module</a></li>
<li>used on interface <code><a href='names/VisualViewport.html'>VisualViewport</a></code> in <a href="https://www.w3.org/TR/cssom-view-1/">CSSOM View Module</a></li>
<li>used on interface mixin <code><a href='names/NavigatorDeviceMemory.html'>NavigatorDeviceMemory</a></code> in <a href="https://www.w3.org/TR/device-memory-1/">Device Memory</a></li>
<li>used on interface <code><a href='names/DevicePosture.html'>DevicePosture</a></code> in <a href="https://www.w3.org/TR/device-posture/">Device Posture API</a></li>
<li>used on interface <code><a href='names/XMLSerializer.html'>XMLSerializer</a></code> in <a href="https://www.w3.org/TR/DOM-Parsing/">DOM Parsing and Serialization</a></li>
<li>used on interface <code><a href='names/EditContext.html'>EditContext</a></code> in <a href="https://www.w3.org/TR/edit-context/">EditContext API</a></li>
<li>used on interface <code><a href='names/TextUpdateEvent.html'>TextUpdateEvent</a></code> in <a href="https://www.w3.org/TR/edit-context/">EditContext API</a></li>
<li>used on interface <code><a href='names/TextFormat.html'>TextFormat</a></code> in <a href="https://www.w3.org/TR/edit-context/">EditContext API</a></li>
<li>used on interface <code><a href='names/TextFormatUpdateEvent.html'>TextFormatUpdateEvent</a></code> in <a href="https://www.w3.org/TR/edit-context/">EditContext API</a></li>
<li>used on interface <code><a href='names/CharacterBoundsUpdateEvent.html'>CharacterBoundsUpdateEvent</a></code> in <a href="https://www.w3.org/TR/edit-context/">EditContext API</a></li>
<li>used on interface <code><a href='names/MediaKeySystemAccess.html'>MediaKeySystemAccess</a></code> in <a href="https://www.w3.org/TR/encrypted-media-2/">Encrypted Media Extensions</a></li>
<li>used on interface <code><a href='names/MediaKeys.html'>MediaKeys</a></code> in <a href="https://www.w3.org/TR/encrypted-media-2/">Encrypted Media Extensions</a></li>
<li>used on interface <code><a href='names/MediaKeySession.html'>MediaKeySession</a></code> in <a href="https://www.w3.org/TR/encrypted-media-2/">Encrypted Media Extensions</a></li>
<li>used on interface <code><a href='names/MediaKeyStatusMap.html'>MediaKeyStatusMap</a></code> in <a href="https://www.w3.org/TR/encrypted-media-2/">Encrypted Media Extensions</a></li>
<li>used on interface <code><a href='names/MediaKeyMessageEvent.html'>MediaKeyMessageEvent</a></code> in <a href="https://www.w3.org/TR/encrypted-media-2/">Encrypted Media Extensions</a></li>
<li>used on interface <code><a href='names/MediaEncryptedEvent.html'>MediaEncryptedEvent</a></code> in <a href="https://www.w3.org/TR/encrypted-media-2/">Encrypted Media Extensions</a></li>
<li>used on interface <code><a href='names/EpubReadingSystem.html'>EpubReadingSystem</a></code> in <a href="https://www.w3.org/TR/epub-rs-33/">EPUB Reading Systems 3.3</a></li>
<li>used on interface <code><a href='names/PerformanceEventTiming.html'>PerformanceEventTiming</a></code> in <a href="https://www.w3.org/TR/event-timing/">Event Timing API</a></li>
<li>used on interface <code><a href='names/EventCounts.html'>EventCounts</a></code> in <a href="https://www.w3.org/TR/event-timing/">Event Timing API</a></li>
<li>used on interface <code><a href='names/IdentityCredential.html'>IdentityCredential</a></code> in <a href="https://www.w3.org/TR/fedcm-1/">Federated Credential Management API</a></li>
<li>used on interface <code><a href='names/IdentityProvider.html'>IdentityProvider</a></code> in <a href="https://www.w3.org/TR/fedcm-1/">Federated Credential Management API</a></li>
<li>used on interface <code><a href='names/Blob.html'>Blob</a></code> in <a href="https://www.w3.org/TR/FileAPI/">File API</a></li>
<li>used on interface <code><a href='names/File.html'>File</a></code> in <a href="https://www.w3.org/TR/FileAPI/">File API</a></li>
<li>used on interface <code><a href='names/FileList.html'>FileList</a></code> in <a href="https://www.w3.org/TR/FileAPI/">File API</a></li>
<li>used on interface <code><a href='names/FileReader.html'>FileReader</a></code> in <a href="https://www.w3.org/TR/FileAPI/">File API</a></li>
<li>used on interface <code><a href='names/FileReaderSync.html'>FileReaderSync</a></code> in <a href="https://www.w3.org/TR/FileAPI/">File API</a></li>
<li>used on interface <code><a href='names/SVGFilterElement.html'>SVGFilterElement</a></code> in <a href="https://www.w3.org/TR/filter-effects-1/">Filter Effects Module Level 1</a></li>
<li>used on interface <code><a href='names/SVGFEBlendElement.html'>SVGFEBlendElement</a></code> in <a href="https://www.w3.org/TR/filter-effects-1/">Filter Effects Module Level 1</a></li>
<li>used on interface <code><a href='names/SVGFEColorMatrixElement.html'>SVGFEColorMatrixElement</a></code> in <a href="https://www.w3.org/TR/filter-effects-1/">Filter Effects Module Level 1</a></li>
<li>used on interface <code><a href='names/SVGFEComponentTransferElement.html'>SVGFEComponentTransferElement</a></code> in <a href="https://www.w3.org/TR/filter-effects-1/">Filter Effects Module Level 1</a></li>
<li>used on interface <code><a href='names/SVGComponentTransferFunctionElement.html'>SVGComponentTransferFunctionElement</a></code> in <a href="https://www.w3.org/TR/filter-effects-1/">Filter Effects Module Level 1</a></li>
<li>used on interface <code><a href='names/SVGFEFuncRElement.html'>SVGFEFuncRElement</a></code> in <a href="https://www.w3.org/TR/filter-effects-1/">Filter Effects Module Level 1</a></li>
<li>used on interface <code><a href='names/SVGFEFuncGElement.html'>SVGFEFuncGElement</a></code> in <a href="https://www.w3.org/TR/filter-effects-1/">Filter Effects Module Level 1</a></li>
<li>used on interface <code><a href='names/SVGFEFuncBElement.html'>SVGFEFuncBElement</a></code> in <a href="https://www.w3.org/TR/filter-effects-1/">Filter Effects Module Level 1</a></li>
<li>used on interface <code><a href='names/SVGFEFuncAElement.html'>SVGFEFuncAElement</a></code> in <a href="https://www.w3.org/TR/filter-effects-1/">Filter Effects Module Level 1</a></li>
<li>used on interface <code><a href='names/SVGFECompositeElement.html'>SVGFECompositeElement</a></code> in <a href="https://www.w3.org/TR/filter-effects-1/">Filter Effects Module Level 1</a></li>
<li>used on interface <code><a href='names/SVGFEConvolveMatrixElement.html'>SVGFEConvolveMatrixElement</a></code> in <a href="https://www.w3.org/TR/filter-effects-1/">Filter Effects Module Level 1</a></li>
<li>used on interface <code><a href='names/SVGFEDiffuseLightingElement.html'>SVGFEDiffuseLightingElement</a></code> in <a href="https://www.w3.org/TR/filter-effects-1/">Filter Effects Module Level 1</a></li>
<li>used on interface <code><a href='names/SVGFEDistantLightElement.html'>SVGFEDistantLightElement</a></code> in <a href="https://www.w3.org/TR/filter-effects-1/">Filter Effects Module Level 1</a></li>
<li>used on interface <code><a href='names/SVGFEPointLightElement.html'>SVGFEPointLightElement</a></code> in <a href="https://www.w3.org/TR/filter-effects-1/">Filter Effects Module Level 1</a></li>
<li>used on interface <code><a href='names/SVGFESpotLightElement.html'>SVGFESpotLightElement</a></code> in <a href="https://www.w3.org/TR/filter-effects-1/">Filter Effects Module Level 1</a></li>
<li>used on interface <code><a href='names/SVGFEDisplacementMapElement.html'>SVGFEDisplacementMapElement</a></code> in <a href="https://www.w3.org/TR/filter-effects-1/">Filter Effects Module Level 1</a></li>
<li>used on interface <code><a href='names/SVGFEDropShadowElement.html'>SVGFEDropShadowElement</a></code> in <a href="https://www.w3.org/TR/filter-effects-1/">Filter Effects Module Level 1</a></li>
<li>used on interface <code><a href='names/SVGFEFloodElement.html'>SVGFEFloodElement</a></code> in <a href="https://www.w3.org/TR/filter-effects-1/">Filter Effects Module Level 1</a></li>
<li>used on interface <code><a href='names/SVGFEGaussianBlurElement.html'>SVGFEGaussianBlurElement</a></code> in <a href="https://www.w3.org/TR/filter-effects-1/">Filter Effects Module Level 1</a></li>
<li>used on interface <code><a href='names/SVGFEImageElement.html'>SVGFEImageElement</a></code> in <a href="https://www.w3.org/TR/filter-effects-1/">Filter Effects Module Level 1</a></li>
<li>used on interface <code><a href='names/SVGFEMergeElement.html'>SVGFEMergeElement</a></code> in <a href="https://www.w3.org/TR/filter-effects-1/">Filter Effects Module Level 1</a></li>
<li>used on interface <code><a href='names/SVGFEMergeNodeElement.html'>SVGFEMergeNodeElement</a></code> in <a href="https://www.w3.org/TR/filter-effects-1/">Filter Effects Module Level 1</a></li>
<li>used on interface <code><a href='names/SVGFEMorphologyElement.html'>SVGFEMorphologyElement</a></code> in <a href="https://www.w3.org/TR/filter-effects-1/">Filter Effects Module Level 1</a></li>
<li>used on interface <code><a href='names/SVGFEOffsetElement.html'>SVGFEOffsetElement</a></code> in <a href="https://www.w3.org/TR/filter-effects-1/">Filter Effects Module Level 1</a></li>
<li>used on interface <code><a href='names/SVGFESpecularLightingElement.html'>SVGFESpecularLightingElement</a></code> in <a href="https://www.w3.org/TR/filter-effects-1/">Filter Effects Module Level 1</a></li>
<li>used on interface <code><a href='names/SVGFETileElement.html'>SVGFETileElement</a></code> in <a href="https://www.w3.org/TR/filter-effects-1/">Filter Effects Module Level 1</a></li>
<li>used on interface <code><a href='names/SVGFETurbulenceElement.html'>SVGFETurbulenceElement</a></code> in <a href="https://www.w3.org/TR/filter-effects-1/">Filter Effects Module Level 1</a></li>
<li>used on interface <code><a href='names/Gamepad.html'>Gamepad</a></code> in <a href="https://www.w3.org/TR/gamepad/">Gamepad</a></li>
<li>used on interface <code><a href='names/GamepadButton.html'>GamepadButton</a></code> in <a href="https://www.w3.org/TR/gamepad/">Gamepad</a></li>
<li>used on interface <code><a href='names/GamepadHapticActuator.html'>GamepadHapticActuator</a></code> in <a href="https://www.w3.org/TR/gamepad/">Gamepad</a></li>
<li>used on interface <code><a href='names/GamepadEvent.html'>GamepadEvent</a></code> in <a href="https://www.w3.org/TR/gamepad/">Gamepad</a></li>
<li>used on interface <code><a href='names/Sensor.html'>Sensor</a></code> in <a href="https://www.w3.org/TR/generic-sensor/">Generic Sensor API</a></li>
<li>used on interface <code><a href='names/SensorErrorEvent.html'>SensorErrorEvent</a></code> in <a href="https://www.w3.org/TR/generic-sensor/">Generic Sensor API</a></li>
<li>used on interface <code><a href='names/GeolocationSensor.html'>GeolocationSensor</a></code> in <a href="https://www.w3.org/TR/geolocation-sensor/">Geolocation Sensor</a></li>
<li>used on interface <code><a href='names/Geolocation.html'>Geolocation</a></code> in <a href="https://www.w3.org/TR/geolocation/">Geolocation</a></li>
<li>used on interface <code><a href='names/GeolocationPosition.html'>GeolocationPosition</a></code> in <a href="https://www.w3.org/TR/geolocation/">Geolocation</a></li>
<li>used on interface <code><a href='names/GeolocationCoordinates.html'>GeolocationCoordinates</a></code> in <a href="https://www.w3.org/TR/geolocation/">Geolocation</a></li>
<li>used on interface <code><a href='names/GeolocationPositionError.html'>GeolocationPositionError</a></code> in <a href="https://www.w3.org/TR/geolocation/">Geolocation</a></li>
<li>used on interface <code><a href='names/DOMPointReadOnly.html'>DOMPointReadOnly</a></code> in <a href="https://www.w3.org/TR/geometry-1/">Geometry Interfaces Module Level 1</a></li>
<li>used on interface <code><a href='names/DOMPoint.html'>DOMPoint</a></code> in <a href="https://www.w3.org/TR/geometry-1/">Geometry Interfaces Module Level 1</a></li>
<li>used on interface <code><a href='names/DOMRectReadOnly.html'>DOMRectReadOnly</a></code> in <a href="https://www.w3.org/TR/geometry-1/">Geometry Interfaces Module Level 1</a></li>
<li>used on interface <code><a href='names/DOMRect.html'>DOMRect</a></code> in <a href="https://www.w3.org/TR/geometry-1/">Geometry Interfaces Module Level 1</a></li>
<li>used on interface <code><a href='names/DOMRectList.html'>DOMRectList</a></code> in <a href="https://www.w3.org/TR/geometry-1/">Geometry Interfaces Module Level 1</a></li>
<li>used on interface <code><a href='names/DOMQuad.html'>DOMQuad</a></code> in <a href="https://www.w3.org/TR/geometry-1/">Geometry Interfaces Module Level 1</a></li>
<li>used on interface <code><a href='names/DOMMatrixReadOnly.html'>DOMMatrixReadOnly</a></code> in <a href="https://www.w3.org/TR/geometry-1/">Geometry Interfaces Module Level 1</a></li>
<li>used on operation <code><a href='names/DOMMatrixReadOnly.html'>DOMMatrixReadOnly</a></code> in <a href="https://www.w3.org/TR/geometry-1/">Geometry Interfaces Module Level 1</a></li>
<li>used on interface <code><a href='names/DOMMatrix.html'>DOMMatrix</a></code> in <a href="https://www.w3.org/TR/geometry-1/">Geometry Interfaces Module Level 1</a></li>
<li>used on operation <code><a href='names/DOMMatrix.html'>DOMMatrix</a>.setMatrixValue</code> in <a href="https://www.w3.org/TR/geometry-1/">Geometry Interfaces Module Level 1</a></li>
<li>used on interface <code><a href='names/Gyroscope.html'>Gyroscope</a></code> in <a href="https://www.w3.org/TR/gyroscope/">Gyroscope</a></li>
<li>used on interface <code><a href='names/Performance.html'>Performance</a></code> in <a href="https://www.w3.org/TR/hr-time-3/">High Resolution Time</a></li>
<li>used on interface <code><a href='names/ImageCapture.html'>ImageCapture</a></code> in <a href="https://www.w3.org/TR/image-capture/">MediaStream Image Capture</a></li>
<li>used on interface <code><a href='names/IDBRequest.html'>IDBRequest</a></code> in <a href="https://www.w3.org/TR/IndexedDB-3/">Indexed Database API 3.0</a></li>
<li>used on interface <code><a href='names/IDBOpenDBRequest.html'>IDBOpenDBRequest</a></code> in <a href="https://www.w3.org/TR/IndexedDB-3/">Indexed Database API 3.0</a></li>
<li>used on interface <code><a href='names/IDBVersionChangeEvent.html'>IDBVersionChangeEvent</a></code> in <a href="https://www.w3.org/TR/IndexedDB-3/">Indexed Database API 3.0</a></li>
<li>used on interface <code><a href='names/IDBFactory.html'>IDBFactory</a></code> in <a href="https://www.w3.org/TR/IndexedDB-3/">Indexed Database API 3.0</a></li>
<li>used on interface <code><a href='names/IDBDatabase.html'>IDBDatabase</a></code> in <a href="https://www.w3.org/TR/IndexedDB-3/">Indexed Database API 3.0</a></li>
<li>used on interface <code><a href='names/IDBObjectStore.html'>IDBObjectStore</a></code> in <a href="https://www.w3.org/TR/IndexedDB-3/">Indexed Database API 3.0</a></li>
<li>used on interface <code><a href='names/IDBIndex.html'>IDBIndex</a></code> in <a href="https://www.w3.org/TR/IndexedDB-3/">Indexed Database API 3.0</a></li>
<li>used on interface <code><a href='names/IDBKeyRange.html'>IDBKeyRange</a></code> in <a href="https://www.w3.org/TR/IndexedDB-3/">Indexed Database API 3.0</a></li>
<li>used on interface <code><a href='names/IDBCursor.html'>IDBCursor</a></code> in <a href="https://www.w3.org/TR/IndexedDB-3/">Indexed Database API 3.0</a></li>
<li>used on interface <code><a href='names/IDBCursorWithValue.html'>IDBCursorWithValue</a></code> in <a href="https://www.w3.org/TR/IndexedDB-3/">Indexed Database API 3.0</a></li>
<li>used on interface <code><a href='names/IDBTransaction.html'>IDBTransaction</a></code> in <a href="https://www.w3.org/TR/IndexedDB-3/">Indexed Database API 3.0</a></li>
<li>used on interface <code><a href='names/IntersectionObserver.html'>IntersectionObserver</a></code> in <a href="https://www.w3.org/TR/intersection-observer/">Intersection Observer</a></li>
<li>used on interface <code><a href='names/IntersectionObserverEntry.html'>IntersectionObserverEntry</a></code> in <a href="https://www.w3.org/TR/intersection-observer/">Intersection Observer</a></li>
<li>used on interface <code><a href='names/JsonLd.html'>JsonLd</a></code> in <a href="https://www.w3.org/TR/json-ld11-api/">JSON-LD 1.1 Processing Algorithms and API</a></li>
<li>used on interface <code><a href='names/JsonLdProcessor.html'>JsonLdProcessor</a></code> in <a href="https://www.w3.org/TR/json-ld11-api/">JSON-LD 1.1 Processing Algorithms and API</a></li>
<li>used on interface <code><a href='names/RdfDataset.html'>RdfDataset</a></code> in <a href="https://www.w3.org/TR/json-ld11-api/">JSON-LD 1.1 Processing Algorithms and API</a></li>
<li>used on interface <code><a href='names/RdfGraph.html'>RdfGraph</a></code> in <a href="https://www.w3.org/TR/json-ld11-api/">JSON-LD 1.1 Processing Algorithms and API</a></li>
<li>used on interface <code><a href='names/RdfTriple.html'>RdfTriple</a></code> in <a href="https://www.w3.org/TR/json-ld11-api/">JSON-LD 1.1 Processing Algorithms and API</a></li>
<li>used on interface <code><a href='names/RdfLiteral.html'>RdfLiteral</a></code> in <a href="https://www.w3.org/TR/json-ld11-api/">JSON-LD 1.1 Processing Algorithms and API</a></li>
<li>used on interface <code><a href='names/RemoteDocument.html'>RemoteDocument</a></code> in <a href="https://www.w3.org/TR/json-ld11-api/">JSON-LD 1.1 Processing Algorithms and API</a></li>
<li>used on interface <code><a href='names/LargestContentfulPaint.html'>LargestContentfulPaint</a></code> in <a href="https://www.w3.org/TR/largest-contentful-paint/">Largest Contentful Paint</a></li>
<li>used on interface <code><a href='names/PerformanceLongTaskTiming.html'>PerformanceLongTaskTiming</a></code> in <a href="https://www.w3.org/TR/longtasks-1/">Long Tasks API</a></li>
<li>used on interface <code><a href='names/TaskAttributionTiming.html'>TaskAttributionTiming</a></code> in <a href="https://www.w3.org/TR/longtasks-1/">Long Tasks API</a></li>
<li>used on interface <code><a href='names/Magnetometer.html'>Magnetometer</a></code> in <a href="https://www.w3.org/TR/magnetometer/">Magnetometer</a></li>
<li>used on interface <code><a href='names/UncalibratedMagnetometer.html'>UncalibratedMagnetometer</a></code> in <a href="https://www.w3.org/TR/magnetometer/">Magnetometer</a></li>
<li>used on interface <code><a href='names/MathMLElement.html'>MathMLElement</a></code> in <a href="https://www.w3.org/TR/mathml-core/">MathML Core</a></li>
<li>used on interface <code><a href='names/MediaCapabilities.html'>MediaCapabilities</a></code> in <a href="https://www.w3.org/TR/media-capabilities/">Media Capabilities</a></li>
<li>used on interface <code><a href='names/MediaSource.html'>MediaSource</a></code> in <a href="https://www.w3.org/TR/media-source-2/">Media Source Extensions™</a></li>
<li>used on attribute <code><a href='names/MediaSource.html'>MediaSource</a>.handle</code> in <a href="https://www.w3.org/TR/media-source-2/">Media Source Extensions™</a></li>
<li>used on interface <code><a href='names/MediaSourceHandle.html'>MediaSourceHandle</a></code> in <a href="https://www.w3.org/TR/media-source-2/">Media Source Extensions™</a></li>
<li>used on interface <code><a href='names/SourceBuffer.html'>SourceBuffer</a></code> in <a href="https://www.w3.org/TR/media-source-2/">Media Source Extensions™</a></li>
<li>used on interface <code><a href='names/SourceBufferList.html'>SourceBufferList</a></code> in <a href="https://www.w3.org/TR/media-source-2/">Media Source Extensions™</a></li>
<li>used on interface <code><a href='names/ManagedMediaSource.html'>ManagedMediaSource</a></code> in <a href="https://www.w3.org/TR/media-source-2/">Media Source Extensions™</a></li>
<li>used on interface <code><a href='names/BufferedChangeEvent.html'>BufferedChangeEvent</a></code> in <a href="https://www.w3.org/TR/media-source-2/">Media Source Extensions™</a></li>
<li>used on interface <code><a href='names/ManagedSourceBuffer.html'>ManagedSourceBuffer</a></code> in <a href="https://www.w3.org/TR/media-source-2/">Media Source Extensions™</a></li>
<li>used on interface <code><a href='names/CanvasCaptureMediaStreamTrack.html'>CanvasCaptureMediaStreamTrack</a></code> in <a href="https://www.w3.org/TR/mediacapture-fromelement/">Media Capture from DOM Elements</a></li>
<li>used on interface <code><a href='names/CropTarget.html'>CropTarget</a></code> in <a href="https://www.w3.org/TR/mediacapture-region/">Region Capture</a></li>
<li>used on operation <code><a href='names/CropTarget.html'>CropTarget</a>.fromElement</code> in <a href="https://www.w3.org/TR/mediacapture-region/">Region Capture</a></li>
<li>used on interface <code><a href='names/BrowserCaptureMediaStreamTrack.html'>BrowserCaptureMediaStreamTrack</a></code> in <a href="https://www.w3.org/TR/mediacapture-region/">Region Capture</a></li>
<li>used on interface <code><a href='names/MediaStream.html'>MediaStream</a></code> in <a href="https://www.w3.org/TR/mediacapture-streams/">Media Capture and Streams</a></li>
<li>used on interface <code><a href='names/MediaStreamTrack.html'>MediaStreamTrack</a></code> in <a href="https://www.w3.org/TR/mediacapture-streams/">Media Capture and Streams</a></li>
<li>used on interface <code><a href='names/MediaStreamTrackEvent.html'>MediaStreamTrackEvent</a></code> in <a href="https://www.w3.org/TR/mediacapture-streams/">Media Capture and Streams</a></li>
<li>used on interface <code><a href='names/OverconstrainedError.html'>OverconstrainedError</a></code> in <a href="https://www.w3.org/TR/mediacapture-streams/">Media Capture and Streams</a></li>
<li>used on interface <code><a href='names/MediaDevices.html'>MediaDevices</a></code> in <a href="https://www.w3.org/TR/mediacapture-streams/">Media Capture and Streams</a></li>
<li>used on interface <code><a href='names/MediaDeviceInfo.html'>MediaDeviceInfo</a></code> in <a href="https://www.w3.org/TR/mediacapture-streams/">Media Capture and Streams</a></li>
<li>used on interface <code><a href='names/InputDeviceInfo.html'>InputDeviceInfo</a></code> in <a href="https://www.w3.org/TR/mediacapture-streams/">Media Capture and Streams</a></li>
<li>used on interface <code><a href='names/DeviceChangeEvent.html'>DeviceChangeEvent</a></code> in <a href="https://www.w3.org/TR/mediacapture-streams/">Media Capture and Streams</a></li>
<li>used on interface <code><a href='names/MediaStreamTrackProcessor.html'>MediaStreamTrackProcessor</a></code> in <a href="https://www.w3.org/TR/mediacapture-transform/">MediaStreamTrack Insertable Media Processing using Streams</a></li>
<li>used on interface <code><a href='names/VideoTrackGenerator.html'>VideoTrackGenerator</a></code> in <a href="https://www.w3.org/TR/mediacapture-transform/">MediaStreamTrack Insertable Media Processing using Streams</a></li>
<li>used on interface <code><a href='names/PreferenceManager.html'>PreferenceManager</a></code> in <a href="https://www.w3.org/TR/mediaqueries-5/">Media Queries Level 5</a></li>
<li>used on interface <code><a href='names/PreferenceObject.html'>PreferenceObject</a></code> in <a href="https://www.w3.org/TR/mediaqueries-5/">Media Queries Level 5</a></li>
<li>used on interface <code><a href='names/MediaSession.html'>MediaSession</a></code> in <a href="https://www.w3.org/TR/mediasession/">Media Session</a></li>
<li>used on interface <code><a href='names/MediaMetadata.html'>MediaMetadata</a></code> in <a href="https://www.w3.org/TR/mediasession/">Media Session</a></li>
<li>used on interface <code><a href='names/ChapterInformation.html'>ChapterInformation</a></code> in <a href="https://www.w3.org/TR/mediasession/">Media Session</a></li>
<li>used on interface <code><a href='names/MediaRecorder.html'>MediaRecorder</a></code> in <a href="https://www.w3.org/TR/mediastream-recording/">MediaStream Recording</a></li>
<li>used on interface <code><a href='names/BlobEvent.html'>BlobEvent</a></code> in <a href="https://www.w3.org/TR/mediastream-recording/">MediaStream Recording</a></li>
<li>used on interface <code><a href='names/PerformanceNavigationTiming.html'>PerformanceNavigationTiming</a></code> in <a href="https://www.w3.org/TR/navigation-timing-2/">Navigation Timing Level 2</a></li>
<li>used on interface <code><a href='names/PerformanceTiming.html'>PerformanceTiming</a></code> in <a href="https://www.w3.org/TR/navigation-timing-2/">Navigation Timing Level 2</a></li>
<li>used on interface <code><a href='names/PerformanceNavigation.html'>PerformanceNavigation</a></code> in <a href="https://www.w3.org/TR/navigation-timing-2/">Navigation Timing Level 2</a></li>
<li>used on interface <code><a href='names/DeviceOrientationEvent.html'>DeviceOrientationEvent</a></code> in <a href="https://www.w3.org/TR/orientation-event/">Device Orientation and Motion</a></li>
<li>used on interface <code><a href='names/DeviceMotionEventAcceleration.html'>DeviceMotionEventAcceleration</a></code> in <a href="https://www.w3.org/TR/orientation-event/">Device Orientation and Motion</a></li>
<li>used on interface <code><a href='names/DeviceMotionEventRotationRate.html'>DeviceMotionEventRotationRate</a></code> in <a href="https://www.w3.org/TR/orientation-event/">Device Orientation and Motion</a></li>
<li>used on interface <code><a href='names/DeviceMotionEvent.html'>DeviceMotionEvent</a></code> in <a href="https://www.w3.org/TR/orientation-event/">Device Orientation and Motion</a></li>
<li>used on interface <code><a href='names/OrientationSensor.html'>OrientationSensor</a></code> in <a href="https://www.w3.org/TR/orientation-sensor/">Orientation Sensor</a></li>
<li>used on interface <code><a href='names/AbsoluteOrientationSensor.html'>AbsoluteOrientationSensor</a></code> in <a href="https://www.w3.org/TR/orientation-sensor/">Orientation Sensor</a></li>
<li>used on interface <code><a href='names/RelativeOrientationSensor.html'>RelativeOrientationSensor</a></code> in <a href="https://www.w3.org/TR/orientation-sensor/">Orientation Sensor</a></li>
<li>used on interface mixin <code><a href='names/PaintTimingMixin.html'>PaintTimingMixin</a></code> in <a href="https://www.w3.org/TR/paint-timing/">Paint Timing</a></li>
<li>used on interface <code><a href='names/PerformancePaintTiming.html'>PerformancePaintTiming</a></code> in <a href="https://www.w3.org/TR/paint-timing/">Paint Timing</a></li>
<li>used on interface <code><a href='names/PaymentManager.html'>PaymentManager</a></code> in <a href="https://www.w3.org/TR/payment-handler/">Payment Handler API</a></li>
<li>used on interface <code><a href='names/CanMakePaymentEvent.html'>CanMakePaymentEvent</a></code> in <a href="https://www.w3.org/TR/payment-handler/">Payment Handler API</a></li>
<li>used on interface <code><a href='names/PaymentRequestEvent.html'>PaymentRequestEvent</a></code> in <a href="https://www.w3.org/TR/payment-handler/">Payment Handler API</a></li>
<li>used on interface <code><a href='names/PaymentRequest.html'>PaymentRequest</a></code> in <a href="https://www.w3.org/TR/payment-request/">Payment Request API</a></li>
<li>used on interface <code><a href='names/PaymentResponse.html'>PaymentResponse</a></code> in <a href="https://www.w3.org/TR/payment-request/">Payment Request API</a></li>
<li>used on interface <code><a href='names/PaymentMethodChangeEvent.html'>PaymentMethodChangeEvent</a></code> in <a href="https://www.w3.org/TR/payment-request/">Payment Request API</a></li>
<li>used on interface <code><a href='names/PaymentRequestUpdateEvent.html'>PaymentRequestUpdateEvent</a></code> in <a href="https://www.w3.org/TR/payment-request/">Payment Request API</a></li>
<li>used on interface <code><a href='names/PerformanceEntry.html'>PerformanceEntry</a></code> in <a href="https://www.w3.org/TR/performance-timeline/">Performance Timeline</a></li>
<li>used on interface <code><a href='names/PerformanceObserver.html'>PerformanceObserver</a></code> in <a href="https://www.w3.org/TR/performance-timeline/">Performance Timeline</a></li>
<li>used on interface <code><a href='names/PerformanceObserverEntryList.html'>PerformanceObserverEntryList</a></code> in <a href="https://www.w3.org/TR/performance-timeline/">Performance Timeline</a></li>
<li>used on interface <code><a href='names/PermissionsPolicy.html'>PermissionsPolicy</a></code> in <a href="https://www.w3.org/TR/permissions-policy-1/">Permissions Policy</a></li>
<li>used on interface <code><a href='names/PermissionsPolicyViolationReportBody.html'>PermissionsPolicyViolationReportBody</a></code> in <a href="https://www.w3.org/TR/permissions-policy-1/">Permissions Policy</a></li>
<li>used on interface <code><a href='names/Permissions.html'>Permissions</a></code> in <a href="https://www.w3.org/TR/permissions/">Permissions</a></li>
<li>used on interface <code><a href='names/PermissionStatus.html'>PermissionStatus</a></code> in <a href="https://www.w3.org/TR/permissions/">Permissions</a></li>
<li>used on interface <code><a href='names/PictureInPictureWindow.html'>PictureInPictureWindow</a></code> in <a href="https://www.w3.org/TR/picture-in-picture/">Picture-in-Picture</a></li>
<li>used on interface <code><a href='names/PictureInPictureEvent.html'>PictureInPictureEvent</a></code> in <a href="https://www.w3.org/TR/picture-in-picture/">Picture-in-Picture</a></li>
<li>used on interface <code><a href='names/PointerEvent.html'>PointerEvent</a></code> in <a href="https://www.w3.org/TR/pointerevents3/">Pointer Events</a></li>
<li>used on interface <code><a href='names/Presentation.html'>Presentation</a></code> in <a href="https://www.w3.org/TR/presentation-api/">Presentation API</a></li>
<li>used on interface <code><a href='names/PresentationRequest.html'>PresentationRequest</a></code> in <a href="https://www.w3.org/TR/presentation-api/">Presentation API</a></li>
<li>used on interface <code><a href='names/PresentationAvailability.html'>PresentationAvailability</a></code> in <a href="https://www.w3.org/TR/presentation-api/">Presentation API</a></li>
<li>used on interface <code><a href='names/PresentationConnectionAvailableEvent.html'>PresentationConnectionAvailableEvent</a></code> in <a href="https://www.w3.org/TR/presentation-api/">Presentation API</a></li>
<li>used on interface <code><a href='names/PresentationConnection.html'>PresentationConnection</a></code> in <a href="https://www.w3.org/TR/presentation-api/">Presentation API</a></li>
<li>used on interface <code><a href='names/PresentationConnectionCloseEvent.html'>PresentationConnectionCloseEvent</a></code> in <a href="https://www.w3.org/TR/presentation-api/">Presentation API</a></li>
<li>used on interface <code><a href='names/PresentationReceiver.html'>PresentationReceiver</a></code> in <a href="https://www.w3.org/TR/presentation-api/">Presentation API</a></li>
<li>used on interface <code><a href='names/PresentationConnectionList.html'>PresentationConnectionList</a></code> in <a href="https://www.w3.org/TR/presentation-api/">Presentation API</a></li>
<li>used on interface <code><a href='names/ProximitySensor.html'>ProximitySensor</a></code> in <a href="https://www.w3.org/TR/proximity/">Proximity Sensor</a></li>
<li>used on interface <code><a href='names/PushManager.html'>PushManager</a></code> in <a href="https://www.w3.org/TR/push-api/">Push API</a></li>
<li>used on interface <code><a href='names/PushSubscriptionOptions.html'>PushSubscriptionOptions</a></code> in <a href="https://www.w3.org/TR/push-api/">Push API</a></li>
<li>used on interface <code><a href='names/PushSubscription.html'>PushSubscription</a></code> in <a href="https://www.w3.org/TR/push-api/">Push API</a></li>
<li>used on interface <code><a href='names/PushMessageData.html'>PushMessageData</a></code> in <a href="https://www.w3.org/TR/push-api/">Push API</a></li>
<li>used on interface <code><a href='names/PushEvent.html'>PushEvent</a></code> in <a href="https://www.w3.org/TR/push-api/">Push API</a></li>
<li>used on interface <code><a href='names/PushSubscriptionChangeEvent.html'>PushSubscriptionChangeEvent</a></code> in <a href="https://www.w3.org/TR/push-api/">Push API</a></li>
<li>used on interface <code><a href='names/RemotePlayback.html'>RemotePlayback</a></code> in <a href="https://www.w3.org/TR/remote-playback/">Remote Playback API</a></li>
<li>used on interface <code><a href='names/ReportBody.html'>ReportBody</a></code> in <a href="https://www.w3.org/TR/reporting-1/">Reporting API</a></li>
<li>used on interface <code><a href='names/Report.html'>Report</a></code> in <a href="https://www.w3.org/TR/reporting-1/">Reporting API</a></li>
<li>used on interface <code><a href='names/ReportingObserver.html'>ReportingObserver</a></code> in <a href="https://www.w3.org/TR/reporting-1/">Reporting API</a></li>
<li>used on interface <code><a href='names/IdleDeadline.html'>IdleDeadline</a></code> in <a href="https://www.w3.org/TR/requestidlecallback/">requestIdleCallback()</a></li>
<li>used on interface <code><a href='names/ResizeObserver.html'>ResizeObserver</a></code> in <a href="https://www.w3.org/TR/resize-observer-1/">Resize Observer</a></li>
<li>used on interface <code><a href='names/ResizeObserverEntry.html'>ResizeObserverEntry</a></code> in <a href="https://www.w3.org/TR/resize-observer-1/">Resize Observer</a></li>
<li>used on interface <code><a href='names/ResizeObserverSize.html'>ResizeObserverSize</a></code> in <a href="https://www.w3.org/TR/resize-observer-1/">Resize Observer</a></li>
<li>used on interface <code><a href='names/PerformanceResourceTiming.html'>PerformanceResourceTiming</a></code> in <a href="https://www.w3.org/TR/resource-timing/">Resource Timing</a></li>
<li>used on interface <code><a href='names/CaptureController.html'>CaptureController</a></code> in <a href="https://www.w3.org/TR/screen-capture/">Screen Capture</a></li>
<li>used on interface <code><a href='names/ScreenOrientation.html'>ScreenOrientation</a></code> in <a href="https://www.w3.org/TR/screen-orientation/">Screen Orientation</a></li>
<li>used on interface <code><a href='names/WakeLock.html'>WakeLock</a></code> in <a href="https://www.w3.org/TR/screen-wake-lock/">Screen Wake Lock API</a></li>
<li>used on interface <code><a href='names/WakeLockSentinel.html'>WakeLockSentinel</a></code> in <a href="https://www.w3.org/TR/screen-wake-lock/">Screen Wake Lock API</a></li>
<li>used on interface <code><a href='names/ScrollTimeline.html'>ScrollTimeline</a></code> in <a href="https://www.w3.org/TR/scroll-animations-1/">Scroll-driven Animations</a></li>
<li>used on interface <code><a href='names/ViewTimeline.html'>ViewTimeline</a></code> in <a href="https://www.w3.org/TR/scroll-animations-1/">Scroll-driven Animations</a></li>
<li>used on interface <code><a href='names/Selection.html'>Selection</a></code> in <a href="https://www.w3.org/TR/selection-api/">Selection API</a></li>
<li>used on interface <code><a href='names/PerformanceServerTiming.html'>PerformanceServerTiming</a></code> in <a href="https://www.w3.org/TR/server-timing/">Server Timing</a></li>
<li>used on interface <code><a href='names/ServiceWorker.html'>ServiceWorker</a></code> in <a href="https://www.w3.org/TR/service-workers/">Service Workers Nightly</a></li>
<li>used on interface <code><a href='names/ServiceWorkerRegistration.html'>ServiceWorkerRegistration</a></code> in <a href="https://www.w3.org/TR/service-workers/">Service Workers Nightly</a></li>
<li>used on interface <code><a href='names/ServiceWorkerContainer.html'>ServiceWorkerContainer</a></code> in <a href="https://www.w3.org/TR/service-workers/">Service Workers Nightly</a></li>
<li>used on interface <code><a href='names/NavigationPreloadManager.html'>NavigationPreloadManager</a></code> in <a href="https://www.w3.org/TR/service-workers/">Service Workers Nightly</a></li>
<li>used on interface <code><a href='names/ServiceWorkerGlobalScope.html'>ServiceWorkerGlobalScope</a></code> in <a href="https://www.w3.org/TR/service-workers/">Service Workers Nightly</a></li>
<li>used on interface <code><a href='names/Client.html'>Client</a></code> in <a href="https://www.w3.org/TR/service-workers/">Service Workers Nightly</a></li>
<li>used on interface <code><a href='names/WindowClient.html'>WindowClient</a></code> in <a href="https://www.w3.org/TR/service-workers/">Service Workers Nightly</a></li>
<li>used on interface <code><a href='names/Clients.html'>Clients</a></code> in <a href="https://www.w3.org/TR/service-workers/">Service Workers Nightly</a></li>
<li>used on interface <code><a href='names/ExtendableEvent.html'>ExtendableEvent</a></code> in <a href="https://www.w3.org/TR/service-workers/">Service Workers Nightly</a></li>
<li>used on interface <code><a href='names/InstallEvent.html'>InstallEvent</a></code> in <a href="https://www.w3.org/TR/service-workers/">Service Workers Nightly</a></li>
<li>used on interface <code><a href='names/FetchEvent.html'>FetchEvent</a></code> in <a href="https://www.w3.org/TR/service-workers/">Service Workers Nightly</a></li>
<li>used on interface <code><a href='names/ExtendableMessageEvent.html'>ExtendableMessageEvent</a></code> in <a href="https://www.w3.org/TR/service-workers/">Service Workers Nightly</a></li>
<li>used on interface <code><a href='names/Cache.html'>Cache</a></code> in <a href="https://www.w3.org/TR/service-workers/">Service Workers Nightly</a></li>
<li>used on interface <code><a href='names/CacheStorage.html'>CacheStorage</a></code> in <a href="https://www.w3.org/TR/service-workers/">Service Workers Nightly</a></li>
<li>used on interface <code><a href='names/SVGElement.html'>SVGElement</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGGraphicsElement.html'>SVGGraphicsElement</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGGeometryElement.html'>SVGGeometryElement</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGNumber.html'>SVGNumber</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGLength.html'>SVGLength</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGAngle.html'>SVGAngle</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGNumberList.html'>SVGNumberList</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGLengthList.html'>SVGLengthList</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGStringList.html'>SVGStringList</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGAnimatedBoolean.html'>SVGAnimatedBoolean</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGAnimatedEnumeration.html'>SVGAnimatedEnumeration</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGAnimatedInteger.html'>SVGAnimatedInteger</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGAnimatedNumber.html'>SVGAnimatedNumber</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGAnimatedLength.html'>SVGAnimatedLength</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGAnimatedAngle.html'>SVGAnimatedAngle</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGAnimatedString.html'>SVGAnimatedString</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGAnimatedRect.html'>SVGAnimatedRect</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGAnimatedNumberList.html'>SVGAnimatedNumberList</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGAnimatedLengthList.html'>SVGAnimatedLengthList</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGUnitTypes.html'>SVGUnitTypes</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGSVGElement.html'>SVGSVGElement</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGGElement.html'>SVGGElement</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGDefsElement.html'>SVGDefsElement</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGDescElement.html'>SVGDescElement</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGMetadataElement.html'>SVGMetadataElement</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGTitleElement.html'>SVGTitleElement</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGSymbolElement.html'>SVGSymbolElement</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGUseElement.html'>SVGUseElement</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGUseElementShadowRoot.html'>SVGUseElementShadowRoot</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/ShadowAnimation.html'>ShadowAnimation</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGSwitchElement.html'>SVGSwitchElement</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGStyleElement.html'>SVGStyleElement</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGTransform.html'>SVGTransform</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGTransformList.html'>SVGTransformList</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGAnimatedTransformList.html'>SVGAnimatedTransformList</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGPreserveAspectRatio.html'>SVGPreserveAspectRatio</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGAnimatedPreserveAspectRatio.html'>SVGAnimatedPreserveAspectRatio</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGPathElement.html'>SVGPathElement</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGRectElement.html'>SVGRectElement</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGCircleElement.html'>SVGCircleElement</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGEllipseElement.html'>SVGEllipseElement</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGLineElement.html'>SVGLineElement</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGPointList.html'>SVGPointList</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGPolylineElement.html'>SVGPolylineElement</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGPolygonElement.html'>SVGPolygonElement</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGTextContentElement.html'>SVGTextContentElement</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGTextPositioningElement.html'>SVGTextPositioningElement</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGTextElement.html'>SVGTextElement</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGTSpanElement.html'>SVGTSpanElement</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGTextPathElement.html'>SVGTextPathElement</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGImageElement.html'>SVGImageElement</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGForeignObjectElement.html'>SVGForeignObjectElement</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGMarkerElement.html'>SVGMarkerElement</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGGradientElement.html'>SVGGradientElement</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGLinearGradientElement.html'>SVGLinearGradientElement</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGRadialGradientElement.html'>SVGRadialGradientElement</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGStopElement.html'>SVGStopElement</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGPatternElement.html'>SVGPatternElement</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGScriptElement.html'>SVGScriptElement</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGAElement.html'>SVGAElement</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/SVGViewElement.html'>SVGViewElement</a></code> in <a href="https://www.w3.org/TR/SVG2/">Scalable Vector Graphics (SVG) 2</a></li>
<li>used on interface <code><a href='names/Touch.html'>Touch</a></code> in <a href="https://www.w3.org/TR/touch-events/">Touch Events - Level 2</a></li>
<li>used on interface <code><a href='names/TouchList.html'>TouchList</a></code> in <a href="https://www.w3.org/TR/touch-events/">Touch Events - Level 2</a></li>
<li>used on interface <code><a href='names/TouchEvent.html'>TouchEvent</a></code> in <a href="https://www.w3.org/TR/touch-events/">Touch Events - Level 2</a></li>
<li>used on interface <code><a href='names/TrustedHTML.html'>TrustedHTML</a></code> in <a href="https://www.w3.org/TR/trusted-types/">Trusted Types</a></li>
<li>used on interface <code><a href='names/TrustedScript.html'>TrustedScript</a></code> in <a href="https://www.w3.org/TR/trusted-types/">Trusted Types</a></li>
<li>used on interface <code><a href='names/TrustedScriptURL.html'>TrustedScriptURL</a></code> in <a href="https://www.w3.org/TR/trusted-types/">Trusted Types</a></li>
<li>used on interface <code><a href='names/TrustedTypePolicyFactory.html'>TrustedTypePolicyFactory</a></code> in <a href="https://www.w3.org/TR/trusted-types/">Trusted Types</a></li>
<li>used on interface <code><a href='names/TrustedTypePolicy.html'>TrustedTypePolicy</a></code> in <a href="https://www.w3.org/TR/trusted-types/">Trusted Types</a></li>
<li>used on interface <code><a href='names/UIEvent.html'>UIEvent</a></code> in <a href="https://www.w3.org/TR/uievents/">UI Events</a></li>
<li>used on interface <code><a href='names/FocusEvent.html'>FocusEvent</a></code> in <a href="https://www.w3.org/TR/uievents/">UI Events</a></li>
<li>used on interface <code><a href='names/MouseEvent.html'>MouseEvent</a></code> in <a href="https://www.w3.org/TR/uievents/">UI Events</a></li>
<li>used on interface <code><a href='names/WheelEvent.html'>WheelEvent</a></code> in <a href="https://www.w3.org/TR/uievents/">UI Events</a></li>
<li>used on interface <code><a href='names/InputEvent.html'>InputEvent</a></code> in <a href="https://www.w3.org/TR/uievents/">UI Events</a></li>
<li>used on interface <code><a href='names/KeyboardEvent.html'>KeyboardEvent</a></code> in <a href="https://www.w3.org/TR/uievents/">UI Events</a></li>
<li>used on interface <code><a href='names/CompositionEvent.html'>CompositionEvent</a></code> in <a href="https://www.w3.org/TR/uievents/">UI Events</a></li>
<li>used on interface <code><a href='names/TextEvent.html'>TextEvent</a></code> in <a href="https://www.w3.org/TR/uievents/">UI Events</a></li>
<li>used on interface <code><a href='names/PerformanceMark.html'>PerformanceMark</a></code> in <a href="https://www.w3.org/TR/user-timing/">User Timing</a></li>
<li>used on interface <code><a href='names/PerformanceMeasure.html'>PerformanceMeasure</a></code> in <a href="https://www.w3.org/TR/user-timing/">User Timing</a></li>
<li>used on interface <code><a href='names/VirtualKeyboard.html'>VirtualKeyboard</a></code> in <a href="https://www.w3.org/TR/virtual-keyboard/">VirtualKeyboard API</a></li>
<li>used on namespace <code><a href='names/WebAssembly.html'>WebAssembly</a></code> in <a href="https://www.w3.org/TR/wasm-js-api-2/">WebAssembly JavaScript Interface</a></li>
<li>used on interface <code><a href='names/Module.html'>Module</a></code> in <a href="https://www.w3.org/TR/wasm-js-api-2/">WebAssembly JavaScript Interface</a></li>
<li>used on interface <code><a href='names/Instance.html'>Instance</a></code> in <a href="https://www.w3.org/TR/wasm-js-api-2/">WebAssembly JavaScript Interface</a></li>
<li>used on interface <code><a href='names/Memory.html'>Memory</a></code> in <a href="https://www.w3.org/TR/wasm-js-api-2/">WebAssembly JavaScript Interface</a></li>
<li>used on interface <code><a href='names/Table.html'>Table</a></code> in <a href="https://www.w3.org/TR/wasm-js-api-2/">WebAssembly JavaScript Interface</a></li>
<li>used on interface <code><a href='names/Global.html'>Global</a></code> in <a href="https://www.w3.org/TR/wasm-js-api-2/">WebAssembly JavaScript Interface</a></li>
<li>used on interface <code><a href='names/AnimationTimeline.html'>AnimationTimeline</a></code> in <a href="https://www.w3.org/TR/web-animations-1/">Web Animations</a></li>
<li>used on interface <code><a href='names/DocumentTimeline.html'>DocumentTimeline</a></code> in <a href="https://www.w3.org/TR/web-animations-1/">Web Animations</a></li>
<li>used on interface <code><a href='names/Animation.html'>Animation</a></code> in <a href="https://www.w3.org/TR/web-animations-1/">Web Animations</a></li>
<li>used on interface <code><a href='names/AnimationEffect.html'>AnimationEffect</a></code> in <a href="https://www.w3.org/TR/web-animations-1/">Web Animations</a></li>
<li>used on interface <code><a href='names/KeyframeEffect.html'>KeyframeEffect</a></code> in <a href="https://www.w3.org/TR/web-animations-1/">Web Animations</a></li>
<li>used on interface <code><a href='names/GroupEffect.html'>GroupEffect</a></code> in <a href="https://www.w3.org/TR/web-animations-2/">Web Animations Level 2</a></li>
<li>used on interface <code><a href='names/AnimationNodeList.html'>AnimationNodeList</a></code> in <a href="https://www.w3.org/TR/web-animations-2/">Web Animations Level 2</a></li>
<li>used on interface <code><a href='names/SequenceEffect.html'>SequenceEffect</a></code> in <a href="https://www.w3.org/TR/web-animations-2/">Web Animations Level 2</a></li>
<li>used on interface <code><a href='names/AnimationPlaybackEvent.html'>AnimationPlaybackEvent</a></code> in <a href="https://www.w3.org/TR/web-animations-2/">Web Animations Level 2</a></li>
<li>used on interface <code><a href='names/LockManager.html'>LockManager</a></code> in <a href="https://www.w3.org/TR/web-locks/">Web Locks API</a></li>
<li>used on interface <code><a href='names/Lock.html'>Lock</a></code> in <a href="https://www.w3.org/TR/web-locks/">Web Locks API</a></li>
<li>used on interface <code><a href='names/BaseAudioContext.html'>BaseAudioContext</a></code> in <a href="https://www.w3.org/TR/webaudio-1.1/">Web Audio API 1.1</a></li>
<li>used on interface <code><a href='names/AudioContext.html'>AudioContext</a></code> in <a href="https://www.w3.org/TR/webaudio-1.1/">Web Audio API 1.1</a></li>
<li>used on interface <code><a href='names/AudioSinkInfo.html'>AudioSinkInfo</a></code> in <a href="https://www.w3.org/TR/webaudio-1.1/">Web Audio API 1.1</a></li>
<li>used on interface <code><a href='names/AudioRenderCapacity.html'>AudioRenderCapacity</a></code> in <a href="https://www.w3.org/TR/webaudio-1.1/">Web Audio API 1.1</a></li>
<li>used on interface <code><a href='names/AudioRenderCapacityEvent.html'>AudioRenderCapacityEvent</a></code> in <a href="https://www.w3.org/TR/webaudio-1.1/">Web Audio API 1.1</a></li>
<li>used on interface <code><a href='names/OfflineAudioContext.html'>OfflineAudioContext</a></code> in <a href="https://www.w3.org/TR/webaudio-1.1/">Web Audio API 1.1</a></li>
<li>used on interface <code><a href='names/OfflineAudioCompletionEvent.html'>OfflineAudioCompletionEvent</a></code> in <a href="https://www.w3.org/TR/webaudio-1.1/">Web Audio API 1.1</a></li>
<li>used on interface <code><a href='names/AudioBuffer.html'>AudioBuffer</a></code> in <a href="https://www.w3.org/TR/webaudio-1.1/">Web Audio API 1.1</a></li>
<li>used on interface <code><a href='names/AudioNode.html'>AudioNode</a></code> in <a href="https://www.w3.org/TR/webaudio-1.1/">Web Audio API 1.1</a></li>
<li>used on interface <code><a href='names/AudioParam.html'>AudioParam</a></code> in <a href="https://www.w3.org/TR/webaudio-1.1/">Web Audio API 1.1</a></li>
<li>used on interface <code><a href='names/AudioScheduledSourceNode.html'>AudioScheduledSourceNode</a></code> in <a href="https://www.w3.org/TR/webaudio-1.1/">Web Audio API 1.1</a></li>
<li>used on interface <code><a href='names/AnalyserNode.html'>AnalyserNode</a></code> in <a href="https://www.w3.org/TR/webaudio-1.1/">Web Audio API 1.1</a></li>
<li>used on interface <code><a href='names/AudioBufferSourceNode.html'>AudioBufferSourceNode</a></code> in <a href="https://www.w3.org/TR/webaudio-1.1/">Web Audio API 1.1</a></li>
<li>used on interface <code><a href='names/AudioDestinationNode.html'>AudioDestinationNode</a></code> in <a href="https://www.w3.org/TR/webaudio-1.1/">Web Audio API 1.1</a></li>
<li>used on interface <code><a href='names/AudioListener.html'>AudioListener</a></code> in <a href="https://www.w3.org/TR/webaudio-1.1/">Web Audio API 1.1</a></li>
<li>used on interface <code><a href='names/AudioProcessingEvent.html'>AudioProcessingEvent</a></code> in <a href="https://www.w3.org/TR/webaudio-1.1/">Web Audio API 1.1</a></li>
<li>used on interface <code><a href='names/BiquadFilterNode.html'>BiquadFilterNode</a></code> in <a href="https://www.w3.org/TR/webaudio-1.1/">Web Audio API 1.1</a></li>
<li>used on interface <code><a href='names/ChannelMergerNode.html'>ChannelMergerNode</a></code> in <a href="https://www.w3.org/TR/webaudio-1.1/">Web Audio API 1.1</a></li>
<li>used on interface <code><a href='names/ChannelSplitterNode.html'>ChannelSplitterNode</a></code> in <a href="https://www.w3.org/TR/webaudio-1.1/">Web Audio API 1.1</a></li>
<li>used on interface <code><a href='names/ConstantSourceNode.html'>ConstantSourceNode</a></code> in <a href="https://www.w3.org/TR/webaudio-1.1/">Web Audio API 1.1</a></li>
<li>used on interface <code><a href='names/ConvolverNode.html'>ConvolverNode</a></code> in <a href="https://www.w3.org/TR/webaudio-1.1/">Web Audio API 1.1</a></li>
<li>used on interface <code><a href='names/DelayNode.html'>DelayNode</a></code> in <a href="https://www.w3.org/TR/webaudio-1.1/">Web Audio API 1.1</a></li>
<li>used on interface <code><a href='names/DynamicsCompressorNode.html'>DynamicsCompressorNode</a></code> in <a href="https://www.w3.org/TR/webaudio-1.1/">Web Audio API 1.1</a></li>
<li>used on interface <code><a href='names/GainNode.html'>GainNode</a></code> in <a href="https://www.w3.org/TR/webaudio-1.1/">Web Audio API 1.1</a></li>
<li>used on interface <code><a href='names/IIRFilterNode.html'>IIRFilterNode</a></code> in <a href="https://www.w3.org/TR/webaudio-1.1/">Web Audio API 1.1</a></li>
<li>used on interface <code><a href='names/MediaElementAudioSourceNode.html'>MediaElementAudioSourceNode</a></code> in <a href="https://www.w3.org/TR/webaudio-1.1/">Web Audio API 1.1</a></li>
<li>used on interface <code><a href='names/MediaStreamAudioDestinationNode.html'>MediaStreamAudioDestinationNode</a></code> in <a href="https://www.w3.org/TR/webaudio-1.1/">Web Audio API 1.1</a></li>
<li>used on interface <code><a href='names/MediaStreamAudioSourceNode.html'>MediaStreamAudioSourceNode</a></code> in <a href="https://www.w3.org/TR/webaudio-1.1/">Web Audio API 1.1</a></li>
<li>used on interface <code><a href='names/MediaStreamTrackAudioSourceNode.html'>MediaStreamTrackAudioSourceNode</a></code> in <a href="https://www.w3.org/TR/webaudio-1.1/">Web Audio API 1.1</a></li>
<li>used on interface <code><a href='names/OscillatorNode.html'>OscillatorNode</a></code> in <a href="https://www.w3.org/TR/webaudio-1.1/">Web Audio API 1.1</a></li>
<li>used on interface <code><a href='names/PannerNode.html'>PannerNode</a></code> in <a href="https://www.w3.org/TR/webaudio-1.1/">Web Audio API 1.1</a></li>
<li>used on interface <code><a href='names/PeriodicWave.html'>PeriodicWave</a></code> in <a href="https://www.w3.org/TR/webaudio-1.1/">Web Audio API 1.1</a></li>
<li>used on interface <code><a href='names/ScriptProcessorNode.html'>ScriptProcessorNode</a></code> in <a href="https://www.w3.org/TR/webaudio-1.1/">Web Audio API 1.1</a></li>
<li>used on interface <code><a href='names/StereoPannerNode.html'>StereoPannerNode</a></code> in <a href="https://www.w3.org/TR/webaudio-1.1/">Web Audio API 1.1</a></li>
<li>used on interface <code><a href='names/WaveShaperNode.html'>WaveShaperNode</a></code> in <a href="https://www.w3.org/TR/webaudio-1.1/">Web Audio API 1.1</a></li>
<li>used on interface <code><a href='names/AudioWorklet.html'>AudioWorklet</a></code> in <a href="https://www.w3.org/TR/webaudio-1.1/">Web Audio API 1.1</a></li>
<li>used on interface <code><a href='names/AudioWorkletGlobalScope.html'>AudioWorkletGlobalScope</a></code> in <a href="https://www.w3.org/TR/webaudio-1.1/">Web Audio API 1.1</a></li>
<li>used on interface <code><a href='names/AudioParamMap.html'>AudioParamMap</a></code> in <a href="https://www.w3.org/TR/webaudio-1.1/">Web Audio API 1.1</a></li>
<li>used on interface <code><a href='names/AudioWorkletNode.html'>AudioWorkletNode</a></code> in <a href="https://www.w3.org/TR/webaudio-1.1/">Web Audio API 1.1</a></li>
<li>used on interface <code><a href='names/AudioWorkletProcessor.html'>AudioWorkletProcessor</a></code> in <a href="https://www.w3.org/TR/webaudio-1.1/">Web Audio API 1.1</a></li>
<li>used on interface <code><a href='names/PublicKeyCredential.html'>PublicKeyCredential</a></code> in <a href="https://www.w3.org/TR/webauthn-3/">Web Authentication: An API for accessing Public Key Credentials - Level 3</a></li>
<li>used on interface <code><a href='names/AuthenticatorResponse.html'>AuthenticatorResponse</a></code> in <a href="https://www.w3.org/TR/webauthn-3/">Web Authentication: An API for accessing Public Key Credentials - Level 3</a></li>
<li>used on interface <code><a href='names/AuthenticatorAttestationResponse.html'>AuthenticatorAttestationResponse</a></code> in <a href="https://www.w3.org/TR/webauthn-3/">Web Authentication: An API for accessing Public Key Credentials - Level 3</a></li>
<li>used on interface <code><a href='names/AuthenticatorAssertionResponse.html'>AuthenticatorAssertionResponse</a></code> in <a href="https://www.w3.org/TR/webauthn-3/">Web Authentication: An API for accessing Public Key Credentials - Level 3</a></li>
<li>used on interface <code><a href='names/AudioDecoder.html'>AudioDecoder</a></code> in <a href="https://www.w3.org/TR/webcodecs/">WebCodecs</a></li>
<li>used on interface <code><a href='names/VideoDecoder.html'>VideoDecoder</a></code> in <a href="https://www.w3.org/TR/webcodecs/">WebCodecs</a></li>
<li>used on interface <code><a href='names/AudioEncoder.html'>AudioEncoder</a></code> in <a href="https://www.w3.org/TR/webcodecs/">WebCodecs</a></li>
<li>used on interface <code><a href='names/VideoEncoder.html'>VideoEncoder</a></code> in <a href="https://www.w3.org/TR/webcodecs/">WebCodecs</a></li>
<li>used on interface <code><a href='names/EncodedAudioChunk.html'>EncodedAudioChunk</a></code> in <a href="https://www.w3.org/TR/webcodecs/">WebCodecs</a></li>
<li>used on interface <code><a href='names/EncodedVideoChunk.html'>EncodedVideoChunk</a></code> in <a href="https://www.w3.org/TR/webcodecs/">WebCodecs</a></li>
<li>used on interface <code><a href='names/AudioData.html'>AudioData</a></code> in <a href="https://www.w3.org/TR/webcodecs/">WebCodecs</a></li>
<li>used on interface <code><a href='names/VideoFrame.html'>VideoFrame</a></code> in <a href="https://www.w3.org/TR/webcodecs/">WebCodecs</a></li>