-
Notifications
You must be signed in to change notification settings - Fork 2
/
v.html
3675 lines (1739 loc) · 455 KB
/
v.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 v"
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="v128@@ValueType@enum-value"><code class=prefix></code><span><strong><code class=webidl>"v128"</code></strong> (<em>value for <a href='v.html#ValueType@@@@enum'><code>ValueType</code></a> WebIDL enumeration</em>) <a class='self-link' href='#v128%40%40ValueType%40enum-value' aria-label="Permalink for v128">§</a></span></dt>
<dd>Defined in <strong title='v128 is defined in WebAssembly JavaScript Interface: Content Security Policy'><a href=https://webassembly.github.io/content-security-policy/js-api/#dom-valuetype-v128>WebAssembly JavaScript Interface: Content Security Policy</a></strong> , <strong title='v128 is defined in WebAssembly JavaScript Interface: ESM Integration'><a href=https://webassembly.github.io/esm-integration/js-api/#dom-valuetype-v128>WebAssembly JavaScript Interface: ESM Integration</a></strong> , <strong title='v128 is defined in WebAssembly JavaScript Interface: Exception Handling'><a href=https://webassembly.github.io/exception-handling/js-api/#dom-valuetype-v128>WebAssembly JavaScript Interface: Exception Handling</a></strong> , <strong title='v128 is defined in WebAssembly JavaScript Interface: Promise Integration'><a href=https://webassembly.github.io/js-promise-integration/js-api/#dom-valuetype-v128>WebAssembly JavaScript Interface: Promise Integration</a></strong> , <strong title='v128 is defined in WebAssembly JavaScript Interface: JS String Builtins'><a href=https://webassembly.github.io/js-string-builtins/js-api/#dom-valuetype-v128>WebAssembly JavaScript Interface: JS String Builtins</a></strong> , <strong title='v128 is defined in WebAssembly JavaScript Interface: Type Reflection'><a href=https://webassembly.github.io/js-types/js-api/#dom-valuetype-v128>WebAssembly JavaScript Interface: Type Reflection</a></strong> , <strong title='v128 is defined in WebAssembly JavaScript Interface: Threading'><a href=https://webassembly.github.io/threads/js-api/#dom-valuetype-v128>WebAssembly JavaScript Interface: Threading</a></strong> , <strong title='v128 is defined in WebAssembly JavaScript Interface'><a href=https://webassembly.github.io/spec/js-api/#dom-valuetype-v128>WebAssembly JavaScript Interface</a></strong> </dd>
<dt id=":valid@@@@selector"><code class=prefix></code><span><strong><code class=css>:valid</code></strong> (<em>CSS selector</em>) <a class='self-link' href='#%3Avalid%40%40%40%40selector' aria-label="Permalink for :valid">§</a></span></dt>
<dd>Defined in <strong title=':valid is defined in Selectors 4'><a href=https://drafts.csswg.org/selectors-4/#valid-pseudo>Selectors 4</a></strong> </dd>
<dt id="[[valid]]@@GPUObjectBase@attribute"><code class=prefix><a href='g.html#GPUObjectBase@@@@interface'>GPUObjectBase</a>.</code><span><strong><code class=webidl>[[valid]]</code></strong> (<em>internal slot</em>) <a class='self-link' href='#%5B%5Bvalid%5D%5D%40%40GPUObjectBase%40attribute' aria-label="Permalink for <a href='g.html#GPUObjectBase@@@@interface'>GPUObjectBase</a>.[[valid]]">§</a></span></dt>
<dd>Defined in <strong title='[[valid]] is defined in WebGPU'><a href=https://gpuweb.github.io/gpuweb/#dom-gpuobjectbase-valid-slot>WebGPU</a></strong> </dd>
<dt id="valid@@StaticRange@dfn"><code class=prefix></code><span><strong>valid</strong> (<em>concept for <a href='s.html#StaticRange@@@@interface'><code>StaticRange</code></a> </em>) <a class='self-link' href='#valid%40%40StaticRange%40dfn' aria-label="Permalink for valid">§</a></span></dt>
<dd>Defined in <strong title='valid is defined in DOM'><a href=https://dom.spec.whatwg.org/#staticrange-valid>DOM</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-highlight-api-1/ title='valid is referenced by CSS Custom Highlight API 1'>CSS Custom Highlight API 1</a></dd>
<dt id="valid@@i18n-glossary%%dfn"><code class=prefix></code><span><strong>valid</strong> (<em>concept</em>) <a class='self-link' href='#valid%40%40i18n-glossary%25%25dfn' aria-label="Permalink for valid">§</a></span></dt>
<dd>Defined in <strong title='valid is defined in Internationalization Glossary'><a href=https://w3c.github.io/i18n-glossary/#dfn-valid>Internationalization Glossary</a></strong> </dd>
<dd>Referenced in
<a href=https://gpuweb.github.io/gpuweb/ title='valid is referenced by WebGPU'>WebGPU</a></dd>
<dt id="valid@@webgpu%%abstract-op"><code class=prefix></code><span><strong><code class=concept>valid</code></strong> (<em>algorithm</em>) <a class='self-link' href='#valid%40%40webgpu%25%25abstract-op' aria-label="Permalink for valid">§</a></span></dt>
<dd>Defined in <strong title='valid is defined in WebGPU'><a href=https://gpuweb.github.io/gpuweb/#abstract-opdef-valid>WebGPU</a></strong> </dd>
<dt id="valid@@adapter/[[state]]@enum-value"><code class=prefix></code><span><strong><code class=webidl>"valid"</code></strong> (<em>value for <a href='s.html#[[state]]@@adapter@attribute'><code>[[state]]</code></a> attribute of <code>adapter</code> WebIDL enumeration</em>) <a class='self-link' href='#valid%40%40adapter%2F%5B%5Bstate%5D%5D%40enum-value' aria-label="Permalink for valid">§</a></span></dt>
<dd>Defined in <strong title='valid is defined in WebGPU'><a href=https://gpuweb.github.io/gpuweb/#dom-adapter-state-valid>WebGPU</a></strong> </dd>
<dt id="valid@@ValidityState@attribute"><code class=prefix><a href='v.html#ValidityState@@@@interface'>ValidityState</a>.</code><span><strong><code class=webidl>valid</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#valid%40%40ValidityState%40attribute' aria-label="Permalink for <a href='v.html#ValidityState@@@@interface'>ValidityState</a>.valid">§</a></span></dt>
<dd>Defined in <strong title='valid is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#dom-validitystate-valid>HTML</a></strong> </dd>
<dt id="valid AudioDecoderConfig@@webcodecs%%dfn"><code class=prefix></code><span><strong>valid AudioDecoderConfig</strong> (<em>concept</em>) <a class='self-link' href='#valid%20AudioDecoderConfig%40%40webcodecs%25%25dfn' aria-label="Permalink for valid AudioDecoderConfig">§</a></span></dt>
<dd>Defined in <strong title='valid AudioDecoderConfig is defined in WebCodecs'><a href=https://w3c.github.io/webcodecs/#valid-audiodecoderconfig>WebCodecs</a></strong> </dd>
<dt id="valid color@@css-color%%dfn"><code class=prefix></code><span><strong>valid color</strong> (<em>concept</em>) <a class='self-link' href='#valid%20color%40%40css-color%25%25dfn' aria-label="Permalink for valid color">§</a></span></dt>
<dd>Defined in <strong title='valid color is defined in CSS Color 4'><a href=https://drafts.csswg.org/css-color-4/#valid-color>CSS Color 4</a></strong> , <strong title='valid color is defined in CSS Color 5'><a href=https://drafts.csswg.org/css-color-5/#valid-color>CSS Color 5</a></strong> </dd>
<dt id="valid CSS property@@css-typed-om%%dfn"><code class=prefix></code><span><strong>valid CSS property</strong> (<em>concept</em>) <a class='self-link' href='#valid%20CSS%20property%40%40css-typed-om%25%25dfn' aria-label="Permalink for valid CSS property">§</a></span></dt>
<dd>Defined in <strong title='valid CSS property is defined in CSS Typed OM 1'><a href=https://drafts.css-houdini.org/css-typed-om-1/#valid-css-property>CSS Typed OM 1</a></strong> </dd>
<dt id="valid custom element name@@html%%dfn"><code class=prefix></code><span><strong>valid custom element name</strong> (<em>concept</em>) <a class='self-link' href='#valid%20custom%20element%20name%40%40html%25%25dfn' aria-label="Permalink for valid custom element name">§</a></span></dt>
<dd>Defined in <strong title='valid custom element name is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/custom-elements.html#valid-custom-element-name>HTML</a></strong> </dd>
<dd>Referenced in
<a href=https://dom.spec.whatwg.org/ title='valid custom element name is referenced by DOM'>DOM</a>,
<a href=https://drafts.csswg.org/css-syntax-3/ title='valid custom element name is referenced by CSS Syntax 3'>CSS Syntax 3</a></dd>
<dt id="valid domain string@@url%%dfn"><code class=prefix></code><span><strong>valid domain string</strong> (<em>concept</em>) <a class='self-link' href='#valid%20domain%20string%40%40url%25%25dfn' aria-label="Permalink for valid domain string">§</a></span></dt>
<dd>Defined in <strong title='valid domain string is defined in URL'><a href=https://url.spec.whatwg.org/#valid-domain-string>URL</a></strong> </dd>
<dd>Referenced in
<a href=https://w3c.github.io/web-nfc/ title='valid domain string is referenced by Web NFC API'>Web NFC API</a>,
<a href=https://w3c.github.io/webauthn/ title='valid domain string is referenced by Web Authentication'>Web Authentication</a></dd>
<dt id="valid host string@@url%%dfn"><code class=prefix></code><span><strong>valid host string</strong> (<em>concept</em>) <a class='self-link' href='#valid%20host%20string%40%40url%25%25dfn' aria-label="Permalink for valid host string">§</a></span></dt>
<dd>Defined in <strong title='valid host string is defined in URL'><a href=https://url.spec.whatwg.org/#valid-host-string>URL</a></strong> </dd>
<dt id="valid IPv4-address string@@url%%dfn"><code class=prefix></code><span><strong>valid IPv4-address string</strong> (<em>concept</em>) <a class='self-link' href='#valid%20IPv4-address%20string%40%40url%25%25dfn' aria-label="Permalink for valid IPv4-address string">§</a></span></dt>
<dd>Defined in <strong title='valid IPv4-address string is defined in URL'><a href=https://url.spec.whatwg.org/#valid-ipv4-address-string>URL</a></strong> </dd>
<dt id="valid IPv6-address string@@url%%dfn"><code class=prefix></code><span><strong>valid IPv6-address string</strong> (<em>concept</em>) <a class='self-link' href='#valid%20IPv6-address%20string%40%40url%25%25dfn' aria-label="Permalink for valid IPv6-address string">§</a></span></dt>
<dd>Defined in <strong title='valid IPv6-address string is defined in URL'><a href=https://url.spec.whatwg.org/#valid-ipv6-address-string>URL</a></strong> </dd>
<dt id="valid list of part mappings@@css-shadow-parts%%dfn"><code class=prefix></code><span><strong>valid list of part mappings</strong> (<em>concept</em>) <a class='self-link' href='#valid%20list%20of%20part%20mappings%40%40css-shadow-parts%25%25dfn' aria-label="Permalink for valid list of part mappings">§</a></span></dt>
<dd>Defined in <strong title='valid list of part mappings is defined in CSS Shadow Parts'><a href=https://drafts.csswg.org/css-shadow-parts-1/#valid-list-of-part-mappings>CSS Shadow Parts</a></strong> </dd>
<dt id="valid MIME type string@@mimesniff%%dfn"><code class=prefix></code><span><strong>valid MIME type string</strong> (<em>concept</em>) <a class='self-link' href='#valid%20MIME%20type%20string%40%40mimesniff%25%25dfn' aria-label="Permalink for valid MIME type string">§</a></span></dt>
<dd>Defined in <strong title='valid MIME type string is defined in MIME Sniffing'><a href=https://mimesniff.spec.whatwg.org/#valid-mime-type>MIME Sniffing</a></strong> </dd>
<dd>Referenced in
<a href=https://html.spec.whatwg.org/multipage/ title='valid MIME type string is referenced by HTML'>HTML</a>,
<a href=https://drafts.csswg.org/css-images-4/ title='valid MIME type string is referenced by CSS Images 4'>CSS Images 4</a>,
<a href=https://w3c.github.io/encrypted-media/ title='valid MIME type string is referenced by Encrypted Media Extensions'>Encrypted Media Extensions</a>,
<a href=https://w3c.github.io/media-capabilities/ title='valid MIME type string is referenced by Media Capabilities'>Media Capabilities</a>,
<a href=https://w3c.github.io/webcodecs/ title='valid MIME type string is referenced by WebCodecs'>WebCodecs</a></dd>
<dt id="valid MIME type string with no parameters@@mimesniff%%dfn"><code class=prefix></code><span><strong>valid MIME type string with no parameters</strong> (<em>concept</em>) <a class='self-link' href='#valid%20MIME%20type%20string%20with%20no%20parameters%40%40mimesniff%25%25dfn' aria-label="Permalink for valid MIME type string with no parameters">§</a></span></dt>
<dd>Defined in <strong title='valid MIME type string with no parameters is defined in MIME Sniffing'><a href=https://mimesniff.spec.whatwg.org/#valid-mime-type-with-no-parameters>MIME Sniffing</a></strong> </dd>
<dd>Referenced in
<a href=https://html.spec.whatwg.org/multipage/ title='valid MIME type string with no parameters is referenced by HTML'>HTML</a></dd>
<dt id="valid opaque-host string@@url%%dfn"><code class=prefix></code><span><strong>valid opaque-host string</strong> (<em>concept</em>) <a class='self-link' href='#valid%20opaque-host%20string%40%40url%25%25dfn' aria-label="Permalink for valid opaque-host string">§</a></span></dt>
<dd>Defined in <strong title='valid opaque-host string is defined in URL'><a href=https://url.spec.whatwg.org/#valid-opaque-host-string>URL</a></strong> </dd>
<dt id="valid part mapping@@css-shadow-parts%%dfn"><code class=prefix></code><span><strong>valid part mapping</strong> (<em>concept</em>) <a class='self-link' href='#valid%20part%20mapping%40%40css-shadow-parts%25%25dfn' aria-label="Permalink for valid part mapping">§</a></span></dt>
<dd>Defined in <strong title='valid part mapping is defined in CSS Shadow Parts'><a href=https://drafts.csswg.org/css-shadow-parts-1/#valid-part-mapping>CSS Shadow Parts</a></strong> </dd>
<dt id="valid payment method manifest@@payment-method-manifest%%dfn"><code class=prefix></code><span><strong>valid payment method manifest</strong> (<em>concept</em>) <a class='self-link' href='#valid%20payment%20method%20manifest%40%40payment-method-manifest%25%25dfn' aria-label="Permalink for valid payment method manifest">§</a></span></dt>
<dd>Defined in <strong title='valid payment method manifest is defined in Payment Method Manifest'><a href=https://w3c.github.io/payment-method-manifest/#valid-payment-method-manifest>Payment Method Manifest</a></strong> </dd>
<dt id="valid shadow host name@@dom%%dfn"><code class=prefix></code><span><strong>valid shadow host name</strong> (<em>concept</em>) <a class='self-link' href='#valid%20shadow%20host%20name%40%40dom%25%25dfn' aria-label="Permalink for valid shadow host name">§</a></span></dt>
<dd>Defined in <strong title='valid shadow host name is defined in DOM'><a href=https://dom.spec.whatwg.org/#valid-shadow-host-name>DOM</a></strong> </dd>
<dd>Referenced in
<a href=https://w3c.github.io/edit-context/ title='valid shadow host name is referenced by EditContext API'>EditContext API</a></dd>
<dt id="valid style sheet@@CSS%%dfn"><code class=prefix></code><span><strong>valid style sheet</strong> (<em>concept</em>) <a class='self-link' href='#valid%20style%20sheet%40%40CSS%25%25dfn' aria-label="Permalink for valid style sheet">§</a></span></dt>
<dd>Defined in <strong title='valid style sheet is defined in CSS 2.1'><a href=https://www.w3.org/TR/CSS21/conform.html#valid-style-sheet>CSS 2.1</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-namespaces-3/ title='valid style sheet is referenced by CSS Namespaces 3'>CSS Namespaces 3</a></dd>
<dt id="valid to draw@@webgpu%%abstract-op"><code class=prefix></code><span><strong>valid to draw</strong> (<em>algorithm</em>) <a class='self-link' href='#valid%20to%20draw%40%40webgpu%25%25abstract-op' aria-label="Permalink for valid to draw">§</a></span></dt>
<dd>Defined in <strong title='valid to draw is defined in WebGPU'><a href=https://gpuweb.github.io/gpuweb/#abstract-opdef-valid-to-draw>WebGPU</a></strong> </dd>
<dt id="valid to draw indexed@@webgpu%%abstract-op"><code class=prefix></code><span><strong>valid to draw indexed</strong> (<em>algorithm</em>) <a class='self-link' href='#valid%20to%20draw%20indexed%40%40webgpu%25%25abstract-op' aria-label="Permalink for valid to draw indexed">§</a></span></dt>
<dd>Defined in <strong title='valid to draw indexed is defined in WebGPU'><a href=https://gpuweb.github.io/gpuweb/#abstract-opdef-valid-to-draw-indexed>WebGPU</a></strong> </dd>
<dt id="valid to use with@@webgpu%%abstract-op"><code class=prefix></code><span><strong>valid to use with</strong> (<em>algorithm</em>) <a class='self-link' href='#valid%20to%20use%20with%40%40webgpu%25%25abstract-op' aria-label="Permalink for valid to use with">§</a></span></dt>
<dd>Defined in <strong title='valid to use with is defined in WebGPU'><a href=https://gpuweb.github.io/gpuweb/#abstract-opdef-valid-to-use-with>WebGPU</a></strong> </dd>
<dt id="valid URL string@@url%%dfn"><code class=prefix></code><span><strong>valid URL string</strong> (<em>concept</em>) <a class='self-link' href='#valid%20URL%20string%40%40url%25%25dfn' aria-label="Permalink for valid URL string">§</a></span></dt>
<dd>Defined in <strong title='valid URL string is defined in URL'><a href=https://url.spec.whatwg.org/#valid-url-string>URL</a></strong> </dd>
<dd>Referenced in
<a href=https://html.spec.whatwg.org/multipage/ title='valid URL string is referenced by HTML'>HTML</a>,
<a href=https://w3c.github.io/web-share-target/ title='valid URL string is referenced by Web Share Target API'>Web Share Target API</a>,
<a href=https://wicg.github.io/nav-speculation/speculation-rules.html title='valid URL string is referenced by Speculation Rules'>Speculation Rules</a>,
<a href=https://w3c.github.io/epub-specs/epub33/core/ title='valid URL string is referenced by EPUB 3.3'>EPUB 3.3</a>,
<a href=https://w3c.github.io/epub-specs/epub33/rs/ title='valid URL string is referenced by EPUB Reading Systems 3.3'>EPUB Reading Systems 3.3</a>,
<a href=https://w3c.github.io/FileAPI/ title='valid URL string is referenced by File API'>File API</a>,
<a href=https://w3c.github.io/payment-method-manifest/ title='valid URL string is referenced by Payment Method Manifest'>Payment Method Manifest</a></dd>
<dt id="Valid Usage@@GPURenderPassDescriptor@abstract-op"><code class=prefix></code><span><strong>Valid Usage</strong> (<em>algorithm for <a href='g.html#GPURenderPassDescriptor@@@@dictionary'><code>GPURenderPassDescriptor</code></a> </em>) <a class='self-link' href='#Valid%20Usage%40%40GPURenderPassDescriptor%40abstract-op' aria-label="Permalink for Valid Usage">§</a></span></dt>
<dd>Defined in <strong title='Valid Usage is defined in WebGPU'><a href=https://gpuweb.github.io/gpuweb/#abstract-opdef-gpurenderpassdescriptor-valid-usage>WebGPU</a></strong> </dd>
<dt id="valid VideoDecoderConfig@@webcodecs%%dfn"><code class=prefix></code><span><strong>valid VideoDecoderConfig</strong> (<em>concept</em>) <a class='self-link' href='#valid%20VideoDecoderConfig%40%40webcodecs%25%25dfn' aria-label="Permalink for valid VideoDecoderConfig">§</a></span></dt>
<dd>Defined in <strong title='valid VideoDecoderConfig is defined in WebCodecs'><a href=https://w3c.github.io/webcodecs/#valid-videodecoderconfig>WebCodecs</a></strong> </dd>
<dt id="valid-relative-ocf-URL-with-fragment string@@epub%%dfn"><code class=prefix></code><span><strong>valid-relative-ocf-URL-with-fragment string</strong> (<em>concept</em>) <a class='self-link' href='#valid-relative-ocf-URL-with-fragment%20string%40%40epub%25%25dfn' aria-label="Permalink for valid-relative-ocf-URL-with-fragment string">§</a></span></dt>
<dd>Defined in <strong title='valid-relative-ocf-URL-with-fragment string is defined in EPUB 3.3'><a href=https://w3c.github.io/epub-specs/epub33/core/#dfn-valid-relative-container-url-with-fragment-string>EPUB 3.3</a></strong> </dd>
<dt id="validate@@dom%%dfn"><code class=prefix></code><span><strong>validate</strong> (<em>concept</em>) <a class='self-link' href='#validate%40%40dom%25%25dfn' aria-label="Permalink for validate">§</a></span></dt>
<dd>Defined in <strong title='validate is defined in DOM'><a href=https://dom.spec.whatwg.org/#validate>DOM</a></strong> </dd>
<dt id="validate a payment method identifier@@payment-method-id%%dfn"><code class=prefix></code><span><strong>validate a payment method identifier</strong> (<em>concept</em>) <a class='self-link' href='#validate%20a%20payment%20method%20identifier%40%40payment-method-id%25%25dfn' aria-label="Permalink for validate a payment method identifier">§</a></span></dt>
<dd>Defined in <strong title='validate a payment method identifier is defined in Payment Method Identifiers'><a href=https://w3c.github.io/payment-method-id/#dfn-validate-a-payment-method-identifier>Payment Method Identifiers</a></strong> </dd>
<dt id="validate a URL-based payment method identifier@@payment-method-id%%dfn"><code class=prefix></code><span><strong>validate a URL-based payment method identifier</strong> (<em>concept</em>) <a class='self-link' href='#validate%20a%20URL-based%20payment%20method%20identifier%40%40payment-method-id%25%25dfn' aria-label="Permalink for validate a URL-based payment method identifier">§</a></span></dt>
<dd>Defined in <strong title='validate a URL-based payment method identifier is defined in Payment Method Identifiers'><a href=https://w3c.github.io/payment-method-id/#dfn-validate-a-url-based-payment-method-identifier>Payment Method Identifiers</a></strong> </dd>
<dd>Referenced in
<a href=https://w3c.github.io/payment-method-manifest/ title='validate a URL-based payment method identifier is referenced by Payment Method Manifest'>Payment Method Manifest</a></dd>
<dt id="validate an ICE server URL@@webrtc%%abstract-op"><code class=prefix></code><span><strong>validate an ICE server URL</strong> (<em>algorithm</em>) <a class='self-link' href='#validate%20an%20ICE%20server%20URL%40%40webrtc%25%25abstract-op' aria-label="Permalink for validate an ICE server URL">§</a></span></dt>
<dd>Defined in <strong title='validate an ICE server URL is defined in WebRTC 1.0'><a href=https://w3c.github.io/webrtc-pc/#dfn-validate-an-ice-server-url>WebRTC 1.0</a></strong> </dd>
<dt id="validate and extract@@dom%%dfn"><code class=prefix></code><span><strong>validate and extract</strong> (<em>concept</em>) <a class='self-link' href='#validate%20and%20extract%40%40dom%25%25dfn' aria-label="Permalink for validate and extract">§</a></span></dt>
<dd>Defined in <strong title='validate and extract is defined in DOM'><a href=https://dom.spec.whatwg.org/#validate-and-extract>DOM</a></strong> </dd>
<dt id="validate and parse the payment method manifest@@payment-method-manifest%%dfn"><code class=prefix></code><span><strong>validate and parse the payment method manifest</strong> (<em>concept</em>) <a class='self-link' href='#validate%20and%20parse%20the%20payment%20method%20manifest%40%40payment-method-manifest%25%25dfn' aria-label="Permalink for validate and parse the payment method manifest">§</a></span></dt>
<dd>Defined in <strong title='validate and parse the payment method manifest is defined in Payment Method Manifest'><a href=https://w3c.github.io/payment-method-manifest/#validate-and-parse-the-payment-method-manifest>Payment Method Manifest</a></strong> </dd>
<dt id="Validate encoder bind groups@@webgpu%%abstract-op"><code class=prefix></code><span><strong>Validate encoder bind groups</strong> (<em>algorithm</em>) <a class='self-link' href='#Validate%20encoder%20bind%20groups%40%40webgpu%25%25abstract-op' aria-label="Permalink for Validate encoder bind groups">§</a></span></dt>
<dd>Defined in <strong title='Validate encoder bind groups is defined in WebGPU'><a href=https://gpuweb.github.io/gpuweb/#abstract-opdef-validate-encoder-bind-groups>WebGPU</a></strong> </dd>
<dt id="validate GPUColor shape@@webgpu%%abstract-op"><code class=prefix></code><span><strong>validate GPUColor shape</strong> (<em>algorithm</em>) <a class='self-link' href='#validate%20GPUColor%20shape%40%40webgpu%25%25abstract-op' aria-label="Permalink for validate GPUColor shape">§</a></span></dt>
<dd>Defined in <strong title='validate GPUColor shape is defined in WebGPU'><a href=https://gpuweb.github.io/gpuweb/#abstract-opdef-validate-gpucolor-shape>WebGPU</a></strong> </dd>
<dt id="validate GPUExtent3D shape@@webgpu%%abstract-op"><code class=prefix></code><span><strong>validate GPUExtent3D shape</strong> (<em>algorithm</em>) <a class='self-link' href='#validate%20GPUExtent3D%20shape%40%40webgpu%25%25abstract-op' aria-label="Permalink for validate GPUExtent3D shape">§</a></span></dt>
<dd>Defined in <strong title='validate GPUExtent3D shape is defined in WebGPU'><a href=https://gpuweb.github.io/gpuweb/#abstract-opdef-validate-gpuextent3d-shape>WebGPU</a></strong> </dd>
<dt id="validate GPUOrigin2D shape@@webgpu%%abstract-op"><code class=prefix></code><span><strong>validate GPUOrigin2D shape</strong> (<em>algorithm</em>) <a class='self-link' href='#validate%20GPUOrigin2D%20shape%40%40webgpu%25%25abstract-op' aria-label="Permalink for validate GPUOrigin2D shape">§</a></span></dt>
<dd>Defined in <strong title='validate GPUOrigin2D shape is defined in WebGPU'><a href=https://gpuweb.github.io/gpuweb/#abstract-opdef-validate-gpuorigin2d-shape>WebGPU</a></strong> </dd>
<dt id="validate GPUOrigin3D shape@@webgpu%%abstract-op"><code class=prefix></code><span><strong>validate GPUOrigin3D shape</strong> (<em>algorithm</em>) <a class='self-link' href='#validate%20GPUOrigin3D%20shape%40%40webgpu%25%25abstract-op' aria-label="Permalink for validate GPUOrigin3D shape">§</a></span></dt>
<dd>Defined in <strong title='validate GPUOrigin3D shape is defined in WebGPU'><a href=https://gpuweb.github.io/gpuweb/#abstract-opdef-validate-gpuorigin3d-shape>WebGPU</a></strong> </dd>
<dt id="Validate texture format required features@@webgpu%%abstract-op"><code class=prefix></code><span><strong>Validate texture format required features</strong> (<em>algorithm</em>) <a class='self-link' href='#Validate%20texture%20format%20required%20features%40%40webgpu%25%25abstract-op' aria-label="Permalink for Validate texture format required features">§</a></span></dt>
<dd>Defined in <strong title='Validate texture format required features is defined in WebGPU'><a href=https://gpuweb.github.io/gpuweb/#abstract-opdef-validate-texture-format-required-features>WebGPU</a></strong> </dd>
<dt id="Validate the encoder state@@webgpu%%abstract-op"><code class=prefix></code><span><strong>Validate the encoder state</strong> (<em>algorithm</em>) <a class='self-link' href='#Validate%20the%20encoder%20state%40%40webgpu%25%25abstract-op' aria-label="Permalink for Validate the encoder state">§</a></span></dt>
<dd>Defined in <strong title='Validate the encoder state is defined in WebGPU'><a href=https://gpuweb.github.io/gpuweb/#abstract-opdef-validate-the-encoder-state>WebGPU</a></strong> </dd>
<dt id="Validate timestampWrites@@webgpu%%abstract-op"><code class=prefix></code><span><strong>Validate timestampWrites</strong> (<em>algorithm</em>) <a class='self-link' href='#Validate%20timestampWrites%40%40webgpu%25%25abstract-op' aria-label="Permalink for Validate timestampWrites">§</a></span></dt>
<dd>Defined in <strong title='Validate timestampWrites is defined in WebGPU'><a href=https://gpuweb.github.io/gpuweb/#abstract-opdef-validate-timestampwrites>WebGPU</a></strong> </dd>
<dt id="validate(bytes, options)@@WebAssembly@method"><code class=prefix><a href='w.html#WebAssembly@@@@namespace'>WebAssembly</a>.</code><span><strong><code class=webidl>validate(bytes, options)</code></strong> (<em>WebIDL operation</em>) <a class='self-link' href='#validate(bytes%2C%20options)%40%40WebAssembly%40method' aria-label="Permalink for <a href='w.html#WebAssembly@@@@namespace'>WebAssembly</a>.validate(bytes, options)">§</a></span></dt>
<dd>Defined in <strong title='validate(bytes, options) is defined in WebAssembly JavaScript Interface: JS String Builtins'><a href=https://webassembly.github.io/js-string-builtins/js-api/#dom-webassembly-validate>WebAssembly JavaScript Interface: JS String Builtins</a></strong> </dd>
<dt id="validate(bytes)@@WebAssembly@method"><code class=prefix><a href='w.html#WebAssembly@@@@namespace'>WebAssembly</a>.</code><span><strong><code class=webidl>validate(bytes)</code></strong> (<em>WebIDL operation</em>) <a class='self-link' href='#validate(bytes)%40%40WebAssembly%40method' aria-label="Permalink for <a href='w.html#WebAssembly@@@@namespace'>WebAssembly</a>.validate(bytes)">§</a></span></dt>
<dt><code class=prefix><a href='w.html#WebAssembly@@@@namespace'>WebAssembly</a>.</code><span><strong><code class=webidl>validate(bytes)</code></strong> (<em>WebIDL operation</em>) <a class='self-link' href='#validate(bytes)%40%40WebAssembly%40method' aria-label="Permalink for <a href='w.html#WebAssembly@@@@namespace'>WebAssembly</a>.validate(bytes)">§</a></span></dt><dt><code class=prefix><a href='w.html#WebAssembly@@@@namespace'>WebAssembly</a>.</code><span><strong><code class=webidl>validate(bytes)</code></strong> (<em>WebIDL operation</em>) <a class='self-link' href='#validate(bytes)%40%40WebAssembly%40method' aria-label="Permalink for <a href='w.html#WebAssembly@@@@namespace'>WebAssembly</a>.validate(bytes)">§</a></span></dt><dt><code class=prefix><a href='w.html#WebAssembly@@@@namespace'>WebAssembly</a>.</code><span><strong><code class=webidl>validate(bytes)</code></strong> (<em>WebIDL operation</em>) <a class='self-link' href='#validate(bytes)%40%40WebAssembly%40method' aria-label="Permalink for <a href='w.html#WebAssembly@@@@namespace'>WebAssembly</a>.validate(bytes)">§</a></span></dt><dt><code class=prefix><a href='w.html#WebAssembly@@@@namespace'>WebAssembly</a>.</code><span><strong><code class=webidl>validate(bytes)</code></strong> (<em>WebIDL operation</em>) <a class='self-link' href='#validate(bytes)%40%40WebAssembly%40method' aria-label="Permalink for <a href='w.html#WebAssembly@@@@namespace'>WebAssembly</a>.validate(bytes)">§</a></span></dt><dt><code class=prefix><a href='w.html#WebAssembly@@@@namespace'>WebAssembly</a>.</code><span><strong><code class=webidl>validate(bytes)</code></strong> (<em>WebIDL operation</em>) <a class='self-link' href='#validate(bytes)%40%40WebAssembly%40method' aria-label="Permalink for <a href='w.html#WebAssembly@@@@namespace'>WebAssembly</a>.validate(bytes)">§</a></span></dt><dt><code class=prefix><a href='w.html#WebAssembly@@@@namespace'>WebAssembly</a>.</code><span><strong><code class=webidl>validate(bytes)</code></strong> (<em>WebIDL operation</em>) <a class='self-link' href='#validate(bytes)%40%40WebAssembly%40method' aria-label="Permalink for <a href='w.html#WebAssembly@@@@namespace'>WebAssembly</a>.validate(bytes)">§</a></span></dt>
<dd>Defined in <strong title='validate(bytes) is defined in WebAssembly JavaScript Interface: Content Security Policy'><a href=https://webassembly.github.io/content-security-policy/js-api/#dom-webassembly-validate>WebAssembly JavaScript Interface: Content Security Policy</a></strong> , <strong title='validate(bytes) is defined in WebAssembly JavaScript Interface: ESM Integration'><a href=https://webassembly.github.io/esm-integration/js-api/#dom-webassembly-validate>WebAssembly JavaScript Interface: ESM Integration</a></strong> , <strong title='validate(bytes) is defined in WebAssembly JavaScript Interface: Exception Handling'><a href=https://webassembly.github.io/exception-handling/js-api/#dom-webassembly-validate>WebAssembly JavaScript Interface: Exception Handling</a></strong> , <strong title='validate(bytes) is defined in WebAssembly JavaScript Interface: Promise Integration'><a href=https://webassembly.github.io/js-promise-integration/js-api/#dom-webassembly-validate>WebAssembly JavaScript Interface: Promise Integration</a></strong> , <strong title='validate(bytes) is defined in WebAssembly JavaScript Interface: Type Reflection'><a href=https://webassembly.github.io/js-types/js-api/#dom-webassembly-validate>WebAssembly JavaScript Interface: Type Reflection</a></strong> , <strong title='validate(bytes) is defined in WebAssembly JavaScript Interface: Threading'><a href=https://webassembly.github.io/threads/js-api/#dom-webassembly-validate>WebAssembly JavaScript Interface: Threading</a></strong> , <strong title='validate(bytes) is defined in WebAssembly JavaScript Interface'><a href=https://webassembly.github.io/spec/js-api/#dom-webassembly-validate>WebAssembly JavaScript Interface</a></strong> </dd>
<dt id="ValidateAndApplyPropertyDescriptor@@ecmascript%%abstract-op"><code class=prefix></code><span><strong><code class=concept>ValidateAndApplyPropertyDescriptor</code></strong> (<em>algorithm</em>) <a class='self-link' href='#ValidateAndApplyPropertyDescriptor%40%40ecmascript%25%25abstract-op' aria-label="Permalink for ValidateAndApplyPropertyDescriptor">§</a></span></dt>
<dd>Defined in <strong title='ValidateAndApplyPropertyDescriptor is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-validateandapplypropertydescriptor>ECMAScript</a></strong> </dd>
<dt id="validateAssertion@@RTCIdentityProvider@dict-member"><code class=prefix><a href='r.html#RTCIdentityProvider@@@@dictionary'>RTCIdentityProvider</a>.</code><span><strong><code class=webidl>validateAssertion</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#validateAssertion%40%40RTCIdentityProvider%40dict-member' aria-label="Permalink for <a href='r.html#RTCIdentityProvider@@@@dictionary'>RTCIdentityProvider</a>.validateAssertion">§</a></span></dt>
<dd>Defined in <strong title='validateAssertion is defined in Identity for WebRTC 1.0'><a href=https://w3c.github.io/webrtc-identity/#dom-rtcidentityprovider-validateassertion>Identity for WebRTC 1.0</a></strong> </dd>
<dt id="ValidateAssertionCallback@@@@callback"><code class=prefix></code><span><strong><code class=webidl>ValidateAssertionCallback</code></strong> (<em>WebIDL callback</em>) <a class='self-link' href='#ValidateAssertionCallback%40%40%40%40callback' aria-label="Permalink for ValidateAssertionCallback">§</a></span></dt>
<dd>Defined in <strong title='ValidateAssertionCallback is defined in Identity for WebRTC 1.0'><a href=https://w3c.github.io/webrtc-identity/#dom-validateassertioncallback>Identity for WebRTC 1.0</a></strong> </dd>
<dt id="ValidateAtomicAccess@@ecmascript%%abstract-op"><code class=prefix></code><span><strong><code class=concept>ValidateAtomicAccess</code></strong> (<em>algorithm</em>) <a class='self-link' href='#ValidateAtomicAccess%40%40ecmascript%25%25abstract-op' aria-label="Permalink for ValidateAtomicAccess">§</a></span></dt>
<dd>Defined in <strong title='ValidateAtomicAccess is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/structured-data.html#sec-validateatomicaccess>ECMAScript</a></strong> </dd>
<dt id="ValidateAtomicAccessOnIntegerTypedArray@@ecmascript%%abstract-op"><code class=prefix></code><span><strong><code class=concept>ValidateAtomicAccessOnIntegerTypedArray</code></strong> (<em>algorithm</em>) <a class='self-link' href='#ValidateAtomicAccessOnIntegerTypedArray%40%40ecmascript%25%25abstract-op' aria-label="Permalink for ValidateAtomicAccessOnIntegerTypedArray">§</a></span></dt>
<dd>Defined in <strong title='ValidateAtomicAccessOnIntegerTypedArray is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/structured-data.html#sec-validateatomicaccessonintegertypedarray>ECMAScript</a></strong> </dd>
<dt id="ValidateIntegerTypedArray@@ecmascript%%abstract-op"><code class=prefix></code><span><strong><code class=concept>ValidateIntegerTypedArray</code></strong> (<em>algorithm</em>) <a class='self-link' href='#ValidateIntegerTypedArray%40%40ecmascript%25%25abstract-op' aria-label="Permalink for ValidateIntegerTypedArray">§</a></span></dt>
<dd>Defined in <strong title='ValidateIntegerTypedArray is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/structured-data.html#sec-validateintegertypedarray>ECMAScript</a></strong> </dd>
<dt id="ValidateNonRevokedProxy@@ecmascript%%abstract-op"><code class=prefix></code><span><strong><code class=concept>ValidateNonRevokedProxy</code></strong> (<em>algorithm</em>) <a class='self-link' href='#ValidateNonRevokedProxy%40%40ecmascript%25%25abstract-op' aria-label="Permalink for ValidateNonRevokedProxy">§</a></span></dt>
<dd>Defined in <strong title='ValidateNonRevokedProxy is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/ordinary-and-exotic-objects-behaviours.html#sec-validatenonrevokedproxy>ECMAScript</a></strong> </dd>
<dt id="ValidateTypedArray@@ecmascript%%abstract-op"><code class=prefix></code><span><strong><code class=concept>ValidateTypedArray</code></strong> (<em>algorithm</em>) <a class='self-link' href='#ValidateTypedArray%40%40ecmascript%25%25abstract-op' aria-label="Permalink for ValidateTypedArray">§</a></span></dt>
<dd>Defined in <strong title='ValidateTypedArray is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/indexed-collections.html#sec-validatetypedarray>ECMAScript</a></strong> </dd>
<dt id="validating GPUDepthStencilState@@webgpu%%abstract-op"><code class=prefix></code><span><strong>validating GPUDepthStencilState</strong> (<em>algorithm</em>) <a class='self-link' href='#validating%20GPUDepthStencilState%40%40webgpu%25%25abstract-op' aria-label="Permalink for validating GPUDepthStencilState">§</a></span></dt>
<dd>Defined in <strong title='validating GPUDepthStencilState is defined in WebGPU'><a href=https://gpuweb.github.io/gpuweb/#abstract-opdef-validating-gpudepthstencilstate>WebGPU</a></strong> </dd>
<dt id="validating GPUFragmentState@@webgpu%%abstract-op"><code class=prefix></code><span><strong>validating GPUFragmentState</strong> (<em>algorithm</em>) <a class='self-link' href='#validating%20GPUFragmentState%40%40webgpu%25%25abstract-op' aria-label="Permalink for validating GPUFragmentState">§</a></span></dt>
<dd>Defined in <strong title='validating GPUFragmentState is defined in WebGPU'><a href=https://gpuweb.github.io/gpuweb/#abstract-opdef-validating-gpufragmentstate>WebGPU</a></strong> </dd>
<dt id="Validating GPUFragmentState’s color attachment bytes per sample@@webgpu%%abstract-op"><code class=prefix></code><span><strong>Validating GPUFragmentState’s color attachment bytes per sample</strong> (<em>algorithm</em>) <a class='self-link' href='#Validating%20GPUFragmentState%E2%80%99s%20color%20attachment%20bytes%20per%20sample%40%40webgpu%25%25abstract-op' aria-label="Permalink for Validating GPUFragmentState’s color attachment bytes per sample">§</a></span></dt>
<dd>Defined in <strong title='Validating GPUFragmentState’s color attachment bytes per sample is defined in WebGPU'><a href=https://gpuweb.github.io/gpuweb/#abstract-opdef-validating-gpufragmentstates-color-attachment-bytes-per-sample>WebGPU</a></strong> </dd>
<dt id="validating GPUMultisampleState@@webgpu%%abstract-op"><code class=prefix></code><span><strong>validating GPUMultisampleState</strong> (<em>algorithm</em>) <a class='self-link' href='#validating%20GPUMultisampleState%40%40webgpu%25%25abstract-op' aria-label="Permalink for validating GPUMultisampleState">§</a></span></dt>
<dd>Defined in <strong title='validating GPUMultisampleState is defined in WebGPU'><a href=https://gpuweb.github.io/gpuweb/#abstract-opdef-validating-gpumultisamplestate>WebGPU</a></strong> </dd>
<dt id="validating GPUPrimitiveState@@webgpu%%abstract-op"><code class=prefix></code><span><strong>validating GPUPrimitiveState</strong> (<em>algorithm</em>) <a class='self-link' href='#validating%20GPUPrimitiveState%40%40webgpu%25%25abstract-op' aria-label="Permalink for validating GPUPrimitiveState">§</a></span></dt>
<dd>Defined in <strong title='validating GPUPrimitiveState is defined in WebGPU'><a href=https://gpuweb.github.io/gpuweb/#abstract-opdef-validating-gpuprimitivestate>WebGPU</a></strong> </dd>
<dt id="validating GPUProgrammableStage@@webgpu%%abstract-op"><code class=prefix></code><span><strong>validating GPUProgrammableStage</strong> (<em>algorithm</em>) <a class='self-link' href='#validating%20GPUProgrammableStage%40%40webgpu%25%25abstract-op' aria-label="Permalink for validating GPUProgrammableStage">§</a></span></dt>
<dd>Defined in <strong title='validating GPUProgrammableStage is defined in WebGPU'><a href=https://gpuweb.github.io/gpuweb/#abstract-opdef-validating-gpuprogrammablestage>WebGPU</a></strong> </dd>
<dd>Referenced in
<a href=https://gpuweb.github.io/gpuweb/wgsl/ title='validating GPUProgrammableStage is referenced by WebGPU Shading Language'>WebGPU Shading Language</a></dd>
<dt id="Validating GPURenderPassDescriptor’s color attachment bytes per sample@@webgpu%%abstract-op"><code class=prefix></code><span><strong>Validating GPURenderPassDescriptor’s color attachment bytes per sample</strong> (<em>algorithm</em>) <a class='self-link' href='#Validating%20GPURenderPassDescriptor%E2%80%99s%20color%20attachment%20bytes%20per%20sample%40%40webgpu%25%25abstract-op' aria-label="Permalink for Validating GPURenderPassDescriptor’s color attachment bytes per sample">§</a></span></dt>
<dd>Defined in <strong title='Validating GPURenderPassDescriptor’s color attachment bytes per sample is defined in WebGPU'><a href=https://gpuweb.github.io/gpuweb/#abstract-opdef-validating-gpurenderpassdescriptors-color-attachment-bytes-per-sample>WebGPU</a></strong> </dd>
<dt id="validating GPURenderPipelineDescriptor@@webgpu%%abstract-op"><code class=prefix></code><span><strong>validating GPURenderPipelineDescriptor</strong> (<em>algorithm</em>) <a class='self-link' href='#validating%20GPURenderPipelineDescriptor%40%40webgpu%25%25abstract-op' aria-label="Permalink for validating GPURenderPipelineDescriptor">§</a></span></dt>
<dd>Defined in <strong title='validating GPURenderPipelineDescriptor is defined in WebGPU'><a href=https://gpuweb.github.io/gpuweb/#abstract-opdef-validating-gpurenderpipelinedescriptor>WebGPU</a></strong> </dd>
<dt id="validating GPUTexelCopyBufferInfo@@webgpu%%abstract-op"><code class=prefix></code><span><strong>validating GPUTexelCopyBufferInfo</strong> (<em>algorithm</em>) <a class='self-link' href='#validating%20GPUTexelCopyBufferInfo%40%40webgpu%25%25abstract-op' aria-label="Permalink for validating GPUTexelCopyBufferInfo">§</a></span></dt>
<dd>Defined in <strong title='validating GPUTexelCopyBufferInfo is defined in WebGPU'><a href=https://gpuweb.github.io/gpuweb/#abstract-opdef-validating-gputexelcopybufferinfo>WebGPU</a></strong> </dd>
<dt id="validating GPUTexelCopyTextureInfo@@webgpu%%abstract-op"><code class=prefix></code><span><strong>validating GPUTexelCopyTextureInfo</strong> (<em>algorithm</em>) <a class='self-link' href='#validating%20GPUTexelCopyTextureInfo%40%40webgpu%25%25abstract-op' aria-label="Permalink for validating GPUTexelCopyTextureInfo">§</a></span></dt>
<dd>Defined in <strong title='validating GPUTexelCopyTextureInfo is defined in WebGPU'><a href=https://gpuweb.github.io/gpuweb/#abstract-opdef-validating-gputexelcopytextureinfo>WebGPU</a></strong> </dd>
<dt id="validating GPUTextureDescriptor@@webgpu%%abstract-op"><code class=prefix></code><span><strong>validating GPUTextureDescriptor</strong> (<em>algorithm</em>) <a class='self-link' href='#validating%20GPUTextureDescriptor%40%40webgpu%25%25abstract-op' aria-label="Permalink for validating GPUTextureDescriptor">§</a></span></dt>
<dd>Defined in <strong title='validating GPUTextureDescriptor is defined in WebGPU'><a href=https://gpuweb.github.io/gpuweb/#abstract-opdef-validating-gputexturedescriptor>WebGPU</a></strong> </dd>
<dt id="validating GPUVertexBufferLayout@@webgpu%%abstract-op"><code class=prefix></code><span><strong>validating GPUVertexBufferLayout</strong> (<em>algorithm</em>) <a class='self-link' href='#validating%20GPUVertexBufferLayout%40%40webgpu%25%25abstract-op' aria-label="Permalink for validating GPUVertexBufferLayout">§</a></span></dt>
<dd>Defined in <strong title='validating GPUVertexBufferLayout is defined in WebGPU'><a href=https://gpuweb.github.io/gpuweb/#abstract-opdef-validating-gpuvertexbufferlayout>WebGPU</a></strong> </dd>
<dt id="validating GPUVertexState@@webgpu%%abstract-op"><code class=prefix></code><span><strong>validating GPUVertexState</strong> (<em>algorithm</em>) <a class='self-link' href='#validating%20GPUVertexState%40%40webgpu%25%25abstract-op' aria-label="Permalink for validating GPUVertexState">§</a></span></dt>
<dd>Defined in <strong title='validating GPUVertexState is defined in WebGPU'><a href=https://gpuweb.github.io/gpuweb/#abstract-opdef-validating-gpuvertexstate>WebGPU</a></strong> </dd>
<dt id="validating inter-stage interfaces@@webgpu%%abstract-op"><code class=prefix></code><span><strong>validating inter-stage interfaces</strong> (<em>algorithm</em>) <a class='self-link' href='#validating%20inter-stage%20interfaces%40%40webgpu%25%25abstract-op' aria-label="Permalink for validating inter-stage interfaces">§</a></span></dt>
<dd>Defined in <strong title='validating inter-stage interfaces is defined in WebGPU'><a href=https://gpuweb.github.io/gpuweb/#abstract-opdef-validating-inter-stage-interfaces>WebGPU</a></strong> </dd>
<dd>Referenced in
<a href=https://gpuweb.github.io/gpuweb/wgsl/ title='validating inter-stage interfaces is referenced by WebGPU Shading Language'>WebGPU Shading Language</a></dd>
<dt id="validating linear texture data@@webgpu%%abstract-op"><code class=prefix></code><span><strong>validating linear texture data</strong> (<em>algorithm</em>) <a class='self-link' href='#validating%20linear%20texture%20data%40%40webgpu%25%25abstract-op' aria-label="Permalink for validating linear texture data">§</a></span></dt>
<dd>Defined in <strong title='validating linear texture data is defined in WebGPU'><a href=https://gpuweb.github.io/gpuweb/#abstract-opdef-validating-linear-texture-data>WebGPU</a></strong> </dd>
<dt id="validating shader binding@@webgpu%%abstract-op"><code class=prefix></code><span><strong>validating shader binding</strong> (<em>algorithm</em>) <a class='self-link' href='#validating%20shader%20binding%40%40webgpu%25%25abstract-op' aria-label="Permalink for validating shader binding">§</a></span></dt>
<dd>Defined in <strong title='validating shader binding is defined in WebGPU'><a href=https://gpuweb.github.io/gpuweb/#abstract-opdef-validating-shader-binding>WebGPU</a></strong> </dd>
<dd>Referenced in
<a href=https://gpuweb.github.io/gpuweb/wgsl/ title='validating shader binding is referenced by WebGPU Shading Language'>WebGPU Shading Language</a></dd>
<dt id="validating texture buffer copy@@webgpu%%abstract-op"><code class=prefix></code><span><strong>validating texture buffer copy</strong> (<em>algorithm</em>) <a class='self-link' href='#validating%20texture%20buffer%20copy%40%40webgpu%25%25abstract-op' aria-label="Permalink for validating texture buffer copy">§</a></span></dt>
<dd>Defined in <strong title='validating texture buffer copy is defined in WebGPU'><a href=https://gpuweb.github.io/gpuweb/#abstract-opdef-validating-texture-buffer-copy>WebGPU</a></strong> </dd>
<dt id="validating texture copy range@@webgpu%%abstract-op"><code class=prefix></code><span><strong>validating texture copy range</strong> (<em>algorithm</em>) <a class='self-link' href='#validating%20texture%20copy%20range%40%40webgpu%25%25abstract-op' aria-label="Permalink for validating texture copy range">§</a></span></dt>
<dd>Defined in <strong title='validating texture copy range is defined in WebGPU'><a href=https://gpuweb.github.io/gpuweb/#abstract-opdef-validating-texture-copy-range>WebGPU</a></strong> </dd>
<dt id="validation@@GPUPipelineErrorReason@enum-value"><code class=prefix></code><span><strong><code class=webidl>"validation"</code></strong> (<em>value for <a href='g.html#GPUPipelineErrorReason@@@@enum'><code>GPUPipelineErrorReason</code></a> WebIDL enumeration</em>) <a class='self-link' href='#validation%40%40GPUPipelineErrorReason%40enum-value' aria-label="Permalink for validation">§</a></span></dt>
<dd>Defined in <strong title='validation is defined in WebGPU'><a href=https://gpuweb.github.io/gpuweb/#dom-gpupipelineerrorreason-validation>WebGPU</a></strong> </dd>
<dt id="validation@@GPUErrorFilter@enum-value"><code class=prefix></code><span><strong><code class=webidl>"validation"</code></strong> (<em>value for <a href='g.html#GPUErrorFilter@@@@enum'><code>GPUErrorFilter</code></a> WebIDL enumeration</em>) <a class='self-link' href='#validation%40%40GPUErrorFilter%40enum-value' aria-label="Permalink for validation">§</a></span></dt>
<dd>Defined in <strong title='validation is defined in WebGPU'><a href=https://gpuweb.github.io/gpuweb/#dom-gpuerrorfilter-validation>WebGPU</a></strong> </dd>
<dt id="validation steps@@DOMTokenList@dfn"><code class=prefix></code><span><strong>validation steps</strong> (<em>concept for <a href='d.html#DOMTokenList@@@@interface'><code>DOMTokenList</code></a> </em>) <a class='self-link' href='#validation%20steps%40%40DOMTokenList%40dfn' aria-label="Permalink for validation steps">§</a></span></dt>
<dd>Defined in <strong title='validation steps is defined in DOM'><a href=https://dom.spec.whatwg.org/#concept-domtokenlist-validation>DOM</a></strong> </dd>
<dt id="VALIDATION_ERR@@DOMException@const"><code class=prefix><a href='d.html#DOMException@@@@interface'>DOMException</a>.</code><span><strong><code class=webidl>VALIDATION_ERR</code></strong> (<em>WebIDL constant</em>) <a class='self-link' href='#VALIDATION_ERR%40%40DOMException%40const' aria-label="Permalink for <a href='d.html#DOMException@@@@interface'>DOMException</a>.VALIDATION_ERR">§</a></span></dt>
<dd>Defined in <strong title='VALIDATION_ERR is defined in Web IDL'><a href=https://webidl.spec.whatwg.org/#dom-domexception-validation_err>Web IDL</a></strong> </dd>
<dt id="validationMessage@@ElementInternals@attribute"><code class=prefix><a href='e.html#ElementInternals@@@@interface'>ElementInternals</a>.</code><span><strong><code class=webidl>validationMessage</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#validationMessage%40%40ElementInternals%40attribute' aria-label="Permalink for <a href='e.html#ElementInternals@@@@interface'>ElementInternals</a>.validationMessage">§</a></span></dt>
<dd>Defined in <strong title='validationMessage is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/custom-elements.html#dom-elementinternals-validationmessage>HTML</a></strong> </dd>
<dt id="validationMessage@@HTMLButtonElement@attribute"><code class=prefix><a href='h.html#HTMLButtonElement@@@@interface'>HTMLButtonElement</a>.</code><span><strong><code class=webidl>validationMessage</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#validationMessage%40%40HTMLButtonElement%40attribute' aria-label="Permalink for <a href='h.html#HTMLButtonElement@@@@interface'>HTMLButtonElement</a>.validationMessage">§</a></span></dt>
<dt><code class=prefix><a href='h.html#HTMLFieldSetElement@@@@interface'>HTMLFieldSetElement</a>.</code><span><strong><code class=webidl>validationMessage</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#validationMessage%40%40HTMLButtonElement%40attribute' aria-label="Permalink for <a href='h.html#HTMLFieldSetElement@@@@interface'>HTMLFieldSetElement</a>.validationMessage">§</a></span></dt><dt><code class=prefix><a href='h.html#HTMLInputElement@@@@interface'>HTMLInputElement</a>.</code><span><strong><code class=webidl>validationMessage</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#validationMessage%40%40HTMLButtonElement%40attribute' aria-label="Permalink for <a href='h.html#HTMLInputElement@@@@interface'>HTMLInputElement</a>.validationMessage">§</a></span></dt><dt><code class=prefix><a href='h.html#HTMLObjectElement@@@@interface'>HTMLObjectElement</a>.</code><span><strong><code class=webidl>validationMessage</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#validationMessage%40%40HTMLButtonElement%40attribute' aria-label="Permalink for <a href='h.html#HTMLObjectElement@@@@interface'>HTMLObjectElement</a>.validationMessage">§</a></span></dt><dt><code class=prefix><a href='h.html#HTMLOutputElement@@@@interface'>HTMLOutputElement</a>.</code><span><strong><code class=webidl>validationMessage</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#validationMessage%40%40HTMLButtonElement%40attribute' aria-label="Permalink for <a href='h.html#HTMLOutputElement@@@@interface'>HTMLOutputElement</a>.validationMessage">§</a></span></dt><dt><code class=prefix><a href='h.html#HTMLSelectElement@@@@interface'>HTMLSelectElement</a>.</code><span><strong><code class=webidl>validationMessage</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#validationMessage%40%40HTMLButtonElement%40attribute' aria-label="Permalink for <a href='h.html#HTMLSelectElement@@@@interface'>HTMLSelectElement</a>.validationMessage">§</a></span></dt><dt><code class=prefix><a href='h.html#HTMLTextAreaElement@@@@interface'>HTMLTextAreaElement</a>.</code><span><strong><code class=webidl>validationMessage</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#validationMessage%40%40HTMLButtonElement%40attribute' aria-label="Permalink for <a href='h.html#HTMLTextAreaElement@@@@interface'>HTMLTextAreaElement</a>.validationMessage">§</a></span></dt>
<dd>Defined in <strong title='validationMessage is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#dom-cva-validationmessage>HTML</a></strong> </dd>
<dt id="validity@@ElementInternals@attribute"><code class=prefix><a href='e.html#ElementInternals@@@@interface'>ElementInternals</a>.</code><span><strong><code class=webidl>validity</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#validity%40%40ElementInternals%40attribute' aria-label="Permalink for <a href='e.html#ElementInternals@@@@interface'>ElementInternals</a>.validity">§</a></span></dt>
<dd>Defined in <strong title='validity is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#dom-elementinternals-validity>HTML</a></strong> </dd>
<dt id="validity@@HTMLButtonElement@attribute"><code class=prefix><a href='h.html#HTMLButtonElement@@@@interface'>HTMLButtonElement</a>.</code><span><strong><code class=webidl>validity</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#validity%40%40HTMLButtonElement%40attribute' aria-label="Permalink for <a href='h.html#HTMLButtonElement@@@@interface'>HTMLButtonElement</a>.validity">§</a></span></dt>
<dt><code class=prefix><a href='h.html#HTMLFieldSetElement@@@@interface'>HTMLFieldSetElement</a>.</code><span><strong><code class=webidl>validity</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#validity%40%40HTMLButtonElement%40attribute' aria-label="Permalink for <a href='h.html#HTMLFieldSetElement@@@@interface'>HTMLFieldSetElement</a>.validity">§</a></span></dt><dt><code class=prefix><a href='h.html#HTMLInputElement@@@@interface'>HTMLInputElement</a>.</code><span><strong><code class=webidl>validity</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#validity%40%40HTMLButtonElement%40attribute' aria-label="Permalink for <a href='h.html#HTMLInputElement@@@@interface'>HTMLInputElement</a>.validity">§</a></span></dt><dt><code class=prefix><a href='h.html#HTMLObjectElement@@@@interface'>HTMLObjectElement</a>.</code><span><strong><code class=webidl>validity</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#validity%40%40HTMLButtonElement%40attribute' aria-label="Permalink for <a href='h.html#HTMLObjectElement@@@@interface'>HTMLObjectElement</a>.validity">§</a></span></dt><dt><code class=prefix><a href='h.html#HTMLOutputElement@@@@interface'>HTMLOutputElement</a>.</code><span><strong><code class=webidl>validity</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#validity%40%40HTMLButtonElement%40attribute' aria-label="Permalink for <a href='h.html#HTMLOutputElement@@@@interface'>HTMLOutputElement</a>.validity">§</a></span></dt><dt><code class=prefix><a href='h.html#HTMLSelectElement@@@@interface'>HTMLSelectElement</a>.</code><span><strong><code class=webidl>validity</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#validity%40%40HTMLButtonElement%40attribute' aria-label="Permalink for <a href='h.html#HTMLSelectElement@@@@interface'>HTMLSelectElement</a>.validity">§</a></span></dt><dt><code class=prefix><a href='h.html#HTMLTextAreaElement@@@@interface'>HTMLTextAreaElement</a>.</code><span><strong><code class=webidl>validity</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#validity%40%40HTMLButtonElement%40attribute' aria-label="Permalink for <a href='h.html#HTMLTextAreaElement@@@@interface'>HTMLTextAreaElement</a>.validity">§</a></span></dt>
<dd>Defined in <strong title='validity is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#dom-cva-validity>HTML</a></strong> </dd>
<dt id="ValidityState@@@@interface"><code class=prefix></code><span><strong><code class=webidl>ValidityState</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#ValidityState%40%40%40%40interface' aria-label="Permalink for ValidityState">§</a></span></dt>
<dd>Defined in <strong title='ValidityState is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#validitystate>HTML</a></strong> </dd>
<dd>Related terms: <code>ValidityState.</code><a href='b.html#badInput@@ValidityState@attribute'><code>badInput</code></a>, <code>ValidityState.</code><a href='c.html#customError@@ValidityState@attribute'><code>customError</code></a>, <code>ValidityState.</code><a href='p.html#patternMismatch@@ValidityState@attribute'><code>patternMismatch</code></a>, <code>ValidityState.</code><a href='r.html#rangeOverflow@@ValidityState@attribute'><code>rangeOverflow</code></a>, <code>ValidityState.</code><a href='r.html#rangeUnderflow@@ValidityState@attribute'><code>rangeUnderflow</code></a>, <code>ValidityState.</code><a href='s.html#stepMismatch@@ValidityState@attribute'><code>stepMismatch</code></a>, <code>ValidityState.</code><a href='t.html#tooLong@@ValidityState@attribute'><code>tooLong</code></a>, <code>ValidityState.</code><a href='t.html#tooShort@@ValidityState@attribute'><code>tooShort</code></a>, <code>ValidityState.</code><a href='t.html#typeMismatch@@ValidityState@attribute'><code>typeMismatch</code></a>, <code>ValidityState.</code><a href='v.html#valid@@ValidityState@attribute'><code>valid</code></a>, <code>ValidityState.</code><a href='v.html#valueMissing@@ValidityState@attribute'><code>valueMissing</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/ValidityState.html' title='ValidityState entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="ValidityStateFlags@@@@dictionary"><code class=prefix></code><span><strong><code class=webidl>ValidityStateFlags</code></strong> (<em>WebIDL dictionary</em>) <a class='self-link' href='#ValidityStateFlags%40%40%40%40dictionary' aria-label="Permalink for ValidityStateFlags">§</a></span></dt>
<dd>Defined in <strong title='ValidityStateFlags is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/custom-elements.html#validitystateflags>HTML</a></strong> </dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/ValidityStateFlags.html' title='ValidityStateFlags entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="validValues@@PreferenceObject@attribute"><code class=prefix><a href='p.html#PreferenceObject@@@@interface'>PreferenceObject</a>.</code><span><strong><code class=webidl>validValues</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#validValues%40%40PreferenceObject%40attribute' aria-label="Permalink for <a href='p.html#PreferenceObject@@@@interface'>PreferenceObject</a>.validValues">§</a></span></dt>
<dt><code class=prefix><a href='p.html#PreferenceObject@@@@interface'>PreferenceObject</a>.</code><span><strong><code class=webidl>validValues</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#validValues%40%40PreferenceObject%40attribute' aria-label="Permalink for <a href='p.html#PreferenceObject@@@@interface'>PreferenceObject</a>.validValues">§</a></span></dt>
<dd>Defined in <strong title='validValues is defined in Web Preferences API'><a href=https://wicg.github.io/web-preferences-api/#dom-preferenceobject-validvalues>Web Preferences API</a></strong> , <strong title='validValues is defined in Media Queries 5'><a href=https://drafts.csswg.org/mediaqueries-5/#dom-preferenceobject-validvalues>Media Queries 5</a></strong> </dd>
<dt id="valign@@col@element-attr"><code class=prefix></code><span><strong><code class=markup>valign</code></strong> (<em>markup attribute for <a href='c.html#col@@html%25%25element'><code>col</code></a> </em>) <a class='self-link' href='#valign%40%40col%40element-attr' aria-label="Permalink for valign">§</a></span></dt>
<dd>Defined in <strong title='valign is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/obsolete.html#attr-col-valign>HTML</a></strong> </dd>
<dt id="valign@@tbody@element-attr"><code class=prefix></code><span><strong><code class=markup>valign</code></strong> (<em>markup attribute for <a href='t.html#tbody@@html%25%25element'><code>tbody</code></a> </em>) <a class='self-link' href='#valign%40%40tbody%40element-attr' aria-label="Permalink for valign">§</a></span></dt>
<dd>Defined in <strong title='valign is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/obsolete.html#attr-tbody-valign>HTML</a></strong> </dd>
<dt id="valign@@td@element-attr"><code class=prefix></code><span><strong><code class=markup>valign</code></strong> (<em>markup attribute for <a href='t.html#td@@html%25%25element'><code>td</code></a>, <a href='t.html#th@@html%25%25element'><code>th</code></a> element </em>) <a class='self-link' href='#valign%40%40td%40element-attr' aria-label="Permalink for valign">§</a></span></dt>
<dd>Defined in <strong title='valign is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/obsolete.html#attr-tdth-valign>HTML</a></strong> </dd>
<dt id="valign@@tr@element-attr"><code class=prefix></code><span><strong><code class=markup>valign</code></strong> (<em>markup attribute for <a href='t.html#tr@@html%25%25element'><code>tr</code></a> </em>) <a class='self-link' href='#valign%40%40tr%40element-attr' aria-label="Permalink for valign">§</a></span></dt>
<dd>Defined in <strong title='valign is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/obsolete.html#attr-tr-valign>HTML</a></strong> </dd>
<dt id="vAlign@@HTMLTableCellElement@attribute"><code class=prefix><a href='h.html#HTMLTableCellElement@@@@interface'>HTMLTableCellElement</a>.</code><span><strong><code class=webidl>vAlign</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#vAlign%40%40HTMLTableCellElement%40attribute' aria-label="Permalink for <a href='h.html#HTMLTableCellElement@@@@interface'>HTMLTableCellElement</a>.vAlign">§</a></span></dt>
<dd>Defined in <strong title='vAlign is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/obsolete.html#dom-tdth-valign>HTML</a></strong> </dd>
<dt id="vAlign@@HTMLTableColElement@attribute"><code class=prefix><a href='h.html#HTMLTableColElement@@@@interface'>HTMLTableColElement</a>.</code><span><strong><code class=webidl>vAlign</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#vAlign%40%40HTMLTableColElement%40attribute' aria-label="Permalink for <a href='h.html#HTMLTableColElement@@@@interface'>HTMLTableColElement</a>.vAlign">§</a></span></dt>
<dd>Defined in <strong title='vAlign is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/obsolete.html#dom-col-valign>HTML</a></strong> </dd>
<dt id="vAlign@@HTMLTableRowElement@attribute"><code class=prefix><a href='h.html#HTMLTableRowElement@@@@interface'>HTMLTableRowElement</a>.</code><span><strong><code class=webidl>vAlign</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#vAlign%40%40HTMLTableRowElement%40attribute' aria-label="Permalink for <a href='h.html#HTMLTableRowElement@@@@interface'>HTMLTableRowElement</a>.vAlign">§</a></span></dt>
<dd>Defined in <strong title='vAlign is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/obsolete.html#dom-tr-valign>HTML</a></strong> </dd>
<dt id="vAlign@@HTMLTableSectionElement@attribute"><code class=prefix><a href='h.html#HTMLTableSectionElement@@@@interface'>HTMLTableSectionElement</a>.</code><span><strong><code class=webidl>vAlign</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#vAlign%40%40HTMLTableSectionElement%40attribute' aria-label="Permalink for <a href='h.html#HTMLTableSectionElement@@@@interface'>HTMLTableSectionElement</a>.vAlign">§</a></span></dt>
<dd>Defined in <strong title='vAlign is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/obsolete.html#dom-tbody-valign>HTML</a></strong> </dd>
<dt id="value@@Attr@dfn"><code class=prefix></code><span><strong>value</strong> (<em>concept for <a href='a.html#Attr@@@@interface'><code>Attr</code></a> </em>) <a class='self-link' href='#value%40%40Attr%40dfn' aria-label="Permalink for value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in DOM'><a href=https://dom.spec.whatwg.org/#concept-attribute-value>DOM</a></strong> </dd>
<dd>Referenced in
<a href=https://html.spec.whatwg.org/multipage/ title='value is referenced by HTML'>HTML</a>,
<a href=https://w3c.github.io/webdriver-bidi/ title='value is referenced by WebDriver BiDi'>WebDriver BiDi</a></dd>
<dt id="value@@header@dfn"><code class=prefix></code><span><strong>value</strong> (<em>concept for <a href='h.html#header@@fetch%25%25dfn'>header</a> </em>) <a class='self-link' href='#value%40%40header%40dfn' aria-label="Permalink for value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in Fetch'><a href=https://fetch.spec.whatwg.org/#concept-header-value>Fetch</a></strong> </dd>
<dd>Referenced in
<a href=https://wicg.github.io/background-fetch/ title='value is referenced by Background Fetch'>Background Fetch</a>,
<a href=https://wicg.github.io/client-hints-infrastructure/ title='value is referenced by Client Hints Infrastructure'>Client Hints Infrastructure</a>,
<a href=https://wicg.github.io/fenced-frame/ title='value is referenced by Fenced Frame'>Fenced Frame</a>,
<a href=https://wicg.github.io/shared-storage/ title='value is referenced by Shared Storage API'>Shared Storage API</a>,
<a href=https://wicg.github.io/webpackage/loading.html title='value is referenced by Loading Signed Exchanges'>Loading Signed Exchanges</a>,
<a href=https://w3c-fedid.github.io/FedCM/ title='value is referenced by Federated Credential Management API'>Federated Credential Management API</a>,
<a href=https://w3c.github.io/network-error-logging/ title='value is referenced by Network Error Logging'>Network Error Logging</a>,
<a href=https://w3c.github.io/ServiceWorker/ title='value is referenced by Service Workers'>Service Workers</a>,
<a href=https://w3c.github.io/webdriver/ title='value is referenced by WebDriver'>WebDriver</a>,
<a href=https://xhr.spec.whatwg.org/ title='value is referenced by XMLHttpRequest'>XMLHttpRequest</a></dd>
<dt id="value@@li@element-attr"><code class=prefix></code><span><strong><code class=markup>value</code></strong> (<em>markup attribute for <a href='l.html#li@@html%25%25element'><code>li</code></a> </em>) <a class='self-link' href='#value%40%40li%40element-attr' aria-label="Permalink for value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/grouping-content.html#attr-li-value>HTML</a></strong> </dd>
<dd>Referenced in
<a href=https://w3c.github.io/html-aam/ title='value is referenced by HTML Accessibility API Mappings 1.0'>HTML Accessibility API Mappings 1.0</a></dd>
<dt id="value@@data@element-attr"><code class=prefix></code><span><strong><code class=markup>value</code></strong> (<em>markup attribute for <a href='d.html#data@@html%25%25element'><code>data</code></a> </em>) <a class='self-link' href='#value%40%40data%40element-attr' aria-label="Permalink for value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/text-level-semantics.html#attr-data-value>HTML</a></strong> </dd>
<dd>Referenced in
<a href=https://w3c.github.io/html-aam/ title='value is referenced by HTML Accessibility API Mappings 1.0'>HTML Accessibility API Mappings 1.0</a></dd>
<dt id="value@@input@element-attr"><code class=prefix></code><span><strong><code class=markup>value</code></strong> (<em>markup attribute for <a href='i.html#input@@html%25%25element'><code>input</code></a> </em>) <a class='self-link' href='#value%40%40input%40element-attr' aria-label="Permalink for value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/input.html#attr-input-value>HTML</a></strong> </dd>
<dd>Referenced in
<a href=https://w3c.github.io/html-aam/ title='value is referenced by HTML Accessibility API Mappings 1.0'>HTML Accessibility API Mappings 1.0</a>,
<a href=https://w3c.github.io/paint-timing/ title='value is referenced by Paint Timing'>Paint Timing</a>,
<a href=https://w3c.github.io/aria/ title='value is referenced by WAI-ARIA'>WAI-ARIA</a>,
<a href=https://w3c.github.io/aria/ title='value is referenced by WAI-ARIA'>WAI-ARIA</a></dd>
<dt id="value@@button@element-attr"><code class=prefix></code><span><strong><code class=markup>value</code></strong> (<em>markup attribute for <a href='b.html#button@@html%25%25element'><code>button</code></a> </em>) <a class='self-link' href='#value%40%40button%40element-attr' aria-label="Permalink for value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/form-elements.html#attr-button-value>HTML</a></strong> </dd>
<dd>Referenced in
<a href=https://w3c.github.io/html-aam/ title='value is referenced by HTML Accessibility API Mappings 1.0'>HTML Accessibility API Mappings 1.0</a></dd>
<dt id="value@@option@element-attr"><code class=prefix></code><span><strong><code class=markup>value</code></strong> (<em>markup attribute for <a href='o.html#option@@html%25%25element'><code>option</code></a> </em>) <a class='self-link' href='#value%40%40option%40element-attr' aria-label="Permalink for value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/form-elements.html#attr-option-value>HTML</a></strong> </dd>
<dd>Referenced in
<a href=https://w3c.github.io/html-aam/ title='value is referenced by HTML Accessibility API Mappings 1.0'>HTML Accessibility API Mappings 1.0</a></dd>
<dt id="value@@progress@element-attr"><code class=prefix></code><span><strong><code class=markup>value</code></strong> (<em>markup attribute for <a href='p.html#progress@@html%25%25element'><code>progress</code></a> </em>) <a class='self-link' href='#value%40%40progress%40element-attr' aria-label="Permalink for value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/form-elements.html#attr-progress-value>HTML</a></strong> </dd>
<dd>Referenced in
<a href=https://w3c.github.io/html-aam/ title='value is referenced by HTML Accessibility API Mappings 1.0'>HTML Accessibility API Mappings 1.0</a></dd>
<dt id="value@@meter@element-attr"><code class=prefix></code><span><strong><code class=markup>value</code></strong> (<em>markup attribute for <a href='m.html#meter@@html%25%25element'><code>meter</code></a> </em>) <a class='self-link' href='#value%40%40meter%40element-attr' aria-label="Permalink for value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/form-elements.html#attr-meter-value>HTML</a></strong> </dd>
<dd>Referenced in
<a href=https://w3c.github.io/html-aam/ title='value is referenced by HTML Accessibility API Mappings 1.0'>HTML Accessibility API Mappings 1.0</a></dd>
<dt id="value@@entry list/entry@dfn"><code class=prefix></code><span><strong>value</strong> (<em>concept for <a href='e.html#entry@@entry list@dfn'>entry</a> of <a href='e.html#entry list@@html%25%25dfn'>entry list</a> </em>) <a class='self-link' href='#value%40%40entry%20list%2Fentry%40dfn' aria-label="Permalink for value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#form-entry-value>HTML</a></strong> </dd>
<dd>Referenced in
<a href=https://xhr.spec.whatwg.org/ title='value is referenced by XMLHttpRequest'>XMLHttpRequest</a></dd>
<dt id="value@@embedder policy@dfn"><code class=prefix></code><span><strong>value</strong> (<em>concept for <a href='e.html#embedder policy@@html%25%25dfn'>embedder policy</a> </em>) <a class='self-link' href='#value%40%40embedder%20policy%40dfn' aria-label="Permalink for value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/browsers.html#embedder-policy-value-2>HTML</a></strong> </dd>
<dd>Referenced in
<a href=https://fetch.spec.whatwg.org/ title='value is referenced by Fetch'>Fetch</a></dd>
<dt id="value@@event handler@dfn"><code class=prefix></code><span><strong>value</strong> (<em>concept for <a href='e.html#event handler@@html%25%25dfn'>event handler</a> </em>) <a class='self-link' href='#value%40%40event%20handler%40dfn' aria-label="Permalink for value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/webappapis.html#event-handler-value>HTML</a></strong> </dd>
<dd>Referenced in
<a href=https://w3c.github.io/ServiceWorker/ title='value is referenced by Service Workers'>Service Workers</a></dd>
<dt id="value@@byte@dfn"><code class=prefix></code><span><strong>value</strong> (<em>concept for <a href='b.html#byte@@infra%25%25dfn'>byte</a> </em>) <a class='self-link' href='#value%40%40byte%40dfn' aria-label="Permalink for value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in Infra'><a href=https://infra.spec.whatwg.org/#byte-value>Infra</a></strong> </dd>
<dd>Referenced in
<a href=https://tc39.es/source-map/ title='value is referenced by Source Map'>Source Map</a>,
<a href=https://url.spec.whatwg.org/ title='value is referenced by URL'>URL</a></dd>
<dt id="value@@code point@dfn"><code class=prefix></code><span><strong>value</strong> (<em>concept for <a href='c.html#code point@@infra%25%25dfn'>code point</a> </em>) <a class='self-link' href='#value%40%40code%20point%40dfn' aria-label="Permalink for value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in Infra'><a href=https://infra.spec.whatwg.org/#code-point-value>Infra</a></strong> </dd>
<dd>Referenced in
<a href=https://encoding.spec.whatwg.org/ title='value is referenced by Encoding'>Encoding</a>,
<a href=https://url.spec.whatwg.org/ title='value is referenced by URL'>URL</a>,
<a href=https://w3c.github.io/webdriver-bidi/ title='value is referenced by WebDriver BiDi'>WebDriver BiDi</a></dd>
<dt id="value@@map@dfn"><code class=prefix></code><span><strong>value</strong> (<em>concept for <a href='m.html#map@@html%25%25element'><code>map</code></a> </em>) <a class='self-link' href='#value%40%40map%40dfn' aria-label="Permalink for value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in Infra'><a href=https://infra.spec.whatwg.org/#map-value>Infra</a></strong> </dd>
<dd>Referenced in
<a href=https://html.spec.whatwg.org/multipage/ title='value is referenced by HTML'>HTML</a>,
<a href=https://storage.spec.whatwg.org/ title='value is referenced by Storage'>Storage</a>,
<a href=https://wicg.github.io/attribution-reporting-api/ title='value is referenced by Attribution Reporting'>Attribution Reporting</a>,
<a href=https://wicg.github.io/private-network-access/ title='value is referenced by Private Network Access'>Private Network Access</a>,
<a href=https://wicg.github.io/turtledove/ title='value is referenced by Protected Audience'>Protected Audience</a>,
<a href=https://w3c.github.io/accelerometer/ title='value is referenced by Accelerometer'>Accelerometer</a>,
<a href=https://w3c.github.io/ambient-light/ title='value is referenced by Ambient Light Sensor'>Ambient Light Sensor</a>,
<a href=https://w3c.github.io/compute-pressure/ title='value is referenced by Compute Pressure 1'>Compute Pressure 1</a>,
<a href=https://drafts.css-houdini.org/css-typed-om-1/ title='value is referenced by CSS Typed OM 1'>CSS Typed OM 1</a>,
<a href=https://w3c.github.io/FileAPI/ title='value is referenced by File API'>File API</a>,
<a href=https://w3c.github.io/sensors/ title='value is referenced by Generic Sensor API'>Generic Sensor API</a>,
<a href=https://w3c.github.io/geolocation-sensor/ title='value is referenced by Geolocation Sensor'>Geolocation Sensor</a>,
<a href=https://w3c.github.io/magnetometer/ title='value is referenced by Magnetometer'>Magnetometer</a>,
<a href=https://w3c.github.io/deviceorientation/ title='value is referenced by Device Orientation and Motion'>Device Orientation and Motion</a>,
<a href=https://w3c.github.io/orientation-sensor/ title='value is referenced by Orientation Sensor'>Orientation Sensor</a>,
<a href=https://w3c.github.io/performance-timeline/ title='value is referenced by Performance Timeline'>Performance Timeline</a>,
<a href=https://w3c.github.io/proximity/ title='value is referenced by Proximity Sensor'>Proximity Sensor</a>,
<a href=https://w3c.github.io/pub-manifest/ title='value is referenced by Publication Manifest'>Publication Manifest</a>,
<a href=https://w3c.github.io/rdf-concepts/spec/ title='value is referenced by RDF 1.2 Concepts and Abstract Syntax'>RDF 1.2 Concepts and Abstract Syntax</a>,
<a href=https://w3c.github.io/ServiceWorker/ title='value is referenced by Service Workers'>Service Workers</a>,
<a href=https://w3c.github.io/webauthn/ title='value is referenced by Web Authentication'>Web Authentication</a></dd>
<dt id="value@@mapped url@dfn"><code class=prefix></code><span><strong>value</strong> (<em>concept for <code>mapped url</code> </em>) <a class='self-link' href='#value%40%40mapped%20url%40dfn' aria-label="Permalink for value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in Fenced Frame'><a href=https://wicg.github.io/fenced-frame/#mapped-url-value>Fenced Frame</a></strong> </dd>
<dd>Referenced in
<a href=https://wicg.github.io/turtledove/ title='value is referenced by Protected Audience'>Protected Audience</a></dd>
<dt id="value@@content size@dfn"><code class=prefix></code><span><strong>value</strong> (<em>concept for <code>content size</code> </em>) <a class='self-link' href='#value%40%40content%20size%40dfn' aria-label="Permalink for value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in Fenced Frame'><a href=https://wicg.github.io/fenced-frame/#content-size-value>Fenced Frame</a></strong> </dd>
<dd>Referenced in
<a href=https://wicg.github.io/turtledove/ title='value is referenced by Protected Audience'>Protected Audience</a></dd>
<dt id="value@@interest group descriptor@dfn"><code class=prefix></code><span><strong>value</strong> (<em>concept for <code>interest group descriptor</code> </em>) <a class='self-link' href='#value%40%40interest%20group%20descriptor%40dfn' aria-label="Permalink for value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in Fenced Frame'><a href=https://wicg.github.io/fenced-frame/#interest-group-descriptor-value>Fenced Frame</a></strong> </dd>
<dd>Referenced in
<a href=https://wicg.github.io/turtledove/ title='value is referenced by Protected Audience'>Protected Audience</a></dd>
<dt id="value@@effective sandboxing flags@dfn"><code class=prefix></code><span><strong>value</strong> (<em>concept for <code>effective sandboxing flags</code> </em>) <a class='self-link' href='#value%40%40effective%20sandboxing%20flags%40dfn' aria-label="Permalink for value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in Fenced Frame'><a href=https://wicg.github.io/fenced-frame/#effective-sandboxing-flags-value>Fenced Frame</a></strong> </dd>
<dd>Referenced in
<a href=https://wicg.github.io/turtledove/ title='value is referenced by Protected Audience'>Protected Audience</a></dd>
<dt id="value@@effective enabled permissions@dfn"><code class=prefix></code><span><strong>value</strong> (<em>concept for <code>effective enabled permissions</code> </em>) <a class='self-link' href='#value%40%40effective%20enabled%20permissions%40dfn' aria-label="Permalink for value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in Fenced Frame'><a href=https://wicg.github.io/fenced-frame/#effective-enabled-permissions-value>Fenced Frame</a></strong> </dd>
<dd>Referenced in
<a href=https://wicg.github.io/turtledove/ title='value is referenced by Protected Audience'>Protected Audience</a></dd>
<dt id="value@@fenced frame reporting metadata@dfn"><code class=prefix></code><span><strong>value</strong> (<em>concept for <code>fenced frame reporting metadata</code> </em>) <a class='self-link' href='#value%40%40fenced%20frame%20reporting%20metadata%40dfn' aria-label="Permalink for value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in Fenced Frame'><a href=https://wicg.github.io/fenced-frame/#fenced-frame-reporting-metadata-value>Fenced Frame</a></strong> </dd>
<dd>Referenced in
<a href=https://wicg.github.io/turtledove/ title='value is referenced by Protected Audience'>Protected Audience</a></dd>
<dt id="value@@exfiltration budget metadata@dfn"><code class=prefix></code><span><strong>value</strong> (<em>concept for <code>exfiltration budget metadata</code> </em>) <a class='self-link' href='#value%40%40exfiltration%20budget%20metadata%40dfn' aria-label="Permalink for value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in Fenced Frame'><a href=https://wicg.github.io/fenced-frame/#exfiltration-budget-metadata-value>Fenced Frame</a></strong> </dd>
<dt id="value@@nested configs@dfn"><code class=prefix></code><span><strong>value</strong> (<em>concept for <code>nested configs</code> </em>) <a class='self-link' href='#value%40%40nested%20configs%40dfn' aria-label="Permalink for value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in Fenced Frame'><a href=https://wicg.github.io/fenced-frame/#nested-configs-value>Fenced Frame</a></strong> </dd>
<dd>Referenced in
<a href=https://wicg.github.io/turtledove/ title='value is referenced by Protected Audience'>Protected Audience</a></dd>
<dt id="value@@manifest/*_localized@dfn"><code class=prefix></code><span><strong>value</strong> (<em>concept for <a href='other.html#*_localized@@manifest@dfn'>*_localized</a> of <a href='m.html#manifest@@appmanifest%25%25dfn'>manifest</a> </em>) <a class='self-link' href='#value%40%40manifest%2F*_localized%40dfn' aria-label="Permalink for value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in Web Application Manifest'><a href=https://w3c.github.io/manifest/#dfn-value>Web Application Manifest</a></strong> </dd>
<dt id="value@@directive@dfn"><code class=prefix></code><span><strong>value</strong> (<em>concept for <code>directive</code> </em>) <a class='self-link' href='#value%40%40directive%40dfn' aria-label="Permalink for value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in Content Security Policy 3'><a href=https://w3c.github.io/webappsec-csp/#directive-value>Content Security Policy 3</a></strong> </dd>
<dd>Referenced in
<a href=https://wicg.github.io/fenced-frame/ title='value is referenced by Fenced Frame'>Fenced Frame</a>,
<a href=https://wicg.github.io/isolated-web-apps/isolated-contexts.html title='value is referenced by Isolated Contexts'>Isolated Contexts</a>,
<a href=https://wicg.github.io/portals/ title='value is referenced by Portals'>Portals</a>,
<a href=https://wicg.github.io/turtledove/ title='value is referenced by Protected Audience'>Protected Audience</a>,
<a href=https://w3c.github.io/webappsec-cspee/ title='value is referenced by Content Security Policy: Embedded Enforcement'>Content Security Policy: Embedded Enforcement</a>,
<a href=https://w3c.github.io/trusted-types/dist/spec/ title='value is referenced by Trusted Types'>Trusted Types</a></dd>
<dt id="value@@CSS counter@dfn"><code class=prefix></code><span><strong>value</strong> (<em>concept for <code>CSS counter</code> </em>) <a class='self-link' href='#value%40%40CSS%20counter%40dfn' aria-label="Permalink for value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in CSS Lists 3'><a href=https://drafts.csswg.org/css-lists-3/#css-counter-value>CSS Lists 3</a></strong> </dd>
<dt id="value@@sum value@dfn"><code class=prefix></code><span><strong>value</strong> (<em>concept for <a href='s.html#sum value@@CSSNumericValue@dfn'>sum value</a> </em>) <a class='self-link' href='#value%40%40sum%20value%40dfn' aria-label="Permalink for value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in CSS Typed OM 1'><a href=https://drafts.css-houdini.org/css-typed-om-1/#sum-value-value>CSS Typed OM 1</a></strong> </dd>
<dt id="value@@CSS%%dfn"><code class=prefix></code><span><strong>value</strong> (<em>concept</em>) <a class='self-link' href='#value%40%40CSS%25%25dfn' aria-label="Permalink for value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in CSS 2.1'><a href=https://www.w3.org/TR/CSS21/syndata.html#x21>CSS 2.1</a></strong> </dd>
<dt id="value@@AnyExternType@dict-member"><code class=prefix><a href='a.html#AnyExternType@@@@dictionary'>AnyExternType</a>.</code><span><strong><code class=webidl>value</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#value%40%40AnyExternType%40dict-member' aria-label="Permalink for <a href='a.html#AnyExternType@@@@dictionary'>AnyExternType</a>.value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in WebAssembly JavaScript Interface: Type Reflection'><a href=https://webassembly.github.io/js-types/js-api/#dom-anyexterntype-value>WebAssembly JavaScript Interface: Type Reflection</a></strong> </dd>
<dt id="value@@Attr@attribute"><code class=prefix><a href='a.html#Attr@@@@interface'>Attr</a>.</code><span><strong><code class=webidl>value</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#value%40%40Attr%40attribute' aria-label="Permalink for <a href='a.html#Attr@@@@interface'>Attr</a>.value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in DOM'><a href=https://dom.spec.whatwg.org/#dom-attr-value>DOM</a></strong> </dd>
<dt id="value@@AudioParam@attribute"><code class=prefix><a href='a.html#AudioParam@@@@interface'>AudioParam</a>.</code><span><strong><code class=webidl>value</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#value%40%40AudioParam%40attribute' aria-label="Permalink for <a href='a.html#AudioParam@@@@interface'>AudioParam</a>.value">§</a></span></dt>
<dt><code class=prefix><a href='a.html#AudioParam@@@@interface'>AudioParam</a>.</code><span><strong><code class=webidl>value</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#value%40%40AudioParam%40attribute' aria-label="Permalink for <a href='a.html#AudioParam@@@@interface'>AudioParam</a>.value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in Web Audio API'><a href=https://webaudio.github.io/web-audio-api/#dom-audioparam-value>Web Audio API</a></strong> , <strong title='value is defined in Web Audio API 1.1'><a href=https://webaudio.github.io/web-audio-api/#dom-audioparam-value>Web Audio API 1.1</a></strong> </dd>
<dt id="value@@Baseline@attribute"><code class=prefix><a href='b.html#Baseline@@@@interface'>Baseline</a>.</code><span><strong><code class=webidl>value</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#value%40%40Baseline%40attribute' aria-label="Permalink for <a href='b.html#Baseline@@@@interface'>Baseline</a>.value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in Font Metrics API 1'><a href=https://drafts.css-houdini.org/font-metrics-api-1/#dom-baseline-value>Font Metrics API 1</a></strong> </dd>
<dt id="value@@BluetoothRemoteGATTCharacteristic@attribute"><code class=prefix><a href='b.html#BluetoothRemoteGATTCharacteristic@@@@interface'>BluetoothRemoteGATTCharacteristic</a>.</code><span><strong><code class=webidl>value</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#value%40%40BluetoothRemoteGATTCharacteristic%40attribute' aria-label="Permalink for <a href='b.html#BluetoothRemoteGATTCharacteristic@@@@interface'>BluetoothRemoteGATTCharacteristic</a>.value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in Web Bluetooth'><a href=https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothremotegattcharacteristic-value>Web Bluetooth</a></strong> </dd>
<dt id="value@@BluetoothRemoteGATTDescriptor@attribute"><code class=prefix><a href='b.html#BluetoothRemoteGATTDescriptor@@@@interface'>BluetoothRemoteGATTDescriptor</a>.</code><span><strong><code class=webidl>value</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#value%40%40BluetoothRemoteGATTDescriptor%40attribute' aria-label="Permalink for <a href='b.html#BluetoothRemoteGATTDescriptor@@@@interface'>BluetoothRemoteGATTDescriptor</a>.value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in Web Bluetooth'><a href=https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothremotegattdescriptor-value>Web Bluetooth</a></strong> </dd>
<dt id="value@@CookieInit@dict-member"><code class=prefix><a href='c.html#CookieInit@@@@dictionary'>CookieInit</a>.</code><span><strong><code class=webidl>value</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#value%40%40CookieInit%40dict-member' aria-label="Permalink for <a href='c.html#CookieInit@@@@dictionary'>CookieInit</a>.value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in Cookie Store API'><a href=https://wicg.github.io/cookie-store/#dom-cookieinit-value>Cookie Store API</a></strong> </dd>
<dt id="value@@CookieListItem@dict-member"><code class=prefix><a href='c.html#CookieListItem@@@@dictionary'>CookieListItem</a>.</code><span><strong><code class=webidl>value</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#value%40%40CookieListItem%40dict-member' aria-label="Permalink for <a href='c.html#CookieListItem@@@@dictionary'>CookieListItem</a>.value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in Cookie Store API'><a href=https://wicg.github.io/cookie-store/#dom-cookielistitem-value>Cookie Store API</a></strong> </dd>
<dt id="value@@CSSKeywordValue@attribute"><code class=prefix><a href='c.html#CSSKeywordValue@@@@interface'>CSSKeywordValue</a>.</code><span><strong><code class=webidl>value</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#value%40%40CSSKeywordValue%40attribute' aria-label="Permalink for <a href='c.html#CSSKeywordValue@@@@interface'>CSSKeywordValue</a>.value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in CSS Typed OM 1'><a href=https://drafts.css-houdini.org/css-typed-om-1/#dom-csskeywordvalue-value>CSS Typed OM 1</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/scroll-animations-1/ title='value is referenced by Scroll-driven Animations'>Scroll-driven Animations</a>,
<a href=https://drafts.csswg.org/web-animations-2/ title='value is referenced by Web Animations 2'>Web Animations 2</a></dd>
<dt id="value@@CSSMathClamp@attribute"><code class=prefix><a href='c.html#CSSMathClamp@@@@interface'>CSSMathClamp</a>.</code><span><strong><code class=webidl>value</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#value%40%40CSSMathClamp%40attribute' aria-label="Permalink for <a href='c.html#CSSMathClamp@@@@interface'>CSSMathClamp</a>.value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in CSS Typed OM 1'><a href=https://drafts.css-houdini.org/css-typed-om-1/#dom-cssmathclamp-value>CSS Typed OM 1</a></strong> </dd>
<dt id="value@@CSSMathInvert@attribute"><code class=prefix><a href='c.html#CSSMathInvert@@@@interface'>CSSMathInvert</a>.</code><span><strong><code class=webidl>value</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#value%40%40CSSMathInvert%40attribute' aria-label="Permalink for <a href='c.html#CSSMathInvert@@@@interface'>CSSMathInvert</a>.value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in CSS Typed OM 1'><a href=https://drafts.css-houdini.org/css-typed-om-1/#dom-cssmathinvert-value>CSS Typed OM 1</a></strong> </dd>
<dt id="value@@CSSMathNegate@attribute"><code class=prefix><a href='c.html#CSSMathNegate@@@@interface'>CSSMathNegate</a>.</code><span><strong><code class=webidl>value</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#value%40%40CSSMathNegate%40attribute' aria-label="Permalink for <a href='c.html#CSSMathNegate@@@@interface'>CSSMathNegate</a>.value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in CSS Typed OM 1'><a href=https://drafts.css-houdini.org/css-typed-om-1/#dom-cssmathnegate-value>CSS Typed OM 1</a></strong> </dd>
<dt id="value@@CSSUnitValue@attribute"><code class=prefix><a href='c.html#CSSUnitValue@@@@interface'>CSSUnitValue</a>.</code><span><strong><code class=webidl>value</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#value%40%40CSSUnitValue%40attribute' aria-label="Permalink for <a href='c.html#CSSUnitValue@@@@interface'>CSSUnitValue</a>.value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in CSS Typed OM 1'><a href=https://drafts.css-houdini.org/css-typed-om-1/#dom-cssunitvalue-value>CSS Typed OM 1</a></strong> </dd>
<dt id="value@@DataCue@attribute"><code class=prefix><a href='d.html#DataCue@@@@interface'>DataCue</a>.</code><span><strong><code class=webidl>value</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#value%40%40DataCue%40attribute' aria-label="Permalink for <a href='d.html#DataCue@@@@interface'>DataCue</a>.value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in DataCue API'><a href=https://wicg.github.io/datacue/#dom-datacue-value>DataCue API</a></strong> </dd>
<dt id="value@@DOMTokenList@attribute"><code class=prefix><a href='d.html#DOMTokenList@@@@interface'>DOMTokenList</a>.</code><span><strong><code class=webidl>value</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#value%40%40DOMTokenList%40attribute' aria-label="Permalink for <a href='d.html#DOMTokenList@@@@interface'>DOMTokenList</a>.value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in DOM'><a href=https://dom.spec.whatwg.org/#dom-domtokenlist-value>DOM</a></strong> </dd>
<dd>Referenced in
<a href=https://html.spec.whatwg.org/multipage/ title='value is referenced by HTML'>HTML</a>,
<a href=https://wicg.github.io/fenced-frame/ title='value is referenced by Fenced Frame'>Fenced Frame</a>,
<a href=https://drafts.csswg.org/css-shadow-parts-1/ title='value is referenced by CSS Shadow Parts'>CSS Shadow Parts</a></dd>
<dt id="value@@GamepadButton@attribute"><code class=prefix><a href='g.html#GamepadButton@@@@interface'>GamepadButton</a>.</code><span><strong><code class=webidl>value</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#value%40%40GamepadButton%40attribute' aria-label="Permalink for <a href='g.html#GamepadButton@@@@interface'>GamepadButton</a>.value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in Gamepad'><a href=https://w3c.github.io/gamepad/#dom-gamepadbutton-value>Gamepad</a></strong> </dd>
<dt id="value@@Global@attribute"><code class=prefix><a href='g.html#Global@@@@interface'>Global</a>.</code><span><strong><code class=webidl>value</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#value%40%40Global%40attribute' aria-label="Permalink for <a href='g.html#Global@@@@interface'>Global</a>.value">§</a></span></dt>
<dt><code class=prefix><a href='g.html#Global@@@@interface'>Global</a>.</code><span><strong><code class=webidl>value</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#value%40%40Global%40attribute' aria-label="Permalink for <a href='g.html#Global@@@@interface'>Global</a>.value">§</a></span></dt><dt><code class=prefix><a href='g.html#Global@@@@interface'>Global</a>.</code><span><strong><code class=webidl>value</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#value%40%40Global%40attribute' aria-label="Permalink for <a href='g.html#Global@@@@interface'>Global</a>.value">§</a></span></dt><dt><code class=prefix><a href='g.html#Global@@@@interface'>Global</a>.</code><span><strong><code class=webidl>value</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#value%40%40Global%40attribute' aria-label="Permalink for <a href='g.html#Global@@@@interface'>Global</a>.value">§</a></span></dt><dt><code class=prefix><a href='g.html#Global@@@@interface'>Global</a>.</code><span><strong><code class=webidl>value</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#value%40%40Global%40attribute' aria-label="Permalink for <a href='g.html#Global@@@@interface'>Global</a>.value">§</a></span></dt><dt><code class=prefix><a href='g.html#Global@@@@interface'>Global</a>.</code><span><strong><code class=webidl>value</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#value%40%40Global%40attribute' aria-label="Permalink for <a href='g.html#Global@@@@interface'>Global</a>.value">§</a></span></dt><dt><code class=prefix><a href='g.html#Global@@@@interface'>Global</a>.</code><span><strong><code class=webidl>value</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#value%40%40Global%40attribute' aria-label="Permalink for <a href='g.html#Global@@@@interface'>Global</a>.value">§</a></span></dt><dt><code class=prefix><a href='g.html#Global@@@@interface'>Global</a>.</code><span><strong><code class=webidl>value</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#value%40%40Global%40attribute' aria-label="Permalink for <a href='g.html#Global@@@@interface'>Global</a>.value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in WebAssembly JavaScript Interface: Content Security Policy'><a href=https://webassembly.github.io/content-security-policy/js-api/#dom-global-value>WebAssembly JavaScript Interface: Content Security Policy</a></strong> , <strong title='value is defined in WebAssembly JavaScript Interface: ESM Integration'><a href=https://webassembly.github.io/esm-integration/js-api/#dom-global-value>WebAssembly JavaScript Interface: ESM Integration</a></strong> , <strong title='value is defined in WebAssembly JavaScript Interface: Exception Handling'><a href=https://webassembly.github.io/exception-handling/js-api/#dom-global-value>WebAssembly JavaScript Interface: Exception Handling</a></strong> , <strong title='value is defined in WebAssembly JavaScript Interface: Promise Integration'><a href=https://webassembly.github.io/js-promise-integration/js-api/#dom-global-value>WebAssembly JavaScript Interface: Promise Integration</a></strong> , <strong title='value is defined in WebAssembly JavaScript Interface: JS String Builtins'><a href=https://webassembly.github.io/js-string-builtins/js-api/#dom-global-value>WebAssembly JavaScript Interface: JS String Builtins</a></strong> , <strong title='value is defined in WebAssembly JavaScript Interface: Type Reflection'><a href=https://webassembly.github.io/js-types/js-api/#dom-global-value>WebAssembly JavaScript Interface: Type Reflection</a></strong> , <strong title='value is defined in WebAssembly JavaScript Interface: Threading'><a href=https://webassembly.github.io/threads/js-api/#dom-global-value>WebAssembly JavaScript Interface: Threading</a></strong> , <strong title='value is defined in WebAssembly JavaScript Interface'><a href=https://webassembly.github.io/spec/js-api/#dom-global-value>WebAssembly JavaScript Interface</a></strong> </dd>
<dt id="value@@GlobalDescriptor@dict-member"><code class=prefix><a href='g.html#GlobalDescriptor@@@@dictionary'>GlobalDescriptor</a>.</code><span><strong><code class=webidl>value</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#value%40%40GlobalDescriptor%40dict-member' aria-label="Permalink for <a href='g.html#GlobalDescriptor@@@@dictionary'>GlobalDescriptor</a>.value">§</a></span></dt>
<dt><code class=prefix><a href='g.html#GlobalDescriptor@@@@dictionary'>GlobalDescriptor</a>.</code><span><strong><code class=webidl>value</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#value%40%40GlobalDescriptor%40dict-member' aria-label="Permalink for <a href='g.html#GlobalDescriptor@@@@dictionary'>GlobalDescriptor</a>.value">§</a></span></dt><dt><code class=prefix><a href='g.html#GlobalDescriptor@@@@dictionary'>GlobalDescriptor</a>.</code><span><strong><code class=webidl>value</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#value%40%40GlobalDescriptor%40dict-member' aria-label="Permalink for <a href='g.html#GlobalDescriptor@@@@dictionary'>GlobalDescriptor</a>.value">§</a></span></dt><dt><code class=prefix><a href='g.html#GlobalDescriptor@@@@dictionary'>GlobalDescriptor</a>.</code><span><strong><code class=webidl>value</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#value%40%40GlobalDescriptor%40dict-member' aria-label="Permalink for <a href='g.html#GlobalDescriptor@@@@dictionary'>GlobalDescriptor</a>.value">§</a></span></dt><dt><code class=prefix><a href='g.html#GlobalDescriptor@@@@dictionary'>GlobalDescriptor</a>.</code><span><strong><code class=webidl>value</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#value%40%40GlobalDescriptor%40dict-member' aria-label="Permalink for <a href='g.html#GlobalDescriptor@@@@dictionary'>GlobalDescriptor</a>.value">§</a></span></dt><dt><code class=prefix><a href='g.html#GlobalDescriptor@@@@dictionary'>GlobalDescriptor</a>.</code><span><strong><code class=webidl>value</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#value%40%40GlobalDescriptor%40dict-member' aria-label="Permalink for <a href='g.html#GlobalDescriptor@@@@dictionary'>GlobalDescriptor</a>.value">§</a></span></dt><dt><code class=prefix><a href='g.html#GlobalDescriptor@@@@dictionary'>GlobalDescriptor</a>.</code><span><strong><code class=webidl>value</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#value%40%40GlobalDescriptor%40dict-member' aria-label="Permalink for <a href='g.html#GlobalDescriptor@@@@dictionary'>GlobalDescriptor</a>.value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in WebAssembly JavaScript Interface: Content Security Policy'><a href=https://webassembly.github.io/content-security-policy/js-api/#dom-globaldescriptor-value>WebAssembly JavaScript Interface: Content Security Policy</a></strong> , <strong title='value is defined in WebAssembly JavaScript Interface: ESM Integration'><a href=https://webassembly.github.io/esm-integration/js-api/#dom-globaldescriptor-value>WebAssembly JavaScript Interface: ESM Integration</a></strong> , <strong title='value is defined in WebAssembly JavaScript Interface: Exception Handling'><a href=https://webassembly.github.io/exception-handling/js-api/#dom-globaldescriptor-value>WebAssembly JavaScript Interface: Exception Handling</a></strong> , <strong title='value is defined in WebAssembly JavaScript Interface: Promise Integration'><a href=https://webassembly.github.io/js-promise-integration/js-api/#dom-globaldescriptor-value>WebAssembly JavaScript Interface: Promise Integration</a></strong> , <strong title='value is defined in WebAssembly JavaScript Interface: JS String Builtins'><a href=https://webassembly.github.io/js-string-builtins/js-api/#dom-globaldescriptor-value>WebAssembly JavaScript Interface: JS String Builtins</a></strong> , <strong title='value is defined in WebAssembly JavaScript Interface: Threading'><a href=https://webassembly.github.io/threads/js-api/#dom-globaldescriptor-value>WebAssembly JavaScript Interface: Threading</a></strong> , <strong title='value is defined in WebAssembly JavaScript Interface'><a href=https://webassembly.github.io/spec/js-api/#dom-globaldescriptor-value>WebAssembly JavaScript Interface</a></strong> </dd>
<dt id="value@@GlobalType@dict-member"><code class=prefix><a href='g.html#GlobalType@@@@dictionary'>GlobalType</a>.</code><span><strong><code class=webidl>value</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#value%40%40GlobalType%40dict-member' aria-label="Permalink for <a href='g.html#GlobalType@@@@dictionary'>GlobalType</a>.value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in WebAssembly JavaScript Interface: Type Reflection'><a href=https://webassembly.github.io/js-types/js-api/#dom-globaltype-value>WebAssembly JavaScript Interface: Type Reflection</a></strong> </dd>
<dt id="value@@HTMLButtonElement@attribute"><code class=prefix><a href='h.html#HTMLButtonElement@@@@interface'>HTMLButtonElement</a>.</code><span><strong><code class=webidl>value</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#value%40%40HTMLButtonElement%40attribute' aria-label="Permalink for <a href='h.html#HTMLButtonElement@@@@interface'>HTMLButtonElement</a>.value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/form-elements.html#dom-button-value>HTML</a></strong> </dd>
<dt id="value@@HTMLDataElement@attribute"><code class=prefix><a href='h.html#HTMLDataElement@@@@interface'>HTMLDataElement</a>.</code><span><strong><code class=webidl>value</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#value%40%40HTMLDataElement%40attribute' aria-label="Permalink for <a href='h.html#HTMLDataElement@@@@interface'>HTMLDataElement</a>.value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/text-level-semantics.html#dom-data-value>HTML</a></strong> </dd>
<dt id="value@@HTMLInputElement@attribute"><code class=prefix><a href='h.html#HTMLInputElement@@@@interface'>HTMLInputElement</a>.</code><span><strong><code class=webidl>value</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#value%40%40HTMLInputElement%40attribute' aria-label="Permalink for <a href='h.html#HTMLInputElement@@@@interface'>HTMLInputElement</a>.value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/input.html#dom-input-value>HTML</a></strong> </dd>
<dt id="value@@HTMLLIElement@attribute"><code class=prefix><a href='h.html#HTMLLIElement@@@@interface'>HTMLLIElement</a>.</code><span><strong><code class=webidl>value</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#value%40%40HTMLLIElement%40attribute' aria-label="Permalink for <a href='h.html#HTMLLIElement@@@@interface'>HTMLLIElement</a>.value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/grouping-content.html#dom-li-value>HTML</a></strong> </dd>
<dt id="value@@HTMLMeterElement@attribute"><code class=prefix><a href='h.html#HTMLMeterElement@@@@interface'>HTMLMeterElement</a>.</code><span><strong><code class=webidl>value</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#value%40%40HTMLMeterElement%40attribute' aria-label="Permalink for <a href='h.html#HTMLMeterElement@@@@interface'>HTMLMeterElement</a>.value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/form-elements.html#dom-meter-value>HTML</a></strong> </dd>
<dt id="value@@HTMLOptionElement@attribute"><code class=prefix><a href='h.html#HTMLOptionElement@@@@interface'>HTMLOptionElement</a>.</code><span><strong><code class=webidl>value</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#value%40%40HTMLOptionElement%40attribute' aria-label="Permalink for <a href='h.html#HTMLOptionElement@@@@interface'>HTMLOptionElement</a>.value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/form-elements.html#dom-option-value>HTML</a></strong> </dd>
<dt id="value@@HTMLOutputElement@attribute"><code class=prefix><a href='h.html#HTMLOutputElement@@@@interface'>HTMLOutputElement</a>.</code><span><strong><code class=webidl>value</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#value%40%40HTMLOutputElement%40attribute' aria-label="Permalink for <a href='h.html#HTMLOutputElement@@@@interface'>HTMLOutputElement</a>.value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/form-elements.html#dom-output-value>HTML</a></strong> </dd>
<dt id="value@@HTMLParamElement@attribute"><code class=prefix><a href='h.html#HTMLParamElement@@@@interface'>HTMLParamElement</a>.</code><span><strong><code class=webidl>value</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#value%40%40HTMLParamElement%40attribute' aria-label="Permalink for <a href='h.html#HTMLParamElement@@@@interface'>HTMLParamElement</a>.value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/obsolete.html#dom-param-value>HTML</a></strong> </dd>
<dt id="value@@HTMLProgressElement@attribute"><code class=prefix><a href='h.html#HTMLProgressElement@@@@interface'>HTMLProgressElement</a>.</code><span><strong><code class=webidl>value</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#value%40%40HTMLProgressElement%40attribute' aria-label="Permalink for <a href='h.html#HTMLProgressElement@@@@interface'>HTMLProgressElement</a>.value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/form-elements.html#dom-progress-value>HTML</a></strong> </dd>
<dt id="value@@HTMLSelectElement@attribute"><code class=prefix><a href='h.html#HTMLSelectElement@@@@interface'>HTMLSelectElement</a>.</code><span><strong><code class=webidl>value</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#value%40%40HTMLSelectElement%40attribute' aria-label="Permalink for <a href='h.html#HTMLSelectElement@@@@interface'>HTMLSelectElement</a>.value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/form-elements.html#dom-select-value>HTML</a></strong> </dd>
<dt id="value@@HTMLTextAreaElement@attribute"><code class=prefix><a href='h.html#HTMLTextAreaElement@@@@interface'>HTMLTextAreaElement</a>.</code><span><strong><code class=webidl>value</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#value%40%40HTMLTextAreaElement%40attribute' aria-label="Permalink for <a href='h.html#HTMLTextAreaElement@@@@interface'>HTMLTextAreaElement</a>.value">§</a></span></dt>
<dd>Defined in <strong title='value is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/form-elements.html#dom-textarea-value>HTML</a></strong> </dd>