-
Notifications
You must be signed in to change notification settings - Fork 2
/
w.html
3751 lines (1832 loc) · 480 KB
/
w.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
title: "Terms starting with letter w"
layout: base
---
<p class=legend>Color key: <code class=webidl>WebIDL</code> <code class='css'>CSS</code> <code class='markup'>Markup</code> <code class='http'>HTTP</code></p>
<dl>
<dt id="w@@hwb()@value"><code class=prefix></code><span><strong><code class=css>w</code></strong> (<em>CSS value for <a href='h.html#hwb()@@css-color%25%25function'><code>hwb()</code></a> </em>) <a class='self-link' href='#w%40%40hwb()%40value' aria-label="Permalink for w">§</a></span></dt>
<dd>Defined in <strong title='w is defined in CSS Color 5'><a href=https://drafts.csswg.org/css-color-5/#valdef-hwb-w>CSS Color 5</a></strong> </dd>
<dt id="w@@CSSHWB@attribute"><code class=prefix><a href='c.html#CSSHWB@@@@interface'>CSSHWB</a>.</code><span><strong><code class=webidl>w</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#w%40%40CSSHWB%40attribute' aria-label="Permalink for <a href='c.html#CSSHWB@@@@interface'>CSSHWB</a>.w">§</a></span></dt>
<dd>Defined in <strong title='w is defined in CSS Typed OM 1'><a href=https://drafts.css-houdini.org/css-typed-om-1/#dom-csshwb-w>CSS Typed OM 1</a></strong> </dd>
<dt id="w@@DOMPoint@attribute"><code class=prefix><a href='d.html#DOMPoint@@@@interface'>DOMPoint</a>.</code><span><strong><code class=webidl>w</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#w%40%40DOMPoint%40attribute' aria-label="Permalink for <a href='d.html#DOMPoint@@@@interface'>DOMPoint</a>.w">§</a></span></dt>
<dt><code class=prefix><a href='d.html#DOMPointReadOnly@@@@interface'>DOMPointReadOnly</a>.</code><span><strong><code class=webidl>w</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#w%40%40DOMPoint%40attribute' aria-label="Permalink for <a href='d.html#DOMPointReadOnly@@@@interface'>DOMPointReadOnly</a>.w">§</a></span></dt>
<dd>Defined in <strong title='w is defined in Geometry Interfaces 1'><a href=https://drafts.fxtf.org/geometry-1/#dom-dompointreadonly-w>Geometry Interfaces 1</a></strong> </dd>
<dd>Referenced in
<a href=https://immersive-web.github.io/hit-test/ title='w is referenced by WebXR Hit Test'>WebXR Hit Test</a>,
<a href=https://immersive-web.github.io/lighting-estimation/ title='w is referenced by WebXR Lighting Estimation API 1'>WebXR Lighting Estimation API 1</a></dd>
<dt id="w@@DOMPointInit@dict-member"><code class=prefix><a href='d.html#DOMPointInit@@@@dictionary'>DOMPointInit</a>.</code><span><strong><code class=webidl>w</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#w%40%40DOMPointInit%40dict-member' aria-label="Permalink for <a href='d.html#DOMPointInit@@@@dictionary'>DOMPointInit</a>.w">§</a></span></dt>
<dd>Defined in <strong title='w is defined in Geometry Interfaces 1'><a href=https://drafts.fxtf.org/geometry-1/#dom-dompointinit-w>Geometry Interfaces 1</a></strong> </dd>
<dd>Referenced in
<a href=https://immersive-web.github.io/hit-test/ title='w is referenced by WebXR Hit Test'>WebXR Hit Test</a></dd>
<dt id="w@@XRRayDirectionInit@dict-member"><code class=prefix><a href='x.html#XRRayDirectionInit@@@@dictionary'>XRRayDirectionInit</a>.</code><span><strong><code class=webidl>w</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#w%40%40XRRayDirectionInit%40dict-member' aria-label="Permalink for <a href='x.html#XRRayDirectionInit@@@@dictionary'>XRRayDirectionInit</a>.w">§</a></span></dt>
<dd>Defined in <strong title='w is defined in WebXR Hit Test'><a href=https://immersive-web.github.io/hit-test/#dom-xrraydirectioninit-w>WebXR Hit Test</a></strong> </dd>
<dt id="w-resize@@cursor@value"><code class=prefix></code><span><strong><code class=css>w-resize</code></strong> (<em>CSS value for <a href='c.html#cursor@@@@property'><code>cursor</code></a> </em>) <a class='self-link' href='#w-resize%40%40cursor%40value' aria-label="Permalink for w-resize">§</a></span></dt>
<dd>Defined in <strong title='w-resize is defined in CSS User Interface 3'><a href=https://drafts.csswg.org/css-ui-3/#valdef-cursor-w-resize>CSS User Interface 3</a></strong> , <strong title='w-resize is defined in CSS User Interface 4'><a href=https://drafts.csswg.org/css-ui-4/#valdef-cursor-w-resize>CSS User Interface 4</a></strong> , <strong title='w-resize is defined in CSS 2.2'><a href=https://drafts.csswg.org/css2/#valdef-cursor-w-resize>CSS 2.2</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-2022/ title='w-resize is referenced by CSS Snapshot 2022'>CSS Snapshot 2022</a>,
<a href=https://drafts.csswg.org/css-2023/ title='w-resize is referenced by CSS Snapshot 2023'>CSS Snapshot 2023</a></dd>
<dt id="W3C Candidate Recommendation@@w3c-process%%dfn"><code class=prefix></code><span><strong>W3C Candidate Recommendation</strong> (<em>concept</em>) <a class='self-link' href='#W3C%20Candidate%20Recommendation%40%40w3c-process%25%25dfn' aria-label="Permalink for W3C Candidate Recommendation">§</a></span></dt>
<dd>Defined in <strong title='W3C Candidate Recommendation is defined in W3C Process Document'><a href=https://www.w3.org/Consortium/Process/#RecsCR>W3C Process Document</a></strong> </dd>
<dd>Referenced in
<a href=https://w3c.github.io/epub-specs/epub33/rs/ title='W3C Candidate Recommendation is referenced by EPUB Reading Systems 3.3'>EPUB Reading Systems 3.3</a></dd>
<dt id="W3C Council@@w3c-process%%dfn"><code class=prefix></code><span><strong>W3C Council</strong> (<em>concept</em>) <a class='self-link' href='#W3C%20Council%40%40w3c-process%25%25dfn' aria-label="Permalink for W3C Council">§</a></span></dt>
<dd>Defined in <strong title='W3C Council is defined in W3C Process Document'><a href=https://www.w3.org/Consortium/Process/#w3c-council>W3C Process Document</a></strong> </dd>
<dt id="W3C Proposed Recommendation@@w3c-process%%dfn"><code class=prefix></code><span><strong>W3C Proposed Recommendation</strong> (<em>concept</em>) <a class='self-link' href='#W3C%20Proposed%20Recommendation%40%40w3c-process%25%25dfn' aria-label="Permalink for W3C Proposed Recommendation">§</a></span></dt>
<dd>Defined in <strong title='W3C Proposed Recommendation is defined in W3C Process Document'><a href=https://www.w3.org/Consortium/Process/#RecsPR>W3C Process Document</a></strong> </dd>
<dt id="W3C Recommendation@@w3c-process%%dfn"><code class=prefix></code><span><strong>W3C Recommendation</strong> (<em>concept</em>) <a class='self-link' href='#W3C%20Recommendation%40%40w3c-process%25%25dfn' aria-label="Permalink for W3C Recommendation">§</a></span></dt>
<dd>Defined in <strong title='W3C Recommendation is defined in W3C Process Document'><a href=https://www.w3.org/Consortium/Process/#RecsW3C>W3C Process Document</a></strong> </dd>
<dt id="W3C Registry@@w3c-process%%dfn"><code class=prefix></code><span><strong>W3C Registry</strong> (<em>concept</em>) <a class='self-link' href='#W3C%20Registry%40%40w3c-process%25%25dfn' aria-label="Permalink for W3C Registry">§</a></span></dt>
<dd>Defined in <strong title='W3C Registry is defined in W3C Process Document'><a href=https://www.w3.org/Consortium/Process/#w3c-registry>W3C Process Document</a></strong> </dd>
<dd>Referenced in
<a href=https://w3c.github.io/permissions-registry/ title='W3C Registry is referenced by Permissions Registry'>Permissions Registry</a>,
<a href=https://wicg.github.io/digital-credentials/ title='W3C Registry is referenced by Digital Credentials'>Digital Credentials</a>,
<a href=https://w3c.github.io/permissions/ title='W3C Registry is referenced by Permissions'>Permissions</a></dd>
<dt id="W3C Working Draft@@w3c-process%%dfn"><code class=prefix></code><span><strong>W3C Working Draft</strong> (<em>concept</em>) <a class='self-link' href='#W3C%20Working%20Draft%40%40w3c-process%25%25dfn' aria-label="Permalink for W3C Working Draft">§</a></span></dt>
<dd>Defined in <strong title='W3C Working Draft is defined in W3C Process Document'><a href=https://www.w3.org/Consortium/Process/#RecsWD>W3C Process Document</a></strong> </dd>
<dt id="wait@@cursor@value"><code class=prefix></code><span><strong><code class=css>wait</code></strong> (<em>CSS value for <a href='c.html#cursor@@@@property'><code>cursor</code></a> </em>) <a class='self-link' href='#wait%40%40cursor%40value' aria-label="Permalink for wait">§</a></span></dt>
<dd>Defined in <strong title='wait is defined in CSS User Interface 3'><a href=https://drafts.csswg.org/css-ui-3/#valdef-cursor-wait>CSS User Interface 3</a></strong> , <strong title='wait is defined in CSS User Interface 4'><a href=https://drafts.csswg.org/css-ui-4/#valdef-cursor-wait>CSS User Interface 4</a></strong> , <strong title='wait is defined in CSS 2.2'><a href=https://drafts.csswg.org/css2/#valdef-cursor-wait>CSS 2.2</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-2022/ title='wait is referenced by CSS Snapshot 2022'>CSS Snapshot 2022</a>,
<a href=https://drafts.csswg.org/css-2023/ title='wait is referenced by CSS Snapshot 2023'>CSS Snapshot 2023</a></dd>
<dt id="wait for a matching prefetch record@@prefetch%%dfn"><code class=prefix></code><span><strong>wait for a matching prefetch record</strong> (<em>concept</em>) <a class='self-link' href='#wait%20for%20a%20matching%20prefetch%20record%40%40prefetch%25%25dfn' aria-label="Permalink for wait for a matching prefetch record">§</a></span></dt>
<dd>Defined in <strong title='wait for a matching prefetch record is defined in Prefetch'><a href=https://wicg.github.io/nav-speculation/prefetch.html#wait-for-a-matching-prefetch-record>Prefetch</a></strong> </dd>
<dt id="wait for all@@webidl%%dfn"><code class=prefix></code><span><strong>wait for all</strong> (<em>concept</em>) <a class='self-link' href='#wait%20for%20all%40%40webidl%25%25dfn' aria-label="Permalink for wait for all">§</a></span></dt>
<dd>Defined in <strong title='wait for all is defined in Web IDL'><a href=https://webidl.spec.whatwg.org/#wait-for-all>Web IDL</a></strong> </dd>
<dd>Referenced in
<a href=https://html.spec.whatwg.org/multipage/ title='wait for all is referenced by HTML'>HTML</a>,
<a href=https://webbluetoothcg.github.io/web-bluetooth/ title='wait for all is referenced by Web Bluetooth'>Web Bluetooth</a></dd>
<dt id="wait(typedArray, index, value, timeout)@@Atomics@method"><code class=prefix><a href='a.html#Atomics@@@@namespace'>Atomics</a>.</code><span><strong><code class=webidl>wait(typedArray, index, value, timeout)</code></strong> (<em>WebIDL operation</em>) <a class='self-link' href='#wait(typedArray%2C%20index%2C%20value%2C%20timeout)%40%40Atomics%40method' aria-label="Permalink for <a href='a.html#Atomics@@@@namespace'>Atomics</a>.wait(typedArray, index, value, timeout)">§</a></span></dt>
<dd>Defined in <strong title='wait(typedArray, index, value, timeout) is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/structured-data.html#sec-atomics.wait>ECMAScript</a></strong> </dd>
<dt id="waitAsync(typedArray, index, value, timeout)@@Atomics@method"><code class=prefix><a href='a.html#Atomics@@@@namespace'>Atomics</a>.</code><span><strong><code class=webidl>waitAsync(typedArray, index, value, timeout)</code></strong> (<em>WebIDL operation</em>) <a class='self-link' href='#waitAsync(typedArray%2C%20index%2C%20value%2C%20timeout)%40%40Atomics%40method' aria-label="Permalink for <a href='a.html#Atomics@@@@namespace'>Atomics</a>.waitAsync(typedArray, index, value, timeout)">§</a></span></dt>
<dd>Defined in <strong title='waitAsync(typedArray, index, value, timeout) is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/structured-data.html#sec-atomics.waitasync>ECMAScript</a></strong> </dd>
<dd>Referenced in
<a href=https://html.spec.whatwg.org/multipage/ title='waitAsync(typedArray, index, value, timeout) is referenced by HTML'>HTML</a></dd>
<dt id="Waiter Record@@ECMAScript@dfn"><code class=prefix></code><span><strong>Waiter Record</strong> (<em>concept for <code>ECMAScript</code> </em>) <a class='self-link' href='#Waiter%20Record%40%40ECMAScript%40dfn' aria-label="Permalink for Waiter Record">§</a></span></dt>
<dd>Defined in <strong title='Waiter Record is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/structured-data.html#sec-waiter-record>ECMAScript</a></strong> </dd>
<dt id="WaiterList Record@@ECMAScript@dfn"><code class=prefix></code><span><strong>WaiterList Record</strong> (<em>concept for <code>ECMAScript</code> </em>) <a class='self-link' href='#WaiterList%20Record%40%40ECMAScript%40dfn' aria-label="Permalink for WaiterList Record">§</a></span></dt>
<dd>Defined in <strong title='WaiterList Record is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/structured-data.html#sec-waiterlist-records>ECMAScript</a></strong> </dd>
<dt id="waiting@@HTMLMediaElement@event"><code class=prefix></code><span><strong><code class=webidl>waiting</code></strong> (<em>event for <a href='h.html#HTMLMediaElement@@@@interface'><code>HTMLMediaElement</code></a> </em>) <a class='self-link' href='#waiting%40%40HTMLMediaElement%40event' aria-label="Permalink for waiting">§</a></span></dt>
<dd>Defined in <strong title='waiting is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/media.html#event-media-waiting>HTML</a></strong> </dd>
<dt id="waiting@@RTCStatsIceCandidatePairState@enum-value"><code class=prefix></code><span><strong><code class=webidl>"waiting"</code></strong> (<em>value for <a href='r.html#RTCStatsIceCandidatePairState@@@@enum'><code>RTCStatsIceCandidatePairState</code></a> WebIDL enumeration</em>) <a class='self-link' href='#waiting%40%40RTCStatsIceCandidatePairState%40enum-value' aria-label="Permalink for waiting">§</a></span></dt>
<dd>Defined in <strong title='waiting is defined in WebRTC Statistics'><a href=https://w3c.github.io/webrtc-stats/#dom-rtcstatsicecandidatepairstate-waiting>WebRTC Statistics</a></strong> </dd>
<dt id="waiting@@ServiceWorkerRegistration@attribute"><code class=prefix><a href='s.html#ServiceWorkerRegistration@@@@interface'>ServiceWorkerRegistration</a>.</code><span><strong><code class=webidl>waiting</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#waiting%40%40ServiceWorkerRegistration%40attribute' aria-label="Permalink for <a href='s.html#ServiceWorkerRegistration@@@@interface'>ServiceWorkerRegistration</a>.waiting">§</a></span></dt>
<dd>Defined in <strong title='waiting is defined in Service Workers'><a href=https://w3c.github.io/ServiceWorker/#dom-serviceworkerregistration-waiting>Service Workers</a></strong> </dd>
<dt id="waiting worker@@service worker registration@dfn"><code class=prefix></code><span><strong>waiting worker</strong> (<em>concept for <a href='s.html#service worker registration@@service-workers%25%25dfn'>service worker registration</a> </em>) <a class='self-link' href='#waiting%20worker%40%40service%20worker%20registration%40dfn' aria-label="Permalink for waiting worker">§</a></span></dt>
<dd>Defined in <strong title='waiting worker is defined in Service Workers'><a href=https://w3c.github.io/ServiceWorker/#dfn-waiting-worker>Service Workers</a></strong> </dd>
<dt id="waitUntil(f)@@ExtendableEvent@method"><code class=prefix><a href='e.html#ExtendableEvent@@@@interface'>ExtendableEvent</a>.</code><span><strong><code class=webidl>waitUntil(f)</code></strong> (<em>WebIDL operation</em>) <a class='self-link' href='#waitUntil(f)%40%40ExtendableEvent%40method' aria-label="Permalink for <a href='e.html#ExtendableEvent@@@@interface'>ExtendableEvent</a>.waitUntil(f)">§</a></span></dt>
<dd>Defined in <strong title='waitUntil(f) is defined in Service Workers'><a href=https://w3c.github.io/ServiceWorker/#dom-extendableevent-waituntil>Service Workers</a></strong> </dd>
<dd>Referenced in
<a href=https://wicg.github.io/background-fetch/ title='waitUntil(f) is referenced by Background Fetch'>Background Fetch</a></dd>
<dt id="waitUntilAvailable@@WebTransportSendStreamOptions@dict-member"><code class=prefix><a href='w.html#WebTransportSendStreamOptions@@@@dictionary'>WebTransportSendStreamOptions</a>.</code><span><strong><code class=webidl>waitUntilAvailable</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#waitUntilAvailable%40%40WebTransportSendStreamOptions%40dict-member' aria-label="Permalink for <a href='w.html#WebTransportSendStreamOptions@@@@dictionary'>WebTransportSendStreamOptions</a>.waitUntilAvailable">§</a></span></dt>
<dd>Defined in <strong title='waitUntilAvailable is defined in WebTransport'><a href=https://w3c.github.io/webtransport/#dom-webtransportsendstreamoptions-waituntilavailable>WebTransport</a></strong> </dd>
<dt id="wake lock type@@screen-wake-lock%%dfn"><code class=prefix></code><span><strong>wake lock type</strong> (<em>concept</em>) <a class='self-link' href='#wake%20lock%20type%40%40screen-wake-lock%25%25dfn' aria-label="Permalink for wake lock type">§</a></span></dt>
<dd>Defined in <strong title='wake lock type is defined in Screen Wake Lock API'><a href=https://w3c.github.io/screen-wake-lock/#dfn-wake-lock-type>Screen Wake Lock API</a></strong> </dd>
<dt id="wakeLock@@Navigator@attribute"><code class=prefix><a href='n.html#Navigator@@@@interface'>Navigator</a>.</code><span><strong><code class=webidl>wakeLock</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#wakeLock%40%40Navigator%40attribute' aria-label="Permalink for <a href='n.html#Navigator@@@@interface'>Navigator</a>.wakeLock">§</a></span></dt>
<dd>Defined in <strong title='wakeLock is defined in Screen Wake Lock API'><a href=https://w3c.github.io/screen-wake-lock/#dom-navigator-wakelock>Screen Wake Lock API</a></strong> </dd>
<dt id="WakeLock@@@@interface"><code class=prefix></code><span><strong><code class=webidl>WakeLock</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#WakeLock%40%40%40%40interface' aria-label="Permalink for WakeLock">§</a></span></dt>
<dd>Defined in <strong title='WakeLock is defined in Screen Wake Lock API'><a href=https://w3c.github.io/screen-wake-lock/#dom-wakelock>Screen Wake Lock API</a></strong> </dd>
<dd>Related terms: <code>WakeLock.</code><a href='r.html#request()@@WakeLock@method'><code>request()</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/WakeLock.html' title='WakeLock entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="WakeLockSentinel@@@@interface"><code class=prefix></code><span><strong><code class=webidl>WakeLockSentinel</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#WakeLockSentinel%40%40%40%40interface' aria-label="Permalink for WakeLockSentinel">§</a></span></dt>
<dd>Defined in <strong title='WakeLockSentinel is defined in Screen Wake Lock API'><a href=https://w3c.github.io/screen-wake-lock/#dom-wakelocksentinel>Screen Wake Lock API</a></strong> </dd>
<dd>Related terms: <code>WakeLockSentinel.</code><a href='o.html#onrelease@@WakeLockSentinel@attribute'><code>onrelease</code></a>, <code>WakeLockSentinel.</code><a href='r.html#released@@WakeLockSentinel@attribute'><code>released</code></a>, <code>WakeLockSentinel.</code><a href='t.html#type@@WakeLockSentinel@attribute'><code>type</code></a>, <code>WakeLockSentinel.</code><a href='r.html#release()@@WakeLockSentinel@method'><code>release()</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/WakeLockSentinel.html' title='WakeLockSentinel entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="WakeLockType@@@@enum"><code class=prefix></code><span><strong><code class=webidl>WakeLockType</code></strong> (<em>WebIDL enumeration</em>) <a class='self-link' href='#WakeLockType%40%40%40%40enum' aria-label="Permalink for WakeLockType">§</a></span></dt>
<dd>Defined in <strong title='WakeLockType is defined in Screen Wake Lock API'><a href=https://w3c.github.io/screen-wake-lock/#dom-wakelocktype>Screen Wake Lock API</a></strong> </dd>
<dd>Related terms: <em>value</em> <a href='s.html#screen@@WakeLockType@enum-value'><code>screen</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/WakeLockType.html' title='WakeLockType entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="wall clock@@hr-time%%dfn"><code class=prefix></code><span><strong>wall clock</strong> (<em>concept</em>) <a class='self-link' href='#wall%20clock%40%40hr-time%25%25dfn' aria-label="Permalink for wall clock">§</a></span></dt>
<dd>Defined in <strong title='wall clock is defined in High Resolution Time'><a href=https://w3c.github.io/hr-time/#dfn-wall-clock>High Resolution Time</a></strong> </dd>
<dd>Referenced in
<a href=https://patcg-individual-drafts.github.io/topics/ title='wall clock is referenced by Topics API'>Topics API</a>,
<a href=https://privacycg.github.io/nav-tracking-mitigations/ title='wall clock is referenced by Navigational-Tracking Mitigations'>Navigational-Tracking Mitigations</a>,
<a href=https://wicg.github.io/storage-buckets/ title='wall clock is referenced by Storage Buckets API'>Storage Buckets API</a></dd>
<dd>Related terms: <em>concept</em> <a href='u.html#unsafe current time@@wall clock@dfn'>unsafe current time</a></dd>
<dt id="Wall time@@i18n-glossary%%dfn"><code class=prefix></code><span><strong>Wall time</strong> (<em>concept</em>) <a class='self-link' href='#Wall%20time%40%40i18n-glossary%25%25dfn' aria-label="Permalink for Wall time">§</a></span></dt>
<dd>Defined in <strong title='Wall time is defined in Internationalization Glossary'><a href=https://w3c.github.io/i18n-glossary/#dfn-wall-time>Internationalization Glossary</a></strong> </dd>
<dt id="warn(...data)@@console@method"><code class=prefix><a href='c.html#console@@@@namespace'>console</a>.</code><span><strong><code class=webidl>warn(...data)</code></strong> (<em>WebIDL operation</em>) <a class='self-link' href='#warn(...data)%40%40console%40method' aria-label="Permalink for <a href='c.html#console@@@@namespace'>console</a>.warn(...data)">§</a></span></dt>
<dd>Defined in <strong title='warn(...data) is defined in Console'><a href=https://console.spec.whatwg.org/#warn>Console</a></strong> </dd>
<dt id="warning@@GPUCompilationMessageType@enum-value"><code class=prefix></code><span><strong><code class=webidl>"warning"</code></strong> (<em>value for <a href='g.html#GPUCompilationMessageType@@@@enum'><code>GPUCompilationMessageType</code></a> WebIDL enumeration</em>) <a class='self-link' href='#warning%40%40GPUCompilationMessageType%40enum-value' aria-label="Permalink for warning">§</a></span></dt>
<dd>Defined in <strong title='warning is defined in WebGPU'><a href=https://gpuweb.github.io/gpuweb/#dom-gpucompilationmessagetype-warning>WebGPU</a></strong> </dd>
<dt id="was created via cross-origin redirects@@html%%dfn"><code class=prefix></code><span><strong>was created via cross-origin redirects</strong> (<em>concept</em>) <a class='self-link' href='#was%20created%20via%20cross-origin%20redirects%40%40html%25%25dfn' aria-label="Permalink for was created via cross-origin redirects">§</a></span></dt>
<dd>Defined in <strong title='was created via cross-origin redirects is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/dom.html#was-created-via-cross-origin-redirects>HTML</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-view-transitions-2/ title='was created via cross-origin redirects is referenced by CSS View Transitions 2'>CSS View Transitions 2</a></dd>
<dt id="wasClean@@CloseEvent@attribute"><code class=prefix><a href='c.html#CloseEvent@@@@interface'>CloseEvent</a>.</code><span><strong><code class=webidl>wasClean</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#wasClean%40%40CloseEvent%40attribute' aria-label="Permalink for <a href='c.html#CloseEvent@@@@interface'>CloseEvent</a>.wasClean">§</a></span></dt>
<dd>Defined in <strong title='wasClean is defined in WebSockets'><a href=https://websockets.spec.whatwg.org/#dom-closeevent-wasclean>WebSockets</a></strong> </dd>
<dt id="wasClean@@CloseEventInit@dict-member"><code class=prefix><a href='c.html#CloseEventInit@@@@dictionary'>CloseEventInit</a>.</code><span><strong><code class=webidl>wasClean</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#wasClean%40%40CloseEventInit%40dict-member' aria-label="Permalink for <a href='c.html#CloseEventInit@@@@dictionary'>CloseEventInit</a>.wasClean">§</a></span></dt>
<dd>Defined in <strong title='wasClean is defined in WebSockets'><a href=https://websockets.spec.whatwg.org/#dom-closeeventinit-wasclean>WebSockets</a></strong> </dd>
<dt id="wasDiscarded@@Document@attribute"><code class=prefix><a href='d.html#Document@@@@interface'>Document</a>.</code><span><strong><code class=webidl>wasDiscarded</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#wasDiscarded%40%40Document%40attribute' aria-label="Permalink for <a href='d.html#Document@@@@interface'>Document</a>.wasDiscarded">§</a></span></dt>
<dd>Defined in <strong title='wasDiscarded is defined in Page Lifecycle'><a href=https://wicg.github.io/page-lifecycle/#dom-document-wasdiscarded>Page Lifecycle</a></strong> </dd>
<dt id="'wasm-unsafe-eval'@@CSP%%grammar"><code class=prefix></code><span><strong><code class=grammar>'wasm-unsafe-eval'</code></strong> (<em>grammar</em>) <a class='self-link' href='#'wasm-unsafe-eval'%40%40CSP%25%25grammar' aria-label="Permalink for 'wasm-unsafe-eval'">§</a></span></dt>
<dd>Defined in <strong title=''wasm-unsafe-eval' is defined in Content Security Policy 3'><a href=https://w3c.github.io/webappsec-csp/#grammardef-wasm-unsafe-eval>Content Security Policy 3</a></strong> </dd>
<dd>Referenced in
<a href=https://wicg.github.io/isolated-web-apps/isolated-contexts.html title=''wasm-unsafe-eval' is referenced by Isolated Contexts'>Isolated Contexts</a></dd>
<dt id="wasmHelper@@BiddingBrowserSignals@dict-member"><code class=prefix><a href='b.html#BiddingBrowserSignals@@@@dictionary'>BiddingBrowserSignals</a>.</code><span><strong><code class=webidl>wasmHelper</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#wasmHelper%40%40BiddingBrowserSignals%40dict-member' aria-label="Permalink for <a href='b.html#BiddingBrowserSignals@@@@dictionary'>BiddingBrowserSignals</a>.wasmHelper">§</a></span></dt>
<dd>Defined in <strong title='wasmHelper is defined in Protected Audience'><a href=https://wicg.github.io/turtledove/#dom-biddingbrowsersignals-wasmhelper>Protected Audience</a></strong> </dd>
<dt id="watchAdvertisements(options)@@BluetoothDevice@method"><code class=prefix><a href='b.html#BluetoothDevice@@@@interface'>BluetoothDevice</a>.</code><span><strong><code class=webidl>watchAdvertisements(options)</code></strong> (<em>WebIDL operation</em>) <a class='self-link' href='#watchAdvertisements(options)%40%40BluetoothDevice%40method' aria-label="Permalink for <a href='b.html#BluetoothDevice@@@@interface'>BluetoothDevice</a>.watchAdvertisements(options)">§</a></span></dt>
<dd>Defined in <strong title='watchAdvertisements(options) is defined in Web Bluetooth'><a href=https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothdevice-watchadvertisements>Web Bluetooth</a></strong> </dd>
<dt id="WatchAdvertisementsOptions@@@@dictionary"><code class=prefix></code><span><strong><code class=webidl>WatchAdvertisementsOptions</code></strong> (<em>WebIDL dictionary</em>) <a class='self-link' href='#WatchAdvertisementsOptions%40%40%40%40dictionary' aria-label="Permalink for WatchAdvertisementsOptions">§</a></span></dt>
<dd>Defined in <strong title='WatchAdvertisementsOptions is defined in Web Bluetooth'><a href=https://webbluetoothcg.github.io/web-bluetooth/#dictdef-watchadvertisementsoptions>Web Bluetooth</a></strong> </dd>
<dd>Related terms: <code>WatchAdvertisementsOptions.</code><a href='s.html#signal@@WatchAdvertisementsOptions@dict-member'><code>signal</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/WatchAdvertisementsOptions.html' title='WatchAdvertisementsOptions entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="[[watchAdvertisementsState]]@@BluetoothDevice@attribute"><code class=prefix><a href='b.html#BluetoothDevice@@@@interface'>BluetoothDevice</a>.</code><span><strong><code class=webidl>[[watchAdvertisementsState]]</code></strong> (<em>internal slot</em>) <a class='self-link' href='#%5B%5BwatchAdvertisementsState%5D%5D%40%40BluetoothDevice%40attribute' aria-label="Permalink for <a href='b.html#BluetoothDevice@@@@interface'>BluetoothDevice</a>.[[watchAdvertisementsState]]">§</a></span></dt>
<dd>Defined in <strong title='[[watchAdvertisementsState]] is defined in Web Bluetooth'><a href=https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothdevice-watchadvertisementsstate-slot>Web Bluetooth</a></strong> </dd>
<dt id="watchAvailability()@@RemotePlayback@method"><code class=prefix><a href='r.html#RemotePlayback@@@@interface'>RemotePlayback</a>.</code><span><strong><code class=webidl>watchAvailability()</code></strong> (<em>WebIDL operation</em>) <a class='self-link' href='#watchAvailability()%40%40RemotePlayback%40method' aria-label="Permalink for <a href='r.html#RemotePlayback@@@@interface'>RemotePlayback</a>.watchAvailability()">§</a></span></dt>
<dd>Defined in <strong title='watchAvailability() is defined in Remote Playback API'><a href=https://w3c.github.io/remote-playback/#dom-remoteplayback-watchavailability>Remote Playback API</a></strong> </dd>
<dt id="watchingAdvertisements@@BluetoothDevice@attribute"><code class=prefix><a href='b.html#BluetoothDevice@@@@interface'>BluetoothDevice</a>.</code><span><strong><code class=webidl>watchingAdvertisements</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#watchingAdvertisements%40%40BluetoothDevice%40attribute' aria-label="Permalink for <a href='b.html#BluetoothDevice@@@@interface'>BluetoothDevice</a>.watchingAdvertisements">§</a></span></dt>
<dd>Defined in <strong title='watchingAdvertisements is defined in Web Bluetooth'><a href=https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothdevice-watchingadvertisements>Web Bluetooth</a></strong> </dd>
<dt id="watchPosition()@@Geolocation@method"><code class=prefix><a href='g.html#Geolocation@@@@interface'>Geolocation</a>.</code><span><strong><code class=webidl>watchPosition()</code></strong> (<em>WebIDL operation</em>) <a class='self-link' href='#watchPosition()%40%40Geolocation%40method' aria-label="Permalink for <a href='g.html#Geolocation@@@@interface'>Geolocation</a>.watchPosition()">§</a></span></dt>
<dd>Defined in <strong title='watchPosition() is defined in Geolocation'><a href=https://w3c.github.io/geolocation/#dom-geolocation-watchposition>Geolocation</a></strong> </dd>
<dd>Referenced in
<a href=https://wicg.github.io/nav-speculation/prerendering.html title='watchPosition() is referenced by Prerendering Revamped'>Prerendering Revamped</a></dd>
<dt id="WaveShaperNode@@@@interface"><code class=prefix></code><span><strong><code class=webidl>WaveShaperNode</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#WaveShaperNode%40%40%40%40interface' aria-label="Permalink for WaveShaperNode">§</a></span></dt>
<dd>Defined in <strong title='WaveShaperNode is defined in Web Audio API'><a href=https://webaudio.github.io/web-audio-api/#WaveShaperNode>Web Audio API</a></strong> , <strong title='WaveShaperNode is defined in Web Audio API 1.1'><a href=https://webaudio.github.io/web-audio-api/#WaveShaperNode>Web Audio API 1.1</a></strong> </dd>
<dd>Related terms: <code>undefined</code><a href='c.html#curve@@WaveShaperNode@attribute'><code>curve</code></a>, <code>undefined</code><a href='c.html#[[curve set]]@@WaveShaperNode@attribute'><code>[[curve set]]</code></a>, <code>undefined</code><a href='o.html#oversample@@WaveShaperNode@attribute'><code>oversample</code></a>, <code>undefined</code><a href='w.html#WaveShaperNode(context, options)@@WaveShaperNode@constructor'><code>WaveShaperNode(context, options)</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/WaveShaperNode.html' title='WaveShaperNode entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="WaveShaperNode(context, options)@@WaveShaperNode@constructor"><code class=prefix>new </code><span><strong><code class=webidl>WaveShaperNode(context, options)</code></strong> (<em>WebIDL constructor</em>) <a class='self-link' href='#WaveShaperNode(context%2C%20options)%40%40WaveShaperNode%40constructor' aria-label="Permalink for new WaveShaperNode(context, options)">§</a></span></dt>
<dt><code class=prefix>new </code><span><strong><code class=webidl>WaveShaperNode(context, options)</code></strong> (<em>WebIDL constructor</em>) <a class='self-link' href='#WaveShaperNode(context%2C%20options)%40%40WaveShaperNode%40constructor' aria-label="Permalink for new WaveShaperNode(context, options)">§</a></span></dt>
<dd>Defined in <strong title='WaveShaperNode(context, options) is defined in Web Audio API'><a href=https://webaudio.github.io/web-audio-api/#dom-waveshapernode-waveshapernode>Web Audio API</a></strong> , <strong title='WaveShaperNode(context, options) is defined in Web Audio API 1.1'><a href=https://webaudio.github.io/web-audio-api/#dom-waveshapernode-waveshapernode>Web Audio API 1.1</a></strong> </dd>
<dt id="WaveShaperOptions@@@@dictionary"><code class=prefix></code><span><strong><code class=webidl>WaveShaperOptions</code></strong> (<em>WebIDL dictionary</em>) <a class='self-link' href='#WaveShaperOptions%40%40%40%40dictionary' aria-label="Permalink for WaveShaperOptions">§</a></span></dt>
<dd>Defined in <strong title='WaveShaperOptions is defined in Web Audio API'><a href=https://webaudio.github.io/web-audio-api/#WaveShaperOptions>Web Audio API</a></strong> , <strong title='WaveShaperOptions is defined in Web Audio API 1.1'><a href=https://webaudio.github.io/web-audio-api/#WaveShaperOptions>Web Audio API 1.1</a></strong> </dd>
<dd>Related terms: <code>undefined</code><a href='c.html#curve@@WaveShaperOptions@dict-member'><code>curve</code></a>, <code>undefined</code><a href='o.html#oversample@@WaveShaperOptions@dict-member'><code>oversample</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/WaveShaperOptions.html' title='WaveShaperOptions entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="wavy@@text-decoration-style@value"><code class=prefix></code><span><strong><code class=css>wavy</code></strong> (<em>CSS value for <a href='t.html#text-decoration-style@@@@property'><code>text-decoration-style</code></a> </em>) <a class='self-link' href='#wavy%40%40text-decoration-style%40value' aria-label="Permalink for wavy">§</a></span></dt>
<dd>Defined in <strong title='wavy is defined in CSS Text Decoration 4'><a href=https://drafts.csswg.org/css-text-decor-4/#valdef-text-decoration-style-wavy>CSS Text Decoration 4</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-text-decor-3/ title='wavy is referenced by CSS Text Decoration 3'>CSS Text Decoration 3</a></dd>
<dt id="wavy@@UnderlineStyle@enum-value"><code class=prefix></code><span><strong><code class=webidl>"wavy"</code></strong> (<em>value for <a href='u.html#UnderlineStyle@@@@enum'><code>UnderlineStyle</code></a> WebIDL enumeration</em>) <a class='self-link' href='#wavy%40%40UnderlineStyle%40enum-value' aria-label="Permalink for wavy">§</a></span></dt>
<dd>Defined in <strong title='wavy is defined in EditContext API'><a href=https://w3c.github.io/edit-context/#dom-underlinestyle-wavy>EditContext API</a></strong> </dd>
<dt id="wbr@@html%%element"><code class=prefix></code><span><strong><code class=markup>wbr</code></strong> (<em>markup element</em>) <a class='self-link' href='#wbr%40%40html%25%25element' aria-label="Permalink for wbr">§</a></span></dt>
<dd>Defined in <strong title='wbr is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-wbr-element>HTML</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-display-4/ title='wbr is referenced by CSS Display 4'>CSS Display 4</a>,
<a href=https://drafts.csswg.org/css-display-3/ title='wbr is referenced by CSS Display 3'>CSS Display 3</a>,
<a href=https://drafts.csswg.org/css-text-3/ title='wbr is referenced by CSS Text 3'>CSS Text 3</a>,
<a href=https://drafts.csswg.org/css-text-4/ title='wbr is referenced by CSS Text 4'>CSS Text 4</a>,
<a href=https://w3c.github.io/html-aam/ title='wbr is referenced by HTML Accessibility API Mappings 1.0'>HTML Accessibility API Mappings 1.0</a>,
<a href=https://w3c.github.io/html-aria/ title='wbr is referenced by ARIA in HTML'>ARIA in HTML</a></dd>
<dt id="<wcag2>@@@@type"><code class=prefix></code><span><strong><code class=css><wcag2></code></strong> (<em>CSS type</em>) <a class='self-link' href='#%3Cwcag2%3E%40%40%40%40type' aria-label="Permalink for <wcag2>">§</a></span></dt>
<dd>Defined in <strong title='<wcag2> is defined in CSS Color 6'><a href=https://drafts.csswg.org/css-color-6/#typedef-wcag2>CSS Color 6</a></strong> </dd>
<dt id="wcag2@@contrast-color()@value"><code class=prefix></code><span><strong><code class=css>wcag2</code></strong> (<em>CSS value for <a href='c.html#contrast-color()@@css-color%25%25function'><code>contrast-color()</code></a> </em>) <a class='self-link' href='#wcag2%40%40contrast-color()%40value' aria-label="Permalink for wcag2">§</a></span></dt>
<dd>Defined in <strong title='wcag2 is defined in CSS Color 6'><a href=https://drafts.csswg.org/css-color-6/#valdef-contrast-color-wcag2>CSS Color 6</a></strong> </dd>
<dt id="wcag2()@@contrast-color()@function"><code class=prefix></code><span><strong><code class=css>wcag2()</code></strong> (<em>CSS function for <a href='c.html#contrast-color()@@css-color%25%25function'><code>contrast-color()</code></a> </em>) <a class='self-link' href='#wcag2()%40%40contrast-color()%40function' aria-label="Permalink for wcag2()">§</a></span></dt>
<dd>Defined in <strong title='wcag2() is defined in CSS Color 6'><a href=https://drafts.csswg.org/css-color-6/#funcdef-contrast-color-wcag2>CSS Color 6</a></strong> </dd>
<dt id="weak@@pause-after@value"><code class=prefix></code><span><strong><code class=css>weak</code></strong> (<em>CSS value for <a href='p.html#pause-after@@@@property'><code>pause-after</code></a>, <a href='p.html#pause-before@@@@property'><code>pause-before</code></a> property </em>) <a class='self-link' href='#weak%40%40pause-after%40value' aria-label="Permalink for weak">§</a></span></dt>
<dd>Defined in <strong title='weak is defined in CSS Speech 1'><a href=https://drafts.csswg.org/css-speech-1/#valdef-pause-before-weak>CSS Speech 1</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-2022/ title='weak is referenced by CSS Snapshot 2022'>CSS Snapshot 2022</a>,
<a href=https://drafts.csswg.org/css-2023/ title='weak is referenced by CSS Snapshot 2023'>CSS Snapshot 2023</a></dd>
<dt id="weak@@rest-after@value"><code class=prefix></code><span><strong><code class=css>weak</code></strong> (<em>CSS value for <a href='r.html#rest-after@@@@property'><code>rest-after</code></a>, <a href='r.html#rest-before@@@@property'><code>rest-before</code></a> property </em>) <a class='self-link' href='#weak%40%40rest-after%40value' aria-label="Permalink for weak">§</a></span></dt>
<dd>Defined in <strong title='weak is defined in CSS Speech 1'><a href=https://drafts.csswg.org/css-speech-1/#valdef-rest-before-weak>CSS Speech 1</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-2022/ title='weak is referenced by CSS Snapshot 2022'>CSS Snapshot 2022</a>,
<a href=https://drafts.csswg.org/css-2023/ title='weak is referenced by CSS Snapshot 2023'>CSS Snapshot 2023</a></dd>
<dt id="weakMagnitude@@GamepadEffectParameters@dict-member"><code class=prefix><a href='g.html#GamepadEffectParameters@@@@dictionary'>GamepadEffectParameters</a>.</code><span><strong><code class=webidl>weakMagnitude</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#weakMagnitude%40%40GamepadEffectParameters%40dict-member' aria-label="Permalink for <a href='g.html#GamepadEffectParameters@@@@dictionary'>GamepadEffectParameters</a>.weakMagnitude">§</a></span></dt>
<dd>Defined in <strong title='weakMagnitude is defined in Gamepad'><a href=https://w3c.github.io/gamepad/#dom-gamepadeffectparameters-weakmagnitude>Gamepad</a></strong> </dd>
<dt id="WeakMap@@@@interface"><code class=prefix></code><span><strong><code class=webidl>WeakMap</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#WeakMap%40%40%40%40interface' aria-label="Permalink for WeakMap">§</a></span></dt>
<dd>Defined in <strong title='WeakMap is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/keyed-collections.html#sec-weakmap-objects>ECMAScript</a></strong> </dd>
<dd>Related terms: <code>new </code><a href='w.html#WeakMap(iterable)@@WeakMap@constructor'><code>WeakMap(iterable)</code></a>, <code>WeakMap.</code><a href='d.html#delete(key)@@WeakMap@method'><code>delete(key)</code></a>, <code>WeakMap.</code><a href='g.html#get(key)@@WeakMap@method'><code>get(key)</code></a>, <code>WeakMap.</code><a href='h.html#has(key)@@WeakMap@method'><code>has(key)</code></a>, <code>WeakMap.</code><a href='s.html#set(key, value)@@WeakMap@method'><code>set(key, value)</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/WeakMap.html' title='WeakMap entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="%WeakMap.prototype%@@@@interface"><code class=prefix></code><span><strong><code class=webidl>%WeakMap.prototype%</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#%25WeakMap.prototype%25%40%40%40%40interface' aria-label="Permalink for %WeakMap.prototype%">§</a></span></dt>
<dd>Defined in <strong title='%WeakMap.prototype% is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/keyed-collections.html#sec-properties-of-the-weakmap-prototype-object>ECMAScript</a></strong> </dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/%WeakMap.prototype%.html' title='%WeakMap.prototype% entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="WeakMap(iterable)@@WeakMap@constructor"><code class=prefix>new </code><span><strong><code class=webidl>WeakMap(iterable)</code></strong> (<em>WebIDL constructor</em>) <a class='self-link' href='#WeakMap(iterable)%40%40WeakMap%40constructor' aria-label="Permalink for new WeakMap(iterable)">§</a></span></dt>
<dd>Defined in <strong title='WeakMap(iterable) is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/keyed-collections.html#sec-weakmap-iterable>ECMAScript</a></strong> </dd>
<dt id="%WeakMap%@@@@interface"><code class=prefix></code><span><strong><code class=webidl>%WeakMap%</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#%25WeakMap%25%40%40%40%40interface' aria-label="Permalink for %WeakMap%">§</a></span></dt>
<dd>Defined in <strong title='%WeakMap% is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/keyed-collections.html#sec-weakmap-constructor>ECMAScript</a></strong> </dd>
<dd>Referenced in
<a href=https://tc39.es/proposal-async-explicit-resource-management/ title='%WeakMap% is referenced by ECMAScript Async Explicit Resource Management'>ECMAScript Async Explicit Resource Management</a>,
<a href=https://tc39.es/proposal-explicit-resource-management/ title='%WeakMap% is referenced by ECMAScript Explicit Resource Management'>ECMAScript Explicit Resource Management</a>,
<a href=https://tc39.es/proposal-source-phase-imports/ title='%WeakMap% is referenced by Source Phase Imports'>Source Phase Imports</a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/%WeakMap%.html' title='%WeakMap% entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="WeakRef@@@@interface"><code class=prefix></code><span><strong><code class=webidl>WeakRef</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#WeakRef%40%40%40%40interface' aria-label="Permalink for WeakRef">§</a></span></dt>
<dd>Defined in <strong title='WeakRef is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/managing-memory.html#sec-weak-ref-objects>ECMAScript</a></strong> </dd>
<dd>Referenced in
<a href=https://html.spec.whatwg.org/multipage/ title='WeakRef is referenced by HTML'>HTML</a>,
<a href=https://w3c.github.io/long-animation-frames/ title='WeakRef is referenced by Long Animation Frames API'>Long Animation Frames API</a></dd>
<dd>Related terms: <code>new </code><a href='w.html#WeakRef(target)@@WeakRef@constructor'><code>WeakRef(target)</code></a>, <code>WeakRef.</code><a href='d.html#deref()@@WeakRef@method'><code>deref()</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/WeakRef.html' title='WeakRef entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="%WeakRef.prototype%@@@@interface"><code class=prefix></code><span><strong><code class=webidl>%WeakRef.prototype%</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#%25WeakRef.prototype%25%40%40%40%40interface' aria-label="Permalink for %WeakRef.prototype%">§</a></span></dt>
<dd>Defined in <strong title='%WeakRef.prototype% is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/managing-memory.html#sec-properties-of-the-weak-ref-prototype-object>ECMAScript</a></strong> </dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/%WeakRef.prototype%.html' title='%WeakRef.prototype% entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="WeakRef(target)@@WeakRef@constructor"><code class=prefix>new </code><span><strong><code class=webidl>WeakRef(target)</code></strong> (<em>WebIDL constructor</em>) <a class='self-link' href='#WeakRef(target)%40%40WeakRef%40constructor' aria-label="Permalink for new WeakRef(target)">§</a></span></dt>
<dd>Defined in <strong title='WeakRef(target) is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/managing-memory.html#sec-weak-ref-target>ECMAScript</a></strong> </dd>
<dt id="%WeakRef%@@@@interface"><code class=prefix></code><span><strong><code class=webidl>%WeakRef%</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#%25WeakRef%25%40%40%40%40interface' aria-label="Permalink for %WeakRef%">§</a></span></dt>
<dd>Defined in <strong title='%WeakRef% is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/managing-memory.html#sec-weak-ref-constructor>ECMAScript</a></strong> </dd>
<dd>Referenced in
<a href=https://tc39.es/proposal-async-explicit-resource-management/ title='%WeakRef% is referenced by ECMAScript Async Explicit Resource Management'>ECMAScript Async Explicit Resource Management</a>,
<a href=https://tc39.es/proposal-explicit-resource-management/ title='%WeakRef% is referenced by ECMAScript Explicit Resource Management'>ECMAScript Explicit Resource Management</a>,
<a href=https://tc39.es/proposal-source-phase-imports/ title='%WeakRef% is referenced by Source Phase Imports'>Source Phase Imports</a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/%WeakRef%.html' title='%WeakRef% entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="WeakRefDeref@@ecmascript%%abstract-op"><code class=prefix></code><span><strong><code class=concept>WeakRefDeref</code></strong> (<em>algorithm</em>) <a class='self-link' href='#WeakRefDeref%40%40ecmascript%25%25abstract-op' aria-label="Permalink for WeakRefDeref">§</a></span></dt>
<dd>Defined in <strong title='WeakRefDeref is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/managing-memory.html#sec-weakrefderef>ECMAScript</a></strong> </dd>
<dd>Referenced in
<a href=https://w3c.github.io/long-animation-frames/ title='WeakRefDeref is referenced by Long Animation Frames API'>Long Animation Frames API</a></dd>
<dt id="WeakSet@@@@interface"><code class=prefix></code><span><strong><code class=webidl>WeakSet</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#WeakSet%40%40%40%40interface' aria-label="Permalink for WeakSet">§</a></span></dt>
<dd>Defined in <strong title='WeakSet is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/keyed-collections.html#sec-weakset-objects>ECMAScript</a></strong> </dd>
<dd>Related terms: <code>new </code><a href='w.html#WeakSet(iterable)@@WeakSet@constructor'><code>WeakSet(iterable)</code></a>, <code>WeakSet.</code><a href='a.html#add(value)@@WeakSet@method'><code>add(value)</code></a>, <code>WeakSet.</code><a href='d.html#delete(value)@@WeakSet@method'><code>delete(value)</code></a>, <code>WeakSet.</code><a href='h.html#has(value)@@WeakSet@method'><code>has(value)</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/WeakSet.html' title='WeakSet entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="%WeakSet.prototype%@@@@interface"><code class=prefix></code><span><strong><code class=webidl>%WeakSet.prototype%</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#%25WeakSet.prototype%25%40%40%40%40interface' aria-label="Permalink for %WeakSet.prototype%">§</a></span></dt>
<dd>Defined in <strong title='%WeakSet.prototype% is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/keyed-collections.html#sec-properties-of-the-weakset-prototype-object>ECMAScript</a></strong> </dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/%WeakSet.prototype%.html' title='%WeakSet.prototype% entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="WeakSet(iterable)@@WeakSet@constructor"><code class=prefix>new </code><span><strong><code class=webidl>WeakSet(iterable)</code></strong> (<em>WebIDL constructor</em>) <a class='self-link' href='#WeakSet(iterable)%40%40WeakSet%40constructor' aria-label="Permalink for new WeakSet(iterable)">§</a></span></dt>
<dd>Defined in <strong title='WeakSet(iterable) is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/keyed-collections.html#sec-weakset-iterable>ECMAScript</a></strong> </dd>
<dt id="%WeakSet%@@@@interface"><code class=prefix></code><span><strong><code class=webidl>%WeakSet%</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#%25WeakSet%25%40%40%40%40interface' aria-label="Permalink for %WeakSet%">§</a></span></dt>
<dd>Defined in <strong title='%WeakSet% is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/keyed-collections.html#sec-weakset-constructor>ECMAScript</a></strong> </dd>
<dd>Referenced in
<a href=https://tc39.es/proposal-async-explicit-resource-management/ title='%WeakSet% is referenced by ECMAScript Async Explicit Resource Management'>ECMAScript Async Explicit Resource Management</a>,
<a href=https://tc39.es/proposal-explicit-resource-management/ title='%WeakSet% is referenced by ECMAScript Explicit Resource Management'>ECMAScript Explicit Resource Management</a>,
<a href=https://tc39.es/proposal-source-phase-imports/ title='%WeakSet% is referenced by Source Phase Imports'>Source Phase Imports</a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/%WeakSet%.html' title='%WeakSet% entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="Web Animations API@@web-animations%%dfn"><code class=prefix></code><span><strong>Web Animations API</strong> (<em>concept</em>) <a class='self-link' href='#Web%20Animations%20API%40%40web-animations%25%25dfn' aria-label="Permalink for Web Animations API">§</a></span></dt>
<dd>Defined in <strong title='Web Animations API is defined in Web Animations'><a href=https://drafts.csswg.org/web-animations-1/#web-animations-api>Web Animations</a></strong> </dd>
<dt id="Web Animations model@@web-animations%%dfn"><code class=prefix></code><span><strong>Web Animations model</strong> (<em>concept</em>) <a class='self-link' href='#Web%20Animations%20model%40%40web-animations%25%25dfn' aria-label="Permalink for Web Animations model">§</a></span></dt>
<dd>Defined in <strong title='Web Animations model is defined in Web Animations'><a href=https://drafts.csswg.org/web-animations-1/#web-animations-model>Web Animations</a></strong> </dd>
<dt id="web locks tasks source@@web-locks%%dfn"><code class=prefix></code><span><strong>web locks tasks source</strong> (<em>concept</em>) <a class='self-link' href='#web%20locks%20tasks%20source%40%40web-locks%25%25dfn' aria-label="Permalink for web locks tasks source">§</a></span></dt>
<dd>Defined in <strong title='web locks tasks source is defined in Web Locks API'><a href=https://w3c.github.io/web-locks/#web-locks-tasks-source>Web Locks API</a></strong> </dd>
<dt id="web share target@@web-share-target%%dfn"><code class=prefix></code><span><strong>web share target</strong> (<em>concept</em>) <a class='self-link' href='#web%20share%20target%40%40web-share-target%25%25dfn' aria-label="Permalink for web share target">§</a></span></dt>
<dd>Defined in <strong title='web share target is defined in Web Share Target API'><a href=https://w3c.github.io/web-share-target/#dfn-web-share-target>Web Share Target API</a></strong> </dd>
<dt id="web worker@@html%%dfn"><code class=prefix></code><span><strong>web worker</strong> (<em>concept</em>) <a class='self-link' href='#web%20worker%40%40html%25%25dfn' aria-label="Permalink for web worker">§</a></span></dt>
<dd>Defined in <strong title='web worker is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/workers.html#workers>HTML</a></strong> </dd>
<dd>Referenced in
<a href=https://w3c.github.io/ServiceWorker/ title='web worker is referenced by Service Workers'>Service Workers</a></dd>
<dt id="Web-exposed available screen area@@cssom-view%%dfn"><code class=prefix></code><span><strong>Web-exposed available screen area</strong> (<em>concept</em>) <a class='self-link' href='#Web-exposed%20available%20screen%20area%40%40cssom-view%25%25dfn' aria-label="Permalink for Web-exposed available screen area">§</a></span></dt>
<dd>Defined in <strong title='Web-exposed available screen area is defined in CSSOM View'><a href=https://drafts.csswg.org/cssom-view-1/#web-exposed-available-screen-area>CSSOM View</a></strong> </dd>
<dd>Referenced in
<a href=https://w3c.github.io/window-management/ title='Web-exposed available screen area is referenced by Window Management'>Window Management</a></dd>
<dt id="Web-exposed screen area@@cssom-view%%dfn"><code class=prefix></code><span><strong>Web-exposed screen area</strong> (<em>concept</em>) <a class='self-link' href='#Web-exposed%20screen%20area%40%40cssom-view%25%25dfn' aria-label="Permalink for Web-exposed screen area">§</a></span></dt>
<dd>Defined in <strong title='Web-exposed screen area is defined in CSSOM View'><a href=https://drafts.csswg.org/cssom-view-1/#web-exposed-screen-area>CSSOM View</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/mediaqueries-4/ title='Web-exposed screen area is referenced by Media Queries 4'>Media Queries 4</a>,
<a href=https://drafts.csswg.org/mediaqueries-5/ title='Web-exposed screen area is referenced by Media Queries 5'>Media Queries 5</a>,
<a href=https://w3c.github.io/window-management/ title='Web-exposed screen area is referenced by Window Management'>Window Management</a></dd>
<dt id="web-share@@@@permission"><code class=prefix></code><span><strong><code class=webidl>"web-share"</code></strong> (<em>permission name</em>) <a class='self-link' href='#web-share%40%40%40%40permission' aria-label="Permalink for web-share">§</a></span></dt>
<dd>Defined in <strong title='web-share is defined in Web Share API'><a href=https://w3c.github.io/web-share/#dfn-web-share>Web Share API</a></strong> </dd>
<dt id="WebAssembly@@@@namespace"><code class=prefix></code><span><strong><code class=webidl>WebAssembly</code></strong> (<em>WebIDL namespace</em>) <a class='self-link' href='#WebAssembly%40%40%40%40namespace' aria-label="Permalink for WebAssembly">§</a></span></dt>
<dd>Defined in <strong title='WebAssembly is defined in WebAssembly JavaScript Interface: Content Security Policy'><a href=https://webassembly.github.io/content-security-policy/js-api/#namespacedef-webassembly>WebAssembly JavaScript Interface: Content Security Policy</a></strong> , <strong title='WebAssembly is defined in WebAssembly JavaScript Interface: ESM Integration'><a href=https://webassembly.github.io/esm-integration/js-api/#namespacedef-webassembly>WebAssembly JavaScript Interface: ESM Integration</a></strong> , <strong title='WebAssembly is defined in WebAssembly JavaScript Interface: Exception Handling'><a href=https://webassembly.github.io/exception-handling/js-api/#namespacedef-webassembly>WebAssembly JavaScript Interface: Exception Handling</a></strong> , <strong title='WebAssembly is defined in WebAssembly JavaScript Interface: Promise Integration'><a href=https://webassembly.github.io/js-promise-integration/js-api/#namespacedef-webassembly>WebAssembly JavaScript Interface: Promise Integration</a></strong> , <strong title='WebAssembly is defined in WebAssembly JavaScript Interface: JS String Builtins'><a href=https://webassembly.github.io/js-string-builtins/js-api/#namespacedef-webassembly>WebAssembly JavaScript Interface: JS String Builtins</a></strong> , <strong title='WebAssembly is defined in WebAssembly JavaScript Interface: Type Reflection'><a href=https://webassembly.github.io/js-types/js-api/#namespacedef-webassembly>WebAssembly JavaScript Interface: Type Reflection</a></strong> , <strong title='WebAssembly is defined in WebAssembly JavaScript Interface: Threading'><a href=https://webassembly.github.io/threads/js-api/#namespacedef-webassembly>WebAssembly JavaScript Interface: Threading</a></strong> , <strong title='WebAssembly is defined in WebAssembly JavaScript Interface'><a href=https://webassembly.github.io/spec/js-api/#namespacedef-webassembly>WebAssembly JavaScript Interface</a></strong> </dd>
<dd>Referenced in
<a href=https://webassembly.github.io/spec/web-api/ title='WebAssembly is referenced by WebAssembly Web API'>WebAssembly Web API</a></dd>
<dd>Related terms: <code>undefined</code><a href='j.html#JSTag@@WebAssembly@attribute'><code>JSTag</code></a>, <code>WebAssembly.</code><a href='c.html#compile(bytes, options)@@WebAssembly@method'><code>compile(bytes, options)</code></a>, <code>undefined</code><a href='c.html#compile(bytes)@@WebAssembly@method'><code>compile(bytes)</code></a>, <code>WebAssembly.</code><a href='c.html#compileStreaming(source)@@WebAssembly@method'><code>compileStreaming(source)</code></a>, <code>WebAssembly.</code><a href='i.html#instantiate(bytes, importObject, options)@@WebAssembly@method'><code>instantiate(bytes, importObject, options)</code></a>, <code>undefined</code><a href='i.html#instantiate(bytes, importObject)@@WebAssembly@method'><code>instantiate(bytes, importObject)</code></a>, <code>undefined</code><a href='i.html#instantiate(moduleObject, importObject)@@WebAssembly@method'><code>instantiate(moduleObject, importObject)</code></a>, <code>WebAssembly.</code><a href='i.html#instantiateStreaming(source, importObject)@@WebAssembly@method'><code>instantiateStreaming(source, importObject)</code></a>, <code>WebAssembly.</code><a href='p.html#promising(wasmFunc)@@WebAssembly@method'><code>promising(wasmFunc)</code></a>, <code>WebAssembly.</code><a href='v.html#validate(bytes, options)@@WebAssembly@method'><code>validate(bytes, options)</code></a>, <code>undefined</code><a href='v.html#validate(bytes)@@WebAssembly@method'><code>validate(bytes)</code></a></dd>
<dt id="WebAssembly Module Record@@wasm-js-api%%dfn"><code class=prefix></code><span><strong>WebAssembly Module Record</strong> (<em>concept</em>) <a class='self-link' href='#WebAssembly%20Module%20Record%40%40wasm-js-api%25%25dfn' aria-label="Permalink for WebAssembly Module Record">§</a></span></dt>
<dd>Defined in <strong title='WebAssembly Module Record is defined in WebAssembly JavaScript Interface: ESM Integration'><a href=https://webassembly.github.io/esm-integration/js-api/#webassembly-module-record>WebAssembly JavaScript Interface: ESM Integration</a></strong> </dd>
<dt id="WebAssembly module script@@html%%dfn"><code class=prefix></code><span><strong>WebAssembly module script</strong> (<em>concept</em>) <a class='self-link' href='#WebAssembly%20module%20script%40%40html%25%25dfn' aria-label="Permalink for WebAssembly module script">§</a></span></dt>
<dd>Defined in <strong title='WebAssembly module script is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/webappapis.html#webassembly-module-script>HTML</a></strong> </dd>
<dt id="WebAssemblyCompileOptions@@@@dictionary"><code class=prefix></code><span><strong><code class=webidl>WebAssemblyCompileOptions</code></strong> (<em>WebIDL dictionary</em>) <a class='self-link' href='#WebAssemblyCompileOptions%40%40%40%40dictionary' aria-label="Permalink for WebAssemblyCompileOptions">§</a></span></dt>
<dd>Defined in <strong title='WebAssemblyCompileOptions is defined in WebAssembly JavaScript Interface: JS String Builtins'><a href=https://webassembly.github.io/js-string-builtins/js-api/#dictdef-webassemblycompileoptions>WebAssembly JavaScript Interface: JS String Builtins</a></strong> </dd>
<dd>Related terms: <code>WebAssemblyCompileOptions.</code><a href='b.html#builtins@@WebAssemblyCompileOptions@dict-member'><code>builtins</code></a>, <code>WebAssemblyCompileOptions.</code><a href='i.html#importedStringConstants@@WebAssemblyCompileOptions@dict-member'><code>importedStringConstants</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/WebAssemblyCompileOptions.html' title='WebAssemblyCompileOptions entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="WebAssemblyInstantiatedSource@@@@dictionary"><code class=prefix></code><span><strong><code class=webidl>WebAssemblyInstantiatedSource</code></strong> (<em>WebIDL dictionary</em>) <a class='self-link' href='#WebAssemblyInstantiatedSource%40%40%40%40dictionary' aria-label="Permalink for WebAssemblyInstantiatedSource">§</a></span></dt>
<dd>Defined in <strong title='WebAssemblyInstantiatedSource is defined in WebAssembly JavaScript Interface: Content Security Policy'><a href=https://webassembly.github.io/content-security-policy/js-api/#dictdef-webassemblyinstantiatedsource>WebAssembly JavaScript Interface: Content Security Policy</a></strong> , <strong title='WebAssemblyInstantiatedSource is defined in WebAssembly JavaScript Interface: ESM Integration'><a href=https://webassembly.github.io/esm-integration/js-api/#dictdef-webassemblyinstantiatedsource>WebAssembly JavaScript Interface: ESM Integration</a></strong> , <strong title='WebAssemblyInstantiatedSource is defined in WebAssembly JavaScript Interface: Exception Handling'><a href=https://webassembly.github.io/exception-handling/js-api/#dictdef-webassemblyinstantiatedsource>WebAssembly JavaScript Interface: Exception Handling</a></strong> , <strong title='WebAssemblyInstantiatedSource is defined in WebAssembly JavaScript Interface: Promise Integration'><a href=https://webassembly.github.io/js-promise-integration/js-api/#dictdef-webassemblyinstantiatedsource>WebAssembly JavaScript Interface: Promise Integration</a></strong> , <strong title='WebAssemblyInstantiatedSource is defined in WebAssembly JavaScript Interface: JS String Builtins'><a href=https://webassembly.github.io/js-string-builtins/js-api/#dictdef-webassemblyinstantiatedsource>WebAssembly JavaScript Interface: JS String Builtins</a></strong> , <strong title='WebAssemblyInstantiatedSource is defined in WebAssembly JavaScript Interface: Type Reflection'><a href=https://webassembly.github.io/js-types/js-api/#dictdef-webassemblyinstantiatedsource>WebAssembly JavaScript Interface: Type Reflection</a></strong> , <strong title='WebAssemblyInstantiatedSource is defined in WebAssembly JavaScript Interface: Threading'><a href=https://webassembly.github.io/threads/js-api/#dictdef-webassemblyinstantiatedsource>WebAssembly JavaScript Interface: Threading</a></strong> , <strong title='WebAssemblyInstantiatedSource is defined in WebAssembly JavaScript Interface'><a href=https://webassembly.github.io/spec/js-api/#dictdef-webassemblyinstantiatedsource>WebAssembly JavaScript Interface</a></strong> </dd>
<dd>Referenced in
<a href=https://webassembly.github.io/spec/web-api/ title='WebAssemblyInstantiatedSource is referenced by WebAssembly Web API'>WebAssembly Web API</a></dd>
<dd>Related terms: <code>undefined</code><a href='i.html#instance@@WebAssemblyInstantiatedSource@dict-member'><code>instance</code></a>, <code>undefined</code><a href='m.html#module@@WebAssemblyInstantiatedSource@dict-member'><code>module</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/WebAssemblyInstantiatedSource.html' title='WebAssemblyInstantiatedSource entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="WebAuthn/FIDO2 protocol@@webauthn%%dfn"><code class=prefix></code><span><strong>WebAuthn/FIDO2 protocol</strong> (<em>concept</em>) <a class='self-link' href='#WebAuthn%2FFIDO2%20protocol%40%40webauthn%25%25dfn' aria-label="Permalink for WebAuthn/FIDO2 protocol">§</a></span></dt>
<dd>Defined in <strong title='WebAuthn/FIDO2 protocol is defined in Web Authentication'><a href=https://w3c.github.io/webauthn/#webauthn-fido2-protocol>Web Authentication</a></strong> </dd>
<dt id="WebCodecsErrorCallback@@@@callback"><code class=prefix></code><span><strong><code class=webidl>WebCodecsErrorCallback</code></strong> (<em>WebIDL callback</em>) <a class='self-link' href='#WebCodecsErrorCallback%40%40%40%40callback' aria-label="Permalink for WebCodecsErrorCallback">§</a></span></dt>
<dd>Defined in <strong title='WebCodecsErrorCallback is defined in WebCodecs'><a href=https://w3c.github.io/webcodecs/#callbackdef-webcodecserrorcallback>WebCodecs</a></strong> </dd>
<dt id="webdriver@@NavigatorAutomationInformation@attribute"><code class=prefix><a href='n.html#NavigatorAutomationInformation@@@@interface'>NavigatorAutomationInformation</a>.</code><span><strong><code class=webidl>webdriver</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#webdriver%40%40NavigatorAutomationInformation%40attribute' aria-label="Permalink for <a href='n.html#NavigatorAutomationInformation@@@@interface'>NavigatorAutomationInformation</a>.webdriver">§</a></span></dt>
<dd>Defined in <strong title='webdriver is defined in WebDriver'><a href=https://w3c.github.io/webdriver/#dom-navigatorautomationinformation-webdriver>WebDriver</a></strong> </dd>
<dt id="WebDriver BiDi auth required@@webdriver-bidi%%dfn"><code class=prefix></code><span><strong>WebDriver BiDi auth required</strong> (<em>concept</em>) <a class='self-link' href='#WebDriver%20BiDi%20auth%20required%40%40webdriver-bidi%25%25dfn' aria-label="Permalink for WebDriver BiDi auth required">§</a></span></dt>
<dd>Defined in <strong title='WebDriver BiDi auth required is defined in WebDriver BiDi'><a href=https://w3c.github.io/webdriver-bidi/#webdriver-bidi-auth-required>WebDriver BiDi</a></strong> </dd>
<dt id="WebDriver BiDi before request sent@@webdriver-bidi%%dfn"><code class=prefix></code><span><strong>WebDriver BiDi before request sent</strong> (<em>concept</em>) <a class='self-link' href='#WebDriver%20BiDi%20before%20request%20sent%40%40webdriver-bidi%25%25dfn' aria-label="Permalink for WebDriver BiDi before request sent">§</a></span></dt>
<dd>Defined in <strong title='WebDriver BiDi before request sent is defined in WebDriver BiDi'><a href=https://w3c.github.io/webdriver-bidi/#webdriver-bidi-before-request-sent>WebDriver BiDi</a></strong> </dd>
<dt id="WebDriver BiDi cache behavior@@webdriver-bidi%%dfn"><code class=prefix></code><span><strong>WebDriver BiDi cache behavior</strong> (<em>concept</em>) <a class='self-link' href='#WebDriver%20BiDi%20cache%20behavior%40%40webdriver-bidi%25%25dfn' aria-label="Permalink for WebDriver BiDi cache behavior">§</a></span></dt>
<dd>Defined in <strong title='WebDriver BiDi cache behavior is defined in WebDriver BiDi'><a href=https://w3c.github.io/webdriver-bidi/#webdriver-bidi-cache-behavior>WebDriver BiDi</a></strong> </dd>
<dt id="WebDriver BiDi DOM content loaded@@webdriver-bidi%%dfn"><code class=prefix></code><span><strong>WebDriver BiDi DOM content loaded</strong> (<em>concept</em>) <a class='self-link' href='#WebDriver%20BiDi%20DOM%20content%20loaded%40%40webdriver-bidi%25%25dfn' aria-label="Permalink for WebDriver BiDi DOM content loaded">§</a></span></dt>
<dd>Defined in <strong title='WebDriver BiDi DOM content loaded is defined in WebDriver BiDi'><a href=https://w3c.github.io/webdriver-bidi/#webdriver-bidi-dom-content-loaded>WebDriver BiDi</a></strong> </dd>
<dd>Referenced in
<a href=https://html.spec.whatwg.org/multipage/ title='WebDriver BiDi DOM content loaded is referenced by HTML'>HTML</a></dd>
<dt id="WebDriver BiDi download started@@webdriver-bidi%%dfn"><code class=prefix></code><span><strong>WebDriver BiDi download started</strong> (<em>concept</em>) <a class='self-link' href='#WebDriver%20BiDi%20download%20started%40%40webdriver-bidi%25%25dfn' aria-label="Permalink for WebDriver BiDi download started">§</a></span></dt>
<dd>Defined in <strong title='WebDriver BiDi download started is defined in WebDriver BiDi'><a href=https://w3c.github.io/webdriver-bidi/#webdriver-bidi-download-started>WebDriver BiDi</a></strong> </dd>
<dd>Referenced in
<a href=https://html.spec.whatwg.org/multipage/ title='WebDriver BiDi download started is referenced by HTML'>HTML</a></dd>
<dt id="WebDriver BiDi fetch error@@webdriver-bidi%%dfn"><code class=prefix></code><span><strong>WebDriver BiDi fetch error</strong> (<em>concept</em>) <a class='self-link' href='#WebDriver%20BiDi%20fetch%20error%40%40webdriver-bidi%25%25dfn' aria-label="Permalink for WebDriver BiDi fetch error">§</a></span></dt>
<dd>Defined in <strong title='WebDriver BiDi fetch error is defined in WebDriver BiDi'><a href=https://w3c.github.io/webdriver-bidi/#webdriver-bidi-fetch-error>WebDriver BiDi</a></strong> </dd>
<dt id="WebDriver BiDi fragment navigated@@webdriver-bidi%%dfn"><code class=prefix></code><span><strong>WebDriver BiDi fragment navigated</strong> (<em>concept</em>) <a class='self-link' href='#WebDriver%20BiDi%20fragment%20navigated%40%40webdriver-bidi%25%25dfn' aria-label="Permalink for WebDriver BiDi fragment navigated">§</a></span></dt>
<dd>Defined in <strong title='WebDriver BiDi fragment navigated is defined in WebDriver BiDi'><a href=https://w3c.github.io/webdriver-bidi/#webdriver-bidi-fragment-navigated>WebDriver BiDi</a></strong> </dd>
<dd>Referenced in
<a href=https://html.spec.whatwg.org/multipage/ title='WebDriver BiDi fragment navigated is referenced by HTML'>HTML</a></dd>
<dt id="WebDriver BiDi history updated@@webdriver-bidi%%dfn"><code class=prefix></code><span><strong>WebDriver BiDi history updated</strong> (<em>concept</em>) <a class='self-link' href='#WebDriver%20BiDi%20history%20updated%40%40webdriver-bidi%25%25dfn' aria-label="Permalink for WebDriver BiDi history updated">§</a></span></dt>
<dd>Defined in <strong title='WebDriver BiDi history updated is defined in WebDriver BiDi'><a href=https://w3c.github.io/webdriver-bidi/#webdriver-bidi-history-updated>WebDriver BiDi</a></strong> </dd>
<dd>Referenced in
<a href=https://html.spec.whatwg.org/multipage/ title='WebDriver BiDi history updated is referenced by HTML'>HTML</a></dd>
<dt id="WebDriver BiDi load complete@@webdriver-bidi%%dfn"><code class=prefix></code><span><strong>WebDriver BiDi load complete</strong> (<em>concept</em>) <a class='self-link' href='#WebDriver%20BiDi%20load%20complete%40%40webdriver-bidi%25%25dfn' aria-label="Permalink for WebDriver BiDi load complete">§</a></span></dt>
<dd>Defined in <strong title='WebDriver BiDi load complete is defined in WebDriver BiDi'><a href=https://w3c.github.io/webdriver-bidi/#webdriver-bidi-load-complete>WebDriver BiDi</a></strong> </dd>
<dd>Referenced in
<a href=https://html.spec.whatwg.org/multipage/ title='WebDriver BiDi load complete is referenced by HTML'>HTML</a></dd>
<dt id="WebDriver BiDi navigable created@@webdriver-bidi%%dfn"><code class=prefix></code><span><strong>WebDriver BiDi navigable created</strong> (<em>concept</em>) <a class='self-link' href='#WebDriver%20BiDi%20navigable%20created%40%40webdriver-bidi%25%25dfn' aria-label="Permalink for WebDriver BiDi navigable created">§</a></span></dt>
<dd>Defined in <strong title='WebDriver BiDi navigable created is defined in WebDriver BiDi'><a href=https://w3c.github.io/webdriver-bidi/#webdriver-bidi-navigable-created>WebDriver BiDi</a></strong> </dd>
<dd>Referenced in
<a href=https://html.spec.whatwg.org/multipage/ title='WebDriver BiDi navigable created is referenced by HTML'>HTML</a></dd>
<dt id="WebDriver BiDi navigable destroyed@@webdriver-bidi%%dfn"><code class=prefix></code><span><strong>WebDriver BiDi navigable destroyed</strong> (<em>concept</em>) <a class='self-link' href='#WebDriver%20BiDi%20navigable%20destroyed%40%40webdriver-bidi%25%25dfn' aria-label="Permalink for WebDriver BiDi navigable destroyed">§</a></span></dt>
<dd>Defined in <strong title='WebDriver BiDi navigable destroyed is defined in WebDriver BiDi'><a href=https://w3c.github.io/webdriver-bidi/#webdriver-bidi-navigable-destroyed>WebDriver BiDi</a></strong> </dd>
<dd>Referenced in
<a href=https://html.spec.whatwg.org/multipage/ title='WebDriver BiDi navigable destroyed is referenced by HTML'>HTML</a></dd>
<dt id="WebDriver BiDi navigation aborted@@webdriver-bidi%%dfn"><code class=prefix></code><span><strong>WebDriver BiDi navigation aborted</strong> (<em>concept</em>) <a class='self-link' href='#WebDriver%20BiDi%20navigation%20aborted%40%40webdriver-bidi%25%25dfn' aria-label="Permalink for WebDriver BiDi navigation aborted">§</a></span></dt>
<dd>Defined in <strong title='WebDriver BiDi navigation aborted is defined in WebDriver BiDi'><a href=https://w3c.github.io/webdriver-bidi/#webdriver-bidi-navigation-aborted>WebDriver BiDi</a></strong> </dd>
<dd>Referenced in
<a href=https://html.spec.whatwg.org/multipage/ title='WebDriver BiDi navigation aborted is referenced by HTML'>HTML</a></dd>
<dt id="WebDriver BiDi navigation failed@@webdriver-bidi%%dfn"><code class=prefix></code><span><strong>WebDriver BiDi navigation failed</strong> (<em>concept</em>) <a class='self-link' href='#WebDriver%20BiDi%20navigation%20failed%40%40webdriver-bidi%25%25dfn' aria-label="Permalink for WebDriver BiDi navigation failed">§</a></span></dt>
<dd>Defined in <strong title='WebDriver BiDi navigation failed is defined in WebDriver BiDi'><a href=https://w3c.github.io/webdriver-bidi/#webdriver-bidi-navigation-failed>WebDriver BiDi</a></strong> </dd>
<dd>Referenced in
<a href=https://html.spec.whatwg.org/multipage/ title='WebDriver BiDi navigation failed is referenced by HTML'>HTML</a></dd>
<dt id="WebDriver BiDi navigation started@@webdriver-bidi%%dfn"><code class=prefix></code><span><strong>WebDriver BiDi navigation started</strong> (<em>concept</em>) <a class='self-link' href='#WebDriver%20BiDi%20navigation%20started%40%40webdriver-bidi%25%25dfn' aria-label="Permalink for WebDriver BiDi navigation started">§</a></span></dt>
<dd>Defined in <strong title='WebDriver BiDi navigation started is defined in WebDriver BiDi'><a href=https://w3c.github.io/webdriver-bidi/#webdriver-bidi-navigation-started>WebDriver BiDi</a></strong> </dd>
<dd>Referenced in
<a href=https://html.spec.whatwg.org/multipage/ title='WebDriver BiDi navigation started is referenced by HTML'>HTML</a>,
<a href=https://wicg.github.io/nav-speculation/prerendering.html title='WebDriver BiDi navigation started is referenced by Prerendering Revamped'>Prerendering Revamped</a></dd>
<dt id="WebDriver BiDi page show@@webdriver-bidi%%dfn"><code class=prefix></code><span><strong>WebDriver BiDi page show</strong> (<em>concept</em>) <a class='self-link' href='#WebDriver%20BiDi%20page%20show%40%40webdriver-bidi%25%25dfn' aria-label="Permalink for WebDriver BiDi page show">§</a></span></dt>
<dd>Defined in <strong title='WebDriver BiDi page show is defined in WebDriver BiDi'><a href=https://w3c.github.io/webdriver-bidi/#webdriver-bidi-page-show>WebDriver BiDi</a></strong> </dd>
<dt id="WebDriver BiDi pop state@@webdriver-bidi%%dfn"><code class=prefix></code><span><strong>WebDriver BiDi pop state</strong> (<em>concept</em>) <a class='self-link' href='#WebDriver%20BiDi%20pop%20state%40%40webdriver-bidi%25%25dfn' aria-label="Permalink for WebDriver BiDi pop state">§</a></span></dt>
<dd>Defined in <strong title='WebDriver BiDi pop state is defined in WebDriver BiDi'><a href=https://w3c.github.io/webdriver-bidi/#webdriver-bidi-pop-state>WebDriver BiDi</a></strong> </dd>
<dt id="WebDriver BiDi response completed@@webdriver-bidi%%dfn"><code class=prefix></code><span><strong>WebDriver BiDi response completed</strong> (<em>concept</em>) <a class='self-link' href='#WebDriver%20BiDi%20response%20completed%40%40webdriver-bidi%25%25dfn' aria-label="Permalink for WebDriver BiDi response completed">§</a></span></dt>
<dd>Defined in <strong title='WebDriver BiDi response completed is defined in WebDriver BiDi'><a href=https://w3c.github.io/webdriver-bidi/#webdriver-bidi-response-completed>WebDriver BiDi</a></strong> </dd>
<dt id="WebDriver BiDi response started@@webdriver-bidi%%dfn"><code class=prefix></code><span><strong>WebDriver BiDi response started</strong> (<em>concept</em>) <a class='self-link' href='#WebDriver%20BiDi%20response%20started%40%40webdriver-bidi%25%25dfn' aria-label="Permalink for WebDriver BiDi response started">§</a></span></dt>
<dd>Defined in <strong title='WebDriver BiDi response started is defined in WebDriver BiDi'><a href=https://w3c.github.io/webdriver-bidi/#webdriver-bidi-response-started>WebDriver BiDi</a></strong> </dd>
<dt id="WebDriver BiDi user prompt closed@@webdriver-bidi%%dfn"><code class=prefix></code><span><strong>WebDriver BiDi user prompt closed</strong> (<em>concept</em>) <a class='self-link' href='#WebDriver%20BiDi%20user%20prompt%20closed%40%40webdriver-bidi%25%25dfn' aria-label="Permalink for WebDriver BiDi user prompt closed">§</a></span></dt>
<dd>Defined in <strong title='WebDriver BiDi user prompt closed is defined in WebDriver BiDi'><a href=https://w3c.github.io/webdriver-bidi/#webdriver-bidi-user-prompt-closed>WebDriver BiDi</a></strong> </dd>
<dd>Referenced in
<a href=https://html.spec.whatwg.org/multipage/ title='WebDriver BiDi user prompt closed is referenced by HTML'>HTML</a></dd>
<dt id="WebDriver BiDi user prompt opened@@webdriver-bidi%%dfn"><code class=prefix></code><span><strong>WebDriver BiDi user prompt opened</strong> (<em>concept</em>) <a class='self-link' href='#WebDriver%20BiDi%20user%20prompt%20opened%40%40webdriver-bidi%25%25dfn' aria-label="Permalink for WebDriver BiDi user prompt opened">§</a></span></dt>
<dd>Defined in <strong title='WebDriver BiDi user prompt opened is defined in WebDriver BiDi'><a href=https://w3c.github.io/webdriver-bidi/#webdriver-bidi-user-prompt-opened>WebDriver BiDi</a></strong> </dd>
<dd>Referenced in
<a href=https://html.spec.whatwg.org/multipage/ title='WebDriver BiDi user prompt opened is referenced by HTML'>HTML</a></dd>
<dt id="WebDriver navigation status@@webdriver-bidi%%dfn"><code class=prefix></code><span><strong>WebDriver navigation status</strong> (<em>concept</em>) <a class='self-link' href='#WebDriver%20navigation%20status%40%40webdriver-bidi%25%25dfn' aria-label="Permalink for WebDriver navigation status">§</a></span></dt>
<dd>Defined in <strong title='WebDriver navigation status is defined in WebDriver BiDi'><a href=https://w3c.github.io/webdriver-bidi/#webdriver-navigation-status>WebDriver BiDi</a></strong> </dd>
<dd>Related terms: <em>concept</em> <a href='i.html#id@@WebDriver navigation status@dfn'>id</a>, <em>concept</em> <a href='s.html#status@@WebDriver navigation status@dfn'>status</a>, <em>concept</em> <a href='u.html#url@@WebDriver navigation status@dfn'>url</a></dd>
<dt id="WebDriver new session algorithms@@webdriver%%dfn"><code class=prefix></code><span><strong>WebDriver new session algorithms</strong> (<em>concept</em>) <a class='self-link' href='#WebDriver%20new%20session%20algorithms%40%40webdriver%25%25dfn' aria-label="Permalink for WebDriver new session algorithms">§</a></span></dt>
<dd>Defined in <strong title='WebDriver new session algorithms is defined in WebDriver'><a href=https://w3c.github.io/webdriver/#dfn-webdriver-new-session-algorithms>WebDriver</a></strong> </dd>
<dt id="WebGL2RenderingContext@@@@interface"><code class=prefix></code><span><strong><code class=webidl>WebGL2RenderingContext</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#WebGL2RenderingContext%40%40%40%40interface' aria-label="Permalink for WebGL2RenderingContext">§</a></span></dt>
<dd>Defined in <strong title='WebGL2RenderingContext is defined in WebGL 2.0'><a href=https://registry.khronos.org/webgl/specs/latest/2.0/#WebGL2RenderingContext>WebGL 2.0</a></strong> </dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/WebGL2RenderingContext.html' title='WebGL2RenderingContext entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="WebGL2RenderingContextBase@@@@interface"><code class=prefix></code><span><strong><code class=webidl>WebGL2RenderingContextBase</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#WebGL2RenderingContextBase%40%40%40%40interface' aria-label="Permalink for WebGL2RenderingContextBase">§</a></span></dt>
<dd>Defined in <strong title='WebGL2RenderingContextBase is defined in WebGL 2.0'><a href=https://registry.khronos.org/webgl/specs/latest/2.0/#WebGL2RenderingContextBase>WebGL 2.0</a></strong> </dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/WebGL2RenderingContextBase.html' title='WebGL2RenderingContextBase entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="WebGL2RenderingContextOverloads@@@@interface"><code class=prefix></code><span><strong><code class=webidl>WebGL2RenderingContextOverloads</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#WebGL2RenderingContextOverloads%40%40%40%40interface' aria-label="Permalink for WebGL2RenderingContextOverloads">§</a></span></dt>
<dd>Defined in <strong title='WebGL2RenderingContextOverloads is defined in WebGL 2.0'><a href=https://registry.khronos.org/webgl/specs/latest/2.0/#WebGL2RenderingContextOverloads>WebGL 2.0</a></strong> </dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/WebGL2RenderingContextOverloads.html' title='WebGL2RenderingContextOverloads entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="WebGLActiveInfo@@@@interface"><code class=prefix></code><span><strong><code class=webidl>WebGLActiveInfo</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#WebGLActiveInfo%40%40%40%40interface' aria-label="Permalink for WebGLActiveInfo">§</a></span></dt>
<dd>Defined in <strong title='WebGLActiveInfo is defined in WebGL'><a href=https://registry.khronos.org/webgl/specs/latest/1.0/#WebGLActiveInfo>WebGL</a></strong> </dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/WebGLActiveInfo.html' title='WebGLActiveInfo entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="WebGLBuffer@@@@interface"><code class=prefix></code><span><strong><code class=webidl>WebGLBuffer</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#WebGLBuffer%40%40%40%40interface' aria-label="Permalink for WebGLBuffer">§</a></span></dt>
<dd>Defined in <strong title='WebGLBuffer is defined in WebGL'><a href=https://registry.khronos.org/webgl/specs/latest/1.0/#WebGLBuffer>WebGL</a></strong> </dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/WebGLBuffer.html' title='WebGLBuffer entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="WebGLContextAttributes@@@@dictionary"><code class=prefix></code><span><strong><code class=webidl>WebGLContextAttributes</code></strong> (<em>WebIDL dictionary</em>) <a class='self-link' href='#WebGLContextAttributes%40%40%40%40dictionary' aria-label="Permalink for WebGLContextAttributes">§</a></span></dt>
<dd>Defined in <strong title='WebGLContextAttributes is defined in WebGL'><a href=https://registry.khronos.org/webgl/specs/latest/1.0/#WebGLContextAttributes>WebGL</a></strong> </dd>
<dd>Related terms: <code>WebGLContextAttributes.</code><a href='x.html#xrCompatible@@WebGLContextAttributes@dict-member'><code>xrCompatible</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/WebGLContextAttributes.html' title='WebGLContextAttributes entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="WebGLContextEvent@@@@interface"><code class=prefix></code><span><strong><code class=webidl>WebGLContextEvent</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#WebGLContextEvent%40%40%40%40interface' aria-label="Permalink for WebGLContextEvent">§</a></span></dt>
<dd>Defined in <strong title='WebGLContextEvent is defined in WebGL'><a href=https://registry.khronos.org/webgl/specs/latest/1.0/#WebGLContextEvent>WebGL</a></strong> </dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/WebGLContextEvent.html' title='WebGLContextEvent entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="WebGLFramebuffer@@@@interface"><code class=prefix></code><span><strong><code class=webidl>WebGLFramebuffer</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#WebGLFramebuffer%40%40%40%40interface' aria-label="Permalink for WebGLFramebuffer">§</a></span></dt>
<dd>Defined in <strong title='WebGLFramebuffer is defined in WebGL'><a href=https://registry.khronos.org/webgl/specs/latest/1.0/#WebGLFramebuffer>WebGL</a></strong> </dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/WebGLFramebuffer.html' title='WebGLFramebuffer entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="WebGLObject@@@@interface"><code class=prefix></code><span><strong><code class=webidl>WebGLObject</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#WebGLObject%40%40%40%40interface' aria-label="Permalink for WebGLObject">§</a></span></dt>
<dd>Defined in <strong title='WebGLObject is defined in WebGL'><a href=https://registry.khronos.org/webgl/specs/latest/1.0/#WebGLObject>WebGL</a></strong> </dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/WebGLObject.html' title='WebGLObject entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="WebGLProgram@@@@interface"><code class=prefix></code><span><strong><code class=webidl>WebGLProgram</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#WebGLProgram%40%40%40%40interface' aria-label="Permalink for WebGLProgram">§</a></span></dt>
<dd>Defined in <strong title='WebGLProgram is defined in WebGL'><a href=https://registry.khronos.org/webgl/specs/latest/1.0/#WebGLProgram>WebGL</a></strong> </dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/WebGLProgram.html' title='WebGLProgram entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="WebGLQuery@@@@interface"><code class=prefix></code><span><strong><code class=webidl>WebGLQuery</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#WebGLQuery%40%40%40%40interface' aria-label="Permalink for WebGLQuery">§</a></span></dt>
<dd>Defined in <strong title='WebGLQuery is defined in WebGL 2.0'><a href=https://registry.khronos.org/webgl/specs/latest/2.0/#WebGLQuery>WebGL 2.0</a></strong> </dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/WebGLQuery.html' title='WebGLQuery entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="WebGLRenderbuffer@@@@interface"><code class=prefix></code><span><strong><code class=webidl>WebGLRenderbuffer</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#WebGLRenderbuffer%40%40%40%40interface' aria-label="Permalink for WebGLRenderbuffer">§</a></span></dt>
<dd>Defined in <strong title='WebGLRenderbuffer is defined in WebGL'><a href=https://registry.khronos.org/webgl/specs/latest/1.0/#WebGLRenderbuffer>WebGL</a></strong> </dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/WebGLRenderbuffer.html' title='WebGLRenderbuffer entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="WebGLRenderingContext@@@@interface"><code class=prefix></code><span><strong><code class=webidl>WebGLRenderingContext</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#WebGLRenderingContext%40%40%40%40interface' aria-label="Permalink for WebGLRenderingContext">§</a></span></dt>
<dd>Defined in <strong title='WebGLRenderingContext is defined in WebGL'><a href=https://registry.khronos.org/webgl/specs/latest/1.0/#WebGLRenderingContext>WebGL</a></strong> </dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/WebGLRenderingContext.html' title='WebGLRenderingContext entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="WebGLRenderingContextBase@@@@interface"><code class=prefix></code><span><strong><code class=webidl>WebGLRenderingContextBase</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#WebGLRenderingContextBase%40%40%40%40interface' aria-label="Permalink for WebGLRenderingContextBase">§</a></span></dt>
<dd>Defined in <strong title='WebGLRenderingContextBase is defined in WebGL'><a href=https://registry.khronos.org/webgl/specs/latest/1.0/#WebGLRenderingContextBase>WebGL</a></strong> </dd>
<dd>Related terms: <code>WebGLRenderingContextBase.</code><a href='m.html#makeXRCompatible()@@WebGLRenderingContextBase@method'><code>makeXRCompatible()</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/WebGLRenderingContextBase.html' title='WebGLRenderingContextBase entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="WebGLSampler@@@@interface"><code class=prefix></code><span><strong><code class=webidl>WebGLSampler</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#WebGLSampler%40%40%40%40interface' aria-label="Permalink for WebGLSampler">§</a></span></dt>
<dd>Defined in <strong title='WebGLSampler is defined in WebGL 2.0'><a href=https://registry.khronos.org/webgl/specs/latest/2.0/#WebGLSampler>WebGL 2.0</a></strong> </dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/WebGLSampler.html' title='WebGLSampler entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="WebGLShader@@@@interface"><code class=prefix></code><span><strong><code class=webidl>WebGLShader</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#WebGLShader%40%40%40%40interface' aria-label="Permalink for WebGLShader">§</a></span></dt>
<dd>Defined in <strong title='WebGLShader is defined in WebGL'><a href=https://registry.khronos.org/webgl/specs/latest/1.0/#WebGLShader>WebGL</a></strong> </dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/WebGLShader.html' title='WebGLShader entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="WebGLShaderPrecisionFormat@@@@interface"><code class=prefix></code><span><strong><code class=webidl>WebGLShaderPrecisionFormat</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#WebGLShaderPrecisionFormat%40%40%40%40interface' aria-label="Permalink for WebGLShaderPrecisionFormat">§</a></span></dt>
<dd>Defined in <strong title='WebGLShaderPrecisionFormat is defined in WebGL'><a href=https://registry.khronos.org/webgl/specs/latest/1.0/#WebGLShaderPrecisionFormat>WebGL</a></strong> </dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/WebGLShaderPrecisionFormat.html' title='WebGLShaderPrecisionFormat entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="WebGLSync@@@@interface"><code class=prefix></code><span><strong><code class=webidl>WebGLSync</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#WebGLSync%40%40%40%40interface' aria-label="Permalink for WebGLSync">§</a></span></dt>
<dd>Defined in <strong title='WebGLSync is defined in WebGL 2.0'><a href=https://registry.khronos.org/webgl/specs/latest/2.0/#WebGLSync>WebGL 2.0</a></strong> </dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/WebGLSync.html' title='WebGLSync entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="WebGLTexture@@@@interface"><code class=prefix></code><span><strong><code class=webidl>WebGLTexture</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#WebGLTexture%40%40%40%40interface' aria-label="Permalink for WebGLTexture">§</a></span></dt>
<dd>Defined in <strong title='WebGLTexture is defined in WebGL'><a href=https://registry.khronos.org/webgl/specs/latest/1.0/#WebGLTexture>WebGL</a></strong> </dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/WebGLTexture.html' title='WebGLTexture entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="WebGLTransformFeedback@@@@interface"><code class=prefix></code><span><strong><code class=webidl>WebGLTransformFeedback</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#WebGLTransformFeedback%40%40%40%40interface' aria-label="Permalink for WebGLTransformFeedback">§</a></span></dt>
<dd>Defined in <strong title='WebGLTransformFeedback is defined in WebGL 2.0'><a href=https://registry.khronos.org/webgl/specs/latest/2.0/#WebGLTransformFeedback>WebGL 2.0</a></strong> </dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/WebGLTransformFeedback.html' title='WebGLTransformFeedback entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="WebGLUniformLocation@@@@interface"><code class=prefix></code><span><strong><code class=webidl>WebGLUniformLocation</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#WebGLUniformLocation%40%40%40%40interface' aria-label="Permalink for WebGLUniformLocation">§</a></span></dt>
<dd>Defined in <strong title='WebGLUniformLocation is defined in WebGL'><a href=https://registry.khronos.org/webgl/specs/latest/1.0/#WebGLUniformLocation>WebGL</a></strong> </dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/WebGLUniformLocation.html' title='WebGLUniformLocation entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="WebGLVertexArrayObject@@@@interface"><code class=prefix></code><span><strong><code class=webidl>WebGLVertexArrayObject</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#WebGLVertexArrayObject%40%40%40%40interface' aria-label="Permalink for WebGLVertexArrayObject">§</a></span></dt>
<dd>Defined in <strong title='WebGLVertexArrayObject is defined in WebGL 2.0'><a href=https://registry.khronos.org/webgl/specs/latest/2.0/#WebGLVertexArrayObject>WebGL 2.0</a></strong> </dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/WebGLVertexArrayObject.html' title='WebGLVertexArrayObject entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="webhid@@html%%dfn"><code class=prefix></code><span><strong>webhid</strong> (<em>concept</em>) <a class='self-link' href='#webhid%40%40html%25%25dfn' aria-label="Permalink for webhid">§</a></span></dt>
<dd>Defined in <strong title='webhid is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/nav-history-apis.html#blocking-webhid>HTML</a></strong> </dd>
<dt id="webkit_cased_attribute@@CSSStyleProperties@attribute"><code class=prefix><a href='c.html#CSSStyleProperties@@@@interface'>CSSStyleProperties</a>.</code><span><strong><code class=webidl>webkit_cased_attribute</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#webkit_cased_attribute%40%40CSSStyleProperties%40attribute' aria-label="Permalink for <a href='c.html#CSSStyleProperties@@@@interface'>CSSStyleProperties</a>.webkit_cased_attribute">§</a></span></dt>
<dd>Defined in <strong title='webkit_cased_attribute is defined in CSSOM'><a href=https://drafts.csswg.org/cssom-1/#dom-cssstyleproperties-webkit_cased_attribute>CSSOM</a></strong> </dd>
<dt id="webkit-cased attribute@@CSSStyleProperties@attribute"><code class=prefix><a href='c.html#CSSStyleProperties@@@@interface'>CSSStyleProperties</a>.</code><span><strong><code class=webidl>webkit-cased attribute</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#webkit-cased%20attribute%40%40CSSStyleProperties%40attribute' aria-label="Permalink for <a href='c.html#CSSStyleProperties@@@@interface'>CSSStyleProperties</a>.webkit-cased attribute">§</a></span></dt>
<dd>Defined in <strong title='webkit-cased attribute is defined in CSSOM'><a href=https://drafts.csswg.org/cssom-1/#dom-cssstyleproperties-webkit-cased-attribute>CSSOM</a></strong> </dd>
<dt id="WebKitCSSMatrix@@@@interface"><code class=prefix></code><span><strong><code class=webidl>WebKitCSSMatrix</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#WebKitCSSMatrix%40%40%40%40interface' aria-label="Permalink for WebKitCSSMatrix">§</a></span></dt>
<dd>Defined in <strong title='WebKitCSSMatrix is defined in Geometry Interfaces 1'><a href=https://drafts.fxtf.org/geometry-1/#webkitcssmatrix>Geometry Interfaces 1</a></strong> </dd>
<dd>Referenced in
<a href=https://compat.spec.whatwg.org/ title='WebKitCSSMatrix is referenced by Compatibility'>Compatibility</a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/WebKitCSSMatrix.html' title='WebKitCSSMatrix entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="webkitdirectory@@HTMLInputElement@attribute"><code class=prefix><a href='h.html#HTMLInputElement@@@@interface'>HTMLInputElement</a>.</code><span><strong><code class=webidl>webkitdirectory</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#webkitdirectory%40%40HTMLInputElement%40attribute' aria-label="Permalink for <a href='h.html#HTMLInputElement@@@@interface'>HTMLInputElement</a>.webkitdirectory">§</a></span></dt>
<dd>Defined in <strong title='webkitdirectory is defined in File and Directory Entries API'><a href=https://wicg.github.io/entries-api/#dom-htmlinputelement-webkitdirectory>File and Directory Entries API</a></strong> </dd>
<dt id="webkitEntries@@HTMLInputElement@attribute"><code class=prefix><a href='h.html#HTMLInputElement@@@@interface'>HTMLInputElement</a>.</code><span><strong><code class=webidl>webkitEntries</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#webkitEntries%40%40HTMLInputElement%40attribute' aria-label="Permalink for <a href='h.html#HTMLInputElement@@@@interface'>HTMLInputElement</a>.webkitEntries">§</a></span></dt>
<dd>Defined in <strong title='webkitEntries is defined in File and Directory Entries API'><a href=https://wicg.github.io/entries-api/#dom-htmlinputelement-webkitentries>File and Directory Entries API</a></strong> </dd>
<dt id="webkitGetAsEntry()@@DataTransferItem@method"><code class=prefix><a href='d.html#DataTransferItem@@@@interface'>DataTransferItem</a>.</code><span><strong><code class=webidl>webkitGetAsEntry()</code></strong> (<em>WebIDL operation</em>) <a class='self-link' href='#webkitGetAsEntry()%40%40DataTransferItem%40method' aria-label="Permalink for <a href='d.html#DataTransferItem@@@@interface'>DataTransferItem</a>.webkitGetAsEntry()">§</a></span></dt>
<dd>Defined in <strong title='webkitGetAsEntry() is defined in File and Directory Entries API'><a href=https://wicg.github.io/entries-api/#dom-datatransferitem-webkitgetasentry>File and Directory Entries API</a></strong> </dd>
<dt id="webkitMatchesSelector(selectors)@@Element@method"><code class=prefix><a href='e.html#Element@@@@interface'>Element</a>.</code><span><strong><code class=webidl>webkitMatchesSelector(selectors)</code></strong> (<em>WebIDL operation</em>) <a class='self-link' href='#webkitMatchesSelector(selectors)%40%40Element%40method' aria-label="Permalink for <a href='e.html#Element@@@@interface'>Element</a>.webkitMatchesSelector(selectors)">§</a></span></dt>
<dd>Defined in <strong title='webkitMatchesSelector(selectors) is defined in DOM'><a href=https://dom.spec.whatwg.org/#dom-element-webkitmatchesselector>DOM</a></strong> </dd>
<dt id="webkitRelativePath@@File@attribute"><code class=prefix><a href='f.html#File@@@@interface'>File</a>.</code><span><strong><code class=webidl>webkitRelativePath</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#webkitRelativePath%40%40File%40attribute' aria-label="Permalink for <a href='f.html#File@@@@interface'>File</a>.webkitRelativePath">§</a></span></dt>
<dd>Defined in <strong title='webkitRelativePath is defined in File and Directory Entries API'><a href=https://wicg.github.io/entries-api/#dom-file-webkitrelativepath>File and Directory Entries API</a></strong> </dd>
<dt id="webkitURL@@@@interface"><code class=prefix></code><span><strong><code class=webidl>webkitURL</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#webkitURL%40%40%40%40interface' aria-label="Permalink for webkitURL">§</a></span></dt>
<dd>Defined in <strong title='webkitURL is defined in URL'><a href=https://url.spec.whatwg.org/#webkiturl>URL</a></strong> </dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/webkitURL.html' title='webkitURL entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="webrtc@@CSP%%dfn"><code class=prefix></code><span><strong>webrtc</strong> (<em>concept</em>) <a class='self-link' href='#webrtc%40%40CSP%25%25dfn' aria-label="Permalink for webrtc">§</a></span></dt>
<dd>Defined in <strong title='webrtc is defined in Content Security Policy 3'><a href=https://w3c.github.io/webappsec-csp/#webrtc>Content Security Policy 3</a></strong> </dd>
<dd>Referenced in
<a href=https://w3c.github.io/webtransport/ title='webrtc is referenced by WebTransport'>WebTransport</a></dd>
<dt id="webrtc@@MediaDecodingType@enum-value"><code class=prefix></code><span><strong><code class=webidl>"webrtc"</code></strong> (<em>value for <a href='m.html#MediaDecodingType@@@@enum'><code>MediaDecodingType</code></a> WebIDL enumeration</em>) <a class='self-link' href='#webrtc%40%40MediaDecodingType%40enum-value' aria-label="Permalink for webrtc">§</a></span></dt>
<dd>Defined in <strong title='webrtc is defined in Media Capabilities'><a href=https://w3c.github.io/media-capabilities/#dom-mediadecodingtype-webrtc>Media Capabilities</a></strong> </dd>
<dt id="webrtc@@MediaEncodingType@enum-value"><code class=prefix></code><span><strong><code class=webidl>"webrtc"</code></strong> (<em>value for <a href='m.html#MediaEncodingType@@@@enum'><code>MediaEncodingType</code></a> WebIDL enumeration</em>) <a class='self-link' href='#webrtc%40%40MediaEncodingType%40enum-value' aria-label="Permalink for webrtc">§</a></span></dt>
<dd>Defined in <strong title='webrtc is defined in Media Capabilities'><a href=https://w3c.github.io/media-capabilities/#dom-mediaencodingtype-webrtc>Media Capabilities</a></strong> </dd>
<dt id="webrtc pre-connect check@@directive@dfn"><code class=prefix></code><span><strong>webrtc pre-connect check</strong> (<em>concept for <code>directive</code> </em>) <a class='self-link' href='#webrtc%20pre-connect%20check%40%40directive%40dfn' aria-label="Permalink for webrtc pre-connect check">§</a></span></dt>
<dd>Defined in <strong title='webrtc pre-connect check is defined in Content Security Policy 3'><a href=https://w3c.github.io/webappsec-csp/#directive-webrtc-pre-connect-check>Content Security Policy 3</a></strong> </dd>
<dt id="webshare@@html%%dfn"><code class=prefix></code><span><strong>webshare</strong> (<em>concept</em>) <a class='self-link' href='#webshare%40%40html%25%25dfn' aria-label="Permalink for webshare">§</a></span></dt>
<dd>Defined in <strong title='webshare is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/nav-history-apis.html#blocking-webshare>HTML</a></strong> </dd>
<dt id="WebSocket@@@@interface"><code class=prefix></code><span><strong><code class=webidl>WebSocket</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#WebSocket%40%40%40%40interface' aria-label="Permalink for WebSocket">§</a></span></dt>
<dd>Defined in <strong title='WebSocket is defined in WebSockets'><a href=https://websockets.spec.whatwg.org/#websocket>WebSockets</a></strong> </dd>
<dd>Referenced in
<a href=https://fetch.spec.whatwg.org/ title='WebSocket is referenced by Fetch'>Fetch</a>,
<a href=https://html.spec.whatwg.org/multipage/ title='WebSocket is referenced by HTML'>HTML</a>,
<a href=https://streams.spec.whatwg.org/ title='WebSocket is referenced by Streams'>Streams</a>,
<a href=https://w3c.github.io/webrtc-pc/ title='WebSocket is referenced by WebRTC 1.0'>WebRTC 1.0</a></dd>
<dd>Related terms: <code>WebSocket.</code><a href='b.html#binaryType@@WebSocket@attribute'><code>binaryType</code></a>, <code>WebSocket.</code><a href='b.html#bufferedAmount@@WebSocket@attribute'><code>bufferedAmount</code></a>, <code>WebSocket.</code><a href='e.html#extensions@@WebSocket@attribute'><code>extensions</code></a>, <code>WebSocket.</code><a href='o.html#onclose@@WebSocket@attribute'><code>onclose</code></a>, <code>WebSocket.</code><a href='o.html#onerror@@WebSocket@attribute'><code>onerror</code></a>, <code>WebSocket.</code><a href='o.html#onmessage@@WebSocket@attribute'><code>onmessage</code></a>, <code>WebSocket.</code><a href='o.html#onopen@@WebSocket@attribute'><code>onopen</code></a>, <code>WebSocket.</code><a href='p.html#protocol@@WebSocket@attribute'><code>protocol</code></a>, <code>WebSocket.</code><a href='r.html#readyState@@WebSocket@attribute'><code>readyState</code></a>, <code>WebSocket.</code><a href='u.html#url@@WebSocket@attribute'><code>url</code></a>, <code>WebSocket.</code><a href='c.html#CLOSED@@WebSocket@const'><code>CLOSED</code></a>, <code>WebSocket.</code><a href='c.html#CLOSING@@WebSocket@const'><code>CLOSING</code></a>, <code>WebSocket.</code><a href='c.html#CONNECTING@@WebSocket@const'><code>CONNECTING</code></a>, <code>WebSocket.</code><a href='o.html#OPEN@@WebSocket@const'><code>OPEN</code></a>, <code>new </code><a href='w.html#WebSocket(url, protocols)@@WebSocket@constructor'><code>WebSocket(url, protocols)</code></a>, <em>event</em> <a href='c.html#close@@WebSocket@event'><code>close</code></a>, <em>event</em> <a href='e.html#error@@WebSocket@event'><code>error</code></a>, <em>event</em> <a href='m.html#message@@WebSocket@event'><code>message</code></a>, <em>event</em> <a href='o.html#open@@WebSocket@event'><code>open</code></a>, <code>WebSocket.</code><a href='c.html#close(code, reason)@@WebSocket@method'><code>close(code, reason)</code></a>, <code>WebSocket.</code><a href='s.html#send(data)@@WebSocket@method'><code>send(data)</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/WebSocket.html' title='WebSocket entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="WebSocket task source@@websockets%%dfn"><code class=prefix></code><span><strong>WebSocket task source</strong> (<em>concept</em>) <a class='self-link' href='#WebSocket%20task%20source%40%40websockets%25%25dfn' aria-label="Permalink for WebSocket task source">§</a></span></dt>
<dd>Defined in <strong title='WebSocket task source is defined in WebSockets'><a href=https://websockets.spec.whatwg.org/#websocket-task-source>WebSockets</a></strong> </dd>
<dt id="WebSocket(url, protocols)@@WebSocket@constructor"><code class=prefix>new </code><span><strong><code class=webidl>WebSocket(url, protocols)</code></strong> (<em>WebIDL constructor</em>) <a class='self-link' href='#WebSocket(url%2C%20protocols)%40%40WebSocket%40constructor' aria-label="Permalink for new WebSocket(url, protocols)">§</a></span></dt>
<dd>Defined in <strong title='WebSocket(url, protocols) is defined in WebSockets'><a href=https://websockets.spec.whatwg.org/#dom-websocket-websocket>WebSockets</a></strong> </dd>
<dt id="webtransport@@html%%dfn"><code class=prefix></code><span><strong>webtransport</strong> (<em>concept</em>) <a class='self-link' href='#webtransport%40%40html%25%25dfn' aria-label="Permalink for webtransport">§</a></span></dt>
<dd>Defined in <strong title='webtransport is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/nav-history-apis.html#blocking-webtransport>HTML</a></strong> </dd>
<dt id="WebTransport@@@@interface"><code class=prefix></code><span><strong><code class=webidl>WebTransport</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#WebTransport%40%40%40%40interface' aria-label="Permalink for WebTransport">§</a></span></dt>
<dd>Defined in <strong title='WebTransport is defined in WebTransport'><a href=https://w3c.github.io/webtransport/#webtransport>WebTransport</a></strong> </dd>
<dd>Referenced in
<a href=https://html.spec.whatwg.org/multipage/ title='WebTransport is referenced by HTML'>HTML</a></dd>
<dd>Related terms: <code>WebTransport.</code><a href='a.html#anticipatedConcurrentIncomingBidirectionalStreams@@WebTransport@attribute'><code>anticipatedConcurrentIncomingBidirectionalStreams</code></a>, <code>WebTransport.</code><a href='a.html#[[AnticipatedConcurrentIncomingBidirectionalStreams]]@@WebTransport@attribute'><code>[[AnticipatedConcurrentIncomingBidirectionalStreams]]</code></a>, <code>WebTransport.</code><a href='a.html#anticipatedConcurrentIncomingUnidirectionalStreams@@WebTransport@attribute'><code>anticipatedConcurrentIncomingUnidirectionalStreams</code></a>, <code>WebTransport.</code><a href='a.html#[[AnticipatedConcurrentIncomingUnidirectionalStreams]]@@WebTransport@attribute'><code>[[AnticipatedConcurrentIncomingUnidirectionalStreams]]</code></a>, <code>WebTransport.</code><a href='c.html#closed@@WebTransport@attribute'><code>closed</code></a>, <code>WebTransport.</code><a href='c.html#[[Closed]]@@WebTransport@attribute'><code>[[Closed]]</code></a>, <code>WebTransport.</code><a href='c.html#congestionControl@@WebTransport@attribute'><code>congestionControl</code></a>, <code>WebTransport.</code><a href='c.html#[[CongestionControl]]@@WebTransport@attribute'><code>[[CongestionControl]]</code></a>, <code>WebTransport.</code><a href='d.html#datagrams@@WebTransport@attribute'><code>datagrams</code></a>, <code>WebTransport.</code><a href='d.html#[[Datagrams]]@@WebTransport@attribute'><code>[[Datagrams]]</code></a>, <code>WebTransport.</code><a href='d.html#draining@@WebTransport@attribute'><code>draining</code></a>, <code>WebTransport.</code><a href='d.html#[[Draining]]@@WebTransport@attribute'><code>[[Draining]]</code></a>, <code>WebTransport.</code><a href='i.html#incomingBidirectionalStreams@@WebTransport@attribute'><code>incomingBidirectionalStreams</code></a>, <code>WebTransport.</code><a href='i.html#[[IncomingBidirectionalStreams]]@@WebTransport@attribute'><code>[[IncomingBidirectionalStreams]]</code></a>, <code>WebTransport.</code><a href='i.html#incomingUnidirectionalStreams@@WebTransport@attribute'><code>incomingUnidirectionalStreams</code></a>, <code>WebTransport.</code><a href='i.html#[[IncomingUnidirectionalStreams]]@@WebTransport@attribute'><code>[[IncomingUnidirectionalStreams]]</code></a>, <code>WebTransport.</code><a href='p.html#protocol@@WebTransport@attribute'><code>protocol</code></a>, <code>WebTransport.</code><a href='p.html#[[Protocol]]@@WebTransport@attribute'><code>[[Protocol]]</code></a>, <code>WebTransport.</code><a href='r.html#ready@@WebTransport@attribute'><code>ready</code></a>, <code>WebTransport.</code><a href='r.html#[[Ready]]@@WebTransport@attribute'><code>[[Ready]]</code></a>, <code>WebTransport.</code><a href='r.html#[[ReceiveStreams]]@@WebTransport@attribute'><code>[[ReceiveStreams]]</code></a>, <code>WebTransport.</code><a href='r.html#reliability@@WebTransport@attribute'><code>reliability</code></a>, <code>WebTransport.</code><a href='r.html#[[Reliability]]@@WebTransport@attribute'><code>[[Reliability]]</code></a>, <code>WebTransport.</code><a href='s.html#[[SendStreams]]@@WebTransport@attribute'><code>[[SendStreams]]</code></a>, <code>WebTransport.</code><a href='s.html#[[Session]]@@WebTransport@attribute'><code>[[Session]]</code></a>, <code>WebTransport.</code><a href='s.html#[[State]]@@WebTransport@attribute'><code>[[State]]</code></a>, <code>WebTransport.</code><a href='s.html#supportsReliableOnly@@WebTransport@attribute'><code>supportsReliableOnly</code></a>, <code>new </code><a href='w.html#WebTransport(url, options)@@WebTransport@constructor'><code>WebTransport(url, options)</code></a>, <code>WebTransport.</code><a href='c.html#close(closeInfo)@@WebTransport@method'><code>close(closeInfo)</code></a>, <code>WebTransport.</code><a href='c.html#createBidirectionalStream(options)@@WebTransport@method'><code>createBidirectionalStream(options)</code></a>, <code>WebTransport.</code><a href='c.html#createSendGroup()@@WebTransport@method'><code>createSendGroup()</code></a>, <code>WebTransport.</code><a href='c.html#createUnidirectionalStream(options)@@WebTransport@method'><code>createUnidirectionalStream(options)</code></a>, <code>WebTransport.</code><a href='g.html#getStats()@@WebTransport@method'><code>getStats()</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/WebTransport.html' title='WebTransport entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="WebTransport(url, options)@@WebTransport@constructor"><code class=prefix>new </code><span><strong><code class=webidl>WebTransport(url, options)</code></strong> (<em>WebIDL constructor</em>) <a class='self-link' href='#WebTransport(url%2C%20options)%40%40WebTransport%40constructor' aria-label="Permalink for new WebTransport(url, options)">§</a></span></dt>
<dd>Defined in <strong title='WebTransport(url, options) is defined in WebTransport'><a href=https://w3c.github.io/webtransport/#dom-webtransport-webtransport>WebTransport</a></strong> </dd>
<dt id="WebTransportBidirectionalStream@@@@interface"><code class=prefix></code><span><strong><code class=webidl>WebTransportBidirectionalStream</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#WebTransportBidirectionalStream%40%40%40%40interface' aria-label="Permalink for WebTransportBidirectionalStream">§</a></span></dt>
<dd>Defined in <strong title='WebTransportBidirectionalStream is defined in WebTransport'><a href=https://w3c.github.io/webtransport/#webtransportbidirectionalstream>WebTransport</a></strong> </dd>
<dd>Related terms: <code>WebTransportBidirectionalStream.</code><a href='r.html#readable@@WebTransportBidirectionalStream@attribute'><code>readable</code></a>, <code>WebTransportBidirectionalStream.</code><a href='r.html#[[Readable]]@@WebTransportBidirectionalStream@attribute'><code>[[Readable]]</code></a>, <code>WebTransportBidirectionalStream.</code><a href='t.html#[[Transport]]@@WebTransportBidirectionalStream@attribute'><code>[[Transport]]</code></a>, <code>WebTransportBidirectionalStream.</code><a href='w.html#writable@@WebTransportBidirectionalStream@attribute'><code>writable</code></a>, <code>WebTransportBidirectionalStream.</code><a href='w.html#[[Writable]]@@WebTransportBidirectionalStream@attribute'><code>[[Writable]]</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/WebTransportBidirectionalStream.html' title='WebTransportBidirectionalStream entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="WebTransportCloseInfo@@@@dictionary"><code class=prefix></code><span><strong><code class=webidl>WebTransportCloseInfo</code></strong> (<em>WebIDL dictionary</em>) <a class='self-link' href='#WebTransportCloseInfo%40%40%40%40dictionary' aria-label="Permalink for WebTransportCloseInfo">§</a></span></dt>