-
Notifications
You must be signed in to change notification settings - Fork 2
/
g.html
6590 lines (3130 loc) · 898 KB
/
g.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 g"
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="g@@rgb()@value"><code class=prefix></code><span><strong><code class=css>g</code></strong> (<em>CSS value for <a href='r.html#rgb()@@css-color%25%25function'><code>rgb()</code></a> </em>) <a class='self-link' href='#g%40%40rgb()%40value' aria-label="Permalink for g">§</a></span></dt>
<dd>Defined in <strong title='g is defined in CSS Color 5'><a href=https://drafts.csswg.org/css-color-5/#valdef-rgb-g>CSS Color 5</a></strong> </dd>
<dt id="g@@color()@value"><code class=prefix></code><span><strong><code class=css>g</code></strong> (<em>CSS value for <a href='c.html#color()@@css-color%25%25function'><code>color()</code></a> </em>) <a class='self-link' href='#g%40%40color()%40value' aria-label="Permalink for g">§</a></span></dt>
<dd>Defined in <strong title='g is defined in CSS Color 5'><a href=https://drafts.csswg.org/css-color-5/#valdef-color-g>CSS Color 5</a></strong> </dd>
<dt id="g@@SVG%%element"><code class=prefix></code><span><strong><code class=markup>g</code></strong> (<em>markup element</em>) <a class='self-link' href='#g%40%40SVG%25%25element' aria-label="Permalink for g">§</a></span></dt>
<dd>Defined in <strong title='g is defined in SVG 2'><a href=https://svgwg.org/svg2-draft/struct.html#elementdef-g>SVG 2</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-transforms-2/ title='g is referenced by CSS Transforms 2'>CSS Transforms 2</a></dd>
<dd>Related terms: <em>markup attribute</em> <a href='r.html#requiredExtensions@@a@element-attr'><code>requiredExtensions</code></a>, <em>markup attribute</em> <a href='s.html#systemLanguage@@a@element-attr'><code>systemLanguage</code></a></dd>
<dt id="g@@CSSRGB@attribute"><code class=prefix><a href='c.html#CSSRGB@@@@interface'>CSSRGB</a>.</code><span><strong><code class=webidl>g</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#g%40%40CSSRGB%40attribute' aria-label="Permalink for <a href='c.html#CSSRGB@@@@interface'>CSSRGB</a>.g">§</a></span></dt>
<dd>Defined in <strong title='g is defined in CSS Typed OM 1'><a href=https://drafts.css-houdini.org/css-typed-om-1/#dom-cssrgb-g>CSS Typed OM 1</a></strong> </dd>
<dt id="g@@GPUColorDict@dict-member"><code class=prefix><a href='g.html#GPUColorDict@@@@dictionary'>GPUColorDict</a>.</code><span><strong><code class=webidl>g</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#g%40%40GPUColorDict%40dict-member' aria-label="Permalink for <a href='g.html#GPUColorDict@@@@dictionary'>GPUColorDict</a>.g">§</a></span></dt>
<dd>Defined in <strong title='g is defined in WebGPU'><a href=https://gpuweb.github.io/gpuweb/#dom-gpucolordict-g>WebGPU</a></strong> </dd>
<dt id="gain@@BiquadFilterNode@attribute"><code class=prefix><a href='b.html#BiquadFilterNode@@@@interface'>BiquadFilterNode</a>.</code><span><strong><code class=webidl>gain</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#gain%40%40BiquadFilterNode%40attribute' aria-label="Permalink for <a href='b.html#BiquadFilterNode@@@@interface'>BiquadFilterNode</a>.gain">§</a></span></dt>
<dt><code class=prefix><a href='b.html#BiquadFilterNode@@@@interface'>BiquadFilterNode</a>.</code><span><strong><code class=webidl>gain</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#gain%40%40BiquadFilterNode%40attribute' aria-label="Permalink for <a href='b.html#BiquadFilterNode@@@@interface'>BiquadFilterNode</a>.gain">§</a></span></dt>
<dd>Defined in <strong title='gain is defined in Web Audio API'><a href=https://webaudio.github.io/web-audio-api/#dom-biquadfilternode-gain>Web Audio API</a></strong> , <strong title='gain is defined in Web Audio API 1.1'><a href=https://webaudio.github.io/web-audio-api/#dom-biquadfilternode-gain>Web Audio API 1.1</a></strong> </dd>
<dt id="gain@@BiquadFilterOptions@dict-member"><code class=prefix><a href='b.html#BiquadFilterOptions@@@@dictionary'>BiquadFilterOptions</a>.</code><span><strong><code class=webidl>gain</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#gain%40%40BiquadFilterOptions%40dict-member' aria-label="Permalink for <a href='b.html#BiquadFilterOptions@@@@dictionary'>BiquadFilterOptions</a>.gain">§</a></span></dt>
<dt><code class=prefix><a href='b.html#BiquadFilterOptions@@@@dictionary'>BiquadFilterOptions</a>.</code><span><strong><code class=webidl>gain</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#gain%40%40BiquadFilterOptions%40dict-member' aria-label="Permalink for <a href='b.html#BiquadFilterOptions@@@@dictionary'>BiquadFilterOptions</a>.gain">§</a></span></dt>
<dd>Defined in <strong title='gain is defined in Web Audio API'><a href=https://webaudio.github.io/web-audio-api/#dom-biquadfilteroptions-gain>Web Audio API</a></strong> , <strong title='gain is defined in Web Audio API 1.1'><a href=https://webaudio.github.io/web-audio-api/#dom-biquadfilteroptions-gain>Web Audio API 1.1</a></strong> </dd>
<dt id="gain@@GainNode@attribute"><code class=prefix><a href='g.html#GainNode@@@@interface'>GainNode</a>.</code><span><strong><code class=webidl>gain</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#gain%40%40GainNode%40attribute' aria-label="Permalink for <a href='g.html#GainNode@@@@interface'>GainNode</a>.gain">§</a></span></dt>
<dt><code class=prefix><a href='g.html#GainNode@@@@interface'>GainNode</a>.</code><span><strong><code class=webidl>gain</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#gain%40%40GainNode%40attribute' aria-label="Permalink for <a href='g.html#GainNode@@@@interface'>GainNode</a>.gain">§</a></span></dt>
<dd>Defined in <strong title='gain is defined in Web Audio API'><a href=https://webaudio.github.io/web-audio-api/#dom-gainnode-gain>Web Audio API</a></strong> , <strong title='gain is defined in Web Audio API 1.1'><a href=https://webaudio.github.io/web-audio-api/#dom-gainnode-gain>Web Audio API 1.1</a></strong> </dd>
<dt id="gain@@GainOptions@dict-member"><code class=prefix><a href='g.html#GainOptions@@@@dictionary'>GainOptions</a>.</code><span><strong><code class=webidl>gain</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#gain%40%40GainOptions%40dict-member' aria-label="Permalink for <a href='g.html#GainOptions@@@@dictionary'>GainOptions</a>.gain">§</a></span></dt>
<dt><code class=prefix><a href='g.html#GainOptions@@@@dictionary'>GainOptions</a>.</code><span><strong><code class=webidl>gain</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#gain%40%40GainOptions%40dict-member' aria-label="Permalink for <a href='g.html#GainOptions@@@@dictionary'>GainOptions</a>.gain">§</a></span></dt>
<dd>Defined in <strong title='gain is defined in Web Audio API'><a href=https://webaudio.github.io/web-audio-api/#dom-gainoptions-gain>Web Audio API</a></strong> , <strong title='gain is defined in Web Audio API 1.1'><a href=https://webaudio.github.io/web-audio-api/#dom-gainoptions-gain>Web Audio API 1.1</a></strong> </dd>
<dt id="GainNode@@@@interface"><code class=prefix></code><span><strong><code class=webidl>GainNode</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#GainNode%40%40%40%40interface' aria-label="Permalink for GainNode">§</a></span></dt>
<dd>Defined in <strong title='GainNode is defined in Web Audio API'><a href=https://webaudio.github.io/web-audio-api/#GainNode>Web Audio API</a></strong> , <strong title='GainNode is defined in Web Audio API 1.1'><a href=https://webaudio.github.io/web-audio-api/#GainNode>Web Audio API 1.1</a></strong> </dd>
<dd>Related terms: <code>undefined</code><a href='g.html#gain@@GainNode@attribute'><code>gain</code></a>, <code>undefined</code><a href='g.html#GainNode(context, options)@@GainNode@constructor'><code>GainNode(context, options)</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/GainNode.html' title='GainNode entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="GainNode(context, options)@@GainNode@constructor"><code class=prefix>new </code><span><strong><code class=webidl>GainNode(context, options)</code></strong> (<em>WebIDL constructor</em>) <a class='self-link' href='#GainNode(context%2C%20options)%40%40GainNode%40constructor' aria-label="Permalink for new GainNode(context, options)">§</a></span></dt>
<dt><code class=prefix>new </code><span><strong><code class=webidl>GainNode(context, options)</code></strong> (<em>WebIDL constructor</em>) <a class='self-link' href='#GainNode(context%2C%20options)%40%40GainNode%40constructor' aria-label="Permalink for new GainNode(context, options)">§</a></span></dt>
<dd>Defined in <strong title='GainNode(context, options) is defined in Web Audio API'><a href=https://webaudio.github.io/web-audio-api/#dom-gainnode-gainnode>Web Audio API</a></strong> , <strong title='GainNode(context, options) is defined in Web Audio API 1.1'><a href=https://webaudio.github.io/web-audio-api/#dom-gainnode-gainnode>Web Audio API 1.1</a></strong> </dd>
<dt id="GainOptions@@@@dictionary"><code class=prefix></code><span><strong><code class=webidl>GainOptions</code></strong> (<em>WebIDL dictionary</em>) <a class='self-link' href='#GainOptions%40%40%40%40dictionary' aria-label="Permalink for GainOptions">§</a></span></dt>
<dd>Defined in <strong title='GainOptions is defined in Web Audio API'><a href=https://webaudio.github.io/web-audio-api/#GainOptions>Web Audio API</a></strong> , <strong title='GainOptions is defined in Web Audio API 1.1'><a href=https://webaudio.github.io/web-audio-api/#GainOptions>Web Audio API 1.1</a></strong> </dd>
<dd>Related terms: <code>undefined</code><a href='g.html#gain@@GainOptions@dict-member'><code>gain</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/GainOptions.html' title='GainOptions entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="gainsboro@@css-color%%dfn"><code class=prefix></code><span><strong>gainsboro</strong> (<em>concept</em>) <a class='self-link' href='#gainsboro%40%40css-color%25%25dfn' aria-label="Permalink for gainsboro">§</a></span></dt>
<dd>Defined in <strong title='gainsboro is defined in CSS Color 3'><a href=https://drafts.csswg.org/css-color-3/#gainsboro>CSS Color 3</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-2022/ title='gainsboro is referenced by CSS Snapshot 2022'>CSS Snapshot 2022</a>,
<a href=https://drafts.csswg.org/css-2023/ title='gainsboro is referenced by CSS Snapshot 2023'>CSS Snapshot 2023</a></dd>
<dt id="gainsboro@@<color>@value"><code class=prefix></code><span><strong><code class=css>gainsboro</code></strong> (<em>CSS value for <a href='c.html#<color>@@@@type'><code><color></code></a>, <a href='n.html#<named-color>@@@@type'><code><named-color></code></a> type </em>) <a class='self-link' href='#gainsboro%40%40%3Ccolor%3E%40value' aria-label="Permalink for gainsboro">§</a></span></dt>
<dd>Defined in <strong title='gainsboro is defined in CSS Color 4'><a href=https://drafts.csswg.org/css-color-4/#valdef-color-gainsboro>CSS Color 4</a></strong> </dd>
<dt id="Gamepad@@@@interface"><code class=prefix></code><span><strong><code class=webidl>Gamepad</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#Gamepad%40%40%40%40interface' aria-label="Permalink for Gamepad">§</a></span></dt>
<dd>Defined in <strong title='Gamepad is defined in Gamepad'><a href=https://w3c.github.io/gamepad/#dom-gamepad>Gamepad</a></strong> </dd>
<dd>Referenced in
<a href=https://wicg.github.io/nav-speculation/prerendering.html title='Gamepad is referenced by Prerendering Revamped'>Prerendering Revamped</a></dd>
<dd>Related terms: <code>Gamepad.</code><a href='a.html#axes@@Gamepad@attribute'><code>axes</code></a>, <code>Gamepad.</code><a href='b.html#buttons@@Gamepad@attribute'><code>buttons</code></a>, <code>Gamepad.</code><a href='c.html#connected@@Gamepad@attribute'><code>connected</code></a>, <code>Gamepad.</code><a href='h.html#hand@@Gamepad@attribute'><code>hand</code></a>, <code>Gamepad.</code><a href='h.html#hapticActuators@@Gamepad@attribute'><code>hapticActuators</code></a>, <code>Gamepad.</code><a href='i.html#id@@Gamepad@attribute'><code>id</code></a>, <code>Gamepad.</code><a href='i.html#index@@Gamepad@attribute'><code>index</code></a>, <code>Gamepad.</code><a href='m.html#mapping@@Gamepad@attribute'><code>mapping</code></a>, <code>Gamepad.</code><a href='p.html#pose@@Gamepad@attribute'><code>pose</code></a>, <code>Gamepad.</code><a href='t.html#timestamp@@Gamepad@attribute'><code>timestamp</code></a>, <code>Gamepad.</code><a href='t.html#touchEvents@@Gamepad@attribute'><code>touchEvents</code></a>, <code>Gamepad.</code><a href='v.html#vibrationActuator@@Gamepad@attribute'><code>vibrationActuator</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/Gamepad.html' title='Gamepad entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="gamepad@@@@permission"><code class=prefix></code><span><strong><code class=webidl>"gamepad"</code></strong> (<em>permission name</em>) <a class='self-link' href='#gamepad%40%40%40%40permission' aria-label="Permalink for gamepad">§</a></span></dt>
<dd>Defined in <strong title='gamepad is defined in Gamepad'><a href=https://w3c.github.io/gamepad/#dfn-gamepad>Gamepad</a></strong> </dd>
<dt id="gamepad@@GamepadEvent@attribute"><code class=prefix><a href='g.html#GamepadEvent@@@@interface'>GamepadEvent</a>.</code><span><strong><code class=webidl>gamepad</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#gamepad%40%40GamepadEvent%40attribute' aria-label="Permalink for <a href='g.html#GamepadEvent@@@@interface'>GamepadEvent</a>.gamepad">§</a></span></dt>
<dd>Defined in <strong title='gamepad is defined in Gamepad'><a href=https://w3c.github.io/gamepad/#dom-gamepadevent-gamepad>Gamepad</a></strong> </dd>
<dd>Referenced in
<a href=https://wicg.github.io/nav-speculation/prerendering.html title='gamepad is referenced by Prerendering Revamped'>Prerendering Revamped</a></dd>
<dt id="gamepad@@GamepadEventInit@dict-member"><code class=prefix><a href='g.html#GamepadEventInit@@@@dictionary'>GamepadEventInit</a>.</code><span><strong><code class=webidl>gamepad</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#gamepad%40%40GamepadEventInit%40dict-member' aria-label="Permalink for <a href='g.html#GamepadEventInit@@@@dictionary'>GamepadEventInit</a>.gamepad">§</a></span></dt>
<dd>Defined in <strong title='gamepad is defined in Gamepad'><a href=https://w3c.github.io/gamepad/#dom-gamepadeventinit-gamepad>Gamepad</a></strong> </dd>
<dt id="gamepad@@XRInputSource@attribute"><code class=prefix><a href='x.html#XRInputSource@@@@interface'>XRInputSource</a>.</code><span><strong><code class=webidl>gamepad</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#gamepad%40%40XRInputSource%40attribute' aria-label="Permalink for <a href='x.html#XRInputSource@@@@interface'>XRInputSource</a>.gamepad">§</a></span></dt>
<dd>Defined in <strong title='gamepad is defined in WebXR Gamepads 1'><a href=https://immersive-web.github.io/webxr-gamepads-module/#dom-xrinputsource-gamepad>WebXR Gamepads 1</a></strong> </dd>
<dt id="GamepadButton@@@@interface"><code class=prefix></code><span><strong><code class=webidl>GamepadButton</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#GamepadButton%40%40%40%40interface' aria-label="Permalink for GamepadButton">§</a></span></dt>
<dd>Defined in <strong title='GamepadButton is defined in Gamepad'><a href=https://w3c.github.io/gamepad/#dom-gamepadbutton>Gamepad</a></strong> </dd>
<dd>Related terms: <code>GamepadButton.</code><a href='p.html#pressed@@GamepadButton@attribute'><code>pressed</code></a>, <code>GamepadButton.</code><a href='t.html#touched@@GamepadButton@attribute'><code>touched</code></a>, <code>GamepadButton.</code><a href='v.html#value@@GamepadButton@attribute'><code>value</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/GamepadButton.html' title='GamepadButton entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="gamepadconnected@@gamepad%%event"><code class=prefix></code><span><strong><code class=webidl>gamepadconnected</code></strong> (<em>event</em>) <a class='self-link' href='#gamepadconnected%40%40gamepad%25%25event' aria-label="Permalink for gamepadconnected">§</a></span></dt>
<dd>Defined in <strong title='gamepadconnected is defined in Gamepad'><a href=https://w3c.github.io/gamepad/#dfn-gamepadconnected>Gamepad</a></strong> </dd>
<dd>Referenced in
<a href=https://wicg.github.io/nav-speculation/prerendering.html title='gamepadconnected is referenced by Prerendering Revamped'>Prerendering Revamped</a></dd>
<dt id="gamepaddisconnected@@gamepad%%event"><code class=prefix></code><span><strong><code class=webidl>gamepaddisconnected</code></strong> (<em>event</em>) <a class='self-link' href='#gamepaddisconnected%40%40gamepad%25%25event' aria-label="Permalink for gamepaddisconnected">§</a></span></dt>
<dd>Defined in <strong title='gamepaddisconnected is defined in Gamepad'><a href=https://w3c.github.io/gamepad/#dfn-gamepaddisconnected>Gamepad</a></strong> </dd>
<dd>Referenced in
<a href=https://wicg.github.io/nav-speculation/prerendering.html title='gamepaddisconnected is referenced by Prerendering Revamped'>Prerendering Revamped</a></dd>
<dt id="GamepadEffectParameters@@@@dictionary"><code class=prefix></code><span><strong><code class=webidl>GamepadEffectParameters</code></strong> (<em>WebIDL dictionary</em>) <a class='self-link' href='#GamepadEffectParameters%40%40%40%40dictionary' aria-label="Permalink for GamepadEffectParameters">§</a></span></dt>
<dd>Defined in <strong title='GamepadEffectParameters is defined in Gamepad'><a href=https://w3c.github.io/gamepad/#dom-gamepadeffectparameters>Gamepad</a></strong> </dd>
<dd>Related terms: <code>GamepadEffectParameters.</code><a href='d.html#duration@@GamepadEffectParameters@dict-member'><code>duration</code></a>, <code>GamepadEffectParameters.</code><a href='l.html#leftTrigger@@GamepadEffectParameters@dict-member'><code>leftTrigger</code></a>, <code>GamepadEffectParameters.</code><a href='r.html#rightTrigger@@GamepadEffectParameters@dict-member'><code>rightTrigger</code></a>, <code>GamepadEffectParameters.</code><a href='s.html#startDelay@@GamepadEffectParameters@dict-member'><code>startDelay</code></a>, <code>GamepadEffectParameters.</code><a href='s.html#strongMagnitude@@GamepadEffectParameters@dict-member'><code>strongMagnitude</code></a>, <code>GamepadEffectParameters.</code><a href='w.html#weakMagnitude@@GamepadEffectParameters@dict-member'><code>weakMagnitude</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/GamepadEffectParameters.html' title='GamepadEffectParameters entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="GamepadEvent@@@@interface"><code class=prefix></code><span><strong><code class=webidl>GamepadEvent</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#GamepadEvent%40%40%40%40interface' aria-label="Permalink for GamepadEvent">§</a></span></dt>
<dd>Defined in <strong title='GamepadEvent is defined in Gamepad'><a href=https://w3c.github.io/gamepad/#dom-gamepadevent>Gamepad</a></strong> </dd>
<dd>Referenced in
<a href=https://wicg.github.io/nav-speculation/prerendering.html title='GamepadEvent is referenced by Prerendering Revamped'>Prerendering Revamped</a></dd>
<dd>Related terms: <code>GamepadEvent.</code><a href='g.html#gamepad@@GamepadEvent@attribute'><code>gamepad</code></a>, <em>WebIDL constructor</em> <a href='c.html#constructor()@@GamepadEvent@constructor'><code>constructor()</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/GamepadEvent.html' title='GamepadEvent entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="GamepadEventInit@@@@dictionary"><code class=prefix></code><span><strong><code class=webidl>GamepadEventInit</code></strong> (<em>WebIDL dictionary</em>) <a class='self-link' href='#GamepadEventInit%40%40%40%40dictionary' aria-label="Permalink for GamepadEventInit">§</a></span></dt>
<dd>Defined in <strong title='GamepadEventInit is defined in Gamepad'><a href=https://w3c.github.io/gamepad/#dom-gamepadeventinit>Gamepad</a></strong> </dd>
<dd>Related terms: <code>GamepadEventInit.</code><a href='g.html#gamepad@@GamepadEventInit@dict-member'><code>gamepad</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/GamepadEventInit.html' title='GamepadEventInit entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="GamepadHand@@@@enum"><code class=prefix></code><span><strong><code class=webidl>GamepadHand</code></strong> (<em>WebIDL enumeration</em>) <a class='self-link' href='#GamepadHand%40%40%40%40enum' aria-label="Permalink for GamepadHand">§</a></span></dt>
<dd>Defined in <strong title='GamepadHand is defined in Gamepad Extensions'><a href=https://w3c.github.io/gamepad/extensions.html#dom-gamepadhand>Gamepad Extensions</a></strong> </dd>
<dd>Related terms: <em>value</em> <a href='l.html#left@@GamepadHand@enum-value'><code>left</code></a>, <em>value</em> <a href='r.html#right@@GamepadHand@enum-value'><code>right</code></a>, <em>value</em> <a href='t.html#the-empty-string@@GamepadHand@enum-value'><code>the-empty-string</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/GamepadHand.html' title='GamepadHand entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="GamepadHapticActuator@@@@interface"><code class=prefix></code><span><strong><code class=webidl>GamepadHapticActuator</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#GamepadHapticActuator%40%40%40%40interface' aria-label="Permalink for GamepadHapticActuator">§</a></span></dt>
<dd>Defined in <strong title='GamepadHapticActuator is defined in Gamepad'><a href=https://w3c.github.io/gamepad/#dom-gamepadhapticactuator>Gamepad</a></strong> </dd>
<dd>Related terms: <code>GamepadHapticActuator.</code><a href='e.html#effects@@GamepadHapticActuator@attribute'><code>effects</code></a>, <code>GamepadHapticActuator.</code><a href='p.html#playEffect()@@GamepadHapticActuator@method'><code>playEffect()</code></a>, <code>GamepadHapticActuator.</code><a href='p.html#pulse()@@GamepadHapticActuator@method'><code>pulse()</code></a>, <code>GamepadHapticActuator.</code><a href='r.html#reset()@@GamepadHapticActuator@method'><code>reset()</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/GamepadHapticActuator.html' title='GamepadHapticActuator entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="GamepadHapticEffectType@@@@enum"><code class=prefix></code><span><strong><code class=webidl>GamepadHapticEffectType</code></strong> (<em>WebIDL enumeration</em>) <a class='self-link' href='#GamepadHapticEffectType%40%40%40%40enum' aria-label="Permalink for GamepadHapticEffectType">§</a></span></dt>
<dd>Defined in <strong title='GamepadHapticEffectType is defined in Gamepad'><a href=https://w3c.github.io/gamepad/#dom-gamepadhapticeffecttype>Gamepad</a></strong> </dd>
<dd>Related terms: <em>value</em> <a href='d.html#dual-rumble@@GamepadHapticEffectType@enum-value'><code>dual-rumble</code></a>, <em>value</em> <a href='t.html#trigger-rumble@@GamepadHapticEffectType@enum-value'><code>trigger-rumble</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/GamepadHapticEffectType.html' title='GamepadHapticEffectType entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="GamepadHapticsResult@@@@enum"><code class=prefix></code><span><strong><code class=webidl>GamepadHapticsResult</code></strong> (<em>WebIDL enumeration</em>) <a class='self-link' href='#GamepadHapticsResult%40%40%40%40enum' aria-label="Permalink for GamepadHapticsResult">§</a></span></dt>
<dd>Defined in <strong title='GamepadHapticsResult is defined in Gamepad'><a href=https://w3c.github.io/gamepad/#dom-gamepadhapticsresult>Gamepad</a></strong> </dd>
<dd>Related terms: <em>value</em> <a href='c.html#complete@@GamepadHapticsResult@enum-value'><code>complete</code></a>, <em>value</em> <a href='p.html#preempted@@GamepadHapticsResult@enum-value'><code>preempted</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/GamepadHapticsResult.html' title='GamepadHapticsResult entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="GamepadMappingType@@@@enum"><code class=prefix></code><span><strong><code class=webidl>GamepadMappingType</code></strong> (<em>WebIDL enumeration</em>) <a class='self-link' href='#GamepadMappingType%40%40%40%40enum' aria-label="Permalink for GamepadMappingType">§</a></span></dt>
<dd>Defined in <strong title='GamepadMappingType is defined in Gamepad'><a href=https://w3c.github.io/gamepad/#dom-gamepadmappingtype>Gamepad</a></strong> </dd>
<dd>Related terms: <em>value</em> <a href='s.html#standard@@GamepadMappingType@enum-value'><code>standard</code></a>, <em>value</em> <a href='t.html#the-empty-string@@GamepadMappingType@enum-value'><code>the-empty-string</code></a>, <em>value</em> <a href='x.html#xr-standard@@GamepadMappingType@enum-value'><code>xr-standard</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/GamepadMappingType.html' title='GamepadMappingType entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="GamepadPose@@@@interface"><code class=prefix></code><span><strong><code class=webidl>GamepadPose</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#GamepadPose%40%40%40%40interface' aria-label="Permalink for GamepadPose">§</a></span></dt>
<dd>Defined in <strong title='GamepadPose is defined in Gamepad Extensions'><a href=https://w3c.github.io/gamepad/extensions.html#dom-gamepadpose>Gamepad Extensions</a></strong> </dd>
<dd>Related terms: <code>GamepadPose.</code><a href='a.html#angularAcceleration@@GamepadPose@attribute'><code>angularAcceleration</code></a>, <code>GamepadPose.</code><a href='a.html#angularVelocity@@GamepadPose@attribute'><code>angularVelocity</code></a>, <code>GamepadPose.</code><a href='h.html#hasOrientation@@GamepadPose@attribute'><code>hasOrientation</code></a>, <code>GamepadPose.</code><a href='h.html#hasPosition@@GamepadPose@attribute'><code>hasPosition</code></a>, <code>GamepadPose.</code><a href='l.html#linearAcceleration@@GamepadPose@attribute'><code>linearAcceleration</code></a>, <code>GamepadPose.</code><a href='l.html#linearVelocity@@GamepadPose@attribute'><code>linearVelocity</code></a>, <code>GamepadPose.</code><a href='o.html#orientation@@GamepadPose@attribute'><code>orientation</code></a>, <code>GamepadPose.</code><a href='p.html#position@@GamepadPose@attribute'><code>position</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/GamepadPose.html' title='GamepadPose entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="GamepadTouch@@@@interface"><code class=prefix></code><span><strong><code class=webidl>GamepadTouch</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#GamepadTouch%40%40%40%40interface' aria-label="Permalink for GamepadTouch">§</a></span></dt>
<dd>Defined in <strong title='GamepadTouch is defined in Gamepad Extensions'><a href=https://w3c.github.io/gamepad/extensions.html#dom-gamepadtouch>Gamepad Extensions</a></strong> </dd>
<dd>Related terms: <code>GamepadTouch.</code><a href='p.html#position@@GamepadTouch@attribute'><code>position</code></a>, <code>GamepadTouch.</code><a href='s.html#surfaceDimensions@@GamepadTouch@attribute'><code>surfaceDimensions</code></a>, <code>GamepadTouch.</code><a href='s.html#surfaceId@@GamepadTouch@attribute'><code>surfaceId</code></a>, <code>GamepadTouch.</code><a href='t.html#touchId@@GamepadTouch@attribute'><code>touchId</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/GamepadTouch.html' title='GamepadTouch entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="gamma@@type@attr-value"><code class=prefix></code><span><strong><code class=markup>gamma</code></strong> (<em>value for <a href='t.html#type@@vc-data-model%25%25dfn'>type</a> </em>) <a class='self-link' href='#gamma%40%40type%40attr-value' aria-label="Permalink for gamma">§</a></span></dt>
<dd>Defined in <strong title='gamma is defined in Filter Effects 1'><a href=https://drafts.fxtf.org/filter-effects-1/#attr-valuedef-type-gamma>Filter Effects 1</a></strong> </dd>
<dt id="gamma@@DeviceMotionEventRotationRate@attribute"><code class=prefix><a href='d.html#DeviceMotionEventRotationRate@@@@interface'>DeviceMotionEventRotationRate</a>.</code><span><strong><code class=webidl>gamma</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#gamma%40%40DeviceMotionEventRotationRate%40attribute' aria-label="Permalink for <a href='d.html#DeviceMotionEventRotationRate@@@@interface'>DeviceMotionEventRotationRate</a>.gamma">§</a></span></dt>
<dd>Defined in <strong title='gamma is defined in Device Orientation and Motion'><a href=https://w3c.github.io/deviceorientation/#dom-devicemotioneventrotationrate-gamma>Device Orientation and Motion</a></strong> </dd>
<dt id="gamma@@DeviceMotionEventRotationRateInit@dict-member"><code class=prefix><a href='d.html#DeviceMotionEventRotationRateInit@@@@dictionary'>DeviceMotionEventRotationRateInit</a>.</code><span><strong><code class=webidl>gamma</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#gamma%40%40DeviceMotionEventRotationRateInit%40dict-member' aria-label="Permalink for <a href='d.html#DeviceMotionEventRotationRateInit@@@@dictionary'>DeviceMotionEventRotationRateInit</a>.gamma">§</a></span></dt>
<dd>Defined in <strong title='gamma is defined in Device Orientation and Motion'><a href=https://w3c.github.io/deviceorientation/#dom-devicemotioneventrotationrateinit-gamma>Device Orientation and Motion</a></strong> </dd>
<dt id="gamma@@DeviceOrientationEvent@attribute"><code class=prefix><a href='d.html#DeviceOrientationEvent@@@@interface'>DeviceOrientationEvent</a>.</code><span><strong><code class=webidl>gamma</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#gamma%40%40DeviceOrientationEvent%40attribute' aria-label="Permalink for <a href='d.html#DeviceOrientationEvent@@@@interface'>DeviceOrientationEvent</a>.gamma">§</a></span></dt>
<dd>Defined in <strong title='gamma is defined in Device Orientation and Motion'><a href=https://w3c.github.io/deviceorientation/#dom-deviceorientationevent-gamma>Device Orientation and Motion</a></strong> </dd>
<dt id="gamma@@DeviceOrientationEventInit@dict-member"><code class=prefix><a href='d.html#DeviceOrientationEventInit@@@@dictionary'>DeviceOrientationEventInit</a>.</code><span><strong><code class=webidl>gamma</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#gamma%40%40DeviceOrientationEventInit%40dict-member' aria-label="Permalink for <a href='d.html#DeviceOrientationEventInit@@@@dictionary'>DeviceOrientationEventInit</a>.gamma">§</a></span></dt>
<dd>Defined in <strong title='gamma is defined in Device Orientation and Motion'><a href=https://w3c.github.io/deviceorientation/#dom-deviceorientationeventinit-gamma>Device Orientation and Motion</a></strong> </dd>
<dt id="gamut@@css-color%%dfn"><code class=prefix></code><span><strong>gamut</strong> (<em>concept</em>) <a class='self-link' href='#gamut%40%40css-color%25%25dfn' aria-label="Permalink for gamut">§</a></span></dt>
<dd>Defined in <strong title='gamut is defined in CSS Color 4'><a href=https://drafts.csswg.org/css-color-4/#gamut>CSS Color 4</a></strong> </dd>
<dt id="gap@@@@property"><code class=prefix></code><span><strong><code class=css>gap</code></strong> (<em>CSS property</em>) <a class='self-link' href='#gap%40%40%40%40property' aria-label="Permalink for gap">§</a></span></dt>
<dd>Defined in <strong title='gap is defined in CSS Box Alignment 3'><a href=https://drafts.csswg.org/css-align-3/#propdef-gap>CSS Box Alignment 3</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-2022/ title='gap is referenced by CSS Snapshot 2022'>CSS Snapshot 2022</a>,
<a href=https://drafts.csswg.org/css-2023/ title='gap is referenced by CSS Snapshot 2023'>CSS Snapshot 2023</a>,
<a href=https://drafts.csswg.org/css-grid-1/ title='gap is referenced by CSS Grid Layout 1'>CSS Grid Layout 1</a>,
<a href=https://drafts.csswg.org/css-grid-2/ title='gap is referenced by CSS Grid Layout 2'>CSS Grid Layout 2</a>,
<a href=https://drafts.css-houdini.org/css-typed-om-1/ title='gap is referenced by CSS Typed OM 1'>CSS Typed OM 1</a></dd>
<dd>Related terms: <em>CSS value</em> <a href='n.html#normal@@column-gap@value'><code>normal</code></a></dd>
<dt id="gaps@@stroke-dash-justify@value"><code class=prefix></code><span><strong><code class=css>gaps</code></strong> (<em>CSS value for <a href='s.html#stroke-dash-justify@@@@property'><code>stroke-dash-justify</code></a> </em>) <a class='self-link' href='#gaps%40%40stroke-dash-justify%40value' aria-label="Permalink for gaps">§</a></span></dt>
<dd>Defined in <strong title='gaps is defined in CSS Fill and Stroke 3'><a href=https://drafts.fxtf.org/fill-stroke-3/#valdef-stroke-dash-justify-gaps>CSS Fill and Stroke 3</a></strong> </dd>
<dt id="gather@@MLOpSupportLimits@dict-member"><code class=prefix><a href='m.html#MLOpSupportLimits@@@@dictionary'>MLOpSupportLimits</a>.</code><span><strong><code class=webidl>gather</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#gather%40%40MLOpSupportLimits%40dict-member' aria-label="Permalink for <a href='m.html#MLOpSupportLimits@@@@dictionary'>MLOpSupportLimits</a>.gather">§</a></span></dt>
<dd>Defined in <strong title='gather is defined in Web Neural Network API'><a href=https://webmachinelearning.github.io/webnn/#dom-mlopsupportlimits-gather>Web Neural Network API</a></strong> </dd>
<dt id="gather()@@RTCIceTransport@method"><code class=prefix><a href='r.html#RTCIceTransport@@@@interface'>RTCIceTransport</a>.</code><span><strong><code class=webidl>gather()</code></strong> (<em>WebIDL operation</em>) <a class='self-link' href='#gather()%40%40RTCIceTransport%40method' aria-label="Permalink for <a href='r.html#RTCIceTransport@@@@interface'>RTCIceTransport</a>.gather()">§</a></span></dt>
<dd>Defined in <strong title='gather() is defined in IceTransport Extensions for WebRTC'><a href=https://w3c.github.io/webrtc-ice/#dom-rtcicetransport-gather>IceTransport Extensions for WebRTC</a></strong> </dd>
<dt id="gather(input, indices, options)@@MLGraphBuilder@method"><code class=prefix><a href='m.html#MLGraphBuilder@@@@interface'>MLGraphBuilder</a>.</code><span><strong><code class=webidl>gather(input, indices, options)</code></strong> (<em>WebIDL operation</em>) <a class='self-link' href='#gather(input%2C%20indices%2C%20options)%40%40MLGraphBuilder%40method' aria-label="Permalink for <a href='m.html#MLGraphBuilder@@@@interface'>MLGraphBuilder</a>.gather(input, indices, options)">§</a></span></dt>
<dd>Defined in <strong title='gather(input, indices, options) is defined in Web Neural Network API'><a href=https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-gather>Web Neural Network API</a></strong> </dd>
<dt id="GatherAvailableAncestors@@ecmascript%%abstract-op"><code class=prefix></code><span><strong><code class=concept>GatherAvailableAncestors</code></strong> (<em>algorithm</em>) <a class='self-link' href='#GatherAvailableAncestors%40%40ecmascript%25%25abstract-op' aria-label="Permalink for GatherAvailableAncestors">§</a></span></dt>
<dd>Defined in <strong title='GatherAvailableAncestors is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/ecmascript-language-scripts-and-modules.html#sec-gather-available-ancestors>ECMAScript</a></strong> </dd>
<dt id="gathering@@RTCIceGatheringState@enum-value"><code class=prefix></code><span><strong><code class=webidl>"gathering"</code></strong> (<em>value for <a href='r.html#RTCIceGatheringState@@@@enum'><code>RTCIceGatheringState</code></a> WebIDL enumeration</em>) <a class='self-link' href='#gathering%40%40RTCIceGatheringState%40enum-value' aria-label="Permalink for gathering">§</a></span></dt>
<dd>Defined in <strong title='gathering is defined in WebRTC 1.0'><a href=https://w3c.github.io/webrtc-pc/#dom-rtcicegatheringstate-gathering>WebRTC 1.0</a></strong> </dd>
<dt id="gathering@@RTCIceGathererState@enum-value"><code class=prefix></code><span><strong><code class=webidl>"gathering"</code></strong> (<em>value for <a href='r.html#RTCIceGathererState@@@@enum'><code>RTCIceGathererState</code></a> WebIDL enumeration</em>) <a class='self-link' href='#gathering%40%40RTCIceGathererState%40enum-value' aria-label="Permalink for gathering">§</a></span></dt>
<dd>Defined in <strong title='gathering is defined in WebRTC 1.0'><a href=https://w3c.github.io/webrtc-pc/#dom-rtcicegathererstate-gathering>WebRTC 1.0</a></strong> </dd>
<dt id="gatheringState@@RTCIceTransport@attribute"><code class=prefix><a href='r.html#RTCIceTransport@@@@interface'>RTCIceTransport</a>.</code><span><strong><code class=webidl>gatheringState</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#gatheringState%40%40RTCIceTransport%40attribute' aria-label="Permalink for <a href='r.html#RTCIceTransport@@@@interface'>RTCIceTransport</a>.gatheringState">§</a></span></dt>
<dd>Defined in <strong title='gatheringState is defined in WebRTC 1.0'><a href=https://w3c.github.io/webrtc-pc/#dom-icetransport-gatheringstate>WebRTC 1.0</a></strong> </dd>
<dt id="gatheringstatechange@@RTCIceTransport@event"><code class=prefix></code><span><strong><code class=webidl>gatheringstatechange</code></strong> (<em>event for <a href='r.html#RTCIceTransport@@@@interface'><code>RTCIceTransport</code></a> </em>) <a class='self-link' href='#gatheringstatechange%40%40RTCIceTransport%40event' aria-label="Permalink for gatheringstatechange">§</a></span></dt>
<dd>Defined in <strong title='gatheringstatechange is defined in WebRTC 1.0'><a href=https://w3c.github.io/webrtc-pc/#event-icetransport-gatheringstatechange>WebRTC 1.0</a></strong> </dd>
<dt id="gatherPolicy@@RTCIceGatherOptions@dict-member"><code class=prefix><a href='r.html#RTCIceGatherOptions@@@@dictionary'>RTCIceGatherOptions</a>.</code><span><strong><code class=webidl>gatherPolicy</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#gatherPolicy%40%40RTCIceGatherOptions%40dict-member' aria-label="Permalink for <a href='r.html#RTCIceGatherOptions@@@@dictionary'>RTCIceGatherOptions</a>.gatherPolicy">§</a></span></dt>
<dd>Defined in <strong title='gatherPolicy is defined in IceTransport Extensions for WebRTC'><a href=https://w3c.github.io/webrtc-ice/#dom-rtcicegatheroptions-gatherpolicy>IceTransport Extensions for WebRTC</a></strong> </dd>
<dt id="[[gatt]]@@BluetoothDevice@attribute"><code class=prefix><a href='b.html#BluetoothDevice@@@@interface'>BluetoothDevice</a>.</code><span><strong><code class=webidl>[[gatt]]</code></strong> (<em>internal slot</em>) <a class='self-link' href='#%5B%5Bgatt%5D%5D%40%40BluetoothDevice%40attribute' aria-label="Permalink for <a href='b.html#BluetoothDevice@@@@interface'>BluetoothDevice</a>.[[gatt]]">§</a></span></dt>
<dt><code class=prefix><a href='b.html#BluetoothDevice@@@@interface'>BluetoothDevice</a>.</code><span><strong><code class=webidl>[[gatt]]</code></strong> (<em>internal slot</em>) <a class='self-link' href='#%5B%5Bgatt%5D%5D%40%40BluetoothDevice%40attribute' aria-label="Permalink for <a href='b.html#BluetoothDevice@@@@interface'>BluetoothDevice</a>.[[gatt]]">§</a></span></dt>
<dd>Defined in <strong title='[[gatt]] is defined in Web Bluetooth'><a href=https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothdevice-gatt-slot>Web Bluetooth</a></strong> , <strong title='[[gatt]] is defined in Web Bluetooth'><a href=https://webbluetoothcg.github.io/web-bluetooth/#dom-bluetoothdevice-gatt>Web Bluetooth</a></strong> </dd>
<dt id="gattserverdisconnected@@BluetoothDeviceEventHandlers@event"><code class=prefix></code><span><strong><code class=webidl>gattserverdisconnected</code></strong> (<em>event for <a href='b.html#BluetoothDeviceEventHandlers@@@@interface'><code>BluetoothDeviceEventHandlers</code></a> </em>) <a class='self-link' href='#gattserverdisconnected%40%40BluetoothDeviceEventHandlers%40event' aria-label="Permalink for gattserverdisconnected">§</a></span></dt>
<dd>Defined in <strong title='gattserverdisconnected is defined in Web Bluetooth'><a href=https://webbluetoothcg.github.io/web-bluetooth/#eventdef-bluetoothdeviceeventhandlers-gattserverdisconnected>Web Bluetooth</a></strong> </dd>
<dt id="gaze@@XRTargetRayMode@enum-value"><code class=prefix></code><span><strong><code class=webidl>"gaze"</code></strong> (<em>value for <a href='x.html#XRTargetRayMode@@@@enum'><code>XRTargetRayMode</code></a> WebIDL enumeration</em>) <a class='self-link' href='#gaze%40%40XRTargetRayMode%40enum-value' aria-label="Permalink for gaze">§</a></span></dt>
<dd>Defined in <strong title='gaze is defined in WebXR Device API'><a href=https://immersive-web.github.io/webxr/#dom-xrtargetraymode-gaze>WebXR Device API</a></strong> </dd>
<dd>Referenced in
<a href=https://immersive-web.github.io/webxr-ar-module/ title='gaze is referenced by WebXR Augmented Reality 1'>WebXR Augmented Reality 1</a></dd>
<dt id="gb18030@@encoding%%dfn"><code class=prefix></code><span><strong>gb18030</strong> (<em>concept</em>) <a class='self-link' href='#gb18030%40%40encoding%25%25dfn' aria-label="Permalink for gb18030">§</a></span></dt>
<dd>Defined in <strong title='gb18030 is defined in Encoding'><a href=https://encoding.spec.whatwg.org/#gb18030>Encoding</a></strong> </dd>
<dt id="gb18030 decoder@@encoding%%dfn"><code class=prefix></code><span><strong>gb18030 decoder</strong> (<em>concept</em>) <a class='self-link' href='#gb18030%20decoder%40%40encoding%25%25dfn' aria-label="Permalink for gb18030 decoder">§</a></span></dt>
<dd>Defined in <strong title='gb18030 decoder is defined in Encoding'><a href=https://encoding.spec.whatwg.org/#gb18030-decoder>Encoding</a></strong> </dd>
<dt id="gb18030 encoder@@encoding%%dfn"><code class=prefix></code><span><strong>gb18030 encoder</strong> (<em>concept</em>) <a class='self-link' href='#gb18030%20encoder%40%40encoding%25%25dfn' aria-label="Permalink for gb18030 encoder">§</a></span></dt>
<dd>Defined in <strong title='gb18030 encoder is defined in Encoding'><a href=https://encoding.spec.whatwg.org/#gb18030-encoder>Encoding</a></strong> </dd>
<dt id="GBK@@encoding%%dfn"><code class=prefix></code><span><strong>GBK</strong> (<em>concept</em>) <a class='self-link' href='#GBK%40%40encoding%25%25dfn' aria-label="Permalink for GBK">§</a></span></dt>
<dd>Defined in <strong title='GBK is defined in Encoding'><a href=https://encoding.spec.whatwg.org/#gbk>Encoding</a></strong> </dd>
<dd>Referenced in
<a href=https://html.spec.whatwg.org/multipage/ title='GBK is referenced by HTML'>HTML</a></dd>
<dt id="GBK decoder@@encoding%%dfn"><code class=prefix></code><span><strong>GBK decoder</strong> (<em>concept</em>) <a class='self-link' href='#GBK%20decoder%40%40encoding%25%25dfn' aria-label="Permalink for GBK decoder">§</a></span></dt>
<dd>Defined in <strong title='GBK decoder is defined in Encoding'><a href=https://encoding.spec.whatwg.org/#gbk-decoder>Encoding</a></strong> </dd>
<dt id="GBK encoder@@encoding%%dfn"><code class=prefix></code><span><strong>GBK encoder</strong> (<em>concept</em>) <a class='self-link' href='#GBK%20encoder%40%40encoding%25%25dfn' aria-label="Permalink for GBK encoder">§</a></span></dt>
<dd>Defined in <strong title='GBK encoder is defined in Encoding'><a href=https://encoding.spec.whatwg.org/#gbk-encoder>Encoding</a></strong> </dd>
<dt id="gc()@@TestUtils@method"><code class=prefix><a href='t.html#TestUtils@@@@namespace'>TestUtils</a>.</code><span><strong><code class=webidl>gc()</code></strong> (<em>WebIDL operation</em>) <a class='self-link' href='#gc()%40%40TestUtils%40method' aria-label="Permalink for <a href='t.html#TestUtils@@@@namespace'>TestUtils</a>.gc()">§</a></span></dt>
<dd>Defined in <strong title='gc() is defined in Test Utils'><a href=https://testutils.spec.whatwg.org/#dom-testutils-gc>Test Utils</a></strong> </dd>
<dt id="gelu@@MLOpSupportLimits@dict-member"><code class=prefix><a href='m.html#MLOpSupportLimits@@@@dictionary'>MLOpSupportLimits</a>.</code><span><strong><code class=webidl>gelu</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#gelu%40%40MLOpSupportLimits%40dict-member' aria-label="Permalink for <a href='m.html#MLOpSupportLimits@@@@dictionary'>MLOpSupportLimits</a>.gelu">§</a></span></dt>
<dd>Defined in <strong title='gelu is defined in Web Neural Network API'><a href=https://webmachinelearning.github.io/webnn/#dom-mlopsupportlimits-gelu>Web Neural Network API</a></strong> </dd>
<dt id="gelu(input, options)@@MLGraphBuilder@method"><code class=prefix><a href='m.html#MLGraphBuilder@@@@interface'>MLGraphBuilder</a>.</code><span><strong><code class=webidl>gelu(input, options)</code></strong> (<em>WebIDL operation</em>) <a class='self-link' href='#gelu(input%2C%20options)%40%40MLGraphBuilder%40method' aria-label="Permalink for <a href='m.html#MLGraphBuilder@@@@interface'>MLGraphBuilder</a>.gelu(input, options)">§</a></span></dt>
<dd>Defined in <strong title='gelu(input, options) is defined in Web Neural Network API'><a href=https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-gelu>Web Neural Network API</a></strong> </dd>
<dt id="gemm@@MLOpSupportLimits@dict-member"><code class=prefix><a href='m.html#MLOpSupportLimits@@@@dictionary'>MLOpSupportLimits</a>.</code><span><strong><code class=webidl>gemm</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#gemm%40%40MLOpSupportLimits%40dict-member' aria-label="Permalink for <a href='m.html#MLOpSupportLimits@@@@dictionary'>MLOpSupportLimits</a>.gemm">§</a></span></dt>
<dd>Defined in <strong title='gemm is defined in Web Neural Network API'><a href=https://webmachinelearning.github.io/webnn/#dom-mlopsupportlimits-gemm>Web Neural Network API</a></strong> </dd>
<dt id="gemm(a, b, options)@@MLGraphBuilder@method"><code class=prefix><a href='m.html#MLGraphBuilder@@@@interface'>MLGraphBuilder</a>.</code><span><strong><code class=webidl>gemm(a, b, options)</code></strong> (<em>WebIDL operation</em>) <a class='self-link' href='#gemm(a%2C%20b%2C%20options)%40%40MLGraphBuilder%40method' aria-label="Permalink for <a href='m.html#MLGraphBuilder@@@@interface'>MLGraphBuilder</a>.gemm(a, b, options)">§</a></span></dt>
<dd>Defined in <strong title='gemm(a, b, options) is defined in Web Neural Network API'><a href=https://webmachinelearning.github.io/webnn/#dom-mlgraphbuilder-gemm>Web Neural Network API</a></strong> </dd>
<dt id="<gender>@@voice-family@type"><code class=prefix></code><span><strong><code class=css><gender></code></strong> (<em>CSS type for <a href='v.html#voice-family@@@@property'><code>voice-family</code></a> </em>) <a class='self-link' href='#%3Cgender%3E%40%40voice-family%40type' aria-label="Permalink for <gender>">§</a></span></dt>
<dd>Defined in <strong title='<gender> is defined in CSS Speech 1'><a href=https://drafts.csswg.org/css-speech-1/#typedef-voice-family-gender>CSS Speech 1</a></strong> </dd>
<dt id="<general-enclosed>@@@@type"><code class=prefix></code><span><strong><code class=css><general-enclosed></code></strong> (<em>CSS type</em>) <a class='self-link' href='#%3Cgeneral-enclosed%3E%40%40%40%40type' aria-label="Permalink for <general-enclosed>">§</a></span></dt>
<dd>Defined in <strong title='<general-enclosed> is defined in Media Queries 4'><a href=https://drafts.csswg.org/mediaqueries-4/#typedef-general-enclosed>Media Queries 4</a></strong> , <strong title='<general-enclosed> is defined in Media Queries 5'><a href=https://drafts.csswg.org/mediaqueries-5/#typedef-general-enclosed>Media Queries 5</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-contain-3/ title='<general-enclosed> is referenced by CSS Containment 3'>CSS Containment 3</a>,
<a href=https://drafts.csswg.org/css-syntax-3/ title='<general-enclosed> is referenced by CSS Syntax 3'>CSS Syntax 3</a></dd>
<dt id="generalized RDF dataset@@rdf-concepts%%dfn"><code class=prefix></code><span><strong>generalized RDF dataset</strong> (<em>concept</em>) <a class='self-link' href='#generalized%20RDF%20dataset%40%40rdf-concepts%25%25dfn' aria-label="Permalink for generalized RDF dataset">§</a></span></dt>
<dd>Defined in <strong title='generalized RDF dataset is defined in RDF 1.2 Concepts and Abstract Syntax'><a href=https://w3c.github.io/rdf-concepts/spec/#dfn-generalized-rdf-dataset>RDF 1.2 Concepts and Abstract Syntax</a></strong> </dd>
<dt id="generalized RDF graph@@rdf-concepts%%dfn"><code class=prefix></code><span><strong>generalized RDF graph</strong> (<em>concept</em>) <a class='self-link' href='#generalized%20RDF%20graph%40%40rdf-concepts%25%25dfn' aria-label="Permalink for generalized RDF graph">§</a></span></dt>
<dd>Defined in <strong title='generalized RDF graph is defined in RDF 1.2 Concepts and Abstract Syntax'><a href=https://w3c.github.io/rdf-concepts/spec/#dfn-generalized-rdf-graph>RDF 1.2 Concepts and Abstract Syntax</a></strong> </dd>
<dt id="generalized RDF triple@@rdf-concepts%%dfn"><code class=prefix></code><span><strong>generalized RDF triple</strong> (<em>concept</em>) <a class='self-link' href='#generalized%20RDF%20triple%40%40rdf-concepts%25%25dfn' aria-label="Permalink for generalized RDF triple">§</a></span></dt>
<dd>Defined in <strong title='generalized RDF triple is defined in RDF 1.2 Concepts and Abstract Syntax'><a href=https://w3c.github.io/rdf-concepts/spec/#dfn-generalized-rdf-triple>RDF 1.2 Concepts and Abstract Syntax</a></strong> </dd>
<dt id="generate a change password url@@change-password-url%%dfn"><code class=prefix></code><span><strong>generate a change password url</strong> (<em>concept</em>) <a class='self-link' href='#generate%20a%20change%20password%20url%40%40change-password-url%25%25dfn' aria-label="Permalink for generate a change password url">§</a></span></dt>
<dd>Defined in <strong title='generate a change password url is defined in A Well-Known URL for Changing Passwords'><a href=https://w3c.github.io/webappsec-change-password-url/#generate-a-change-password-url>A Well-Known URL for Changing Passwords</a></strong> </dd>
<dt id="generate a counter@@css-counter-styles%%dfn"><code class=prefix></code><span><strong>generate a counter</strong> (<em>concept</em>) <a class='self-link' href='#generate%20a%20counter%40%40css-counter-styles%25%25dfn' aria-label="Permalink for generate a counter">§</a></span></dt>
<dd>Defined in <strong title='generate a counter is defined in CSS Counter Styles 3'><a href=https://drafts.csswg.org/css-counter-styles-3/#generate-a-counter>CSS Counter Styles 3</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-2022/ title='generate a counter is referenced by CSS Snapshot 2022'>CSS Snapshot 2022</a>,
<a href=https://drafts.csswg.org/css-2023/ title='generate a counter is referenced by CSS Snapshot 2023'>CSS Snapshot 2023</a>,
<a href=https://drafts.csswg.org/css-lists-3/ title='generate a counter is referenced by CSS Lists 3'>CSS Lists 3</a></dd>
<dt id="generate a network report@@network-reporting%%dfn"><code class=prefix></code><span><strong>generate a network report</strong> (<em>concept</em>) <a class='self-link' href='#generate%20a%20network%20report%40%40network-reporting%25%25dfn' aria-label="Permalink for generate a network report">§</a></span></dt>
<dd>Defined in <strong title='generate a network report is defined in Network Reporting API'><a href=https://w3c.github.io/reporting/network-reporting.html#generate-a-network-report>Network Reporting API</a></strong> </dd>
<dd>Referenced in
<a href=https://w3c.github.io/network-error-logging/ title='generate a network report is referenced by Network Error Logging'>Network Error Logging</a></dd>
<dt id="generate a pattern string@@urlpattern%%dfn"><code class=prefix></code><span><strong>generate a pattern string</strong> (<em>concept</em>) <a class='self-link' href='#generate%20a%20pattern%20string%40%40urlpattern%25%25dfn' aria-label="Permalink for generate a pattern string">§</a></span></dt>
<dd>Defined in <strong title='generate a pattern string is defined in URL Pattern'><a href=https://urlpattern.spec.whatwg.org/#generate-a-pattern-string>URL Pattern</a></strong> </dd>
<dt id="generate a random UUID@@WebCryptoAPI%%dfn"><code class=prefix></code><span><strong>generate a random UUID</strong> (<em>concept</em>) <a class='self-link' href='#generate%20a%20random%20UUID%40%40WebCryptoAPI%25%25dfn' aria-label="Permalink for generate a random UUID">§</a></span></dt>
<dd>Defined in <strong title='generate a random UUID is defined in Web Cryptography API'><a href=https://w3c.github.io/webcrypto/#dfn-generate-a-random-uuid>Web Cryptography API</a></strong> </dd>
<dd>Referenced in
<a href=https://html.spec.whatwg.org/multipage/ title='generate a random UUID is referenced by HTML'>HTML</a>,
<a href=https://patcg-individual-drafts.github.io/private-aggregation-api/ title='generate a random UUID is referenced by Private Aggregation API'>Private Aggregation API</a>,
<a href=https://wicg.github.io/nav-speculation/prerendering.html title='generate a random UUID is referenced by Prerendering Revamped'>Prerendering Revamped</a></dd>
<dt id="generate a regular expression and name list@@urlpattern%%dfn"><code class=prefix></code><span><strong>generate a regular expression and name list</strong> (<em>concept</em>) <a class='self-link' href='#generate%20a%20regular%20expression%20and%20name%20list%40%40urlpattern%25%25dfn' aria-label="Permalink for generate a regular expression and name list">§</a></span></dt>
<dd>Defined in <strong title='generate a regular expression and name list is defined in URL Pattern'><a href=https://urlpattern.spec.whatwg.org/#generate-a-regular-expression-and-name-list>URL Pattern</a></strong> </dd>
<dt id="Generate a validation error@@webgpu%%abstract-op"><code class=prefix></code><span><strong>Generate a validation error</strong> (<em>algorithm</em>) <a class='self-link' href='#Generate%20a%20validation%20error%40%40webgpu%25%25abstract-op' aria-label="Permalink for Generate a validation error">§</a></span></dt>
<dd>Defined in <strong title='Generate a validation error is defined in WebGPU'><a href=https://gpuweb.github.io/gpuweb/#abstract-opdef-generate-a-validation-error>WebGPU</a></strong> </dd>
<dt id="generate an id@@performance-timeline%%dfn"><code class=prefix></code><span><strong>generate an id</strong> (<em>concept</em>) <a class='self-link' href='#generate%20an%20id%40%40performance-timeline%25%25dfn' aria-label="Permalink for generate an id">§</a></span></dt>
<dd>Defined in <strong title='generate an id is defined in Performance Timeline'><a href=https://w3c.github.io/performance-timeline/#dfn-generate-an-id>Performance Timeline</a></strong> </dd>
<dt id="Generate an internal error@@webgpu%%abstract-op"><code class=prefix></code><span><strong>Generate an internal error</strong> (<em>algorithm</em>) <a class='self-link' href='#Generate%20an%20internal%20error%40%40webgpu%25%25abstract-op' aria-label="Permalink for Generate an internal error">§</a></span></dt>
<dd>Defined in <strong title='Generate an internal error is defined in WebGPU'><a href=https://gpuweb.github.io/gpuweb/#abstract-opdef-generate-an-internal-error>WebGPU</a></strong> </dd>
<dt id="Generate an out-of-memory error@@webgpu%%abstract-op"><code class=prefix></code><span><strong>Generate an out-of-memory error</strong> (<em>algorithm</em>) <a class='self-link' href='#Generate%20an%20out-of-memory%20error%40%40webgpu%25%25abstract-op' aria-label="Permalink for Generate an out-of-memory error">§</a></span></dt>
<dd>Defined in <strong title='Generate an out-of-memory error is defined in WebGPU'><a href=https://gpuweb.github.io/gpuweb/#abstract-opdef-generate-an-out-of-memory-error>WebGPU</a></strong> </dd>
<dt id="generate and queue a report@@reporting%%dfn"><code class=prefix></code><span><strong>generate and queue a report</strong> (<em>concept</em>) <a class='self-link' href='#generate%20and%20queue%20a%20report%40%40reporting%25%25dfn' aria-label="Permalink for generate and queue a report">§</a></span></dt>
<dd>Defined in <strong title='generate and queue a report is defined in Reporting API'><a href=https://w3c.github.io/reporting/#generate-and-queue-a-report>Reporting API</a></strong> </dd>
<dd>Referenced in
<a href=https://fetch.spec.whatwg.org/ title='generate and queue a report is referenced by Fetch'>Fetch</a>,
<a href=https://w3c.github.io/webappsec-permissions-policy/ title='generate and queue a report is referenced by Permissions Policy'>Permissions Policy</a></dd>
<dt id="generate baselines@@css-align%%dfn"><code class=prefix></code><span><strong>generate baselines</strong> (<em>concept</em>) <a class='self-link' href='#generate%20baselines%40%40css-align%25%25dfn' aria-label="Permalink for generate baselines">§</a></span></dt>
<dd>Defined in <strong title='generate baselines is defined in CSS Box Alignment 3'><a href=https://drafts.csswg.org/css-align-3/#generate-baselines>CSS Box Alignment 3</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-2022/ title='generate baselines is referenced by CSS Snapshot 2022'>CSS Snapshot 2022</a>,
<a href=https://drafts.csswg.org/css-2023/ title='generate baselines is referenced by CSS Snapshot 2023'>CSS Snapshot 2023</a>,
<a href=https://drafts.csswg.org/css-flexbox-1/ title='generate baselines is referenced by CSS Flexbox 1'>CSS Flexbox 1</a>,
<a href=https://drafts.csswg.org/css-grid-1/ title='generate baselines is referenced by CSS Grid Layout 1'>CSS Grid Layout 1</a>,
<a href=https://drafts.csswg.org/css-grid-2/ title='generate baselines is referenced by CSS Grid Layout 2'>CSS Grid Layout 2</a></dd>
<dt id="generate key frame algorithm@@webrtc-encoded-transform%%abstract-op"><code class=prefix></code><span><strong>generate key frame algorithm</strong> (<em>algorithm</em>) <a class='self-link' href='#generate%20key%20frame%20algorithm%40%40webrtc-encoded-transform%25%25abstract-op' aria-label="Permalink for generate key frame algorithm">§</a></span></dt>
<dd>Defined in <strong title='generate key frame algorithm is defined in WebRTC Encoded Transform'><a href=https://w3c.github.io/webrtc-encoded-transform/#abstract-opdef-generate-key-frame-algorithm>WebRTC Encoded Transform</a></strong> </dd>
<dt id="Generate report for violation of permissions policy on settings@@permissions-policy%%abstract-op"><code class=prefix></code><span><strong>Generate report for violation of permissions policy on settings</strong> (<em>algorithm</em>) <a class='self-link' href='#Generate%20report%20for%20violation%20of%20permissions%20policy%20on%20settings%40%40permissions-policy%25%25abstract-op' aria-label="Permalink for Generate report for violation of permissions policy on settings">§</a></span></dt>
<dd>Defined in <strong title='Generate report for violation of permissions policy on settings is defined in Permissions Policy'><a href=https://w3c.github.io/webappsec-permissions-policy/#report-permissions-policy-violation>Permissions Policy</a></strong> </dd>
<dt id="Generate Test Report@@reporting%%dfn"><code class=prefix></code><span><strong>Generate Test Report</strong> (<em>concept</em>) <a class='self-link' href='#Generate%20Test%20Report%40%40reporting%25%25dfn' aria-label="Permalink for Generate Test Report">§</a></span></dt>
<dd>Defined in <strong title='Generate Test Report is defined in Reporting API'><a href=https://w3c.github.io/reporting/#generate-test-report>Reporting API</a></strong> </dd>
<dt id="[[generate timestamps flag]]@@SourceBuffer@attribute"><code class=prefix><a href='s.html#SourceBuffer@@@@interface'>SourceBuffer</a>.</code><span><strong><code class=webidl>[[generate timestamps flag]]</code></strong> (<em>internal slot</em>) <a class='self-link' href='#%5B%5Bgenerate%20timestamps%20flag%5D%5D%40%40SourceBuffer%40attribute' aria-label="Permalink for <a href='s.html#SourceBuffer@@@@interface'>SourceBuffer</a>.[[generate timestamps flag]]">§</a></span></dt>
<dd>Defined in <strong title='[[generate timestamps flag]] is defined in Media Source Extensions™'><a href=https://w3c.github.io/media-source/#dfn-generate-timestamps-flag>Media Source Extensions™</a></strong> </dd>
<dt id="generateAssertion@@RTCIdentityProvider@dict-member"><code class=prefix><a href='r.html#RTCIdentityProvider@@@@dictionary'>RTCIdentityProvider</a>.</code><span><strong><code class=webidl>generateAssertion</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#generateAssertion%40%40RTCIdentityProvider%40dict-member' aria-label="Permalink for <a href='r.html#RTCIdentityProvider@@@@dictionary'>RTCIdentityProvider</a>.generateAssertion">§</a></span></dt>
<dd>Defined in <strong title='generateAssertion is defined in Identity for WebRTC 1.0'><a href=https://w3c.github.io/webrtc-identity/#dom-rtcidentityprovider-generateassertion>Identity for WebRTC 1.0</a></strong> </dd>
<dt id="GenerateAssertionCallback@@@@callback"><code class=prefix></code><span><strong><code class=webidl>GenerateAssertionCallback</code></strong> (<em>WebIDL callback</em>) <a class='self-link' href='#GenerateAssertionCallback%40%40%40%40callback' aria-label="Permalink for GenerateAssertionCallback">§</a></span></dt>
<dd>Defined in <strong title='GenerateAssertionCallback is defined in Identity for WebRTC 1.0'><a href=https://w3c.github.io/webrtc-identity/#dom-generateassertioncallback>Identity for WebRTC 1.0</a></strong> </dd>
<dt id="GenerateBidInterestGroup@@@@dictionary"><code class=prefix></code><span><strong><code class=webidl>GenerateBidInterestGroup</code></strong> (<em>WebIDL dictionary</em>) <a class='self-link' href='#GenerateBidInterestGroup%40%40%40%40dictionary' aria-label="Permalink for GenerateBidInterestGroup">§</a></span></dt>
<dd>Defined in <strong title='GenerateBidInterestGroup is defined in Protected Audience'><a href=https://wicg.github.io/turtledove/#dictdef-generatebidinterestgroup>Protected Audience</a></strong> </dd>
<dd>Related terms: <code>GenerateBidInterestGroup.</code><a href='a.html#adComponents@@GenerateBidInterestGroup@dict-member'><code>adComponents</code></a>, <code>GenerateBidInterestGroup.</code><a href='a.html#ads@@GenerateBidInterestGroup@dict-member'><code>ads</code></a>, <code>GenerateBidInterestGroup.</code><a href='a.html#adSizes@@GenerateBidInterestGroup@dict-member'><code>adSizes</code></a>, <code>GenerateBidInterestGroup.</code><a href='b.html#biddingLogicURL@@GenerateBidInterestGroup@dict-member'><code>biddingLogicURL</code></a>, <code>GenerateBidInterestGroup.</code><a href='b.html#biddingWasmHelperURL@@GenerateBidInterestGroup@dict-member'><code>biddingWasmHelperURL</code></a>, <code>GenerateBidInterestGroup.</code><a href='e.html#enableBiddingSignalsPrioritization@@GenerateBidInterestGroup@dict-member'><code>enableBiddingSignalsPrioritization</code></a>, <code>GenerateBidInterestGroup.</code><a href='e.html#executionMode@@GenerateBidInterestGroup@dict-member'><code>executionMode</code></a>, <code>GenerateBidInterestGroup.</code><a href='m.html#maxTrustedBiddingSignalsURLLength@@GenerateBidInterestGroup@dict-member'><code>maxTrustedBiddingSignalsURLLength</code></a>, <code>GenerateBidInterestGroup.</code><a href='n.html#name@@GenerateBidInterestGroup@dict-member'><code>name</code></a>, <code>GenerateBidInterestGroup.</code><a href='o.html#owner@@GenerateBidInterestGroup@dict-member'><code>owner</code></a>, <code>GenerateBidInterestGroup.</code><a href='p.html#priorityVector@@GenerateBidInterestGroup@dict-member'><code>priorityVector</code></a>, <code>GenerateBidInterestGroup.</code><a href='s.html#sellerCapabilities@@GenerateBidInterestGroup@dict-member'><code>sellerCapabilities</code></a>, <code>GenerateBidInterestGroup.</code><a href='s.html#sizeGroups@@GenerateBidInterestGroup@dict-member'><code>sizeGroups</code></a>, <code>GenerateBidInterestGroup.</code><a href='t.html#trustedBiddingSignalsKeys@@GenerateBidInterestGroup@dict-member'><code>trustedBiddingSignalsKeys</code></a>, <code>GenerateBidInterestGroup.</code><a href='t.html#trustedBiddingSignalsSlotSizeMode@@GenerateBidInterestGroup@dict-member'><code>trustedBiddingSignalsSlotSizeMode</code></a>, <code>GenerateBidInterestGroup.</code><a href='t.html#trustedBiddingSignalsURL@@GenerateBidInterestGroup@dict-member'><code>trustedBiddingSignalsURL</code></a>, <code>GenerateBidInterestGroup.</code><a href='u.html#updateURL@@GenerateBidInterestGroup@dict-member'><code>updateURL</code></a>, <code>GenerateBidInterestGroup.</code><a href='u.html#userBiddingSignals@@GenerateBidInterestGroup@dict-member'><code>userBiddingSignals</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/GenerateBidInterestGroup.html' title='GenerateBidInterestGroup entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="GenerateBidOutput@@@@dictionary"><code class=prefix></code><span><strong><code class=webidl>GenerateBidOutput</code></strong> (<em>WebIDL dictionary</em>) <a class='self-link' href='#GenerateBidOutput%40%40%40%40dictionary' aria-label="Permalink for GenerateBidOutput">§</a></span></dt>
<dd>Defined in <strong title='GenerateBidOutput is defined in Protected Audience'><a href=https://wicg.github.io/turtledove/#dictdef-generatebidoutput>Protected Audience</a></strong> </dd>
<dd>Related terms: <code>GenerateBidOutput.</code><a href='a.html#ad@@GenerateBidOutput@dict-member'><code>ad</code></a>, <code>GenerateBidOutput.</code><a href='a.html#adComponents@@GenerateBidOutput@dict-member'><code>adComponents</code></a>, <code>GenerateBidOutput.</code><a href='a.html#adCost@@GenerateBidOutput@dict-member'><code>adCost</code></a>, <code>GenerateBidOutput.</code><a href='a.html#allowComponentAuction@@GenerateBidOutput@dict-member'><code>allowComponentAuction</code></a>, <code>GenerateBidOutput.</code><a href='b.html#bid@@GenerateBidOutput@dict-member'><code>bid</code></a>, <code>GenerateBidOutput.</code><a href='b.html#bidCurrency@@GenerateBidOutput@dict-member'><code>bidCurrency</code></a>, <code>GenerateBidOutput.</code><a href='m.html#modelingSignals@@GenerateBidOutput@dict-member'><code>modelingSignals</code></a>, <code>GenerateBidOutput.</code><a href='n.html#numMandatoryAdComponents@@GenerateBidOutput@dict-member'><code>numMandatoryAdComponents</code></a>, <code>GenerateBidOutput.</code><a href='r.html#render@@GenerateBidOutput@dict-member'><code>render</code></a>, <code>GenerateBidOutput.</code><a href='s.html#selectedBuyerAndSellerReportingId@@GenerateBidOutput@dict-member'><code>selectedBuyerAndSellerReportingId</code></a>, <code>GenerateBidOutput.</code><a href='t.html#targetNumAdComponents@@GenerateBidOutput@dict-member'><code>targetNumAdComponents</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/GenerateBidOutput.html' title='GenerateBidOutput entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="generateCertificate()@@RTCPeerConnection@method"><code class=prefix><a href='r.html#RTCPeerConnection@@@@interface'>RTCPeerConnection</a>.</code><span><strong><code class=webidl>generateCertificate()</code></strong> (<em>WebIDL operation</em>) <a class='self-link' href='#generateCertificate()%40%40RTCPeerConnection%40method' aria-label="Permalink for <a href='r.html#RTCPeerConnection@@@@interface'>RTCPeerConnection</a>.generateCertificate()">§</a></span></dt>
<dd>Defined in <strong title='generateCertificate() is defined in WebRTC 1.0'><a href=https://w3c.github.io/webrtc-pc/#dom-rtcpeerconnection-generatecertificate>WebRTC 1.0</a></strong> </dd>
<dt id="generated content@@CSS%%dfn"><code class=prefix></code><span><strong>generated content</strong> (<em>concept</em>) <a class='self-link' href='#generated%20content%40%40CSS%25%25dfn' aria-label="Permalink for generated content">§</a></span></dt>
<dd>Defined in <strong title='generated content is defined in CSS 2.1'><a href=https://www.w3.org/TR/CSS21/generate.html#x0>CSS 2.1</a></strong> </dd>
<dt id="generateKey()@@SubtleCrypto@method"><code class=prefix><a href='s.html#SubtleCrypto@@@@interface'>SubtleCrypto</a>.</code><span><strong><code class=webidl>generateKey()</code></strong> (<em>WebIDL operation</em>) <a class='self-link' href='#generateKey()%40%40SubtleCrypto%40method' aria-label="Permalink for <a href='s.html#SubtleCrypto@@@@interface'>SubtleCrypto</a>.generateKey()">§</a></span></dt>
<dd>Defined in <strong title='generateKey() is defined in Web Cryptography API'><a href=https://w3c.github.io/webcrypto/#dfn-SubtleCrypto-method-generateKey>Web Cryptography API</a></strong> </dd>
<dt id="generateKeyFrame(rid)@@RTCRtpScriptTransform@method"><code class=prefix><a href='r.html#RTCRtpScriptTransform@@@@interface'>RTCRtpScriptTransform</a>.</code><span><strong><code class=webidl>generateKeyFrame(rid)</code></strong> (<em>WebIDL operation</em>) <a class='self-link' href='#generateKeyFrame(rid)%40%40RTCRtpScriptTransform%40method' aria-label="Permalink for <a href='r.html#RTCRtpScriptTransform@@@@interface'>RTCRtpScriptTransform</a>.generateKeyFrame(rid)">§</a></span></dt>
<dd>Defined in <strong title='generateKeyFrame(rid) is defined in WebRTC Encoded Transform'><a href=https://w3c.github.io/webrtc-encoded-transform/#dom-rtcrtpscripttransform-generatekeyframe>WebRTC Encoded Transform</a></strong> </dd>
<dt id="generateKeyFrame(rid)@@RTCRtpScriptTransformer@method"><code class=prefix><a href='r.html#RTCRtpScriptTransformer@@@@interface'>RTCRtpScriptTransformer</a>.</code><span><strong><code class=webidl>generateKeyFrame(rid)</code></strong> (<em>WebIDL operation</em>) <a class='self-link' href='#generateKeyFrame(rid)%40%40RTCRtpScriptTransformer%40method' aria-label="Permalink for <a href='r.html#RTCRtpScriptTransformer@@@@interface'>RTCRtpScriptTransformer</a>.generateKeyFrame(rid)">§</a></span></dt>
<dd>Defined in <strong title='generateKeyFrame(rid) is defined in WebRTC Encoded Transform'><a href=https://w3c.github.io/webrtc-encoded-transform/#dom-rtcrtpscripttransformer-generatekeyframe>WebRTC Encoded Transform</a></strong> </dd>
<dt id="generateKeyFrame(rids)@@RTCRtpSender@method"><code class=prefix><a href='r.html#RTCRtpSender@@@@interface'>RTCRtpSender</a>.</code><span><strong><code class=webidl>generateKeyFrame(rids)</code></strong> (<em>WebIDL operation</em>) <a class='self-link' href='#generateKeyFrame(rids)%40%40RTCRtpSender%40method' aria-label="Permalink for <a href='r.html#RTCRtpSender@@@@interface'>RTCRtpSender</a>.generateKeyFrame(rids)">§</a></span></dt>
<dd>Defined in <strong title='generateKeyFrame(rids) is defined in WebRTC Encoded Transform'><a href=https://w3c.github.io/webrtc-encoded-transform/#dom-rtcrtpsender-generatekeyframe>WebRTC Encoded Transform</a></strong> </dd>
<dt id="generateRequest()@@MediaKeySession@method"><code class=prefix><a href='m.html#MediaKeySession@@@@interface'>MediaKeySession</a>.</code><span><strong><code class=webidl>generateRequest()</code></strong> (<em>WebIDL operation</em>) <a class='self-link' href='#generateRequest()%40%40MediaKeySession%40method' aria-label="Permalink for <a href='m.html#MediaKeySession@@@@interface'>MediaKeySession</a>.generateRequest()">§</a></span></dt>
<dd>Defined in <strong title='generateRequest() is defined in Encrypted Media Extensions'><a href=https://w3c.github.io/encrypted-media/#dom-mediakeysession-generaterequest>Encrypted Media Extensions</a></strong> </dd>
<dt id="GenerateTestReportParameters@@@@dictionary"><code class=prefix></code><span><strong><code class=webidl>GenerateTestReportParameters</code></strong> (<em>WebIDL dictionary</em>) <a class='self-link' href='#GenerateTestReportParameters%40%40%40%40dictionary' aria-label="Permalink for GenerateTestReportParameters">§</a></span></dt>
<dd>Defined in <strong title='GenerateTestReportParameters is defined in Reporting API'><a href=https://w3c.github.io/reporting/#dictdef-generatetestreportparameters>Reporting API</a></strong> </dd>
<dd>Related terms: <code>GenerateTestReportParameters.</code><a href='g.html#group@@GenerateTestReportParameters@dict-member'><code>group</code></a>, <code>GenerateTestReportParameters.</code><a href='m.html#message@@GenerateTestReportParameters@dict-member'><code>message</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/GenerateTestReportParameters.html' title='GenerateTestReportParameters entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="generator@@meta/name@attr-value"><code class=prefix></code><span><strong><code class=markup>generator</code></strong> (<em>value for <a href='n.html#name@@meta@element-attr'><code>name</code></a> attribute of <a href='m.html#meta@@html%25%25element'><code>meta</code></a> element </em>) <a class='self-link' href='#generator%40%40meta%2Fname%40attr-value' aria-label="Permalink for generator">§</a></span></dt>
<dd>Defined in <strong title='generator is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/semantics.html#meta-generator>HTML</a></strong> </dd>
<dt id="Generator@@@@interface"><code class=prefix></code><span><strong><code class=webidl>Generator</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#Generator%40%40%40%40interface' aria-label="Permalink for Generator">§</a></span></dt>
<dd>Defined in <strong title='Generator is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-generator-objects>ECMAScript</a></strong> </dd>
<dd>Referenced in
<a href=https://tc39.es/proposal-source-phase-imports/ title='Generator is referenced by Source Phase Imports'>Source Phase Imports</a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/Generator.html' title='Generator entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="GeneratorFunction@@@@interface"><code class=prefix></code><span><strong><code class=webidl>GeneratorFunction</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#GeneratorFunction%40%40%40%40interface' aria-label="Permalink for GeneratorFunction">§</a></span></dt>
<dd>Defined in <strong title='GeneratorFunction is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-generatorfunction-objects>ECMAScript</a></strong> </dd>
<dd>Related terms: <code>GeneratorFunction.</code><a href='p.html#prototype@@GeneratorFunction@attribute'><code>prototype</code></a>, <code>new </code><a href='g.html#GeneratorFunction(...parameterArgs, bodyArg)@@GeneratorFunction@constructor'><code>GeneratorFunction(...parameterArgs, bodyArg)</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/GeneratorFunction.html' title='GeneratorFunction entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="%GeneratorFunction.prototype.prototype%@@@@interface"><code class=prefix></code><span><strong><code class=webidl>%GeneratorFunction.prototype.prototype%</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#%25GeneratorFunction.prototype.prototype%25%40%40%40%40interface' aria-label="Permalink for %GeneratorFunction.prototype.prototype%">§</a></span></dt>
<dd>Defined in <strong title='%GeneratorFunction.prototype.prototype% is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-properties-of-generator-prototype>ECMAScript</a></strong> </dd>
<dd>Referenced in
<a href=https://tc39.es/proposal-async-explicit-resource-management/ title='%GeneratorFunction.prototype.prototype% is referenced by ECMAScript Async Explicit Resource Management'>ECMAScript Async Explicit Resource Management</a>,
<a href=https://tc39.es/proposal-explicit-resource-management/ title='%GeneratorFunction.prototype.prototype% is referenced by ECMAScript Explicit Resource Management'>ECMAScript Explicit Resource Management</a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/%GeneratorFunction.prototype.prototype%.html' title='%GeneratorFunction.prototype.prototype% entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="%GeneratorFunction.prototype%@@@@interface"><code class=prefix></code><span><strong><code class=webidl>%GeneratorFunction.prototype%</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#%25GeneratorFunction.prototype%25%40%40%40%40interface' aria-label="Permalink for %GeneratorFunction.prototype%">§</a></span></dt>
<dd>Defined in <strong title='%GeneratorFunction.prototype% is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-properties-of-the-generatorfunction-prototype-object>ECMAScript</a></strong> </dd>
<dd>Referenced in
<a href=https://tc39.es/proposal-async-explicit-resource-management/ title='%GeneratorFunction.prototype% is referenced by ECMAScript Async Explicit Resource Management'>ECMAScript Async Explicit Resource Management</a>,
<a href=https://tc39.es/proposal-explicit-resource-management/ title='%GeneratorFunction.prototype% is referenced by ECMAScript Explicit Resource Management'>ECMAScript Explicit Resource Management</a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/%GeneratorFunction.prototype%.html' title='%GeneratorFunction.prototype% entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="GeneratorFunction(...parameterArgs, bodyArg)@@GeneratorFunction@constructor"><code class=prefix>new </code><span><strong><code class=webidl>GeneratorFunction(...parameterArgs, bodyArg)</code></strong> (<em>WebIDL constructor</em>) <a class='self-link' href='#GeneratorFunction(...parameterArgs%2C%20bodyArg)%40%40GeneratorFunction%40constructor' aria-label="Permalink for new GeneratorFunction(...parameterArgs, bodyArg)">§</a></span></dt>
<dd>Defined in <strong title='GeneratorFunction(...parameterArgs, bodyArg) is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-generatorfunction>ECMAScript</a></strong> </dd>
<dt id="%GeneratorFunction%@@@@interface"><code class=prefix></code><span><strong><code class=webidl>%GeneratorFunction%</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#%25GeneratorFunction%25%40%40%40%40interface' aria-label="Permalink for %GeneratorFunction%">§</a></span></dt>
<dd>Defined in <strong title='%GeneratorFunction% is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-generatorfunction-constructor>ECMAScript</a></strong> </dd>
<dd>Referenced in
<a href=https://tc39.es/proposal-async-explicit-resource-management/ title='%GeneratorFunction% is referenced by ECMAScript Async Explicit Resource Management'>ECMAScript Async Explicit Resource Management</a>,
<a href=https://tc39.es/proposal-explicit-resource-management/ title='%GeneratorFunction% is referenced by ECMAScript Explicit Resource Management'>ECMAScript Explicit Resource Management</a>,
<a href=https://tc39.es/proposal-source-phase-imports/ title='%GeneratorFunction% is referenced by Source Phase Imports'>Source Phase Imports</a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/%GeneratorFunction%.html' title='%GeneratorFunction% entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="%GeneratorPrototype%@@@@interface"><code class=prefix></code><span><strong><code class=webidl>%GeneratorPrototype%</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#%25GeneratorPrototype%25%40%40%40%40interface' aria-label="Permalink for %GeneratorPrototype%">§</a></span></dt>
<dd>Defined in <strong title='%GeneratorPrototype% is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-properties-of-generator-prototype>ECMAScript</a></strong> </dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/%GeneratorPrototype%.html' title='%GeneratorPrototype% entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="%GeneratorPrototype%.next(value)@@%GeneratorPrototype%.next ( value )@method"><code class=prefix></code><span><strong><code class=webidl>%GeneratorPrototype%.next(value)</code></strong> (<em>WebIDL operation for <code>%GeneratorPrototype%.next ( value )</code> </em>) <a class='self-link' href='#%25GeneratorPrototype%25.next(value)%40%40%25GeneratorPrototype%25.next%20(%20value%20)%40method' aria-label="Permalink for %GeneratorPrototype%.next(value)">§</a></span></dt>
<dd>Defined in <strong title='%GeneratorPrototype%.next(value) is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-generator.prototype.next>ECMAScript</a></strong> </dd>
<dt id="%GeneratorPrototype%.return(value)@@%GeneratorPrototype%.return ( value )@method"><code class=prefix></code><span><strong><code class=webidl>%GeneratorPrototype%.return(value)</code></strong> (<em>WebIDL operation for <code>%GeneratorPrototype%.return ( value )</code> </em>) <a class='self-link' href='#%25GeneratorPrototype%25.return(value)%40%40%25GeneratorPrototype%25.return%20(%20value%20)%40method' aria-label="Permalink for %GeneratorPrototype%.return(value)">§</a></span></dt>
<dd>Defined in <strong title='%GeneratorPrototype%.return(value) is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-generator.prototype.return>ECMAScript</a></strong> </dd>
<dt id="%GeneratorPrototype%.throw(exception)@@%GeneratorPrototype%.throw ( exception )@method"><code class=prefix></code><span><strong><code class=webidl>%GeneratorPrototype%.throw(exception)</code></strong> (<em>WebIDL operation for <code>%GeneratorPrototype%.throw ( exception )</code> </em>) <a class='self-link' href='#%25GeneratorPrototype%25.throw(exception)%40%40%25GeneratorPrototype%25.throw%20(%20exception%20)%40method' aria-label="Permalink for %GeneratorPrototype%.throw(exception)">§</a></span></dt>
<dd>Defined in <strong title='%GeneratorPrototype%.throw(exception) is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-generator.prototype.throw>ECMAScript</a></strong> </dd>
<dt id="GeneratorResume@@ecmascript%%abstract-op"><code class=prefix></code><span><strong><code class=concept>GeneratorResume</code></strong> (<em>algorithm</em>) <a class='self-link' href='#GeneratorResume%40%40ecmascript%25%25abstract-op' aria-label="Permalink for GeneratorResume">§</a></span></dt>
<dd>Defined in <strong title='GeneratorResume is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-generatorresume>ECMAScript</a></strong> </dd>
<dd>Referenced in
<a href=https://tc39.es/proposal-iterator-helpers/ title='GeneratorResume is referenced by Iterator Helpers'>Iterator Helpers</a></dd>
<dt id="GeneratorResumeAbrupt@@ecmascript%%abstract-op"><code class=prefix></code><span><strong><code class=concept>GeneratorResumeAbrupt</code></strong> (<em>algorithm</em>) <a class='self-link' href='#GeneratorResumeAbrupt%40%40ecmascript%25%25abstract-op' aria-label="Permalink for GeneratorResumeAbrupt">§</a></span></dt>
<dd>Defined in <strong title='GeneratorResumeAbrupt is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-generatorresumeabrupt>ECMAScript</a></strong> </dd>
<dd>Referenced in
<a href=https://tc39.es/proposal-iterator-helpers/ title='GeneratorResumeAbrupt is referenced by Iterator Helpers'>Iterator Helpers</a></dd>
<dt id="GeneratorStart@@ecmascript%%abstract-op"><code class=prefix></code><span><strong><code class=concept>GeneratorStart</code></strong> (<em>algorithm</em>) <a class='self-link' href='#GeneratorStart%40%40ecmascript%25%25abstract-op' aria-label="Permalink for GeneratorStart">§</a></span></dt>
<dd>Defined in <strong title='GeneratorStart is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-generatorstart>ECMAScript</a></strong> </dd>
<dd>Referenced in
<a href=https://tc39.es/proposal-iterator-helpers/ title='GeneratorStart is referenced by Iterator Helpers'>Iterator Helpers</a></dd>
<dt id="GeneratorValidate@@ecmascript%%abstract-op"><code class=prefix></code><span><strong><code class=concept>GeneratorValidate</code></strong> (<em>algorithm</em>) <a class='self-link' href='#GeneratorValidate%40%40ecmascript%25%25abstract-op' aria-label="Permalink for GeneratorValidate">§</a></span></dt>
<dd>Defined in <strong title='GeneratorValidate is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-generatorvalidate>ECMAScript</a></strong> </dd>
<dt id="GeneratorYield@@ecmascript%%abstract-op"><code class=prefix></code><span><strong><code class=concept>GeneratorYield</code></strong> (<em>algorithm</em>) <a class='self-link' href='#GeneratorYield%40%40ecmascript%25%25abstract-op' aria-label="Permalink for GeneratorYield">§</a></span></dt>
<dd>Defined in <strong title='GeneratorYield is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-generatoryield>ECMAScript</a></strong> </dd>
<dd>Referenced in
<a href=https://webidl.spec.whatwg.org/ title='GeneratorYield is referenced by Web IDL'>Web IDL</a></dd>
<dt id="Generic Sensor permission revocation algorithm@@generic-sensor%%dfn"><code class=prefix></code><span><strong>Generic Sensor permission revocation algorithm</strong> (<em>concept</em>) <a class='self-link' href='#Generic%20Sensor%20permission%20revocation%20algorithm%40%40generic-sensor%25%25dfn' aria-label="Permalink for Generic Sensor permission revocation algorithm">§</a></span></dt>
<dd>Defined in <strong title='Generic Sensor permission revocation algorithm is defined in Generic Sensor API'><a href=https://w3c.github.io/sensors/#generic-sensor-permission-revocation-algorithm>Generic Sensor API</a></strong> </dd>
<dd>Referenced in
<a href=https://w3c.github.io/accelerometer/ title='Generic Sensor permission revocation algorithm is referenced by Accelerometer'>Accelerometer</a>,
<a href=https://w3c.github.io/ambient-light/ title='Generic Sensor permission revocation algorithm is referenced by Ambient Light Sensor'>Ambient Light Sensor</a>,
<a href=https://w3c.github.io/gyroscope/ title='Generic Sensor permission revocation algorithm is referenced by Gyroscope'>Gyroscope</a>,
<a href=https://w3c.github.io/magnetometer/ title='Generic Sensor permission revocation algorithm is referenced by Magnetometer'>Magnetometer</a>,
<a href=https://w3c.github.io/proximity/ title='Generic Sensor permission revocation algorithm is referenced by Proximity Sensor'>Proximity Sensor</a></dd>
<dt id="<generic-complete>@@@@type"><code class=prefix></code><span><strong><code class=css><generic-complete></code></strong> (<em>CSS type</em>) <a class='self-link' href='#%3Cgeneric-complete%3E%40%40%40%40type' aria-label="Permalink for <generic-complete>">§</a></span></dt>
<dd>Defined in <strong title='<generic-complete> is defined in CSS Fonts 4'><a href=https://drafts.csswg.org/css-fonts-4/#typedef-generic-complete>CSS Fonts 4</a></strong> </dd>
<dt id="<generic-family>@@@@type"><code class=prefix></code><span><strong><code class=css><generic-family></code></strong> (<em>CSS type</em>) <a class='self-link' href='#%3Cgeneric-family%3E%40%40%40%40type' aria-label="Permalink for <generic-family>">§</a></span></dt>
<dd>Defined in <strong title='<generic-family> is defined in CSS Fonts 4'><a href=https://drafts.csswg.org/css-fonts-4/#typedef-generic-family>CSS Fonts 4</a></strong> , <strong title='<generic-family> is defined in CSS 2.2'><a href=https://drafts.csswg.org/css2/#value-def-generic-family>CSS 2.2</a></strong> </dd>
<dd>Related terms: <em>CSS value</em> <a href='c.html#cursive@@<generic-family>@value'><code>cursive</code></a>, <em>CSS value</em> <a href='f.html#fantasy@@<generic-family>@value'><code>fantasy</code></a>, <em>CSS value</em> <a href='g.html#generic(fangsong)@@<generic-family>@value'><code>generic(fangsong)</code></a>, <em>CSS value</em> <a href='g.html#generic(kai)@@<generic-family>@value'><code>generic(kai)</code></a>, <em>CSS value</em> <a href='g.html#generic(nastaliq)@@<generic-family>@value'><code>generic(nastaliq)</code></a>, <em>CSS value</em> <a href='m.html#math@@<generic-family>@value'><code>math</code></a>, <em>CSS value</em> <a href='m.html#monospace@@<generic-family>@value'><code>monospace</code></a>, <em>CSS value</em> <a href='s.html#sans-serif@@<generic-family>@value'><code>sans-serif</code></a>, <em>CSS value</em> <a href='s.html#serif@@<generic-family>@value'><code>serif</code></a>, <em>CSS value</em> <a href='s.html#system-ui@@<generic-family>@value'><code>system-ui</code></a>, <em>CSS value</em> <a href='u.html#ui-monospace@@<generic-family>@value'><code>ui-monospace</code></a>, <em>CSS value</em> <a href='u.html#ui-rounded@@<generic-family>@value'><code>ui-rounded</code></a>, <em>CSS value</em> <a href='u.html#ui-sans-serif@@<generic-family>@value'><code>ui-sans-serif</code></a>, <em>CSS value</em> <a href='u.html#ui-serif@@<generic-family>@value'><code>ui-serif</code></a>, <em>CSS value</em> <a href='x.html#xxx@@<generic-family>@value'><code>xxx</code></a></dd>
<dt id="<generic-incomplete>@@@@type"><code class=prefix></code><span><strong><code class=css><generic-incomplete></code></strong> (<em>CSS type</em>) <a class='self-link' href='#%3Cgeneric-incomplete%3E%40%40%40%40type' aria-label="Permalink for <generic-incomplete>">§</a></span></dt>
<dd>Defined in <strong title='<generic-incomplete> is defined in CSS Fonts 4'><a href=https://drafts.csswg.org/css-fonts-4/#typedef-generic-incomplete>CSS Fonts 4</a></strong> </dd>
<dt id="<generic-script-specific>@@@@type"><code class=prefix></code><span><strong><code class=css><generic-script-specific></code></strong> (<em>CSS type</em>) <a class='self-link' href='#%3Cgeneric-script-specific%3E%40%40%40%40type' aria-label="Permalink for <generic-script-specific>">§</a></span></dt>
<dd>Defined in <strong title='<generic-script-specific> is defined in CSS Fonts 4'><a href=https://drafts.csswg.org/css-fonts-4/#typedef-generic-script-specific>CSS Fonts 4</a></strong> </dd>
<dt id="<generic-voice>@@@@type"><code class=prefix></code><span><strong><code class=css><generic-voice></code></strong> (<em>CSS type</em>) <a class='self-link' href='#%3Cgeneric-voice%3E%40%40%40%40type' aria-label="Permalink for <generic-voice>">§</a></span></dt>
<dd>Defined in <strong title='<generic-voice> is defined in CSS Speech 1'><a href=https://drafts.csswg.org/css-speech-1/#typedef-generic-voice>CSS Speech 1</a></strong> </dd>
<dt id="<generic-voice>@@CSS%%dfn"><code class=prefix></code><span><strong><generic-voice></strong> (<em>concept</em>) <a class='self-link' href='#%3Cgeneric-voice%3E%40%40CSS%25%25dfn' aria-label="Permalink for <generic-voice>">§</a></span></dt>
<dd>Defined in <strong title='<generic-voice> is defined in CSS 2.1'><a href=https://www.w3.org/TR/CSS21/aural.html#value-def-generic-voice>CSS 2.1</a></strong> </dd>
<dt id="generic(fangsong)@@<generic-family>@value"><code class=prefix></code><span><strong><code class=css>generic(fangsong)</code></strong> (<em>CSS value for <a href='g.html#<generic-family>@@@@type'><code><generic-family></code></a>, <a href='f.html#font-family@@@@property'><code>font-family</code></a> property </em>) <a class='self-link' href='#generic(fangsong)%40%40%3Cgeneric-family%3E%40value' aria-label="Permalink for generic(fangsong)">§</a></span></dt>
<dd>Defined in <strong title='generic(fangsong) is defined in CSS Fonts 4'><a href=https://drafts.csswg.org/css-fonts-4/#valdef-font-family-generic-fangsong>CSS Fonts 4</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-2023/ title='generic(fangsong) is referenced by CSS Snapshot 2023'>CSS Snapshot 2023</a></dd>
<dt id="generic(kai)@@<generic-family>@value"><code class=prefix></code><span><strong><code class=css>generic(kai)</code></strong> (<em>CSS value for <a href='g.html#<generic-family>@@@@type'><code><generic-family></code></a>, <a href='f.html#font-family@@@@property'><code>font-family</code></a> property </em>) <a class='self-link' href='#generic(kai)%40%40%3Cgeneric-family%3E%40value' aria-label="Permalink for generic(kai)">§</a></span></dt>
<dd>Defined in <strong title='generic(kai) is defined in CSS Fonts 4'><a href=https://drafts.csswg.org/css-fonts-4/#valdef-font-family-generic-kai>CSS Fonts 4</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-2023/ title='generic(kai) is referenced by CSS Snapshot 2023'>CSS Snapshot 2023</a></dd>
<dt id="generic(nastaliq)@@<generic-family>@value"><code class=prefix></code><span><strong><code class=css>generic(nastaliq)</code></strong> (<em>CSS value for <a href='g.html#<generic-family>@@@@type'><code><generic-family></code></a>, <a href='f.html#font-family@@@@property'><code>font-family</code></a> property </em>) <a class='self-link' href='#generic(nastaliq)%40%40%3Cgeneric-family%3E%40value' aria-label="Permalink for generic(nastaliq)">§</a></span></dt>
<dd>Defined in <strong title='generic(nastaliq) is defined in CSS Fonts 4'><a href=https://drafts.csswg.org/css-fonts-4/#valdef-font-family-generic-nastaliq>CSS Fonts 4</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-2023/ title='generic(nastaliq) is referenced by CSS Snapshot 2023'>CSS Snapshot 2023</a></dd>
<dt id="GenericTransformStream@@@@interface"><code class=prefix></code><span><strong><code class=webidl>GenericTransformStream</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#GenericTransformStream%40%40%40%40interface' aria-label="Permalink for GenericTransformStream">§</a></span></dt>
<dd>Defined in <strong title='GenericTransformStream is defined in Streams'><a href=https://streams.spec.whatwg.org/#generictransformstream>Streams</a></strong> </dd>
<dd>Referenced in
<a href=https://compression.spec.whatwg.org/ title='GenericTransformStream is referenced by Compression'>Compression</a>,
<a href=https://encoding.spec.whatwg.org/ title='GenericTransformStream is referenced by Encoding'>Encoding</a>,
<a href=https://w3c.github.io/webrtc-encoded-transform/ title='GenericTransformStream is referenced by WebRTC Encoded Transform'>WebRTC Encoded Transform</a></dd>
<dd>Related terms: <em>concept</em> <a href='t.html#transform@@GenericTransformStream@dfn'>transform</a>, <code>GenericTransformStream.</code><a href='r.html#readable@@GenericTransformStream@attribute'><code>readable</code></a>, <code>GenericTransformStream.</code><a href='w.html#writable@@GenericTransformStream@attribute'><code>writable</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/GenericTransformStream.html' title='GenericTransformStream entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="geolocation@@@@permission"><code class=prefix></code><span><strong><code class=webidl>"geolocation"</code></strong> (<em>permission name</em>) <a class='self-link' href='#geolocation%40%40%40%40permission' aria-label="Permalink for geolocation">§</a></span></dt>
<dd>Defined in <strong title='geolocation is defined in Geolocation'><a href=https://w3c.github.io/geolocation/#dfn-geolocation>Geolocation</a></strong> </dd>
<dt id="geolocation@@Navigator@attribute"><code class=prefix><a href='n.html#Navigator@@@@interface'>Navigator</a>.</code><span><strong><code class=webidl>geolocation</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#geolocation%40%40Navigator%40attribute' aria-label="Permalink for <a href='n.html#Navigator@@@@interface'>Navigator</a>.geolocation">§</a></span></dt>
<dd>Defined in <strong title='geolocation is defined in Geolocation'><a href=https://w3c.github.io/geolocation/#dom-navigator-geolocation>Geolocation</a></strong> </dd>
<dt id="Geolocation@@@@interface"><code class=prefix></code><span><strong><code class=webidl>Geolocation</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#Geolocation%40%40%40%40interface' aria-label="Permalink for Geolocation">§</a></span></dt>
<dd>Defined in <strong title='Geolocation is defined in Geolocation'><a href=https://w3c.github.io/geolocation/#dom-geolocation>Geolocation</a></strong> </dd>
<dd>Related terms: <code>Geolocation.</code><a href='c.html#clearWatch()@@Geolocation@method'><code>clearWatch()</code></a>, <code>Geolocation.</code><a href='g.html#getCurrentPosition()@@Geolocation@method'><code>getCurrentPosition()</code></a>, <code>Geolocation.</code><a href='w.html#watchPosition()@@Geolocation@method'><code>watchPosition()</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/Geolocation.html' title='Geolocation entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="GeolocationCoordinates@@@@interface"><code class=prefix></code><span><strong><code class=webidl>GeolocationCoordinates</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#GeolocationCoordinates%40%40%40%40interface' aria-label="Permalink for GeolocationCoordinates">§</a></span></dt>
<dd>Defined in <strong title='GeolocationCoordinates is defined in Geolocation'><a href=https://w3c.github.io/geolocation/#dom-geolocationcoordinates>Geolocation</a></strong> </dd>
<dd>Related terms: <code>GeolocationCoordinates.</code><a href='a.html#accuracy@@GeolocationCoordinates@attribute'><code>accuracy</code></a>, <code>GeolocationCoordinates.</code><a href='a.html#altitude@@GeolocationCoordinates@attribute'><code>altitude</code></a>, <code>GeolocationCoordinates.</code><a href='a.html#altitudeAccuracy@@GeolocationCoordinates@attribute'><code>altitudeAccuracy</code></a>, <code>GeolocationCoordinates.</code><a href='h.html#heading@@GeolocationCoordinates@attribute'><code>heading</code></a>, <code>GeolocationCoordinates.</code><a href='l.html#latitude@@GeolocationCoordinates@attribute'><code>latitude</code></a>, <code>GeolocationCoordinates.</code><a href='l.html#longitude@@GeolocationCoordinates@attribute'><code>longitude</code></a>, <code>GeolocationCoordinates.</code><a href='s.html#speed@@GeolocationCoordinates@attribute'><code>speed</code></a>, <code>GeolocationCoordinates.</code><a href='t.html#toJSON()@@GeolocationCoordinates@method'><code>toJSON()</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/GeolocationCoordinates.html' title='GeolocationCoordinates entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="GeolocationPosition@@@@interface"><code class=prefix></code><span><strong><code class=webidl>GeolocationPosition</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#GeolocationPosition%40%40%40%40interface' aria-label="Permalink for GeolocationPosition">§</a></span></dt>
<dd>Defined in <strong title='GeolocationPosition is defined in Geolocation'><a href=https://w3c.github.io/geolocation/#dom-geolocationposition>Geolocation</a></strong> </dd>
<dd>Related terms: <code>GeolocationPosition.</code><a href='c.html#coords@@GeolocationPosition@attribute'><code>coords</code></a>, <code>GeolocationPosition.</code><a href='t.html#timestamp@@GeolocationPosition@attribute'><code>timestamp</code></a>, <code>GeolocationPosition.</code><a href='t.html#toJSON()@@GeolocationPosition@method'><code>toJSON()</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/GeolocationPosition.html' title='GeolocationPosition entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="GeolocationPositionError@@@@interface"><code class=prefix></code><span><strong><code class=webidl>GeolocationPositionError</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#GeolocationPositionError%40%40%40%40interface' aria-label="Permalink for GeolocationPositionError">§</a></span></dt>
<dd>Defined in <strong title='GeolocationPositionError is defined in Geolocation'><a href=https://w3c.github.io/geolocation/#dom-geolocationpositionerror>Geolocation</a></strong> </dd>
<dd>Related terms: <code>GeolocationPositionError.</code><a href='c.html#code@@GeolocationPositionError@attribute'><code>code</code></a>, <code>GeolocationPositionError.</code><a href='m.html#message@@GeolocationPositionError@attribute'><code>message</code></a>, <code>GeolocationPositionError.</code><a href='p.html#PERMISSION_DENIED@@GeolocationPositionError@const'><code>PERMISSION_DENIED</code></a>, <code>GeolocationPositionError.</code><a href='p.html#POSITION_UNAVAILABLE@@GeolocationPositionError@const'><code>POSITION_UNAVAILABLE</code></a>, <code>GeolocationPositionError.</code><a href='t.html#TIMEOUT@@GeolocationPositionError@const'><code>TIMEOUT</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/GeolocationPositionError.html' title='GeolocationPositionError entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="GeolocationSensor@@@@interface"><code class=prefix></code><span><strong><code class=webidl>GeolocationSensor</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#GeolocationSensor%40%40%40%40interface' aria-label="Permalink for GeolocationSensor">§</a></span></dt>
<dd>Defined in <strong title='GeolocationSensor is defined in Geolocation Sensor'><a href=https://w3c.github.io/geolocation-sensor/#geolocationsensor>Geolocation Sensor</a></strong> </dd>
<dd>Related terms: <code>GeolocationSensor.</code><a href='a.html#accuracy@@GeolocationSensor@attribute'><code>accuracy</code></a>, <code>GeolocationSensor.</code><a href='a.html#altitude@@GeolocationSensor@attribute'><code>altitude</code></a>, <code>GeolocationSensor.</code><a href='a.html#altitudeAccuracy@@GeolocationSensor@attribute'><code>altitudeAccuracy</code></a>, <code>GeolocationSensor.</code><a href='h.html#heading@@GeolocationSensor@attribute'><code>heading</code></a>, <code>GeolocationSensor.</code><a href='l.html#latitude@@GeolocationSensor@attribute'><code>latitude</code></a>, <code>GeolocationSensor.</code><a href='l.html#longitude@@GeolocationSensor@attribute'><code>longitude</code></a>, <code>GeolocationSensor.</code><a href='s.html#speed@@GeolocationSensor@attribute'><code>speed</code></a>, <code>new </code><a href='g.html#GeolocationSensor(options)@@GeolocationSensor@constructor'><code>GeolocationSensor(options)</code></a>, <code>GeolocationSensor.</code><a href='r.html#read(readOptions)@@GeolocationSensor@method'><code>read(readOptions)</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/GeolocationSensor.html' title='GeolocationSensor entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="GeolocationSensor(options)@@GeolocationSensor@constructor"><code class=prefix>new </code><span><strong><code class=webidl>GeolocationSensor(options)</code></strong> (<em>WebIDL constructor</em>) <a class='self-link' href='#GeolocationSensor(options)%40%40GeolocationSensor%40constructor' aria-label="Permalink for new GeolocationSensor(options)">§</a></span></dt>
<dd>Defined in <strong title='GeolocationSensor(options) is defined in Geolocation Sensor'><a href=https://w3c.github.io/geolocation-sensor/#dom-geolocationsensor-geolocationsensor>Geolocation Sensor</a></strong> </dd>
<dt id="GeolocationSensorOptions@@@@dictionary"><code class=prefix></code><span><strong><code class=webidl>GeolocationSensorOptions</code></strong> (<em>WebIDL dictionary</em>) <a class='self-link' href='#GeolocationSensorOptions%40%40%40%40dictionary' aria-label="Permalink for GeolocationSensorOptions">§</a></span></dt>
<dd>Defined in <strong title='GeolocationSensorOptions is defined in Geolocation Sensor'><a href=https://w3c.github.io/geolocation-sensor/#dictdef-geolocationsensoroptions>Geolocation Sensor</a></strong> </dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/GeolocationSensorOptions.html' title='GeolocationSensorOptions entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="GeolocationSensorReading@@@@dictionary"><code class=prefix></code><span><strong><code class=webidl>GeolocationSensorReading</code></strong> (<em>WebIDL dictionary</em>) <a class='self-link' href='#GeolocationSensorReading%40%40%40%40dictionary' aria-label="Permalink for GeolocationSensorReading">§</a></span></dt>
<dd>Defined in <strong title='GeolocationSensorReading is defined in Geolocation Sensor'><a href=https://w3c.github.io/geolocation-sensor/#dictdef-geolocationsensorreading>Geolocation Sensor</a></strong> </dd>
<dd>Related terms: <code>GeolocationSensorReading.</code><a href='a.html#accuracy@@GeolocationSensorReading@dict-member'><code>accuracy</code></a>, <code>GeolocationSensorReading.</code><a href='a.html#altitude@@GeolocationSensorReading@dict-member'><code>altitude</code></a>, <code>GeolocationSensorReading.</code><a href='a.html#altitudeAccuracy@@GeolocationSensorReading@dict-member'><code>altitudeAccuracy</code></a>, <code>GeolocationSensorReading.</code><a href='h.html#heading@@GeolocationSensorReading@dict-member'><code>heading</code></a>, <code>GeolocationSensorReading.</code><a href='l.html#latitude@@GeolocationSensorReading@dict-member'><code>latitude</code></a>, <code>GeolocationSensorReading.</code><a href='l.html#longitude@@GeolocationSensorReading@dict-member'><code>longitude</code></a>, <code>GeolocationSensorReading.</code><a href='s.html#speed@@GeolocationSensorReading@dict-member'><code>speed</code></a>, <code>GeolocationSensorReading.</code><a href='t.html#timestamp@@GeolocationSensorReading@dict-member'><code>timestamp</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/GeolocationSensorReading.html' title='GeolocationSensorReading entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="geometricPrecision@@CanvasTextRendering@enum-value"><code class=prefix></code><span><strong><code class=webidl>"geometricPrecision"</code></strong> (<em>value for <a href='c.html#CanvasTextRendering@@@@enum'><code>CanvasTextRendering</code></a> WebIDL enumeration</em>) <a class='self-link' href='#geometricPrecision%40%40CanvasTextRendering%40enum-value' aria-label="Permalink for geometricPrecision">§</a></span></dt>
<dd>Defined in <strong title='geometricPrecision is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/canvas.html#dom-context-2d-textrendering-geometricprecision>HTML</a></strong> </dd>
<dt id="geometry properties@@SVG%%dfn"><code class=prefix></code><span><strong>geometry properties</strong> (<em>concept</em>) <a class='self-link' href='#geometry%20properties%40%40SVG%25%25dfn' aria-label="Permalink for geometry properties">§</a></span></dt>
<dd>Defined in <strong title='geometry properties is defined in SVG 2'><a href=https://svgwg.org/svg2-draft/geometry.html#geometry-properties>SVG 2</a></strong> </dd>
<dt id="<geometry-box>@@@@type"><code class=prefix></code><span><strong><code class=css><geometry-box></code></strong> (<em>CSS type</em>) <a class='self-link' href='#%3Cgeometry-box%3E%40%40%40%40type' aria-label="Permalink for <geometry-box>">§</a></span></dt>
<dd>Defined in <strong title='<geometry-box> is defined in CSS Masking 1'><a href=https://drafts.fxtf.org/css-masking-1/#typedef-geometry-box>CSS Masking 1</a></strong> </dd>
<dd>Related terms: <em>CSS value</em> <a href='b.html#border-box@@<box>@value'><code>border-box</code></a>, <em>CSS value</em> <a href='c.html#content-box@@<box>@value'><code>content-box</code></a>, <em>CSS value</em> <a href='f.html#fill-box@@<box>@value'><code>fill-box</code></a>, <em>CSS value</em> <a href='m.html#margin-box@@<box>@value'><code>margin-box</code></a>, <em>CSS value</em> <a href='p.html#padding-box@@<box>@value'><code>padding-box</code></a>, <em>CSS value</em> <a href='s.html#stroke-box@@<box>@value'><code>stroke-box</code></a>, <em>CSS value</em> <a href='v.html#view-box@@<box>@value'><code>view-box</code></a></dd>
<dt id="GeometryNode@@@@typedef"><code class=prefix></code><span><strong><code class=webidl>GeometryNode</code></strong> (<em>WebIDL type alias</em>) <a class='self-link' href='#GeometryNode%40%40%40%40typedef' aria-label="Permalink for GeometryNode">§</a></span></dt>
<dd>Defined in <strong title='GeometryNode is defined in CSSOM View'><a href=https://drafts.csswg.org/cssom-view-1/#typedefdef-geometrynode>CSSOM View</a></strong> </dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/GeometryNode.html' title='GeometryNode entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="GeometryUtils@@@@interface"><code class=prefix></code><span><strong><code class=webidl>GeometryUtils</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#GeometryUtils%40%40%40%40interface' aria-label="Permalink for GeometryUtils">§</a></span></dt>
<dd>Defined in <strong title='GeometryUtils is defined in CSSOM View'><a href=https://drafts.csswg.org/cssom-view-1/#geometryutils>CSSOM View</a></strong> </dd>
<dd>Related terms: <code>GeometryUtils.</code><a href='c.html#convertPointFromNode(point, from, options)@@GeometryUtils@method'><code>convertPointFromNode(point, from, options)</code></a>, <code>GeometryUtils.</code><a href='c.html#convertQuadFromNode(quad, from, options)@@GeometryUtils@method'><code>convertQuadFromNode(quad, from, options)</code></a>, <code>GeometryUtils.</code><a href='c.html#convertRectFromNode(rect, from, options)@@GeometryUtils@method'><code>convertRectFromNode(rect, from, options)</code></a>, <code>GeometryUtils.</code><a href='g.html#getBoxQuads(options)@@GeometryUtils@method'><code>getBoxQuads(options)</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/GeometryUtils.html' title='GeometryUtils entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="georgian@@<counter-style-name>@value"><code class=prefix></code><span><strong><code class=css>georgian</code></strong> (<em>CSS value for <a href='c.html#<counter-style-name>@@@@type'><code><counter-style-name></code></a> </em>) <a class='self-link' href='#georgian%40%40%3Ccounter-style-name%3E%40value' aria-label="Permalink for georgian">§</a></span></dt>
<dd>Defined in <strong title='georgian is defined in CSS Counter Styles 3'><a href=https://drafts.csswg.org/css-counter-styles-3/#georgian>CSS Counter Styles 3</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-2022/ title='georgian is referenced by CSS Snapshot 2022'>CSS Snapshot 2022</a>,
<a href=https://drafts.csswg.org/css-2023/ title='georgian is referenced by CSS Snapshot 2023'>CSS Snapshot 2023</a>,
<a href=https://drafts.csswg.org/css-speech-1/ title='georgian is referenced by CSS Speech 1'>CSS Speech 1</a></dd>
<dt id="georgian@@CSS%%value"><code class=prefix></code><span><strong><code class=css>georgian</code></strong> (<em>CSS value</em>) <a class='self-link' href='#georgian%40%40CSS%25%25value' aria-label="Permalink for georgian">§</a></span></dt>
<dd>Defined in <strong title='georgian is defined in CSS 2.1'><a href=https://www.w3.org/TR/CSS21/generate.html#value-def-georgian>CSS 2.1</a></strong> </dd>
<dt id="georgian@@list-style-type@value"><code class=prefix></code><span><strong><code class=css>georgian</code></strong> (<em>CSS value for <a href='l.html#list-style-type@@@@property'><code>list-style-type</code></a> </em>) <a class='self-link' href='#georgian%40%40list-style-type%40value' aria-label="Permalink for georgian">§</a></span></dt>
<dd>Defined in <strong title='georgian is defined in CSS 2.2'><a href=https://drafts.csswg.org/css2/#value-def-georgian>CSS 2.2</a></strong> </dd>
<dt id="get@@header list@dfn"><code class=prefix></code><span><strong>get</strong> (<em>concept for <a href='h.html#header list@@fetch%25%25dfn'>header list</a> </em>) <a class='self-link' href='#get%40%40header%20list%40dfn' aria-label="Permalink for get">§</a></span></dt>
<dd>Defined in <strong title='get is defined in Fetch'><a href=https://fetch.spec.whatwg.org/#concept-header-list-get>Fetch</a></strong> </dd>
<dd>Referenced in
<a href=https://wicg.github.io/attribution-reporting-api/ title='get is referenced by Attribution Reporting'>Attribution Reporting</a>,
<a href=https://wicg.github.io/csp-next/scripting-policy.html title='get is referenced by Scripting Policy'>Scripting Policy</a>,
<a href=https://wicg.github.io/shared-storage/ title='get is referenced by Shared Storage API'>Shared Storage API</a>,
<a href=https://wicg.github.io/trust-token-api/ title='get is referenced by Private State Token API'>Private State Token API</a>,
<a href=https://wicg.github.io/turtledove/ title='get is referenced by Protected Audience'>Protected Audience</a>,
<a href=https://wicg.github.io/webpackage/loading.html title='get is referenced by Loading Signed Exchanges'>Loading Signed Exchanges</a>,
<a href=https://webassembly.github.io/spec/web-api/ title='get is referenced by WebAssembly Web API'>WebAssembly Web API</a>,
<a href=https://xhr.spec.whatwg.org/ title='get is referenced by XMLHttpRequest'>XMLHttpRequest</a></dd>
<dt id="get@@button/formmethod@attr-value"><code class=prefix></code><span><strong><code class=markup>get</code></strong> (<em>value for <a href='f.html#formmethod@@button@element-attr'><code>formmethod</code></a> attribute of <a href='b.html#button@@html%25%25element'><code>button</code></a> element, <a href='m.html#method@@button@element-attr'><code>method</code></a> attribute of <a href='f.html#form@@html%25%25element'><code>form</code></a> element, <a href='f.html#formmethod@@button@element-attr'><code>formmethod</code></a> attribute of <a href='i.html#input@@html%25%25element'><code>input</code></a> element </em>) <a class='self-link' href='#get%40%40button%2Fformmethod%40attr-value' aria-label="Permalink for get">§</a></span></dt>
<dd>Defined in <strong title='get is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#attr-fs-method-get-keyword>HTML</a></strong> </dd>
<dt id="get@@map@dfn"><code class=prefix></code><span><strong>get</strong> (<em>concept for <a href='m.html#map@@html%25%25element'><code>map</code></a> </em>) <a class='self-link' href='#get%40%40map%40dfn' aria-label="Permalink for get">§</a></span></dt>
<dd>Defined in <strong title='get is defined in Infra'><a href=https://infra.spec.whatwg.org/#map-get>Infra</a></strong> </dd>
<dd>Referenced in
<a href=https://html.spec.whatwg.org/multipage/ title='get is referenced by HTML'>HTML</a>,
<a href=https://wicg.github.io/shared-storage/ title='get is referenced by Shared Storage API'>Shared Storage API</a>,
<a href=https://drafts.css-houdini.org/css-animationworklet-1/ title='get is referenced by CSS Animation Worklet API'>CSS Animation Worklet API</a>,
<a href=https://drafts.css-houdini.org/css-layout-api-1/ title='get is referenced by CSS Layout API 1'>CSS Layout API 1</a>,
<a href=https://drafts.css-houdini.org/css-paint-api-1/ title='get is referenced by CSS Painting API 1'>CSS Painting API 1</a>,
<a href=https://w3c.github.io/performance-timeline/ title='get is referenced by Performance Timeline'>Performance Timeline</a></dd>
<dt id="get@@Sanitizer@dfn"><code class=prefix></code><span><strong>get</strong> (<em>concept for <a href='s.html#Sanitizer@@@@interface'><code>Sanitizer</code></a> </em>) <a class='self-link' href='#get%40%40Sanitizer%40dfn' aria-label="Permalink for get">§</a></span></dt>
<dd>Defined in <strong title='get is defined in HTML Sanitizer API'><a href=https://wicg.github.io/sanitizer-api/#sanitizer-get>HTML Sanitizer API</a></strong> </dd>
<dt id="Get@@ecmascript%%abstract-op"><code class=prefix></code><span><strong><code class=concept>Get</code></strong> (<em>algorithm</em>) <a class='self-link' href='#Get%40%40ecmascript%25%25abstract-op' aria-label="Permalink for Get">§</a></span></dt>
<dd>Defined in <strong title='Get is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/abstract-operations.html#sec-get-o-p>ECMAScript</a></strong> </dd>
<dd>Referenced in
<a href=https://html.spec.whatwg.org/multipage/ title='Get is referenced by HTML'>HTML</a>,
<a href=https://streams.spec.whatwg.org/ title='Get is referenced by Streams'>Streams</a>,
<a href=https://tc39.es/ecma402/ title='Get is referenced by ECMAScript Internationalization API'>ECMAScript Internationalization API</a>,
<a href=https://tc39.es/proposal-array-from-async/ title='Get is referenced by 2022'>2022</a>,
<a href=https://tc39.es/proposal-arraybuffer-base64/spec/ title='Get is referenced by Uint8Array to/from base64'>Uint8Array to/from base64</a>,
<a href=https://tc39.es/proposal-async-explicit-resource-management/ title='Get is referenced by ECMAScript Async Explicit Resource Management'>ECMAScript Async Explicit Resource Management</a>,
<a href=https://tc39.es/proposal-canonical-tz/ title='Get is referenced by Time Zone Canonicalization'>Time Zone Canonicalization</a>,
<a href=https://tc39.es/proposal-explicit-resource-management/ title='Get is referenced by ECMAScript Explicit Resource Management'>ECMAScript Explicit Resource Management</a>,
<a href=https://tc39.es/proposal-import-attributes/ title='Get is referenced by Import Attributes'>Import Attributes</a>,
<a href=https://tc39.es/proposal-intl-duration-format/ title='Get is referenced by Intl.DurationFormat'>Intl.DurationFormat</a>,
<a href=https://tc39.es/proposal-iterator-helpers/ title='Get is referenced by Iterator Helpers'>Iterator Helpers</a>,
<a href=https://tc39.es/proposal-json-parse-with-source/ title='Get is referenced by JSON.parse source text access'>JSON.parse source text access</a>,
<a href=https://tc39.es/proposal-set-methods/ title='Get is referenced by Set methods'>Set methods</a>,
<a href=https://tc39.es/proposal-shadowrealm/ title='Get is referenced by ShadowRealm API'>ShadowRealm API</a>,
<a href=https://tc39.es/proposal-temporal/ title='Get is referenced by Temporal'>Temporal</a>,
<a href=https://urlpattern.spec.whatwg.org/ title='Get is referenced by URL Pattern'>URL Pattern</a>,
<a href=https://webassembly.github.io/esm-integration/js-api/ title='Get is referenced by WebAssembly JavaScript Interface: ESM Integration'>WebAssembly JavaScript Interface: ESM Integration</a>,
<a href=https://webassembly.github.io/exception-handling/js-api/ title='Get is referenced by WebAssembly JavaScript Interface: Exception Handling'>WebAssembly JavaScript Interface: Exception Handling</a>,
<a href=https://webassembly.github.io/js-promise-integration/js-api/ title='Get is referenced by WebAssembly JavaScript Interface: Promise Integration'>WebAssembly JavaScript Interface: Promise Integration</a>,
<a href=https://webassembly.github.io/js-string-builtins/js-api/ title='Get is referenced by WebAssembly JavaScript Interface: JS String Builtins'>WebAssembly JavaScript Interface: JS String Builtins</a>,
<a href=https://webidl.spec.whatwg.org/ title='Get is referenced by Web IDL'>Web IDL</a>,
<a href=https://wicg.github.io/shared-storage/ title='Get is referenced by Shared Storage API'>Shared Storage API</a>,
<a href=https://wicg.github.io/turtledove/ title='Get is referenced by Protected Audience'>Protected Audience</a>,
<a href=https://w3c.github.io/IndexedDB/ title='Get is referenced by Indexed DB 3.0'>Indexed DB 3.0</a>,
<a href=https://webassembly.github.io/spec/js-api/ title='Get is referenced by WebAssembly JavaScript Interface'>WebAssembly JavaScript Interface</a></dd>
<dt id="get %TypedArray%.prototype [ %Symbol.toStringTag% ]@@%TypedArray%.prototype [ %Symbol.toStringTag% ]@attribute"><code class=prefix></code><span><strong><code class=webidl>get %TypedArray%.prototype [ %Symbol.toStringTag% ]</code></strong> (<em>WebIDL attribute for <code>%TypedArray%.prototype [ %Symbol.toStringTag% ]</code> </em>) <a class='self-link' href='#get%20%25TypedArray%25.prototype%20%5B%20%25Symbol.toStringTag%25%20%5D%40%40%25TypedArray%25.prototype%20%5B%20%25Symbol.toStringTag%25%20%5D%40attribute' aria-label="Permalink for get %TypedArray%.prototype [ %Symbol.toStringTag% ]">§</a></span></dt>
<dd>Defined in <strong title='get %TypedArray%.prototype [ %Symbol.toStringTag% ] is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/indexed-collections.html#sec-get-%25typedarray%25.prototype-%25symbol.tostringtag%25>ECMAScript</a></strong> </dd>
<dt id="get a copy of the buffer source@@webidl%%dfn"><code class=prefix></code><span><strong>get a copy of the buffer source</strong> (<em>concept</em>) <a class='self-link' href='#get%20a%20copy%20of%20the%20buffer%20source%40%40webidl%25%25dfn' aria-label="Permalink for get a copy of the buffer source">§</a></span></dt>
<dd>Defined in <strong title='get a copy of the buffer source is defined in Web IDL'><a href=https://webidl.spec.whatwg.org/#dfn-get-buffer-source-copy>Web IDL</a></strong> </dd>
<dd>Referenced in
<a href=https://encoding.spec.whatwg.org/ title='get a copy of the buffer source is referenced by Encoding'>Encoding</a>,
<a href=https://fetch.spec.whatwg.org/ title='get a copy of the buffer source is referenced by Fetch'>Fetch</a>,
<a href=https://fs.spec.whatwg.org/ title='get a copy of the buffer source is referenced by File System'>File System</a>,
<a href=https://streams.spec.whatwg.org/ title='get a copy of the buffer source is referenced by Streams'>Streams</a>,
<a href=https://webassembly.github.io/content-security-policy/js-api/ title='get a copy of the buffer source is referenced by WebAssembly JavaScript Interface: Content Security Policy'>WebAssembly JavaScript Interface: Content Security Policy</a>,
<a href=https://webassembly.github.io/esm-integration/js-api/ title='get a copy of the buffer source is referenced by WebAssembly JavaScript Interface: ESM Integration'>WebAssembly JavaScript Interface: ESM Integration</a>,
<a href=https://webassembly.github.io/exception-handling/js-api/ title='get a copy of the buffer source is referenced by WebAssembly JavaScript Interface: Exception Handling'>WebAssembly JavaScript Interface: Exception Handling</a>,
<a href=https://webassembly.github.io/js-promise-integration/js-api/ title='get a copy of the buffer source is referenced by WebAssembly JavaScript Interface: Promise Integration'>WebAssembly JavaScript Interface: Promise Integration</a>,
<a href=https://webassembly.github.io/js-string-builtins/js-api/ title='get a copy of the buffer source is referenced by WebAssembly JavaScript Interface: JS String Builtins'>WebAssembly JavaScript Interface: JS String Builtins</a>,