-
Notifications
You must be signed in to change notification settings - Fork 2
/
e.html
6903 lines (3702 loc) · 861 KB
/
e.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 e"
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="E@@Math@const"><code class=prefix><a href='m.html#Math@@@@namespace'>Math</a>.</code><span><strong><code class=webidl>E</code></strong> (<em>WebIDL constant</em>) <a class='self-link' href='#E%40%40Math%40const' aria-label="Permalink for <a href='m.html#Math@@@@namespace'>Math</a>.E">§</a></span></dt>
<dd>Defined in <strong title='E is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-math.e>ECMAScript</a></strong> </dd>
<dt id="e@@calc()@value"><code class=prefix></code><span><strong><code class=css>e</code></strong> (<em>CSS value for <a href='c.html#calc()@@css-values%25%25function'><code>calc()</code></a> </em>) <a class='self-link' href='#e%40%40calc()%40value' aria-label="Permalink for e">§</a></span></dt>
<dd>Defined in <strong title='e is defined in CSS Values 4'><a href=https://drafts.csswg.org/css-values-4/#valdef-calc-e>CSS Values 4</a></strong> </dd>
<dt id="e@@DOMMatrix@attribute"><code class=prefix><a href='d.html#DOMMatrix@@@@interface'>DOMMatrix</a>.</code><span><strong><code class=webidl>e</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#e%40%40DOMMatrix%40attribute' aria-label="Permalink for <a href='d.html#DOMMatrix@@@@interface'>DOMMatrix</a>.e">§</a></span></dt>
<dt><code class=prefix><a href='d.html#DOMMatrixReadOnly@@@@interface'>DOMMatrixReadOnly</a>.</code><span><strong><code class=webidl>e</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#e%40%40DOMMatrix%40attribute' aria-label="Permalink for <a href='d.html#DOMMatrixReadOnly@@@@interface'>DOMMatrixReadOnly</a>.e">§</a></span></dt>
<dd>Defined in <strong title='e is defined in Geometry Interfaces 1'><a href=https://drafts.fxtf.org/geometry-1/#dom-dommatrixreadonly-e>Geometry Interfaces 1</a></strong> </dd>
<dt id="e@@DOMMatrix2DInit@dict-member"><code class=prefix><a href='d.html#DOMMatrix2DInit@@@@dictionary'>DOMMatrix2DInit</a>.</code><span><strong><code class=webidl>e</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#e%40%40DOMMatrix2DInit%40dict-member' aria-label="Permalink for <a href='d.html#DOMMatrix2DInit@@@@dictionary'>DOMMatrix2DInit</a>.e">§</a></span></dt>
<dd>Defined in <strong title='e is defined in Geometry Interfaces 1'><a href=https://drafts.fxtf.org/geometry-1/#dom-dommatrix2dinit-e>Geometry Interfaces 1</a></strong> </dd>
<dt id="e@@JsonWebKey@dict-member"><code class=prefix><a href='j.html#JsonWebKey@@@@dictionary'>JsonWebKey</a>.</code><span><strong><code class=webidl>e</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#e%40%40JsonWebKey%40dict-member' aria-label="Permalink for <a href='j.html#JsonWebKey@@@@dictionary'>JsonWebKey</a>.e">§</a></span></dt>
<dd>Defined in <strong title='e is defined in Web Cryptography API'><a href=https://w3c.github.io/webcrypto/#dom-jsonwebkey-e>Web Cryptography API</a></strong> </dd>
<dt id="e-resize@@cursor@value"><code class=prefix></code><span><strong><code class=css>e-resize</code></strong> (<em>CSS value for <a href='c.html#cursor@@@@property'><code>cursor</code></a> </em>) <a class='self-link' href='#e-resize%40%40cursor%40value' aria-label="Permalink for e-resize">§</a></span></dt>
<dd>Defined in <strong title='e-resize is defined in CSS User Interface 3'><a href=https://drafts.csswg.org/css-ui-3/#valdef-cursor-e-resize>CSS User Interface 3</a></strong> , <strong title='e-resize is defined in CSS User Interface 4'><a href=https://drafts.csswg.org/css-ui-4/#valdef-cursor-e-resize>CSS User Interface 4</a></strong> , <strong title='e-resize is defined in CSS 2.2'><a href=https://drafts.csswg.org/css2/#valdef-cursor-e-resize>CSS 2.2</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-2022/ title='e-resize is referenced by CSS Snapshot 2022'>CSS Snapshot 2022</a>,
<a href=https://drafts.csswg.org/css-2023/ title='e-resize is referenced by CSS Snapshot 2023'>CSS Snapshot 2023</a></dd>
<dt id="eac-r11snorm@@GPUTextureFormat@enum-value"><code class=prefix></code><span><strong><code class=webidl>"eac-r11snorm"</code></strong> (<em>value for <a href='g.html#GPUTextureFormat@@@@enum'><code>GPUTextureFormat</code></a> WebIDL enumeration</em>) <a class='self-link' href='#eac-r11snorm%40%40GPUTextureFormat%40enum-value' aria-label="Permalink for eac-r11snorm">§</a></span></dt>
<dd>Defined in <strong title='eac-r11snorm is defined in WebGPU'><a href=https://gpuweb.github.io/gpuweb/#dom-gputextureformat-eac-r11snorm>WebGPU</a></strong> </dd>
<dt id="eac-r11unorm@@GPUTextureFormat@enum-value"><code class=prefix></code><span><strong><code class=webidl>"eac-r11unorm"</code></strong> (<em>value for <a href='g.html#GPUTextureFormat@@@@enum'><code>GPUTextureFormat</code></a> WebIDL enumeration</em>) <a class='self-link' href='#eac-r11unorm%40%40GPUTextureFormat%40enum-value' aria-label="Permalink for eac-r11unorm">§</a></span></dt>
<dd>Defined in <strong title='eac-r11unorm is defined in WebGPU'><a href=https://gpuweb.github.io/gpuweb/#dom-gputextureformat-eac-r11unorm>WebGPU</a></strong> </dd>
<dt id="eac-rg11snorm@@GPUTextureFormat@enum-value"><code class=prefix></code><span><strong><code class=webidl>"eac-rg11snorm"</code></strong> (<em>value for <a href='g.html#GPUTextureFormat@@@@enum'><code>GPUTextureFormat</code></a> WebIDL enumeration</em>) <a class='self-link' href='#eac-rg11snorm%40%40GPUTextureFormat%40enum-value' aria-label="Permalink for eac-rg11snorm">§</a></span></dt>
<dd>Defined in <strong title='eac-rg11snorm is defined in WebGPU'><a href=https://gpuweb.github.io/gpuweb/#dom-gputextureformat-eac-rg11snorm>WebGPU</a></strong> </dd>
<dt id="eac-rg11unorm@@GPUTextureFormat@enum-value"><code class=prefix></code><span><strong><code class=webidl>"eac-rg11unorm"</code></strong> (<em>value for <a href='g.html#GPUTextureFormat@@@@enum'><code>GPUTextureFormat</code></a> WebIDL enumeration</em>) <a class='self-link' href='#eac-rg11unorm%40%40GPUTextureFormat%40enum-value' aria-label="Permalink for eac-rg11unorm">§</a></span></dt>
<dd>Defined in <strong title='eac-rg11unorm is defined in WebGPU'><a href=https://gpuweb.github.io/gpuweb/#dom-gputextureformat-eac-rg11unorm>WebGPU</a></strong> </dd>
<dt id="each-line@@text-indent@value"><code class=prefix></code><span><strong><code class=css>each-line</code></strong> (<em>CSS value for <a href='t.html#text-indent@@@@property'><code>text-indent</code></a> </em>) <a class='self-link' href='#each-line%40%40text-indent%40value' aria-label="Permalink for each-line">§</a></span></dt>
<dd>Defined in <strong title='each-line is defined in CSS Text 3'><a href=https://drafts.csswg.org/css-text-3/#valdef-text-indent-each-line>CSS Text 3</a></strong> , <strong title='each-line is defined in CSS Text 4'><a href=https://drafts.csswg.org/css-text-4/#valdef-text-indent-each-line>CSS Text 4</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-2022/ title='each-line is referenced by CSS Snapshot 2022'>CSS Snapshot 2022</a>,
<a href=https://drafts.csswg.org/css-2023/ title='each-line is referenced by CSS Snapshot 2023'>CSS Snapshot 2023</a></dd>
<dt id="eager@@iframe/loading@attr-value"><code class=prefix></code><span><strong><code class=markup>eager</code></strong> (<em>value for <a href='l.html#loading@@iframe@element-attr'><code>loading</code></a> attribute of <a href='i.html#iframe@@html%25%25element'><code>iframe</code></a> element, <a href='l.html#loading@@img@element-attr'><code>loading</code></a> attribute of <a href='i.html#img@@html%25%25element'><code>img</code></a> element </em>) <a class='self-link' href='#eager%40%40iframe%2Floading%40attr-value' aria-label="Permalink for eager">§</a></span></dt>
<dd>Defined in <strong title='eager is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/urls-and-fetching.html#attr-loading-eager>HTML</a></strong> </dd>
<dt id="ean_13@@BarcodeFormat@enum-value"><code class=prefix></code><span><strong><code class=webidl>"ean_13"</code></strong> (<em>value for <a href='b.html#BarcodeFormat@@@@enum'><code>BarcodeFormat</code></a> WebIDL enumeration</em>) <a class='self-link' href='#ean_13%40%40BarcodeFormat%40enum-value' aria-label="Permalink for ean_13">§</a></span></dt>
<dd>Defined in <strong title='ean_13 is defined in Accelerated Shape Detection in Images'><a href=https://wicg.github.io/shape-detection-api/#dom-barcodeformat-ean_13>Accelerated Shape Detection in Images</a></strong> </dd>
<dt id="ean_8@@BarcodeFormat@enum-value"><code class=prefix></code><span><strong><code class=webidl>"ean_8"</code></strong> (<em>value for <a href='b.html#BarcodeFormat@@@@enum'><code>BarcodeFormat</code></a> WebIDL enumeration</em>) <a class='self-link' href='#ean_8%40%40BarcodeFormat%40enum-value' aria-label="Permalink for ean_8">§</a></span></dt>
<dd>Defined in <strong title='ean_8 is defined in Accelerated Shape Detection in Images'><a href=https://wicg.github.io/shape-detection-api/#dom-barcodeformat-ean_8>Accelerated Shape Detection in Images</a></strong> </dd>
<dt id="early error@@ECMAScript@dfn"><code class=prefix></code><span><strong>early error</strong> (<em>concept for <code>ECMAScript</code> </em>) <a class='self-link' href='#early%20error%40%40ECMAScript%40dfn' aria-label="Permalink for early error">§</a></span></dt>
<dd>Defined in <strong title='early error is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/error-handling-and-language-extensions.html#early-error>ECMAScript</a></strong> </dd>
<dd>Referenced in
<a href=https://tc39.es/proposal-async-explicit-resource-management/ title='early error is referenced by ECMAScript Async Explicit Resource Management'>ECMAScript Async Explicit Resource Management</a>,
<a href=https://tc39.es/proposal-explicit-resource-management/ title='early error is referenced by ECMAScript Explicit Resource Management'>ECMAScript Explicit Resource Management</a>,
<a href=https://tc39.es/proposal-json-parse-with-source/ title='early error is referenced by JSON.parse source text access'>JSON.parse source text access</a></dd>
<dt id="Earth’s reference coordinate system@@orientation-sensor%%dfn"><code class=prefix></code><span><strong>Earth’s reference coordinate system</strong> (<em>concept</em>) <a class='self-link' href='#Earth%E2%80%99s%20reference%20coordinate%20system%40%40orientation-sensor%25%25dfn' aria-label="Permalink for Earth’s reference coordinate system">§</a></span></dt>
<dd>Defined in <strong title='Earth’s reference coordinate system is defined in Orientation Sensor'><a href=https://w3c.github.io/orientation-sensor/#earths-reference-coordinate-system>Orientation Sensor</a></strong> </dd>
<dd>Referenced in
<a href=https://w3c.github.io/deviceorientation/ title='Earth’s reference coordinate system is referenced by Device Orientation and Motion'>Device Orientation and Motion</a></dd>
<dt id="ease@@<cubic-bezier-easing-function>@value"><code class=prefix></code><span><strong><code class=css>ease</code></strong> (<em>CSS value for <a href='c.html#<cubic-bezier-easing-function>@@@@type'><code><cubic-bezier-easing-function></code></a> </em>) <a class='self-link' href='#ease%40%40%3Ccubic-bezier-easing-function%3E%40value' aria-label="Permalink for ease">§</a></span></dt>
<dd>Defined in <strong title='ease is defined in CSS Easing Functions 1'><a href=https://drafts.csswg.org/css-easing-1/#valdef-cubic-bezier-easing-function-ease>CSS Easing Functions 1</a></strong> , <strong title='ease is defined in CSS Easing Functions 2'><a href=https://drafts.csswg.org/css-easing-2/#valdef-cubic-bezier-easing-function-ease>CSS Easing Functions 2</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-2022/ title='ease is referenced by CSS Snapshot 2022'>CSS Snapshot 2022</a>,
<a href=https://drafts.csswg.org/css-2023/ title='ease is referenced by CSS Snapshot 2023'>CSS Snapshot 2023</a></dd>
<dt id="ease-in@@<cubic-bezier-easing-function>@value"><code class=prefix></code><span><strong><code class=css>ease-in</code></strong> (<em>CSS value for <a href='c.html#<cubic-bezier-easing-function>@@@@type'><code><cubic-bezier-easing-function></code></a> </em>) <a class='self-link' href='#ease-in%40%40%3Ccubic-bezier-easing-function%3E%40value' aria-label="Permalink for ease-in">§</a></span></dt>
<dd>Defined in <strong title='ease-in is defined in CSS Easing Functions 1'><a href=https://drafts.csswg.org/css-easing-1/#valdef-cubic-bezier-easing-function-ease-in>CSS Easing Functions 1</a></strong> , <strong title='ease-in is defined in CSS Easing Functions 2'><a href=https://drafts.csswg.org/css-easing-2/#valdef-cubic-bezier-easing-function-ease-in>CSS Easing Functions 2</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-2022/ title='ease-in is referenced by CSS Snapshot 2022'>CSS Snapshot 2022</a>,
<a href=https://drafts.csswg.org/css-2023/ title='ease-in is referenced by CSS Snapshot 2023'>CSS Snapshot 2023</a>,
<a href=https://drafts.csswg.org/css-values-3/ title='ease-in is referenced by CSS Values 3'>CSS Values 3</a>,
<a href=https://drafts.csswg.org/css-values-4/ title='ease-in is referenced by CSS Values 4'>CSS Values 4</a></dd>
<dt id="ease-in-out@@<cubic-bezier-easing-function>@value"><code class=prefix></code><span><strong><code class=css>ease-in-out</code></strong> (<em>CSS value for <a href='c.html#<cubic-bezier-easing-function>@@@@type'><code><cubic-bezier-easing-function></code></a> </em>) <a class='self-link' href='#ease-in-out%40%40%3Ccubic-bezier-easing-function%3E%40value' aria-label="Permalink for ease-in-out">§</a></span></dt>
<dd>Defined in <strong title='ease-in-out is defined in CSS Easing Functions 1'><a href=https://drafts.csswg.org/css-easing-1/#valdef-cubic-bezier-easing-function-ease-in-out>CSS Easing Functions 1</a></strong> , <strong title='ease-in-out is defined in CSS Easing Functions 2'><a href=https://drafts.csswg.org/css-easing-2/#valdef-cubic-bezier-easing-function-ease-in-out>CSS Easing Functions 2</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-2022/ title='ease-in-out is referenced by CSS Snapshot 2022'>CSS Snapshot 2022</a>,
<a href=https://drafts.csswg.org/css-2023/ title='ease-in-out is referenced by CSS Snapshot 2023'>CSS Snapshot 2023</a></dd>
<dt id="ease-out@@<cubic-bezier-easing-function>@value"><code class=prefix></code><span><strong><code class=css>ease-out</code></strong> (<em>CSS value for <a href='c.html#<cubic-bezier-easing-function>@@@@type'><code><cubic-bezier-easing-function></code></a> </em>) <a class='self-link' href='#ease-out%40%40%3Ccubic-bezier-easing-function%3E%40value' aria-label="Permalink for ease-out">§</a></span></dt>
<dd>Defined in <strong title='ease-out is defined in CSS Easing Functions 1'><a href=https://drafts.csswg.org/css-easing-1/#valdef-cubic-bezier-easing-function-ease-out>CSS Easing Functions 1</a></strong> , <strong title='ease-out is defined in CSS Easing Functions 2'><a href=https://drafts.csswg.org/css-easing-2/#valdef-cubic-bezier-easing-function-ease-out>CSS Easing Functions 2</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-2022/ title='ease-out is referenced by CSS Snapshot 2022'>CSS Snapshot 2022</a>,
<a href=https://drafts.csswg.org/css-2023/ title='ease-out is referenced by CSS Snapshot 2023'>CSS Snapshot 2023</a>,
<a href=https://drafts.csswg.org/css-values-3/ title='ease-out is referenced by CSS Values 3'>CSS Values 3</a>,
<a href=https://drafts.csswg.org/css-values-4/ title='ease-out is referenced by CSS Values 4'>CSS Values 4</a></dd>
<dt id="easing@@BaseComputedKeyframe@dict-member"><code class=prefix><a href='b.html#BaseComputedKeyframe@@@@dictionary'>BaseComputedKeyframe</a>.</code><span><strong><code class=webidl>easing</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#easing%40%40BaseComputedKeyframe%40dict-member' aria-label="Permalink for <a href='b.html#BaseComputedKeyframe@@@@dictionary'>BaseComputedKeyframe</a>.easing">§</a></span></dt>
<dd>Defined in <strong title='easing is defined in Web Animations'><a href=https://drafts.csswg.org/web-animations-1/#dom-basecomputedkeyframe-easing>Web Animations</a></strong> </dd>
<dt id="easing@@BaseKeyframe@dict-member"><code class=prefix><a href='b.html#BaseKeyframe@@@@dictionary'>BaseKeyframe</a>.</code><span><strong><code class=webidl>easing</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#easing%40%40BaseKeyframe%40dict-member' aria-label="Permalink for <a href='b.html#BaseKeyframe@@@@dictionary'>BaseKeyframe</a>.easing">§</a></span></dt>
<dd>Defined in <strong title='easing is defined in Web Animations'><a href=https://drafts.csswg.org/web-animations-1/#dom-basekeyframe-easing>Web Animations</a></strong> </dd>
<dt id="easing@@BasePropertyIndexedKeyframe@dict-member"><code class=prefix><a href='b.html#BasePropertyIndexedKeyframe@@@@dictionary'>BasePropertyIndexedKeyframe</a>.</code><span><strong><code class=webidl>easing</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#easing%40%40BasePropertyIndexedKeyframe%40dict-member' aria-label="Permalink for <a href='b.html#BasePropertyIndexedKeyframe@@@@dictionary'>BasePropertyIndexedKeyframe</a>.easing">§</a></span></dt>
<dd>Defined in <strong title='easing is defined in Web Animations'><a href=https://drafts.csswg.org/web-animations-1/#dom-basepropertyindexedkeyframe-easing>Web Animations</a></strong> </dd>
<dt id="easing@@EffectTiming@dict-member"><code class=prefix><a href='e.html#EffectTiming@@@@dictionary'>EffectTiming</a>.</code><span><strong><code class=webidl>easing</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#easing%40%40EffectTiming%40dict-member' aria-label="Permalink for <a href='e.html#EffectTiming@@@@dictionary'>EffectTiming</a>.easing">§</a></span></dt>
<dd>Defined in <strong title='easing is defined in Web Animations'><a href=https://drafts.csswg.org/web-animations-1/#dom-effecttiming-easing>Web Animations</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/web-animations-2/ title='easing is referenced by Web Animations 2'>Web Animations 2</a></dd>
<dt id="easing@@OptionalEffectTiming@dict-member"><code class=prefix><a href='o.html#OptionalEffectTiming@@@@dictionary'>OptionalEffectTiming</a>.</code><span><strong><code class=webidl>easing</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#easing%40%40OptionalEffectTiming%40dict-member' aria-label="Permalink for <a href='o.html#OptionalEffectTiming@@@@dictionary'>OptionalEffectTiming</a>.easing">§</a></span></dt>
<dd>Defined in <strong title='easing is defined in Web Animations'><a href=https://drafts.csswg.org/web-animations-1/#dom-optionaleffecttiming-easing>Web Animations</a></strong> </dd>
<dt id="easing function@@css-easing%%dfn"><code class=prefix></code><span><strong>easing function</strong> (<em>concept</em>) <a class='self-link' href='#easing%20function%40%40css-easing%25%25dfn' aria-label="Permalink for easing function">§</a></span></dt>
<dd>Defined in <strong title='easing function is defined in CSS Easing Functions 1'><a href=https://drafts.csswg.org/css-easing-1/#easing-function>CSS Easing Functions 1</a></strong> , <strong title='easing function is defined in CSS Easing Functions 2'><a href=https://drafts.csswg.org/css-easing-2/#easing-function>CSS Easing Functions 2</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-position-4/ title='easing function is referenced by CSS Positioned Layout 4'>CSS Positioned Layout 4</a>,
<a href=https://drafts.csswg.org/css-2022/ title='easing function is referenced by CSS Snapshot 2022'>CSS Snapshot 2022</a>,
<a href=https://drafts.csswg.org/css-2023/ title='easing function is referenced by CSS Snapshot 2023'>CSS Snapshot 2023</a>,
<a href=https://drafts.csswg.org/css-animations-2/ title='easing function is referenced by CSS Animations 2'>CSS Animations 2</a>,
<a href=https://drafts.csswg.org/css-transitions-2/ title='easing function is referenced by CSS Transitions 2'>CSS Transitions 2</a>,
<a href=https://drafts.csswg.org/css-values-4/ title='easing function is referenced by CSS Values 4'>CSS Values 4</a>,
<a href=https://drafts.csswg.org/web-animations-1/ title='easing function is referenced by Web Animations'>Web Animations</a>,
<a href=https://drafts.csswg.org/web-animations-2/ title='easing function is referenced by Web Animations 2'>Web Animations 2</a></dd>
<dd>Related terms: <em>concept</em> <a href='b.html#before flag@@easing function@dfn'>before flag</a>, <em>concept</em> <a href='i.html#input progress value@@easing function@dfn'>input progress value</a>, <em>concept</em> <a href='o.html#output progress value@@easing function@dfn'>output progress value</a></dd>
<dt id="<easing-function>@@@@type"><code class=prefix></code><span><strong><code class=css><easing-function></code></strong> (<em>CSS type</em>) <a class='self-link' href='#%3Ceasing-function%3E%40%40%40%40type' aria-label="Permalink for <easing-function>">§</a></span></dt>
<dd>Defined in <strong title='<easing-function> is defined in CSS Easing Functions 1'><a href=https://drafts.csswg.org/css-easing-1/#typedef-easing-function>CSS Easing Functions 1</a></strong> , <strong title='<easing-function> is defined in CSS Easing Functions 2'><a href=https://drafts.csswg.org/css-easing-2/#typedef-easing-function>CSS Easing Functions 2</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-animations-2/ title='<easing-function> is referenced by CSS Animations 2'>CSS Animations 2</a>,
<a href=https://drafts.csswg.org/css-transitions-1/ title='<easing-function> is referenced by CSS Transitions'>CSS Transitions</a>,
<a href=https://drafts.csswg.org/css-transitions-2/ title='<easing-function> is referenced by CSS Transitions 2'>CSS Transitions 2</a>,
<a href=https://drafts.csswg.org/css-values-3/ title='<easing-function> is referenced by CSS Values 3'>CSS Values 3</a>,
<a href=https://drafts.csswg.org/css-values-4/ title='<easing-function> is referenced by CSS Values 4'>CSS Values 4</a>,
<a href=https://drafts.csswg.org/web-animations-1/ title='<easing-function> is referenced by Web Animations'>Web Animations</a></dd>
<dd>Related terms: <em>CSS value</em> <a href='l.html#linear@@easing-function@value'><code>linear</code></a></dd>
<dt id="<east-asian-variant-values>@@@@type"><code class=prefix></code><span><strong><code class=css><east-asian-variant-values></code></strong> (<em>CSS type</em>) <a class='self-link' href='#%3Ceast-asian-variant-values%3E%40%40%40%40type' aria-label="Permalink for <east-asian-variant-values>">§</a></span></dt>
<dd>Defined in <strong title='<east-asian-variant-values> is defined in CSS Fonts 4'><a href=https://drafts.csswg.org/css-fonts-4/#east-asian-variant-values>CSS Fonts 4</a></strong> </dd>
<dt id="<east-asian-width-values>@@@@type"><code class=prefix></code><span><strong><code class=css><east-asian-width-values></code></strong> (<em>CSS type</em>) <a class='self-link' href='#%3Ceast-asian-width-values%3E%40%40%40%40type' aria-label="Permalink for <east-asian-width-values>">§</a></span></dt>
<dd>Defined in <strong title='<east-asian-width-values> is defined in CSS Fonts 4'><a href=https://drafts.csswg.org/css-fonts-4/#east-asian-width-values>CSS Fonts 4</a></strong> </dd>
<dt id="EcdhKeyDeriveParams@@@@dictionary"><code class=prefix></code><span><strong><code class=webidl>EcdhKeyDeriveParams</code></strong> (<em>WebIDL dictionary</em>) <a class='self-link' href='#EcdhKeyDeriveParams%40%40%40%40dictionary' aria-label="Permalink for EcdhKeyDeriveParams">§</a></span></dt>
<dd>Defined in <strong title='EcdhKeyDeriveParams is defined in Web Cryptography API'><a href=https://w3c.github.io/webcrypto/#dfn-EcdhKeyDeriveParams>Web Cryptography API</a></strong> </dd>
<dd>Related terms: <code>EcdhKeyDeriveParams.</code><a href='p.html#public@@EcdhKeyDeriveParams@dict-member'><code>public</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/EcdhKeyDeriveParams.html' title='EcdhKeyDeriveParams entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="EcdsaParams@@@@dictionary"><code class=prefix></code><span><strong><code class=webidl>EcdsaParams</code></strong> (<em>WebIDL dictionary</em>) <a class='self-link' href='#EcdsaParams%40%40%40%40dictionary' aria-label="Permalink for EcdsaParams">§</a></span></dt>
<dd>Defined in <strong title='EcdsaParams is defined in Web Cryptography API'><a href=https://w3c.github.io/webcrypto/#dfn-EcdsaParams>Web Cryptography API</a></strong> </dd>
<dd>Related terms: <code>EcdsaParams.</code><a href='h.html#hash@@EcdsaParams@dict-member'><code>hash</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/EcdsaParams.html' title='EcdsaParams entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="echoCancellation@@MediaTrackCapabilities@dict-member"><code class=prefix><a href='m.html#MediaTrackCapabilities@@@@dictionary'>MediaTrackCapabilities</a>.</code><span><strong><code class=webidl>echoCancellation</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#echoCancellation%40%40MediaTrackCapabilities%40dict-member' aria-label="Permalink for <a href='m.html#MediaTrackCapabilities@@@@dictionary'>MediaTrackCapabilities</a>.echoCancellation">§</a></span></dt>
<dd>Defined in <strong title='echoCancellation is defined in Media Capture and Streams'><a href=https://w3c.github.io/mediacapture-main/#dom-mediatrackcapabilities-echocancellation>Media Capture and Streams</a></strong> </dd>
<dt id="echoCancellation@@MediaTrackConstraintSet@dict-member"><code class=prefix><a href='m.html#MediaTrackConstraintSet@@@@dictionary'>MediaTrackConstraintSet</a>.</code><span><strong><code class=webidl>echoCancellation</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#echoCancellation%40%40MediaTrackConstraintSet%40dict-member' aria-label="Permalink for <a href='m.html#MediaTrackConstraintSet@@@@dictionary'>MediaTrackConstraintSet</a>.echoCancellation">§</a></span></dt>
<dd>Defined in <strong title='echoCancellation is defined in Media Capture and Streams'><a href=https://w3c.github.io/mediacapture-main/#dom-mediatrackconstraintset-echocancellation>Media Capture and Streams</a></strong> </dd>
<dt id="echoCancellation@@MediaTrackSettings@dict-member"><code class=prefix><a href='m.html#MediaTrackSettings@@@@dictionary'>MediaTrackSettings</a>.</code><span><strong><code class=webidl>echoCancellation</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#echoCancellation%40%40MediaTrackSettings%40dict-member' aria-label="Permalink for <a href='m.html#MediaTrackSettings@@@@dictionary'>MediaTrackSettings</a>.echoCancellation">§</a></span></dt>
<dd>Defined in <strong title='echoCancellation is defined in Media Capture and Streams'><a href=https://w3c.github.io/mediacapture-main/#dom-mediatracksettings-echocancellation>Media Capture and Streams</a></strong> </dd>
<dt id="echoCancellation@@MediaTrackSupportedConstraints@dict-member"><code class=prefix><a href='m.html#MediaTrackSupportedConstraints@@@@dictionary'>MediaTrackSupportedConstraints</a>.</code><span><strong><code class=webidl>echoCancellation</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#echoCancellation%40%40MediaTrackSupportedConstraints%40dict-member' aria-label="Permalink for <a href='m.html#MediaTrackSupportedConstraints@@@@dictionary'>MediaTrackSupportedConstraints</a>.echoCancellation">§</a></span></dt>
<dd>Defined in <strong title='echoCancellation is defined in Media Capture and Streams'><a href=https://w3c.github.io/mediacapture-main/#dom-mediatracksupportedconstraints-echocancellation>Media Capture and Streams</a></strong> </dd>
<dt id="echoReturnLoss@@RTCAudioSourceStats@dict-member"><code class=prefix><a href='r.html#RTCAudioSourceStats@@@@dictionary'>RTCAudioSourceStats</a>.</code><span><strong><code class=webidl>echoReturnLoss</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#echoReturnLoss%40%40RTCAudioSourceStats%40dict-member' aria-label="Permalink for <a href='r.html#RTCAudioSourceStats@@@@dictionary'>RTCAudioSourceStats</a>.echoReturnLoss">§</a></span></dt>
<dd>Defined in <strong title='echoReturnLoss is defined in WebRTC Statistics'><a href=https://w3c.github.io/webrtc-stats/#dom-rtcaudiosourcestats-echoreturnloss>WebRTC Statistics</a></strong> </dd>
<dt id="echoReturnLossEnhancement@@RTCAudioSourceStats@dict-member"><code class=prefix><a href='r.html#RTCAudioSourceStats@@@@dictionary'>RTCAudioSourceStats</a>.</code><span><strong><code class=webidl>echoReturnLossEnhancement</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#echoReturnLossEnhancement%40%40RTCAudioSourceStats%40dict-member' aria-label="Permalink for <a href='r.html#RTCAudioSourceStats@@@@dictionary'>RTCAudioSourceStats</a>.echoReturnLossEnhancement">§</a></span></dt>
<dd>Defined in <strong title='echoReturnLossEnhancement is defined in WebRTC Statistics'><a href=https://w3c.github.io/webrtc-stats/#dom-rtcaudiosourcestats-echoreturnlossenhancement>WebRTC Statistics</a></strong> </dd>
<dt id="EcKeyAlgorithm@@@@dictionary"><code class=prefix></code><span><strong><code class=webidl>EcKeyAlgorithm</code></strong> (<em>WebIDL dictionary</em>) <a class='self-link' href='#EcKeyAlgorithm%40%40%40%40dictionary' aria-label="Permalink for EcKeyAlgorithm">§</a></span></dt>
<dd>Defined in <strong title='EcKeyAlgorithm is defined in Web Cryptography API'><a href=https://w3c.github.io/webcrypto/#dfn-EcKeyAlgorithm>Web Cryptography API</a></strong> </dd>
<dd>Related terms: <code>EcKeyAlgorithm.</code><a href='n.html#namedCurve@@EcKeyAlgorithm@dict-member'><code>namedCurve</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/EcKeyAlgorithm.html' title='EcKeyAlgorithm entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="EcKeyGenParams@@@@dictionary"><code class=prefix></code><span><strong><code class=webidl>EcKeyGenParams</code></strong> (<em>WebIDL dictionary</em>) <a class='self-link' href='#EcKeyGenParams%40%40%40%40dictionary' aria-label="Permalink for EcKeyGenParams">§</a></span></dt>
<dd>Defined in <strong title='EcKeyGenParams is defined in Web Cryptography API'><a href=https://w3c.github.io/webcrypto/#dfn-EcKeyGenParams>Web Cryptography API</a></strong> </dd>
<dd>Related terms: <code>EcKeyGenParams.</code><a href='n.html#namedCurve@@EcKeyGenParams@dict-member'><code>namedCurve</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/EcKeyGenParams.html' title='EcKeyGenParams entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="EcKeyImportParams@@@@dictionary"><code class=prefix></code><span><strong><code class=webidl>EcKeyImportParams</code></strong> (<em>WebIDL dictionary</em>) <a class='self-link' href='#EcKeyImportParams%40%40%40%40dictionary' aria-label="Permalink for EcKeyImportParams">§</a></span></dt>
<dd>Defined in <strong title='EcKeyImportParams is defined in Web Cryptography API'><a href=https://w3c.github.io/webcrypto/#dfn-EcKeyImportParams>Web Cryptography API</a></strong> </dd>
<dd>Related terms: <code>EcKeyImportParams.</code><a href='n.html#namedCurve@@EcKeyImportParams@dict-member'><code>namedCurve</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/EcKeyImportParams.html' title='EcKeyImportParams entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="ECMAScript code execution contexts@@ECMAScript@dfn"><code class=prefix></code><span><strong>ECMAScript code execution contexts</strong> (<em>concept for <code>ECMAScript</code> </em>) <a class='self-link' href='#ECMAScript%20code%20execution%20contexts%40%40ECMAScript%40dfn' aria-label="Permalink for ECMAScript code execution contexts">§</a></span></dt>
<dd>Defined in <strong title='ECMAScript code execution contexts is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/executable-code-and-execution-contexts.html#ecmascript-code-execution-context>ECMAScript</a></strong> </dd>
<dd>Referenced in
<a href=https://tc39.es/proposal-json-modules/ title='ECMAScript code execution contexts is referenced by JSON modules'>JSON modules</a>,
<a href=https://tc39.es/proposal-shadowrealm/ title='ECMAScript code execution contexts is referenced by ShadowRealm API'>ShadowRealm API</a>,
<a href=https://tc39.es/proposal-source-phase-imports/ title='ECMAScript code execution contexts is referenced by Source Phase Imports'>Source Phase Imports</a></dd>
<dt id="ECMAScript language type@@ECMAScript@dfn"><code class=prefix></code><span><strong>ECMAScript language type</strong> (<em>concept for <code>ECMAScript</code> </em>) <a class='self-link' href='#ECMAScript%20language%20type%40%40ECMAScript%40dfn' aria-label="Permalink for ECMAScript language type">§</a></span></dt>
<dd>Defined in <strong title='ECMAScript language type is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-ecmascript-language-types>ECMAScript</a></strong> </dd>
<dt id="ECMAScript language value@@ECMAScript@dfn"><code class=prefix></code><span><strong>ECMAScript language value</strong> (<em>concept for <code>ECMAScript</code> </em>) <a class='self-link' href='#ECMAScript%20language%20value%40%40ECMAScript%40dfn' aria-label="Permalink for ECMAScript language value">§</a></span></dt>
<dd>Defined in <strong title='ECMAScript language value is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/ecmascript-data-types-and-values.html#sec-ecmascript-language-types>ECMAScript</a></strong> </dd>
<dd>Referenced in
<a href=https://tc39.es/ecma402/ title='ECMAScript language value is referenced by ECMAScript Internationalization API'>ECMAScript Internationalization API</a>,
<a href=https://tc39.es/proposal-arraybuffer-base64/spec/ title='ECMAScript language value is referenced by Uint8Array to/from base64'>Uint8Array to/from base64</a>,
<a href=https://tc39.es/proposal-intl-duration-format/ title='ECMAScript language value is referenced by Intl.DurationFormat'>Intl.DurationFormat</a>,
<a href=https://tc39.es/proposal-intl-locale-info/ title='ECMAScript language value is referenced by Intl Locale Info'>Intl Locale Info</a>,
<a href=https://tc39.es/proposal-iterator-helpers/ title='ECMAScript language value is referenced by Iterator Helpers'>Iterator Helpers</a>,
<a href=https://tc39.es/proposal-json-parse-with-source/ title='ECMAScript language value is referenced by JSON.parse source text access'>JSON.parse source text access</a>,
<a href=https://tc39.es/proposal-set-methods/ title='ECMAScript language value is referenced by Set methods'>Set methods</a>,
<a href=https://tc39.es/proposal-shadowrealm/ title='ECMAScript language value is referenced by ShadowRealm API'>ShadowRealm API</a>,
<a href=https://tc39.es/proposal-temporal/ title='ECMAScript language value is referenced by Temporal'>Temporal</a>,
<a href=https://wicg.github.io/turtledove/ title='ECMAScript language value is referenced by Protected Audience'>Protected Audience</a></dd>
<dt id="ECMAScript source text@@ECMAScript@dfn"><code class=prefix></code><span><strong>ECMAScript source text</strong> (<em>concept for <code>ECMAScript</code> </em>) <a class='self-link' href='#ECMAScript%20source%20text%40%40ECMAScript%40dfn' aria-label="Permalink for ECMAScript source text">§</a></span></dt>
<dd>Defined in <strong title='ECMAScript source text is defined in ECMAScript'><a href=https://tc39.es/ecma262/multipage/ecmascript-language-source-code.html#sec-source-text>ECMAScript</a></strong> </dd>
<dt id="economy@@print-color-adjust@value"><code class=prefix></code><span><strong><code class=css>economy</code></strong> (<em>CSS value for <a href='p.html#print-color-adjust@@@@property'><code>print-color-adjust</code></a> </em>) <a class='self-link' href='#economy%40%40print-color-adjust%40value' aria-label="Permalink for economy">§</a></span></dt>
<dd>Defined in <strong title='economy is defined in CSS Color Adjustment 1'><a href=https://drafts.csswg.org/css-color-adjust-1/#valdef-print-color-adjust-economy>CSS Color Adjustment 1</a></strong> </dd>
<dt id="Ed448Params@@@@dictionary"><code class=prefix></code><span><strong><code class=webidl>Ed448Params</code></strong> (<em>WebIDL dictionary</em>) <a class='self-link' href='#Ed448Params%40%40%40%40dictionary' aria-label="Permalink for Ed448Params">§</a></span></dt>
<dd>Defined in <strong title='Ed448Params is defined in Secure Curves in the Web Cryptography API'><a href=https://wicg.github.io/webcrypto-secure-curves/#dfn-Ed448Params>Secure Curves in the Web Cryptography API</a></strong> </dd>
<dd>Related terms: <code>Ed448Params.</code><a href='c.html#context@@Ed448Params@dict-member'><code>context</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/Ed448Params.html' title='Ed448Params entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="edge@@MLPaddingMode@enum-value"><code class=prefix></code><span><strong><code class=webidl>"edge"</code></strong> (<em>value for <a href='m.html#MLPaddingMode@@@@enum'><code>MLPaddingMode</code></a> WebIDL enumeration</em>) <a class='self-link' href='#edge%40%40MLPaddingMode%40enum-value' aria-label="Permalink for edge">§</a></span></dt>
<dd>Defined in <strong title='edge is defined in Web Neural Network API'><a href=https://webmachinelearning.github.io/webnn/#dom-mlpaddingmode-edge>Web Neural Network API</a></strong> </dd>
<dt id="edgeMode@@feConvolveMatrix@element-attr"><code class=prefix></code><span><strong><code class=markup>edgeMode</code></strong> (<em>markup attribute for <code>feConvolveMatrix</code> </em>) <a class='self-link' href='#edgeMode%40%40feConvolveMatrix%40element-attr' aria-label="Permalink for edgeMode">§</a></span></dt>
<dd>Defined in <strong title='edgeMode is defined in Filter Effects 1'><a href=https://drafts.fxtf.org/filter-effects-1/#element-attrdef-feconvolvematrix-edgemode>Filter Effects 1</a></strong> </dd>
<dt id="edgeMode@@feGaussianBlur@element-attr"><code class=prefix></code><span><strong><code class=markup>edgeMode</code></strong> (<em>markup attribute for <code>feGaussianBlur</code> </em>) <a class='self-link' href='#edgeMode%40%40feGaussianBlur%40element-attr' aria-label="Permalink for edgeMode">§</a></span></dt>
<dd>Defined in <strong title='edgeMode is defined in Filter Effects 1'><a href=https://drafts.fxtf.org/filter-effects-1/#element-attrdef-fegaussianblur-edgemode>Filter Effects 1</a></strong> </dd>
<dt id="edgeMode@@SVGFEConvolveMatrixElement@attribute"><code class=prefix><a href='s.html#SVGFEConvolveMatrixElement@@@@interface'>SVGFEConvolveMatrixElement</a>.</code><span><strong><code class=webidl>edgeMode</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#edgeMode%40%40SVGFEConvolveMatrixElement%40attribute' aria-label="Permalink for <a href='s.html#SVGFEConvolveMatrixElement@@@@interface'>SVGFEConvolveMatrixElement</a>.edgeMode">§</a></span></dt>
<dd>Defined in <strong title='edgeMode is defined in Filter Effects 1'><a href=https://drafts.fxtf.org/filter-effects-1/#dom-svgfeconvolvematrixelement-edgemode>Filter Effects 1</a></strong> </dd>
<dt id="edgeMode@@SVGFEGaussianBlurElement@attribute"><code class=prefix><a href='s.html#SVGFEGaussianBlurElement@@@@interface'>SVGFEGaussianBlurElement</a>.</code><span><strong><code class=webidl>edgeMode</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#edgeMode%40%40SVGFEGaussianBlurElement%40attribute' aria-label="Permalink for <a href='s.html#SVGFEGaussianBlurElement@@@@interface'>SVGFEGaussianBlurElement</a>.edgeMode">§</a></span></dt>
<dd>Defined in <strong title='edgeMode is defined in Filter Effects 1'><a href=https://drafts.fxtf.org/filter-effects-1/#dom-svgfegaussianblurelement-edgemode>Filter Effects 1</a></strong> </dd>
<dt id="editContext@@HTMLElement@attribute"><code class=prefix><a href='h.html#HTMLElement@@@@interface'>HTMLElement</a>.</code><span><strong><code class=webidl>editContext</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#editContext%40%40HTMLElement%40attribute' aria-label="Permalink for <a href='h.html#HTMLElement@@@@interface'>HTMLElement</a>.editContext">§</a></span></dt>
<dd>Defined in <strong title='editContext is defined in EditContext API'><a href=https://w3c.github.io/edit-context/#dom-htmlelement-editcontext>EditContext API</a></strong> </dd>
<dt id="EditContext@@@@interface"><code class=prefix></code><span><strong><code class=webidl>EditContext</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#EditContext%40%40%40%40interface' aria-label="Permalink for EditContext">§</a></span></dt>
<dd>Defined in <strong title='EditContext is defined in EditContext API'><a href=https://w3c.github.io/edit-context/#dom-editcontext>EditContext API</a></strong> </dd>
<dd>Related terms: <code>EditContext.</code><a href='c.html#characterBoundsRangeStart@@EditContext@attribute'><code>characterBoundsRangeStart</code></a>, <code>EditContext.</code><a href='o.html#oncharacterboundsupdate@@EditContext@attribute'><code>oncharacterboundsupdate</code></a>, <code>EditContext.</code><a href='o.html#oncompositionend@@EditContext@attribute'><code>oncompositionend</code></a>, <code>EditContext.</code><a href='o.html#oncompositionstart@@EditContext@attribute'><code>oncompositionstart</code></a>, <code>EditContext.</code><a href='o.html#ontextformatupdate@@EditContext@attribute'><code>ontextformatupdate</code></a>, <code>EditContext.</code><a href='o.html#ontextupdate@@EditContext@attribute'><code>ontextupdate</code></a>, <code>EditContext.</code><a href='s.html#selectionEnd@@EditContext@attribute'><code>selectionEnd</code></a>, <code>EditContext.</code><a href='s.html#selectionStart@@EditContext@attribute'><code>selectionStart</code></a>, <code>EditContext.</code><a href='t.html#text@@EditContext@attribute'><code>text</code></a>, <em>WebIDL constructor</em> <a href='c.html#constructor()@@EditContext@constructor'><code>constructor()</code></a>, <code>EditContext.</code><a href='a.html#attachedElements()@@EditContext@method'><code>attachedElements()</code></a>, <code>EditContext.</code><a href='c.html#characterBounds()@@EditContext@method'><code>characterBounds()</code></a>, <code>EditContext.</code><a href='u.html#updateCharacterBounds()@@EditContext@method'><code>updateCharacterBounds()</code></a>, <code>EditContext.</code><a href='u.html#updateControlBounds()@@EditContext@method'><code>updateControlBounds()</code></a>, <code>EditContext.</code><a href='u.html#updateSelection()@@EditContext@method'><code>updateSelection()</code></a>, <code>EditContext.</code><a href='u.html#updateSelectionBounds()@@EditContext@method'><code>updateSelectionBounds()</code></a>, <code>EditContext.</code><a href='u.html#updateText()@@EditContext@method'><code>updateText()</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/EditContext.html' title='EditContext entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="EditContext editing host@@edit-context%%dfn"><code class=prefix></code><span><strong>EditContext editing host</strong> (<em>concept</em>) <a class='self-link' href='#EditContext%20editing%20host%40%40edit-context%25%25dfn' aria-label="Permalink for EditContext editing host">§</a></span></dt>
<dd>Defined in <strong title='EditContext editing host is defined in EditContext API'><a href=https://w3c.github.io/edit-context/#dfn-editcontext-editing-host>EditContext API</a></strong> </dd>
<dd>Referenced in
<a href=https://w3c.github.io/editing/docs/execCommand/ title='EditContext editing host is referenced by execCommand'>execCommand</a>,
<a href=https://w3c.github.io/input-events/ title='EditContext editing host is referenced by Input Events 2'>Input Events 2</a></dd>
<dt id="EditContextInit@@@@dictionary"><code class=prefix></code><span><strong><code class=webidl>EditContextInit</code></strong> (<em>WebIDL dictionary</em>) <a class='self-link' href='#EditContextInit%40%40%40%40dictionary' aria-label="Permalink for EditContextInit">§</a></span></dt>
<dd>Defined in <strong title='EditContextInit is defined in EditContext API'><a href=https://w3c.github.io/edit-context/#dom-editcontextinit>EditContext API</a></strong> </dd>
<dd>Related terms: <code>EditContextInit.</code><a href='s.html#selectionEnd@@EditContextInit@dict-member'><code>selectionEnd</code></a>, <code>EditContextInit.</code><a href='s.html#selectionStart@@EditContextInit@dict-member'><code>selectionStart</code></a>, <code>EditContextInit.</code><a href='t.html#text@@EditContextInit@dict-member'><code>text</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/EditContextInit.html' title='EditContextInit entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="editing host@@html%%dfn"><code class=prefix></code><span><strong>editing host</strong> (<em>concept</em>) <a class='self-link' href='#editing%20host%40%40html%25%25dfn' aria-label="Permalink for editing host">§</a></span></dt>
<dd>Defined in <strong title='editing host is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/interaction.html#editing-host>HTML</a></strong> </dd>
<dd>Referenced in
<a href=https://w3c.github.io/editing/docs/execCommand/ title='editing host is referenced by execCommand'>execCommand</a>,
<a href=https://w3c.github.io/clipboard-apis/ title='editing host is referenced by Clipboard API and events'>Clipboard API and events</a>,
<a href=https://drafts.csswg.org/css-scroll-anchoring-1/ title='editing host is referenced by CSS Scroll Anchoring 1'>CSS Scroll Anchoring 1</a>,
<a href=https://w3c.github.io/edit-context/ title='editing host is referenced by EditContext API'>EditContext API</a>,
<a href=https://w3c.github.io/input-events/ title='editing host is referenced by Input Events 2'>Input Events 2</a>,
<a href=https://w3c.github.io/selection-api/ title='editing host is referenced by Selection API'>Selection API</a>,
<a href=https://w3c.github.io/virtual-keyboard/ title='editing host is referenced by VirtualKeyboard API'>VirtualKeyboard API</a></dd>
<dt id="Editor’s Draft@@w3c-process%%dfn"><code class=prefix></code><span><strong>Editor’s Draft</strong> (<em>concept</em>) <a class='self-link' href='#Editor%E2%80%99s%20Draft%40%40w3c-process%25%25dfn' aria-label="Permalink for Editor’s Draft">§</a></span></dt>
<dd>Defined in <strong title='Editor’s Draft is defined in W3C Process Document'><a href=https://www.w3.org/policies/process/#editors-draft>W3C Process Document</a></strong> </dd>
<dt id="Editor’s Draft@@css%%dfn"><code class=prefix></code><span><strong>Editor’s Draft</strong> (<em>concept</em>) <a class='self-link' href='#Editor%E2%80%99s%20Draft%40%40css%25%25dfn' aria-label="Permalink for Editor’s Draft">§</a></span></dt>
<dd>Defined in <strong title='Editor’s Draft is defined in CSS Snapshot 2022'><a href=https://drafts.csswg.org/css-2022/#editors-draft>CSS Snapshot 2022</a></strong> , <strong title='Editor’s Draft is defined in CSS Snapshot 2023'><a href=https://drafts.csswg.org/css-2023/#editors-draft>CSS Snapshot 2023</a></strong> </dd>
<dt id="effect@@Animation@attribute"><code class=prefix><a href='a.html#Animation@@@@interface'>Animation</a>.</code><span><strong><code class=webidl>effect</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#effect%40%40Animation%40attribute' aria-label="Permalink for <a href='a.html#Animation@@@@interface'>Animation</a>.effect">§</a></span></dt>
<dd>Defined in <strong title='effect is defined in Web Animations'><a href=https://drafts.csswg.org/web-animations-1/#dom-animation-effect>Web Animations</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-animations-2/ title='effect is referenced by CSS Animations 2'>CSS Animations 2</a></dd>
<dt id="effect target@@keyframe effect@dfn"><code class=prefix></code><span><strong>effect target</strong> (<em>concept for <code>keyframe effect</code> </em>) <a class='self-link' href='#effect%20target%40%40keyframe%20effect%40dfn' aria-label="Permalink for effect target">§</a></span></dt>
<dd>Defined in <strong title='effect target is defined in Web Animations'><a href=https://drafts.csswg.org/web-animations-1/#keyframe-effect-effect-target>Web Animations</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-view-transitions-1/ title='effect target is referenced by CSS View Transitions 1'>CSS View Transitions 1</a></dd>
<dd>Related terms: <em>concept</em> <a href='t.html#target element@@effect target@dfn'>target element</a>, <em>concept</em> <a href='t.html#target pseudo-selector@@effect target@dfn'>target pseudo-selector</a></dd>
<dt id="effectAllowed@@DataTransfer@attribute"><code class=prefix><a href='d.html#DataTransfer@@@@interface'>DataTransfer</a>.</code><span><strong><code class=webidl>effectAllowed</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#effectAllowed%40%40DataTransfer%40attribute' aria-label="Permalink for <a href='d.html#DataTransfer@@@@interface'>DataTransfer</a>.effectAllowed">§</a></span></dt>
<dd>Defined in <strong title='effectAllowed is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/dnd.html#dom-datatransfer-effectallowed>HTML</a></strong> </dd>
<dt id="EffectCallback@@@@callback"><code class=prefix></code><span><strong><code class=webidl>EffectCallback</code></strong> (<em>WebIDL callback</em>) <a class='self-link' href='#EffectCallback%40%40%40%40callback' aria-label="Permalink for EffectCallback">§</a></span></dt>
<dd>Defined in <strong title='EffectCallback is defined in Web Animations 2'><a href=https://drafts.csswg.org/web-animations-2/#callbackdef-effectcallback>Web Animations 2</a></strong> </dd>
<dt id="effective@@credential@dfn"><code class=prefix></code><span><strong>effective</strong> (<em>concept for <a href='c.html#credential@@credential-management%25%25dfn'>credential</a> </em>) <a class='self-link' href='#effective%40%40credential%40dfn' aria-label="Permalink for effective">§</a></span></dt>
<dd>Defined in <strong title='effective is defined in Credential Management 1'><a href=https://w3c.github.io/webappsec-credential-management/#credential-effective>Credential Management 1</a></strong> </dd>
<dt id="effective buffer binding size@@webgpu%%abstract-op"><code class=prefix></code><span><strong>effective buffer binding size</strong> (<em>algorithm</em>) <a class='self-link' href='#effective%20buffer%20binding%20size%40%40webgpu%25%25abstract-op' aria-label="Permalink for effective buffer binding size">§</a></span></dt>
<dd>Defined in <strong title='effective buffer binding size is defined in WebGPU'><a href=https://gpuweb.github.io/gpuweb/#abstract-opdef-effective-buffer-binding-size>WebGPU</a></strong> </dd>
<dd>Referenced in
<a href=https://gpuweb.github.io/gpuweb/wgsl/ title='effective buffer binding size is referenced by WebGPU Shading Language'>WebGPU Shading Language</a></dd>
<dt id="effective directive@@violation@dfn"><code class=prefix></code><span><strong>effective directive</strong> (<em>concept for <a href='v.html#violation@@CSP%25%25dfn'>violation</a> </em>) <a class='self-link' href='#effective%20directive%40%40violation%40dfn' aria-label="Permalink for effective directive">§</a></span></dt>
<dd>Defined in <strong title='effective directive is defined in Content Security Policy 3'><a href=https://w3c.github.io/webappsec-csp/#violation-effective-directive>Content Security Policy 3</a></strong> </dd>
<dt id="effective directive@@request@dfn"><code class=prefix></code><span><strong>effective directive</strong> (<em>concept for <a href='r.html#request@@fetch%25%25dfn'>request</a> </em>) <a class='self-link' href='#effective%20directive%40%40request%40dfn' aria-label="Permalink for effective directive">§</a></span></dt>
<dd>Defined in <strong title='effective directive is defined in Content Security Policy 3'><a href=https://w3c.github.io/webappsec-csp/#request-effective-directive>Content Security Policy 3</a></strong> </dd>
<dt id="effective directive value@@csp-embedded-enforcement%%dfn"><code class=prefix></code><span><strong>effective directive value</strong> (<em>concept</em>) <a class='self-link' href='#effective%20directive%20value%40%40csp-embedded-enforcement%25%25dfn' aria-label="Permalink for effective directive value">§</a></span></dt>
<dd>Defined in <strong title='effective directive value is defined in Content Security Policy: Embedded Enforcement'><a href=https://w3c.github.io/webappsec-cspee/#effective-directive-value>Content Security Policy: Embedded Enforcement</a></strong> </dd>
<dt id="effective domain@@html%%dfn"><code class=prefix></code><span><strong>effective domain</strong> (<em>concept</em>) <a class='self-link' href='#effective%20domain%40%40html%25%25dfn' aria-label="Permalink for effective domain">§</a></span></dt>
<dd>Defined in <strong title='effective domain is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/browsers.html#concept-origin-effective-domain>HTML</a></strong> </dd>
<dd>Referenced in
<a href=https://w3c.github.io/webauthn/ title='effective domain is referenced by Web Authentication'>Web Authentication</a></dd>
<dt id="effective enabled permissions@@fenced frame config@dfn"><code class=prefix></code><span><strong>effective enabled permissions</strong> (<em>concept for <a href='f.html#fenced frame config@@fenced-frame%25%25dfn'>fenced frame config</a> </em>) <a class='self-link' href='#effective%20enabled%20permissions%40%40fenced%20frame%20config%40dfn' aria-label="Permalink for effective enabled permissions">§</a></span></dt>
<dd>Defined in <strong title='effective enabled permissions is defined in Fenced Frame'><a href=https://wicg.github.io/fenced-frame/#fenced-frame-config-effective-enabled-permissions>Fenced Frame</a></strong> </dd>
<dd>Referenced in
<a href=https://wicg.github.io/turtledove/ title='effective enabled permissions is referenced by Protected Audience'>Protected Audience</a></dd>
<dt id="effective enabled permissions@@fenced frame config instance@dfn"><code class=prefix></code><span><strong>effective enabled permissions</strong> (<em>concept for <a href='f.html#fenced frame config instance@@fenced-frame%25%25dfn'>fenced frame config instance</a> </em>) <a class='self-link' href='#effective%20enabled%20permissions%40%40fenced%20frame%20config%20instance%40dfn' aria-label="Permalink for effective enabled permissions">§</a></span></dt>
<dd>Defined in <strong title='effective enabled permissions is defined in Fenced Frame'><a href=https://wicg.github.io/fenced-frame/#fenced-frame-config-instance-effective-enabled-permissions>Fenced Frame</a></strong> </dd>
<dt id="effective media volume@@HTMLMediaElement@dfn"><code class=prefix></code><span><strong>effective media volume</strong> (<em>concept for <a href='h.html#HTMLMediaElement@@@@interface'><code>HTMLMediaElement</code></a> </em>) <a class='self-link' href='#effective%20media%20volume%40%40HTMLMediaElement%40dfn' aria-label="Permalink for effective media volume">§</a></span></dt>
<dd>Defined in <strong title='effective media volume is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/media.html#effective-media-volume>HTML</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/selectors-4/ title='effective media volume is referenced by Selectors 4'>Selectors 4</a></dd>
<dt id="effective overload set@@webidl%%dfn"><code class=prefix></code><span><strong>effective overload set</strong> (<em>concept</em>) <a class='self-link' href='#effective%20overload%20set%40%40webidl%25%25dfn' aria-label="Permalink for effective overload set">§</a></span></dt>
<dd>Defined in <strong title='effective overload set is defined in Web IDL'><a href=https://webidl.spec.whatwg.org/#dfn-effective-overload-set>Web IDL</a></strong> </dd>
<dt id="effective sandboxing flags@@fenced frame config@dfn"><code class=prefix></code><span><strong>effective sandboxing flags</strong> (<em>concept for <a href='f.html#fenced frame config@@fenced-frame%25%25dfn'>fenced frame config</a> </em>) <a class='self-link' href='#effective%20sandboxing%20flags%40%40fenced%20frame%20config%40dfn' aria-label="Permalink for effective sandboxing flags">§</a></span></dt>
<dd>Defined in <strong title='effective sandboxing flags is defined in Fenced Frame'><a href=https://wicg.github.io/fenced-frame/#fenced-frame-config-effective-sandboxing-flags>Fenced Frame</a></strong> </dd>
<dd>Referenced in
<a href=https://wicg.github.io/turtledove/ title='effective sandboxing flags is referenced by Protected Audience'>Protected Audience</a></dd>
<dt id="effective sandboxing flags@@fenced frame config instance@dfn"><code class=prefix></code><span><strong>effective sandboxing flags</strong> (<em>concept for <a href='f.html#fenced frame config instance@@fenced-frame%25%25dfn'>fenced frame config instance</a> </em>) <a class='self-link' href='#effective%20sandboxing%20flags%40%40fenced%20frame%20config%20instance%40dfn' aria-label="Permalink for effective sandboxing flags">§</a></span></dt>
<dd>Defined in <strong title='effective sandboxing flags is defined in Fenced Frame'><a href=https://wicg.github.io/fenced-frame/#fenced-frame-config-instance-effective-sandboxing-flags>Fenced Frame</a></strong> </dd>
<dt id="effective visual size@@largest-contentful-paint%%dfn"><code class=prefix></code><span><strong>effective visual size</strong> (<em>concept</em>) <a class='self-link' href='#effective%20visual%20size%40%40largest-contentful-paint%25%25dfn' aria-label="Permalink for effective visual size">§</a></span></dt>
<dd>Defined in <strong title='effective visual size is defined in Largest Contentful Paint'><a href=https://w3c.github.io/largest-contentful-paint/#effective-visual-size>Largest Contentful Paint</a></strong> </dd>
<dt id="effective zoom@@css-viewport%%dfn"><code class=prefix></code><span><strong>effective zoom</strong> (<em>concept</em>) <a class='self-link' href='#effective%20zoom%40%40css-viewport%25%25dfn' aria-label="Permalink for effective zoom">§</a></span></dt>
<dd>Defined in <strong title='effective zoom is defined in CSS Viewport 1'><a href=https://drafts.csswg.org/css-viewport/#effective-zoom>CSS Viewport 1</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/cssom-view-1/ title='effective zoom is referenced by CSSOM View'>CSSOM View</a></dd>
<dt id="EffectiveConnectionType@@@@enum"><code class=prefix></code><span><strong><code class=webidl>EffectiveConnectionType</code></strong> (<em>WebIDL enumeration</em>) <a class='self-link' href='#EffectiveConnectionType%40%40%40%40enum' aria-label="Permalink for EffectiveConnectionType">§</a></span></dt>
<dd>Defined in <strong title='EffectiveConnectionType is defined in Network Information API'><a href=https://wicg.github.io/netinfo/#dom-effectiveconnectiontype>Network Information API</a></strong> </dd>
<dd>Related terms: <em>value</em> <a href='other.html#2g@@EffectiveConnectionType@enum-value'><code>2g</code></a>, <em>value</em> <a href='other.html#3g@@EffectiveConnectionType@enum-value'><code>3g</code></a>, <em>value</em> <a href='other.html#4g@@EffectiveConnectionType@enum-value'><code>4g</code></a>, <em>value</em> <a href='s.html#slow-2g@@EffectiveConnectionType@enum-value'><code>slow-2g</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/EffectiveConnectionType.html' title='EffectiveConnectionType entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="effectiveDirective@@CSPViolationReportBody@attribute"><code class=prefix><a href='c.html#CSPViolationReportBody@@@@interface'>CSPViolationReportBody</a>.</code><span><strong><code class=webidl>effectiveDirective</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#effectiveDirective%40%40CSPViolationReportBody%40attribute' aria-label="Permalink for <a href='c.html#CSPViolationReportBody@@@@interface'>CSPViolationReportBody</a>.effectiveDirective">§</a></span></dt>
<dd>Defined in <strong title='effectiveDirective is defined in Content Security Policy 3'><a href=https://w3c.github.io/webappsec-csp/#dom-cspviolationreportbody-effectivedirective>Content Security Policy 3</a></strong> </dd>
<dt id="effectiveDirective@@SecurityPolicyViolationEvent@attribute"><code class=prefix><a href='s.html#SecurityPolicyViolationEvent@@@@interface'>SecurityPolicyViolationEvent</a>.</code><span><strong><code class=webidl>effectiveDirective</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#effectiveDirective%40%40SecurityPolicyViolationEvent%40attribute' aria-label="Permalink for <a href='s.html#SecurityPolicyViolationEvent@@@@interface'>SecurityPolicyViolationEvent</a>.effectiveDirective">§</a></span></dt>
<dd>Defined in <strong title='effectiveDirective is defined in Content Security Policy 3'><a href=https://w3c.github.io/webappsec-csp/#dom-securitypolicyviolationevent-effectivedirective>Content Security Policy 3</a></strong> </dd>
<dt id="effectiveDirective@@SecurityPolicyViolationEventInit@dict-member"><code class=prefix><a href='s.html#SecurityPolicyViolationEventInit@@@@dictionary'>SecurityPolicyViolationEventInit</a>.</code><span><strong><code class=webidl>effectiveDirective</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#effectiveDirective%40%40SecurityPolicyViolationEventInit%40dict-member' aria-label="Permalink for <a href='s.html#SecurityPolicyViolationEventInit@@@@dictionary'>SecurityPolicyViolationEventInit</a>.effectiveDirective">§</a></span></dt>
<dd>Defined in <strong title='effectiveDirective is defined in Content Security Policy 3'><a href=https://w3c.github.io/webappsec-csp/#dom-securitypolicyviolationeventinit-effectivedirective>Content Security Policy 3</a></strong> </dd>
<dt id="effectiveType@@NetworkInformation@attribute"><code class=prefix><a href='n.html#NetworkInformation@@@@interface'>NetworkInformation</a>.</code><span><strong><code class=webidl>effectiveType</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#effectiveType%40%40NetworkInformation%40attribute' aria-label="Permalink for <a href='n.html#NetworkInformation@@@@interface'>NetworkInformation</a>.effectiveType">§</a></span></dt>
<dd>Defined in <strong title='effectiveType is defined in Network Information API'><a href=https://wicg.github.io/netinfo/#dom-networkinformation-effectivetype>Network Information API</a></strong> </dd>
<dt id="effects@@GamepadHapticActuator@attribute"><code class=prefix><a href='g.html#GamepadHapticActuator@@@@interface'>GamepadHapticActuator</a>.</code><span><strong><code class=webidl>effects</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#effects%40%40GamepadHapticActuator%40attribute' aria-label="Permalink for <a href='g.html#GamepadHapticActuator@@@@interface'>GamepadHapticActuator</a>.effects">§</a></span></dt>
<dd>Defined in <strong title='effects is defined in Gamepad'><a href=https://w3c.github.io/gamepad/#dom-gamepadhapticactuator-effects>Gamepad</a></strong> </dd>
<dt id="EffectTiming@@@@dictionary"><code class=prefix></code><span><strong><code class=webidl>EffectTiming</code></strong> (<em>WebIDL dictionary</em>) <a class='self-link' href='#EffectTiming%40%40%40%40dictionary' aria-label="Permalink for EffectTiming">§</a></span></dt>
<dd>Defined in <strong title='EffectTiming is defined in Web Animations'><a href=https://drafts.csswg.org/web-animations-1/#dictdef-effecttiming>Web Animations</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.css-houdini.org/css-animationworklet-1/ title='EffectTiming is referenced by CSS Animation Worklet API'>CSS Animation Worklet API</a>,
<a href=https://drafts.csswg.org/web-animations-2/ title='EffectTiming is referenced by Web Animations 2'>Web Animations 2</a></dd>
<dd>Related terms: <code>undefined</code><a href='d.html#delay@@EffectTiming@dict-member'><code>delay</code></a>, <code>EffectTiming.</code><a href='d.html#direction@@EffectTiming@dict-member'><code>direction</code></a>, <code>undefined</code><a href='d.html#duration@@EffectTiming@dict-member'><code>duration</code></a>, <code>EffectTiming.</code><a href='e.html#easing@@EffectTiming@dict-member'><code>easing</code></a>, <code>undefined</code><a href='e.html#endDelay@@EffectTiming@dict-member'><code>endDelay</code></a>, <code>EffectTiming.</code><a href='f.html#fill@@EffectTiming@dict-member'><code>fill</code></a>, <code>EffectTiming.</code><a href='i.html#iterations@@EffectTiming@dict-member'><code>iterations</code></a>, <code>EffectTiming.</code><a href='i.html#iterationStart@@EffectTiming@dict-member'><code>iterationStart</code></a>, <code>EffectTiming.</code><a href='p.html#playbackRate@@EffectTiming@dict-member'><code>playbackRate</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/EffectTiming.html' title='EffectTiming entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="either@@interpolation sampling@dfn"><code class=prefix></code><span><strong>either</strong> (<em>concept for <a href='i.html#interpolation sampling@@WGSL%25%25dfn'>interpolation sampling</a> </em>) <a class='self-link' href='#either%40%40interpolation%20sampling%40dfn' aria-label="Permalink for either">§</a></span></dt>
<dd>Defined in <strong title='either is defined in WebGPU Shading Language'><a href=https://gpuweb.github.io/gpuweb/wgsl/#interpolation-sampling-either>WebGPU Shading Language</a></strong> </dd>
<dt id="eject@@SmartCardDisposition@enum-value"><code class=prefix></code><span><strong><code class=webidl>"eject"</code></strong> (<em>value for <a href='s.html#SmartCardDisposition@@@@enum'><code>SmartCardDisposition</code></a> WebIDL enumeration</em>) <a class='self-link' href='#eject%40%40SmartCardDisposition%40enum-value' aria-label="Permalink for eject">§</a></span></dt>
<dd>Defined in <strong title='eject is defined in Web Smart Card API'><a href=https://wicg.github.io/web-smart-card/#dom-smartcarddisposition-eject>Web Smart Card API</a></strong> </dd>
<dt id="elapsedTime@@AnimationEvent@attribute"><code class=prefix><a href='a.html#AnimationEvent@@@@interface'>AnimationEvent</a>.</code><span><strong><code class=webidl>elapsedTime</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#elapsedTime%40%40AnimationEvent%40attribute' aria-label="Permalink for <a href='a.html#AnimationEvent@@@@interface'>AnimationEvent</a>.elapsedTime">§</a></span></dt>
<dd>Defined in <strong title='elapsedTime is defined in CSS Animations 1'><a href=https://drafts.csswg.org/css-animations-1/#dom-animationevent-elapsedtime>CSS Animations 1</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-animations-2/ title='elapsedTime is referenced by CSS Animations 2'>CSS Animations 2</a>,
<a href=https://drafts.csswg.org/css-transitions-1/ title='elapsedTime is referenced by CSS Transitions'>CSS Transitions</a></dd>
<dt id="elapsedTime@@AnimationEventInit@dict-member"><code class=prefix><a href='a.html#AnimationEventInit@@@@dictionary'>AnimationEventInit</a>.</code><span><strong><code class=webidl>elapsedTime</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#elapsedTime%40%40AnimationEventInit%40dict-member' aria-label="Permalink for <a href='a.html#AnimationEventInit@@@@dictionary'>AnimationEventInit</a>.elapsedTime">§</a></span></dt>
<dd>Defined in <strong title='elapsedTime is defined in CSS Animations 1'><a href=https://drafts.csswg.org/css-animations-1/#dom-animationeventinit-elapsedtime>CSS Animations 1</a></strong> </dd>
<dt id="elapsedTime@@SpeechSynthesisEvent@attribute"><code class=prefix><a href='s.html#SpeechSynthesisEvent@@@@interface'>SpeechSynthesisEvent</a>.</code><span><strong><code class=webidl>elapsedTime</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#elapsedTime%40%40SpeechSynthesisEvent%40attribute' aria-label="Permalink for <a href='s.html#SpeechSynthesisEvent@@@@interface'>SpeechSynthesisEvent</a>.elapsedTime">§</a></span></dt>
<dd>Defined in <strong title='elapsedTime is defined in Web Speech API'><a href=https://webaudio.github.io/web-speech-api/#dom-speechsynthesisevent-elapsedtime>Web Speech API</a></strong> </dd>
<dt id="elapsedTime@@SpeechSynthesisEventInit@dict-member"><code class=prefix><a href='s.html#SpeechSynthesisEventInit@@@@dictionary'>SpeechSynthesisEventInit</a>.</code><span><strong><code class=webidl>elapsedTime</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#elapsedTime%40%40SpeechSynthesisEventInit%40dict-member' aria-label="Permalink for <a href='s.html#SpeechSynthesisEventInit@@@@dictionary'>SpeechSynthesisEventInit</a>.elapsedTime">§</a></span></dt>
<dd>Defined in <strong title='elapsedTime is defined in Web Speech API'><a href=https://webaudio.github.io/web-speech-api/#dom-speechsynthesiseventinit-elapsedtime>Web Speech API</a></strong> </dd>
<dt id="elapsedTime@@TransitionEvent@attribute"><code class=prefix><a href='t.html#TransitionEvent@@@@interface'>TransitionEvent</a>.</code><span><strong><code class=webidl>elapsedTime</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#elapsedTime%40%40TransitionEvent%40attribute' aria-label="Permalink for <a href='t.html#TransitionEvent@@@@interface'>TransitionEvent</a>.elapsedTime">§</a></span></dt>
<dd>Defined in <strong title='elapsedTime is defined in CSS Transitions'><a href=https://drafts.csswg.org/css-transitions-1/#Events-TransitionEvent-elapsedTime>CSS Transitions</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-transitions-2/ title='elapsedTime is referenced by CSS Transitions 2'>CSS Transitions 2</a></dd>
<dt id="elapsedTime@@TransitionEventInit@dict-member"><code class=prefix><a href='t.html#TransitionEventInit@@@@dictionary'>TransitionEventInit</a>.</code><span><strong><code class=webidl>elapsedTime</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#elapsedTime%40%40TransitionEventInit%40dict-member' aria-label="Permalink for <a href='t.html#TransitionEventInit@@@@dictionary'>TransitionEventInit</a>.elapsedTime">§</a></span></dt>
<dd>Defined in <strong title='elapsedTime is defined in CSS Transitions'><a href=https://drafts.csswg.org/css-transitions-1/#dom-transitioneventinit-elapsedtime>CSS Transitions</a></strong> </dd>
<dt id="elected groups@@w3c-process%%dfn"><code class=prefix></code><span><strong>elected groups</strong> (<em>concept</em>) <a class='self-link' href='#elected%20groups%40%40w3c-process%25%25dfn' aria-label="Permalink for elected groups">§</a></span></dt>
<dd>Defined in <strong title='elected groups is defined in W3C Process Document'><a href=https://www.w3.org/policies/process/#elected-group>W3C Process Document</a></strong> </dd>
<dt id="[[Element]]@@CropTarget@attribute"><code class=prefix><a href='c.html#CropTarget@@@@interface'>CropTarget</a>.</code><span><strong><code class=webidl>[[Element]]</code></strong> (<em>internal slot</em>) <a class='self-link' href='#%5B%5BElement%5D%5D%40%40CropTarget%40attribute' aria-label="Permalink for <a href='c.html#CropTarget@@@@interface'>CropTarget</a>.[[Element]]">§</a></span></dt>
<dd>Defined in <strong title='[[Element]] is defined in Region Capture'><a href=https://w3c.github.io/mediacapture-region/#dfn-element>Region Capture</a></strong> </dd>
<dt id="Element@@@@interface"><code class=prefix></code><span><strong><code class=webidl>Element</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#Element%40%40%40%40interface' aria-label="Permalink for Element">§</a></span></dt>
<dd>Defined in <strong title='Element is defined in DOM'><a href=https://dom.spec.whatwg.org/#element>DOM</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.css-houdini.org/font-metrics-api-1/ title='Element is referenced by Font Metrics API 1'>Font Metrics API 1</a>,
<a href=https://drafts.csswg.org/css-position-4/ title='Element is referenced by CSS Positioned Layout 4'>CSS Positioned Layout 4</a>,
<a href=https://fullscreen.spec.whatwg.org/ title='Element is referenced by Fullscreen API'>Fullscreen API</a>,
<a href=https://screen-share.github.io/element-capture/ title='Element is referenced by Element Capture'>Element Capture</a>,
<a href=https://w3c.github.io/editing/docs/execCommand/ title='Element is referenced by execCommand'>execCommand</a>,
<a href=https://w3c.github.io/long-animation-frames/ title='Element is referenced by Long Animation Frames API'>Long Animation Frames API</a>,
<a href=https://w3c.github.io/mediacapture-surface-control/ title='Element is referenced by Captured Surface Control'>Captured Surface Control</a>,
<a href=https://wicg.github.io/csp-next/scripting-policy.html title='Element is referenced by Scripting Policy'>Scripting Policy</a>,
<a href=https://wicg.github.io/element-timing/ title='Element is referenced by Element Timing API'>Element Timing API</a>,
<a href=https://wicg.github.io/fenced-frame/ title='Element is referenced by Fenced Frame'>Fenced Frame</a>,
<a href=https://wicg.github.io/ink-enhancement/ title='Element is referenced by Ink API'>Ink API</a>,
<a href=https://wicg.github.io/layout-instability/ title='Element is referenced by Layout Instability'>Layout Instability</a>,
<a href=https://wicg.github.io/nav-speculation/speculation-rules.html title='Element is referenced by Speculation Rules'>Speculation Rules</a>,
<a href=https://wicg.github.io/sanitizer-api/ title='Element is referenced by HTML Sanitizer API'>HTML Sanitizer API</a>,
<a href=https://w3c.github.io/webappsec-csp/ title='Element is referenced by Content Security Policy 3'>Content Security Policy 3</a>,
<a href=https://drafts.csswg.org/css-nav-1/ title='Element is referenced by CSS Spatial Navigation 1'>CSS Spatial Navigation 1</a>,
<a href=https://drafts.csswg.org/css-overflow-5/ title='Element is referenced by CSS Overflow 5'>CSS Overflow 5</a>,
<a href=https://drafts.csswg.org/css-pseudo-4/ title='Element is referenced by CSS Pseudo-Elements 4'>CSS Pseudo-Elements 4</a>,
<a href=https://drafts.csswg.org/css-regions-1/ title='Element is referenced by CSS Regions 1'>CSS Regions 1</a>,
<a href=https://drafts.csswg.org/css-shadow-parts-1/ title='Element is referenced by CSS Shadow Parts'>CSS Shadow Parts</a>,
<a href=https://drafts.css-houdini.org/css-typed-om-1/ title='Element is referenced by CSS Typed OM 1'>CSS Typed OM 1</a>,
<a href=https://drafts.csswg.org/css-view-transitions-1/ title='Element is referenced by CSS View Transitions 1'>CSS View Transitions 1</a>,
<a href=https://drafts.csswg.org/css-view-transitions-2/ title='Element is referenced by CSS View Transitions 2'>CSS View Transitions 2</a>,
<a href=https://drafts.csswg.org/cssom-1/ title='Element is referenced by CSSOM'>CSSOM</a>,
<a href=https://drafts.csswg.org/cssom-view-1/ title='Element is referenced by CSSOM View'>CSSOM View</a>,
<a href=https://w3c.github.io/IntersectionObserver/ title='Element is referenced by Intersection Observer'>Intersection Observer</a>,
<a href=https://w3c.github.io/largest-contentful-paint/ title='Element is referenced by Largest Contentful Paint'>Largest Contentful Paint</a>,
<a href=https://w3c.github.io/mathml-core/ title='Element is referenced by MathML Core'>MathML Core</a>,
<a href=https://w3c.github.io/mediacapture-region/ title='Element is referenced by Region Capture'>Region Capture</a>,
<a href=https://w3c.github.io/paint-timing/ title='Element is referenced by Paint Timing'>Paint Timing</a>,
<a href=https://w3c.github.io/webappsec-permissions-policy/ title='Element is referenced by Permissions Policy'>Permissions Policy</a>,
<a href=https://w3c.github.io/picture-in-picture/ title='Element is referenced by Picture-in-Picture'>Picture-in-Picture</a>,
<a href=https://w3c.github.io/pointerevents/ title='Element is referenced by Pointer Events'>Pointer Events</a>,
<a href=https://w3c.github.io/pointerevents/ title='Element is referenced by Pointer Events'>Pointer Events</a>,
<a href=https://w3c.github.io/pointerlock/ title='Element is referenced by Pointer Lock 2.0'>Pointer Lock 2.0</a>,
<a href=https://drafts.csswg.org/resize-observer-1/ title='Element is referenced by Resize Observer'>Resize Observer</a>,
<a href=https://drafts.csswg.org/scroll-animations-1/ title='Element is referenced by Scroll-driven Animations'>Scroll-driven Animations</a>,
<a href=https://w3c.github.io/trusted-types/dist/spec/ title='Element is referenced by Trusted Types'>Trusted Types</a>,
<a href=https://w3c.github.io/uievents/ title='Element is referenced by UI Events'>UI Events</a>,
<a href=https://w3c.github.io/aria/ title='Element is referenced by WAI-ARIA'>WAI-ARIA</a>,
<a href=https://w3c.github.io/aria/ title='Element is referenced by WAI-ARIA'>WAI-ARIA</a>,
<a href=https://drafts.csswg.org/web-animations-1/ title='Element is referenced by Web Animations'>Web Animations</a>,
<a href=https://drafts.csswg.org/web-animations-2/ title='Element is referenced by Web Animations 2'>Web Animations 2</a>,
<a href=https://w3c.github.io/webdriver-bidi/ title='Element is referenced by WebDriver BiDi'>WebDriver BiDi</a>,
<a href=https://w3c.github.io/webdriver/ title='Element is referenced by WebDriver'>WebDriver</a>,
<a href=https://immersive-web.github.io/dom-overlays/ title='Element is referenced by WebXR DOM Overlays'>WebXR DOM Overlays</a></dd>
<dd>Related terms: <em>concept</em> <a href='a.html#attribute list@@Element@dfn'>attribute list</a>, <em>concept</em> <a href='c.html#class@@Element@dfn'>class</a>, <em>concept</em> <a href='c.html#custom@@Element@dfn'>custom</a>, <em>concept</em> <a href='c.html#custom element definition@@Element@dfn'>custom element definition</a>, <em>concept</em> <a href='c.html#custom element state@@Element@dfn'>custom element state</a>, <em>concept</em> <a href='d.html#defined@@Element@dfn'>defined</a>, <em>concept</em> <a href='g.html#get the attr-associated element@@Element@dfn'>get the attr-associated element</a>, <em>concept</em> <a href='g.html#get the attr-associated elements@@Element@dfn'>get the attr-associated elements</a>, <em>concept</em> <a href='g.html#get the bounding box@@Element@dfn'>get the bounding box</a>, <em>concept</em> <a href='i.html#ID@@Element@dfn'>ID</a>, <em>concept</em> <a href='i.html#is value@@Element@dfn'>is value</a>, <em>concept</em> <a href='l.html#local name@@Element@dfn'>local name</a>, <em>concept</em> <a href='n.html#namespace@@Element@dfn'>namespace</a>, <em>concept</em> <a href='n.html#namespace prefix@@Element@dfn'>namespace prefix</a>, <em>concept</em> <a href='q.html#qualified name@@Element@dfn'>qualified name</a>, <em>concept</em> <a href='s.html#setHTML@@Element@dfn'>setHTML</a>, <em>concept</em> <a href='s.html#setHTMLUnsafe@@Element@dfn'>setHTMLUnsafe</a>, <em>concept</em> <a href='s.html#shadow host@@Element@dfn'>shadow host</a>, <em>concept</em> <a href='s.html#shadow root@@Element@dfn'>shadow root</a>, <code>Element.</code><a href='a.html#attributes@@Element@attribute'><code>attributes</code></a>, <code>Element.</code><a href='c.html#classList@@Element@attribute'><code>classList</code></a>, <code>Element.</code><a href='c.html#className@@Element@attribute'><code>className</code></a>, <code>Element.</code><a href='c.html#clientHeight@@Element@attribute'><code>clientHeight</code></a>, <code>Element.</code><a href='c.html#clientLeft@@Element@attribute'><code>clientLeft</code></a>, <code>Element.</code><a href='c.html#clientTop@@Element@attribute'><code>clientTop</code></a>, <code>Element.</code><a href='c.html#clientWidth@@Element@attribute'><code>clientWidth</code></a>, <code>Element.</code><a href='c.html#[[computedStyleMapCache]]@@Element@attribute'><code>[[computedStyleMapCache]]</code></a>, <code>Element.</code><a href='c.html#currentCSSZoom@@Element@attribute'><code>currentCSSZoom</code></a>, <code>Element.</code><a href='e.html#elementTiming@@Element@attribute'><code>elementTiming</code></a>, <code>Element.</code><a href='i.html#id@@Element@attribute'><code>id</code></a>, <code>Element.</code><a href='i.html#innerHTML@@Element@attribute'><code>innerHTML</code></a>, <code>Element.</code><a href='l.html#localName@@Element@attribute'><code>localName</code></a>, <code>Element.</code><a href='n.html#namespaceURI@@Element@attribute'><code>namespaceURI</code></a>, <code>undefined</code><a href='o.html#onfullscreenchange@@Document@attribute'><code>onfullscreenchange</code></a>, <code>undefined</code><a href='o.html#onfullscreenerror@@Document@attribute'><code>onfullscreenerror</code></a>, <code>undefined</code><a href='o.html#onscrollsnapchange@@Document@attribute'><code>onscrollsnapchange</code></a>, <code>undefined</code><a href='o.html#onscrollsnapchanging@@Document@attribute'><code>onscrollsnapchanging</code></a>, <code>Element.</code><a href='o.html#outerHTML@@Element@attribute'><code>outerHTML</code></a>, <code>Element.</code><a href='p.html#part@@Element@attribute'><code>part</code></a>, <code>Element.</code><a href='p.html#prefix@@Element@attribute'><code>prefix</code></a>, <code>Element.</code><a href='r.html#[[RegisteredIntersectionObservers]]@@Element@attribute'><code>[[RegisteredIntersectionObservers]]</code></a>, <code>Element.</code><a href='s.html#schemaTypeInfo@@Element@attribute'><code>schemaTypeInfo</code></a>, <code>Element.</code><a href='s.html#scrollHeight@@Element@attribute'><code>scrollHeight</code></a>, <code>Element.</code><a href='s.html#scrollLeft@@Element@attribute'><code>scrollLeft</code></a>, <code>Element.</code><a href='s.html#scrollTop@@Element@attribute'><code>scrollTop</code></a>, <code>Element.</code><a href='s.html#scrollWidth@@Element@attribute'><code>scrollWidth</code></a>, <code>Element.</code><a href='s.html#shadowRoot@@Element@attribute'><code>shadowRoot</code></a>, <code>Element.</code><a href='s.html#slot@@Element@attribute'><code>slot</code></a>, <code>Element.</code><a href='t.html#tagName@@Element@attribute'><code>tagName</code></a>, <em>event</em> <a href='c.html#contentvisibilityautostatechange@@Element@event'><code>contentvisibilityautostatechange</code></a>, <em>event</em> <a href='f.html#fullscreenchange@@Document@event'><code>fullscreenchange</code></a>, <em>event</em> <a href='f.html#fullscreenerror@@Document@event'><code>fullscreenerror</code></a>, <em>event</em> <a href='s.html#scroll@@Document@event'><code>scroll</code></a>, <em>event</em> <a href='s.html#scrollend@@Document@event'><code>scrollend</code></a>, <code>Element.</code><a href='a.html#attachShadow(init)@@Element@method'><code>attachShadow(init)</code></a>, <code>Element.</code><a href='c.html#checkVisibility(options)@@Element@method'><code>checkVisibility(options)</code></a>, <code>Element.</code><a href='c.html#closest(selectors)@@Element@method'><code>closest(selectors)</code></a>, <code>Element.</code><a href='c.html#computedStyleMap()@@Element@method'><code>computedStyleMap()</code></a>, <code>Element.</code><a href='f.html#focusableAreas(option)@@Element@method'><code>focusableAreas(option)</code></a>, <code>Element.</code><a href='g.html#getAttribute(qualifiedName)@@Element@method'><code>getAttribute(qualifiedName)</code></a>, <code>Element.</code><a href='g.html#getAttributeNames()@@Element@method'><code>getAttributeNames()</code></a>, <code>Element.</code><a href='g.html#getAttributeNode(qualifiedName)@@Element@method'><code>getAttributeNode(qualifiedName)</code></a>, <code>Element.</code><a href='g.html#getAttributeNodeNS(namespace, localName)@@Element@method'><code>getAttributeNodeNS(namespace, localName)</code></a>, <code>Element.</code><a href='g.html#getAttributeNS(namespace, localName)@@Element@method'><code>getAttributeNS(namespace, localName)</code></a>, <code>Element.</code><a href='g.html#getBoundingClientRect()@@Element@method'><code>getBoundingClientRect()</code></a>, <code>Element.</code><a href='g.html#getClientRects()@@Element@method'><code>getClientRects()</code></a>, <code>Element.</code><a href='g.html#getElementsByClassName(classNames)@@Element@method'><code>getElementsByClassName(classNames)</code></a>, <code>Element.</code><a href='g.html#getElementsByTagName(qualifiedName)@@Element@method'><code>getElementsByTagName(qualifiedName)</code></a>, <code>Element.</code><a href='g.html#getElementsByTagNameNS(namespace, localName)@@Element@method'><code>getElementsByTagNameNS(namespace, localName)</code></a>, <code>Element.</code><a href='g.html#getHTML(options)@@Element@method'><code>getHTML(options)</code></a>, <code>Element.</code><a href='g.html#getSpatialNavigationContainer()@@Element@method'><code>getSpatialNavigationContainer()</code></a>, <code>Element.</code><a href='h.html#hasAttribute(qualifiedName)@@Element@method'><code>hasAttribute(qualifiedName)</code></a>, <code>Element.</code><a href='h.html#hasAttributeNS(namespace, localName)@@Element@method'><code>hasAttributeNS(namespace, localName)</code></a>, <code>Element.</code><a href='h.html#hasAttributes()@@Element@method'><code>hasAttributes()</code></a>, <code>undefined</code><a href='h.html#hasPointerCapture()@@Element@method'><code>hasPointerCapture()</code></a>, <code>Element.</code><a href='i.html#insertAdjacentElement(where, element)@@Element@method'><code>insertAdjacentElement(where, element)</code></a>, <code>Element.</code><a href='i.html#insertAdjacentHTML(position, string)@@Element@method'><code>insertAdjacentHTML(position, string)</code></a>, <code>Element.</code><a href='i.html#insertAdjacentText(where, data)@@Element@method'><code>insertAdjacentText(where, data)</code></a>, <code>Element.</code><a href='m.html#matches(selectors)@@Element@method'><code>matches(selectors)</code></a>, <code>Element.</code><a href='p.html#pseudo(type)@@Element@method'><code>pseudo(type)</code></a>, <code>undefined</code><a href='r.html#releasePointerCapture()@@Element@method'><code>releasePointerCapture()</code></a>, <code>Element.</code><a href='r.html#removeAttribute(qualifiedName)@@Element@method'><code>removeAttribute(qualifiedName)</code></a>, <code>Element.</code><a href='r.html#removeAttributeNode(attr)@@Element@method'><code>removeAttributeNode(attr)</code></a>, <code>Element.</code><a href='r.html#removeAttributeNS(namespace, localName)@@Element@method'><code>removeAttributeNS(namespace, localName)</code></a>, <code>Element.</code><a href='r.html#requestFullscreen(options)@@Element@method'><code>requestFullscreen(options)</code></a>, <code>Element.</code><a href='r.html#requestPointerLock()@@Element@method'><code>requestPointerLock()</code></a>, <code>Element.</code><a href='s.html#scroll(x, y)@@Element@method'><code>scroll(x, y)</code></a>, <code>Element.</code><a href='s.html#scrollBy(x, y)@@Element@method'><code>scrollBy(x, y)</code></a>, <code>Element.</code><a href='s.html#scrollIntoView(arg)@@Element@method'><code>scrollIntoView(arg)</code></a>, <code>Element.</code><a href='s.html#scrollTo(x, y)@@Element@method'><code>scrollTo(x, y)</code></a>, <code>Element.</code><a href='s.html#setAttribute(qualifiedName, value)@@Element@method'><code>setAttribute(qualifiedName, value)</code></a>, <code>Element.</code><a href='s.html#setAttributeNode(attr)@@Element@method'><code>setAttributeNode(attr)</code></a>, <code>Element.</code><a href='s.html#setAttributeNodeNS(attr)@@Element@method'><code>setAttributeNodeNS(attr)</code></a>, <code>Element.</code><a href='s.html#setAttributeNS(namespace, qualifiedName, value)@@Element@method'><code>setAttributeNS(namespace, qualifiedName, value)</code></a>, <code>Element.</code><a href='s.html#setHTML(html, options)@@Element@method'><code>setHTML(html, options)</code></a>, <code>Element.</code><a href='s.html#setHTMLUnsafe(html, options)@@Element@method'><code>setHTMLUnsafe(html, options)</code></a>, <code>Element.</code><a href='s.html#setHTMLUnsafe(html)@@Element@method'><code>setHTMLUnsafe(html)</code></a>, <code>Element.</code><a href='s.html#setIdAttribute()@@Element@method'><code>setIdAttribute()</code></a>, <code>Element.</code><a href='s.html#setIdAttributeNode()@@Element@method'><code>setIdAttributeNode()</code></a>, <code>Element.</code><a href='s.html#setIdAttributeNS()@@Element@method'><code>setIdAttributeNS()</code></a>, <code>undefined</code><a href='s.html#setPointerCapture()@@Element@method'><code>setPointerCapture()</code></a>, <code>Element.</code><a href='s.html#spatialNavigationSearch(dir, options)@@Element@method'><code>spatialNavigationSearch(dir, options)</code></a>, <code>Element.</code><a href='s.html#spatialNavigationSearch(options)@@Element@method'><code>spatialNavigationSearch(options)</code></a>, <code>Element.</code><a href='t.html#toggleAttribute(qualifiedName, force)@@Element@method'><code>toggleAttribute(qualifiedName, force)</code></a>, <code>Element.</code><a href='w.html#webkitMatchesSelector(selectors)@@Element@method'><code>webkitMatchesSelector(selectors)</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/Element.html' title='Element entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="element@@dom%%dfn"><code class=prefix></code><span><strong>element</strong> (<em>concept</em>) <a class='self-link' href='#element%40%40dom%25%25dfn' aria-label="Permalink for element">§</a></span></dt>
<dd>Defined in <strong title='element is defined in DOM'><a href=https://dom.spec.whatwg.org/#concept-element>DOM</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-position-4/ title='element is referenced by CSS Positioned Layout 4'>CSS Positioned Layout 4</a>,
<a href=https://fetch.spec.whatwg.org/ title='element is referenced by Fetch'>Fetch</a>,
<a href=https://fullscreen.spec.whatwg.org/ title='element is referenced by Fullscreen API'>Fullscreen API</a>,
<a href=https://html.spec.whatwg.org/multipage/ title='element is referenced by HTML'>HTML</a>,
<a href=https://w3c.github.io/mathml-aam/ title='element is referenced by MathML Accessibility API Mappings 1.0'>MathML Accessibility API Mappings 1.0</a>,
<a href=https://webidl.spec.whatwg.org/ title='element is referenced by Web IDL'>Web IDL</a>,
<a href=https://wicg.github.io/csp-next/scripting-policy.html title='element is referenced by Scripting Policy'>Scripting Policy</a>,
<a href=https://wicg.github.io/fenced-frame/ title='element is referenced by Fenced Frame'>Fenced Frame</a>,
<a href=https://wicg.github.io/scroll-to-text-fragment/ title='element is referenced by URL Fragment Text Directives'>URL Fragment Text Directives</a>,
<a href=https://wicg.github.io/soft-navigations/ title='element is referenced by Soft Navigations'>Soft Navigations</a>,
<a href=https://w3c.github.io/accname/ title='element is referenced by Accessible Name and Description Computation 1.2'>Accessible Name and Description Computation 1.2</a>,
<a href=https://w3c.github.io/core-aam/ title='element is referenced by Core Accessibility API Mappings 1.2'>Core Accessibility API Mappings 1.2</a>,
<a href=https://w3c.github.io/webappsec-cspee/ title='element is referenced by Content Security Policy: Embedded Enforcement'>Content Security Policy: Embedded Enforcement</a>,
<a href=https://drafts.csswg.org/css-color-4/ title='element is referenced by CSS Color 4'>CSS Color 4</a>,
<a href=https://drafts.css-houdini.org/css-layout-api-1/ title='element is referenced by CSS Layout API 1'>CSS Layout API 1</a>,
<a href=https://drafts.csswg.org/css-scoping-1/ title='element is referenced by CSS Scoping 1'>CSS Scoping 1</a>,
<a href=https://drafts.csswg.org/css-values-5/ title='element is referenced by CSS Values 5'>CSS Values 5</a>,
<a href=https://drafts.csswg.org/cssom-view-1/ title='element is referenced by CSSOM View'>CSSOM View</a>,
<a href=https://w3c.github.io/html-aam/ title='element is referenced by HTML Accessibility API Mappings 1.0'>HTML Accessibility API Mappings 1.0</a>,
<a href=https://w3c.github.io/largest-contentful-paint/ title='element is referenced by Largest Contentful Paint'>Largest Contentful Paint</a>,
<a href=https://w3c.github.io/mathml-core/ title='element is referenced by MathML Core'>MathML Core</a>,
<a href=https://w3c.github.io/paint-timing/ title='element is referenced by Paint Timing'>Paint Timing</a>,
<a href=https://w3c.github.io/webappsec-permissions-policy/ title='element is referenced by Permissions Policy'>Permissions Policy</a>,
<a href=https://w3c.github.io/aria/ title='element is referenced by WAI-ARIA'>WAI-ARIA</a>,
<a href=https://w3c.github.io/aria/ title='element is referenced by WAI-ARIA'>WAI-ARIA</a>,
<a href=https://w3c.github.io/webdriver/ title='element is referenced by WebDriver'>WebDriver</a></dd>
<dt id="element@@NamedNodeMap@dfn"><code class=prefix></code><span><strong>element</strong> (<em>concept for <a href='n.html#NamedNodeMap@@@@interface'><code>NamedNodeMap</code></a> </em>) <a class='self-link' href='#element%40%40NamedNodeMap%40dfn' aria-label="Permalink for element">§</a></span></dt>
<dd>Defined in <strong title='element is defined in DOM'><a href=https://dom.spec.whatwg.org/#concept-namednodemap-element>DOM</a></strong> </dd>
<dt id="element@@Attr@dfn"><code class=prefix></code><span><strong>element</strong> (<em>concept for <a href='a.html#Attr@@@@interface'><code>Attr</code></a> </em>) <a class='self-link' href='#element%40%40Attr%40dfn' aria-label="Permalink for element">§</a></span></dt>
<dd>Defined in <strong title='element is defined in DOM'><a href=https://dom.spec.whatwg.org/#concept-attribute-element>DOM</a></strong> </dd>
<dt id="element@@violation@dfn"><code class=prefix></code><span><strong>element</strong> (<em>concept for <a href='v.html#violation@@CSP%25%25dfn'>violation</a> </em>) <a class='self-link' href='#element%40%40violation%40dfn' aria-label="Permalink for element">§</a></span></dt>
<dd>Defined in <strong title='element is defined in Content Security Policy 3'><a href=https://w3c.github.io/webappsec-csp/#violation-element>Content Security Policy 3</a></strong> </dd>
<dt id="element@@CSS%%dfn"><code class=prefix></code><span><strong>element</strong> (<em>concept</em>) <a class='self-link' href='#element%40%40CSS%25%25dfn' aria-label="Permalink for element">§</a></span></dt>
<dd>Defined in <strong title='element is defined in CSS 2.1'><a href=https://www.w3.org/TR/CSS21/conform.html#element>CSS 2.1</a></strong> </dd>
<dt id="element@@AnyExternType@dict-member"><code class=prefix><a href='a.html#AnyExternType@@@@dictionary'>AnyExternType</a>.</code><span><strong><code class=webidl>element</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#element%40%40AnyExternType%40dict-member' aria-label="Permalink for <a href='a.html#AnyExternType@@@@dictionary'>AnyExternType</a>.element">§</a></span></dt>
<dd>Defined in <strong title='element is defined in WebAssembly JavaScript Interface: Type Reflection'><a href=https://webassembly.github.io/js-types/js-api/#dom-anyexterntype-element>WebAssembly JavaScript Interface: Type Reflection</a></strong> </dd>
<dt id="element@@CSSPseudoElement@attribute"><code class=prefix><a href='c.html#CSSPseudoElement@@@@interface'>CSSPseudoElement</a>.</code><span><strong><code class=webidl>element</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#element%40%40CSSPseudoElement%40attribute' aria-label="Permalink for <a href='c.html#CSSPseudoElement@@@@interface'>CSSPseudoElement</a>.element">§</a></span></dt>
<dd>Defined in <strong title='element is defined in CSS Pseudo-Elements 4'><a href=https://drafts.csswg.org/css-pseudo-4/#dom-csspseudoelement-element>CSS Pseudo-Elements 4</a></strong> </dd>
<dt id="element@@LargestContentfulPaint@attribute"><code class=prefix><a href='l.html#LargestContentfulPaint@@@@interface'>LargestContentfulPaint</a>.</code><span><strong><code class=webidl>element</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#element%40%40LargestContentfulPaint%40attribute' aria-label="Permalink for <a href='l.html#LargestContentfulPaint@@@@interface'>LargestContentfulPaint</a>.element">§</a></span></dt>
<dd>Defined in <strong title='element is defined in Largest Contentful Paint'><a href=https://w3c.github.io/largest-contentful-paint/#dom-largestcontentfulpaint-element>Largest Contentful Paint</a></strong> </dd>
<dt id="element@@PerformanceElementTiming@attribute"><code class=prefix><a href='p.html#PerformanceElementTiming@@@@interface'>PerformanceElementTiming</a>.</code><span><strong><code class=webidl>element</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#element%40%40PerformanceElementTiming%40attribute' aria-label="Permalink for <a href='p.html#PerformanceElementTiming@@@@interface'>PerformanceElementTiming</a>.element">§</a></span></dt>
<dd>Defined in <strong title='element is defined in Element Timing API'><a href=https://w3c.github.io/element-timing/#dom-performanceelementtiming-element>Element Timing API</a></strong> </dd>
<dt id="element@@TableDescriptor@dict-member"><code class=prefix><a href='t.html#TableDescriptor@@@@dictionary'>TableDescriptor</a>.</code><span><strong><code class=webidl>element</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#element%40%40TableDescriptor%40dict-member' aria-label="Permalink for <a href='t.html#TableDescriptor@@@@dictionary'>TableDescriptor</a>.element">§</a></span></dt>
<dt><code class=prefix><a href='t.html#TableDescriptor@@@@dictionary'>TableDescriptor</a>.</code><span><strong><code class=webidl>element</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#element%40%40TableDescriptor%40dict-member' aria-label="Permalink for <a href='t.html#TableDescriptor@@@@dictionary'>TableDescriptor</a>.element">§</a></span></dt><dt><code class=prefix><a href='t.html#TableDescriptor@@@@dictionary'>TableDescriptor</a>.</code><span><strong><code class=webidl>element</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#element%40%40TableDescriptor%40dict-member' aria-label="Permalink for <a href='t.html#TableDescriptor@@@@dictionary'>TableDescriptor</a>.element">§</a></span></dt><dt><code class=prefix><a href='t.html#TableDescriptor@@@@dictionary'>TableDescriptor</a>.</code><span><strong><code class=webidl>element</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#element%40%40TableDescriptor%40dict-member' aria-label="Permalink for <a href='t.html#TableDescriptor@@@@dictionary'>TableDescriptor</a>.element">§</a></span></dt><dt><code class=prefix><a href='t.html#TableDescriptor@@@@dictionary'>TableDescriptor</a>.</code><span><strong><code class=webidl>element</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#element%40%40TableDescriptor%40dict-member' aria-label="Permalink for <a href='t.html#TableDescriptor@@@@dictionary'>TableDescriptor</a>.element">§</a></span></dt><dt><code class=prefix><a href='t.html#TableDescriptor@@@@dictionary'>TableDescriptor</a>.</code><span><strong><code class=webidl>element</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#element%40%40TableDescriptor%40dict-member' aria-label="Permalink for <a href='t.html#TableDescriptor@@@@dictionary'>TableDescriptor</a>.element">§</a></span></dt><dt><code class=prefix><a href='t.html#TableDescriptor@@@@dictionary'>TableDescriptor</a>.</code><span><strong><code class=webidl>element</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#element%40%40TableDescriptor%40dict-member' aria-label="Permalink for <a href='t.html#TableDescriptor@@@@dictionary'>TableDescriptor</a>.element">§</a></span></dt>
<dd>Defined in <strong title='element is defined in WebAssembly JavaScript Interface: Content Security Policy'><a href=https://webassembly.github.io/content-security-policy/js-api/#dom-tabledescriptor-element>WebAssembly JavaScript Interface: Content Security Policy</a></strong> , <strong title='element is defined in WebAssembly JavaScript Interface: ESM Integration'><a href=https://webassembly.github.io/esm-integration/js-api/#dom-tabledescriptor-element>WebAssembly JavaScript Interface: ESM Integration</a></strong> , <strong title='element is defined in WebAssembly JavaScript Interface: Exception Handling'><a href=https://webassembly.github.io/exception-handling/js-api/#dom-tabledescriptor-element>WebAssembly JavaScript Interface: Exception Handling</a></strong> , <strong title='element is defined in WebAssembly JavaScript Interface: Promise Integration'><a href=https://webassembly.github.io/js-promise-integration/js-api/#dom-tabledescriptor-element>WebAssembly JavaScript Interface: Promise Integration</a></strong> , <strong title='element is defined in WebAssembly JavaScript Interface: JS String Builtins'><a href=https://webassembly.github.io/js-string-builtins/js-api/#dom-tabledescriptor-element>WebAssembly JavaScript Interface: JS String Builtins</a></strong> , <strong title='element is defined in WebAssembly JavaScript Interface: Threading'><a href=https://webassembly.github.io/threads/js-api/#dom-tabledescriptor-element>WebAssembly JavaScript Interface: Threading</a></strong> , <strong title='element is defined in WebAssembly JavaScript Interface'><a href=https://webassembly.github.io/spec/js-api/#dom-tabledescriptor-element>WebAssembly JavaScript Interface</a></strong> </dd>
<dt id="element@@TableType@dict-member"><code class=prefix><a href='t.html#TableType@@@@dictionary'>TableType</a>.</code><span><strong><code class=webidl>element</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#element%40%40TableType%40dict-member' aria-label="Permalink for <a href='t.html#TableType@@@@dictionary'>TableType</a>.element">§</a></span></dt>
<dd>Defined in <strong title='element is defined in WebAssembly JavaScript Interface: Type Reflection'><a href=https://webassembly.github.io/js-types/js-api/#dom-tabletype-element>WebAssembly JavaScript Interface: Type Reflection</a></strong> </dd>
<dt id="element contents@@css-contain%%dfn"><code class=prefix></code><span><strong>element contents</strong> (<em>concept</em>) <a class='self-link' href='#element%20contents%40%40css-contain%25%25dfn' aria-label="Permalink for element contents">§</a></span></dt>
<dd>Defined in <strong title='element contents is defined in CSS Containment 2'><a href=https://drafts.csswg.org/css-contain-2/#element-contents>CSS Containment 2</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-view-transitions-1/ title='element contents is referenced by CSS View Transitions 1'>CSS View Transitions 1</a></dd>
<dt id="element interface@@dom%%dfn"><code class=prefix></code><span><strong>element interface</strong> (<em>concept</em>) <a class='self-link' href='#element%20interface%40%40dom%25%25dfn' aria-label="Permalink for element interface">§</a></span></dt>
<dd>Defined in <strong title='element interface is defined in DOM'><a href=https://dom.spec.whatwg.org/#concept-element-interface>DOM</a></strong> </dd>
<dd>Referenced in
<a href=https://html.spec.whatwg.org/multipage/ title='element interface is referenced by HTML'>HTML</a>,
<a href=https://w3c.github.io/trusted-types/dist/spec/ title='element interface is referenced by Trusted Types'>Trusted Types</a></dd>
<dt id="element tree@@CSS@dfn"><code class=prefix></code><span><strong>element tree</strong> (<em>concept for <code>CSS</code> </em>) <a class='self-link' href='#element%20tree%40%40CSS%40dfn' aria-label="Permalink for element tree">§</a></span></dt>
<dd>Defined in <strong title='element tree is defined in CSS Display 4'><a href=https://drafts.csswg.org/css-display-4/#element-tree>CSS Display 4</a></strong> , <strong title='element tree is defined in CSS Display 3'><a href=https://drafts.csswg.org/css-display-3/#element-tree>CSS Display 3</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-2022/ title='element tree is referenced by CSS Snapshot 2022'>CSS Snapshot 2022</a>,
<a href=https://drafts.csswg.org/css-2023/ title='element tree is referenced by CSS Snapshot 2023'>CSS Snapshot 2023</a>,
<a href=https://drafts.csswg.org/css-box-4/ title='element tree is referenced by CSS Box Model 4'>CSS Box Model 4</a></dd>
<dt id="element with default preferred size@@css-ui%%dfn"><code class=prefix></code><span><strong>element with default preferred size</strong> (<em>concept</em>) <a class='self-link' href='#element%20with%20default%20preferred%20size%40%40css-ui%25%25dfn' aria-label="Permalink for element with default preferred size">§</a></span></dt>
<dd>Defined in <strong title='element with default preferred size is defined in CSS User Interface 4'><a href=https://drafts.csswg.org/css-ui-4/#element-with-default-preferred-size>CSS User Interface 4</a></strong> </dd>
<dt id="ELEMENT_NODE@@Node@const"><code class=prefix><a href='n.html#Node@@@@interface'>Node</a>.</code><span><strong><code class=webidl>ELEMENT_NODE</code></strong> (<em>WebIDL constant</em>) <a class='self-link' href='#ELEMENT_NODE%40%40Node%40const' aria-label="Permalink for <a href='n.html#Node@@@@interface'>Node</a>.ELEMENT_NODE">§</a></span></dt>
<dd>Defined in <strong title='ELEMENT_NODE is defined in DOM'><a href=https://dom.spec.whatwg.org/#dom-node-element_node>DOM</a></strong> </dd>
<dt id="element-backed@@css-pseudo%%dfn"><code class=prefix></code><span><strong>element-backed</strong> (<em>concept</em>) <a class='self-link' href='#element-backed%40%40css-pseudo%25%25dfn' aria-label="Permalink for element-backed">§</a></span></dt>
<dd>Defined in <strong title='element-backed is defined in CSS Pseudo-Elements 4'><a href=https://drafts.csswg.org/css-pseudo-4/#element-backed>CSS Pseudo-Elements 4</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-forms-1/ title='element-backed is referenced by CSS Form Styling 1'>CSS Form Styling 1</a></dd>
<dt id="element-not-rendered@@css-images%%dfn"><code class=prefix></code><span><strong>element-not-rendered</strong> (<em>concept</em>) <a class='self-link' href='#element-not-rendered%40%40css-images%25%25dfn' aria-label="Permalink for element-not-rendered">§</a></span></dt>
<dd>Defined in <strong title='element-not-rendered is defined in CSS Images 4'><a href=https://drafts.csswg.org/css-images-4/#element-not-rendered>CSS Images 4</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-view-transitions-1/ title='element-not-rendered is referenced by CSS View Transitions 1'>CSS View Transitions 1</a></dd>
<dt id="element()@@css-gcpm%%function"><code class=prefix></code><span><strong><code class=css>element()</code></strong> (<em>CSS function</em>) <a class='self-link' href='#element()%40%40css-gcpm%25%25function' aria-label="Permalink for element()">§</a></span></dt>
<dd>Defined in <strong title='element() is defined in CSS GCPM 3'><a href=https://drafts.csswg.org/css-gcpm-3/#funcdef-element>CSS GCPM 3</a></strong> </dd>
<dt id="element()@@css-images%%function"><code class=prefix></code><span><strong><code class=css>element()</code></strong> (<em>CSS function</em>) <a class='self-link' href='#element()%40%40css-images%25%25function' aria-label="Permalink for element()">§</a></span></dt>
<dd>Defined in <strong title='element() is defined in CSS Images 4'><a href=https://drafts.csswg.org/css-images-4/#funcdef-element>CSS Images 4</a></strong> </dd>
<dt id="ElementContentEditable@@@@interface"><code class=prefix></code><span><strong><code class=webidl>ElementContentEditable</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#ElementContentEditable%40%40%40%40interface' aria-label="Permalink for ElementContentEditable">§</a></span></dt>
<dd>Defined in <strong title='ElementContentEditable is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/interaction.html#elementcontenteditable>HTML</a></strong> </dd>
<dd>Related terms: <code>ElementContentEditable.</code><a href='c.html#contentEditable@@ElementContentEditable@attribute'><code>contentEditable</code></a>, <code>ElementContentEditable.</code><a href='e.html#enterKeyHint@@ElementContentEditable@attribute'><code>enterKeyHint</code></a>, <code>ElementContentEditable.</code><a href='i.html#inputMode@@ElementContentEditable@attribute'><code>inputMode</code></a>, <code>ElementContentEditable.</code><a href='i.html#isContentEditable@@ElementContentEditable@attribute'><code>isContentEditable</code></a>, <code>ElementContentEditable.</code><a href='v.html#virtualKeyboardPolicy@@ElementContentEditable@attribute'><code>virtualKeyboardPolicy</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/ElementContentEditable.html' title='ElementContentEditable entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="ElementCreationOptions@@@@dictionary"><code class=prefix></code><span><strong><code class=webidl>ElementCreationOptions</code></strong> (<em>WebIDL dictionary</em>) <a class='self-link' href='#ElementCreationOptions%40%40%40%40dictionary' aria-label="Permalink for ElementCreationOptions">§</a></span></dt>
<dd>Defined in <strong title='ElementCreationOptions is defined in DOM'><a href=https://dom.spec.whatwg.org/#dictdef-elementcreationoptions>DOM</a></strong> </dd>
<dd>Related terms: <code>ElementCreationOptions.</code><a href='i.html#is@@ElementCreationOptions@dict-member'><code>is</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/ElementCreationOptions.html' title='ElementCreationOptions entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="ElementCSSInlineStyle@@@@interface"><code class=prefix></code><span><strong><code class=webidl>ElementCSSInlineStyle</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#ElementCSSInlineStyle%40%40%40%40interface' aria-label="Permalink for ElementCSSInlineStyle">§</a></span></dt>
<dd>Defined in <strong title='ElementCSSInlineStyle is defined in CSSOM'><a href=https://drafts.csswg.org/cssom-1/#elementcssinlinestyle>CSSOM</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.css-houdini.org/css-typed-om-1/ title='ElementCSSInlineStyle is referenced by CSS Typed OM 1'>CSS Typed OM 1</a></dd>
<dd>Related terms: <code>ElementCSSInlineStyle.</code><a href='a.html#attributeStyleMap@@ElementCSSInlineStyle@attribute'><code>attributeStyleMap</code></a>, <code>ElementCSSInlineStyle.</code><a href='s.html#style@@ElementCSSInlineStyle@attribute'><code>style</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/ElementCSSInlineStyle.html' title='ElementCSSInlineStyle entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="ElementDefinitionOptions@@@@dictionary"><code class=prefix></code><span><strong><code class=webidl>ElementDefinitionOptions</code></strong> (<em>WebIDL dictionary</em>) <a class='self-link' href='#ElementDefinitionOptions%40%40%40%40dictionary' aria-label="Permalink for ElementDefinitionOptions">§</a></span></dt>
<dd>Defined in <strong title='ElementDefinitionOptions is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/custom-elements.html#elementdefinitionoptions>HTML</a></strong> </dd>
<dd>Related terms: <code>ElementDefinitionOptions.</code><a href='e.html#extends@@ElementDefinitionOptions@dict-member'><code>extends</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/ElementDefinitionOptions.html' title='ElementDefinitionOptions entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="elementFromPoint(x, y)@@Document@method"><code class=prefix><a href='d.html#Document@@@@interface'>Document</a>.</code><span><strong><code class=webidl>elementFromPoint(x, y)</code></strong> (<em>WebIDL operation</em>) <a class='self-link' href='#elementFromPoint(x%2C%20y)%40%40Document%40method' aria-label="Permalink for <a href='d.html#Document@@@@interface'>Document</a>.elementFromPoint(x, y)">§</a></span></dt>
<dd>Defined in <strong title='elementFromPoint(x, y) is defined in CSSOM View'><a href=https://drafts.csswg.org/cssom-view-1/#dom-document-elementfrompoint>CSSOM View</a></strong> </dd>
<dt id="ElementInternals@@@@interface"><code class=prefix></code><span><strong><code class=webidl>ElementInternals</code></strong> (<em>WebIDL interface</em>) <a class='self-link' href='#ElementInternals%40%40%40%40interface' aria-label="Permalink for ElementInternals">§</a></span></dt>
<dd>Defined in <strong title='ElementInternals is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/custom-elements.html#elementinternals>HTML</a></strong> </dd>
<dd>Referenced in
<a href=https://w3c.github.io/html-aria/ title='ElementInternals is referenced by ARIA in HTML'>ARIA in HTML</a>,
<a href=https://w3c.github.io/aria/ title='ElementInternals is referenced by WAI-ARIA'>WAI-ARIA</a>,
<a href=https://w3c.github.io/aria/ title='ElementInternals is referenced by WAI-ARIA'>WAI-ARIA</a></dd>
<dd>Related terms: <em>concept</em> <a href='g.html#get the attr-associated element@@Element@dfn'>get the attr-associated element</a>, <em>concept</em> <a href='g.html#get the attr-associated elements@@Element@dfn'>get the attr-associated elements</a>, <code>ElementInternals.</code><a href='f.html#form@@ElementInternals@attribute'><code>form</code></a>, <code>ElementInternals.</code><a href='l.html#labels@@ElementInternals@attribute'><code>labels</code></a>, <code>ElementInternals.</code><a href='s.html#shadowRoot@@ElementInternals@attribute'><code>shadowRoot</code></a>, <code>ElementInternals.</code><a href='v.html#validationMessage@@ElementInternals@attribute'><code>validationMessage</code></a>, <code>ElementInternals.</code><a href='v.html#validity@@ElementInternals@attribute'><code>validity</code></a>, <code>ElementInternals.</code><a href='w.html#willValidate@@ElementInternals@attribute'><code>willValidate</code></a>, <code>ElementInternals.</code><a href='c.html#checkValidity()@@ElementInternals@method'><code>checkValidity()</code></a>, <code>ElementInternals.</code><a href='r.html#reportValidity()@@ElementInternals@method'><code>reportValidity()</code></a>, <code>ElementInternals.</code><a href='s.html#setFormValue(value, state)@@ElementInternals@method'><code>setFormValue(value, state)</code></a>, <code>ElementInternals.</code><a href='s.html#setValidity(flags, message, anchor)@@ElementInternals@method'><code>setValidity(flags, message, anchor)</code></a></dd>
<dd>see also <a href='https://dontcallmedom.github.io/webidlpedia/names/ElementInternals.html' title='ElementInternals entry on WebIDLpedia'>WebIDLPedia</a></dd><dt id="elements@@HTMLFieldSetElement@attribute"><code class=prefix><a href='h.html#HTMLFieldSetElement@@@@interface'>HTMLFieldSetElement</a>.</code><span><strong><code class=webidl>elements</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#elements%40%40HTMLFieldSetElement%40attribute' aria-label="Permalink for <a href='h.html#HTMLFieldSetElement@@@@interface'>HTMLFieldSetElement</a>.elements">§</a></span></dt>
<dd>Defined in <strong title='elements is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/form-elements.html#dom-fieldset-elements>HTML</a></strong> </dd>
<dt id="elements@@HTMLFormElement@attribute"><code class=prefix><a href='h.html#HTMLFormElement@@@@interface'>HTMLFormElement</a>.</code><span><strong><code class=webidl>elements</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#elements%40%40HTMLFormElement%40attribute' aria-label="Permalink for <a href='h.html#HTMLFormElement@@@@interface'>HTMLFormElement</a>.elements">§</a></span></dt>
<dd>Defined in <strong title='elements is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/forms.html#dom-form-elements>HTML</a></strong> </dd>
<dt id="elements@@SanitizerConfig@dict-member"><code class=prefix><a href='s.html#SanitizerConfig@@@@dictionary'>SanitizerConfig</a>.</code><span><strong><code class=webidl>elements</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#elements%40%40SanitizerConfig%40dict-member' aria-label="Permalink for <a href='s.html#SanitizerConfig@@@@dictionary'>SanitizerConfig</a>.elements">§</a></span></dt>
<dd>Defined in <strong title='elements is defined in HTML Sanitizer API'><a href=https://wicg.github.io/sanitizer-api/#dom-sanitizerconfig-elements>HTML Sanitizer API</a></strong> </dd>
<dt id="elementsFromPoint(x, y)@@Document@method"><code class=prefix><a href='d.html#Document@@@@interface'>Document</a>.</code><span><strong><code class=webidl>elementsFromPoint(x, y)</code></strong> (<em>WebIDL operation</em>) <a class='self-link' href='#elementsFromPoint(x%2C%20y)%40%40Document%40method' aria-label="Permalink for <a href='d.html#Document@@@@interface'>Document</a>.elementsFromPoint(x, y)">§</a></span></dt>
<dd>Defined in <strong title='elementsFromPoint(x, y) is defined in CSSOM View'><a href=https://drafts.csswg.org/cssom-view-1/#dom-document-elementsfrompoint>CSSOM View</a></strong> </dd>
<dt id="elementSources@@CSS@attribute"><code class=prefix></code><span><strong><code class=webidl>elementSources</code></strong> (<em>WebIDL attribute for <code>CSS</code> </em>) <a class='self-link' href='#elementSources%40%40CSS%40attribute' aria-label="Permalink for elementSources">§</a></span></dt>
<dd>Defined in <strong title='elementSources is defined in CSS Images 4'><a href=https://drafts.csswg.org/css-images-4/#dom-css-elementsources>CSS Images 4</a></strong> </dd>
<dt id="elementTiming@@Element@attribute"><code class=prefix><a href='e.html#Element@@@@interface'>Element</a>.</code><span><strong><code class=webidl>elementTiming</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#elementTiming%40%40Element%40attribute' aria-label="Permalink for <a href='e.html#Element@@@@interface'>Element</a>.elementTiming">§</a></span></dt>
<dd>Defined in <strong title='elementTiming is defined in Element Timing API'><a href=https://w3c.github.io/element-timing/#dom-element-elementtiming>Element Timing API</a></strong> </dd>
<dt id="elevation@@@@property"><code class=prefix></code><span><strong><code class=css>elevation</code></strong> (<em>CSS property</em>) <a class='self-link' href='#elevation%40%40%40%40property' aria-label="Permalink for elevation">§</a></span></dt>
<dd>Defined in <strong title='elevation is defined in CSS 2.1'><a href=https://www.w3.org/TR/CSS21/aural.html#propdef-elevation>CSS 2.1</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.css-houdini.org/css-typed-om-1/ title='elevation is referenced by CSS Typed OM 1'>CSS Typed OM 1</a></dd>
<dt id="elevation@@feDistantLight@element-attr"><code class=prefix></code><span><strong><code class=markup>elevation</code></strong> (<em>markup attribute for <code>feDistantLight</code> </em>) <a class='self-link' href='#elevation%40%40feDistantLight%40element-attr' aria-label="Permalink for elevation">§</a></span></dt>
<dd>Defined in <strong title='elevation is defined in Filter Effects 1'><a href=https://drafts.fxtf.org/filter-effects-1/#element-attrdef-fedistantlight-elevation>Filter Effects 1</a></strong> </dd>
<dt id="elevation@@SVGFEDistantLightElement@attribute"><code class=prefix><a href='s.html#SVGFEDistantLightElement@@@@interface'>SVGFEDistantLightElement</a>.</code><span><strong><code class=webidl>elevation</code></strong> (<em>WebIDL attribute</em>) <a class='self-link' href='#elevation%40%40SVGFEDistantLightElement%40attribute' aria-label="Permalink for <a href='s.html#SVGFEDistantLightElement@@@@interface'>SVGFEDistantLightElement</a>.elevation">§</a></span></dt>
<dd>Defined in <strong title='elevation is defined in Filter Effects 1'><a href=https://drafts.fxtf.org/filter-effects-1/#dom-svgfedistantlightelement-elevation>Filter Effects 1</a></strong> </dd>
<dt id="eligibility@@attribution-reporting-api%%dfn"><code class=prefix></code><span><strong>eligibility</strong> (<em>concept</em>) <a class='self-link' href='#eligibility%40%40attribution-reporting-api%25%25dfn' aria-label="Permalink for eligibility">§</a></span></dt>
<dd>Defined in <strong title='eligibility is defined in Attribution Reporting'><a href=https://wicg.github.io/attribution-reporting-api/#eligibility>Attribution Reporting</a></strong> </dd>
<dt id="eligible for same-party membership when embedded within@@first-party-sets%%dfn"><code class=prefix></code><span><strong>eligible for same-party membership when embedded within</strong> (<em>concept</em>) <a class='self-link' href='#eligible%20for%20same-party%20membership%20when%20embedded%20within%40%40first-party-sets%25%25dfn' aria-label="Permalink for eligible for same-party membership when embedded within">§</a></span></dt>
<dd>Defined in <strong title='eligible for same-party membership when embedded within is defined in User Agent Interaction with Related Website Sets'><a href=https://wicg.github.io/first-party-sets/#eligible-for-same-party-membership-when-embedded-within>User Agent Interaction with Related Website Sets</a></strong> </dd>
<dt id="ellipse@@<radial-shape>@value"><code class=prefix></code><span><strong><code class=css>ellipse</code></strong> (<em>CSS value for <a href='r.html#<radial-shape>@@@@type'><code><radial-shape></code></a> </em>) <a class='self-link' href='#ellipse%40%40%3Cradial-shape%3E%40value' aria-label="Permalink for ellipse">§</a></span></dt>
<dd>Defined in <strong title='ellipse is defined in CSS Images 3'><a href=https://drafts.csswg.org/css-images-3/#valdef-radial-shape-ellipse>CSS Images 3</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-2022/ title='ellipse is referenced by CSS Snapshot 2022'>CSS Snapshot 2022</a>,
<a href=https://drafts.csswg.org/css-2023/ title='ellipse is referenced by CSS Snapshot 2023'>CSS Snapshot 2023</a></dd>
<dt id="ellipse@@SVG%%element"><code class=prefix></code><span><strong><code class=markup>ellipse</code></strong> (<em>markup element</em>) <a class='self-link' href='#ellipse%40%40SVG%25%25element' aria-label="Permalink for ellipse">§</a></span></dt>
<dd>Defined in <strong title='ellipse is defined in SVG 2'><a href=https://svgwg.org/svg2-draft/shapes.html#elementdef-ellipse>SVG 2</a></strong> </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="ellipse()@@<basic-shape>@function"><code class=prefix></code><span><strong><code class=css>ellipse()</code></strong> (<em>CSS function for <a href='b.html#<basic-shape>@@@@type'><code><basic-shape></code></a> </em>) <a class='self-link' href='#ellipse()%40%40%3Cbasic-shape%3E%40function' aria-label="Permalink for ellipse()">§</a></span></dt>
<dd>Defined in <strong title='ellipse() is defined in CSS Shapes 1'><a href=https://drafts.csswg.org/css-shapes-1/#funcdef-basic-shape-ellipse>CSS Shapes 1</a></strong> </dd>
<dt id="ellipse(x, y, radiusX, radiusY, rotation, startAngle, endAngle, counterclockwise)@@CanvasPath@method"><code class=prefix><a href='c.html#CanvasPath@@@@interface'>CanvasPath</a>.</code><span><strong><code class=webidl>ellipse(x, y, radiusX, radiusY, rotation, startAngle, endAngle, counterclockwise)</code></strong> (<em>WebIDL operation</em>) <a class='self-link' href='#ellipse(x%2C%20y%2C%20radiusX%2C%20radiusY%2C%20rotation%2C%20startAngle%2C%20endAngle%2C%20counterclockwise)%40%40CanvasPath%40method' aria-label="Permalink for <a href='c.html#CanvasPath@@@@interface'>CanvasPath</a>.ellipse(x, y, radiusX, radiusY, rotation, startAngle, endAngle, counterclockwise)">§</a></span></dt>
<dd>Defined in <strong title='ellipse(x, y, radiusX, radiusY, rotation, startAngle, endAngle, counterclockwise) is defined in HTML'><a href=https://html.spec.whatwg.org/multipage/canvas.html#dom-context-2d-ellipse>HTML</a></strong> </dd>
<dt id="ellipsis@@text-overflow@value"><code class=prefix></code><span><strong><code class=css>ellipsis</code></strong> (<em>CSS value for <a href='t.html#text-overflow@@@@property'><code>text-overflow</code></a> </em>) <a class='self-link' href='#ellipsis%40%40text-overflow%40value' aria-label="Permalink for ellipsis">§</a></span></dt>
<dd>Defined in <strong title='ellipsis is defined in CSS Overflow 3'><a href=https://drafts.csswg.org/css-overflow-3/#overflow-ellipsis>CSS Overflow 3</a></strong> , <strong title='ellipsis is defined in CSS Overflow 4'><a href=https://drafts.csswg.org/css-overflow-4/#overflow-ellipsis>CSS Overflow 4</a></strong> , <strong title='ellipsis is defined in CSS User Interface 3'><a href=https://drafts.csswg.org/css-ui-3/#overflow-ellipsis>CSS User Interface 3</a></strong> </dd>
<dd>Referenced in
<a href=https://drafts.csswg.org/css-2022/ title='ellipsis is referenced by CSS Snapshot 2022'>CSS Snapshot 2022</a>,
<a href=https://drafts.csswg.org/css-2023/ title='ellipsis is referenced by CSS Snapshot 2023'>CSS Snapshot 2023</a></dd>
<dt id="@else@@@@at-rule"><code class=prefix></code><span><strong><code class=css>@else</code></strong> (<em>CSS @rule</em>) <a class='self-link' href='#%40else%40%40%40%40at-rule' aria-label="Permalink for @else">§</a></span></dt>
<dd>Defined in <strong title='@else is defined in CSS Conditional 5'><a href=https://drafts.csswg.org/css-conditional-5/#at-ruledef-else>CSS Conditional 5</a></strong> </dd>
<dt id="else@@if()@value"><code class=prefix></code><span><strong><code class=css>else</code></strong> (<em>CSS value for <a href='i.html#if()@@css-values%25%25function'><code>if()</code></a> </em>) <a class='self-link' href='#else%40%40if()%40value' aria-label="Permalink for else">§</a></span></dt>
<dd>Defined in <strong title='else is defined in CSS Values 5'><a href=https://drafts.csswg.org/css-values-5/#valdef-if-else>CSS Values 5</a></strong> </dd>
<dt id="elu@@MLOpSupportLimits@dict-member"><code class=prefix><a href='m.html#MLOpSupportLimits@@@@dictionary'>MLOpSupportLimits</a>.</code><span><strong><code class=webidl>elu</code></strong> (<em>WebIDL dictionary member</em>) <a class='self-link' href='#elu%40%40MLOpSupportLimits%40dict-member' aria-label="Permalink for <a href='m.html#MLOpSupportLimits@@@@dictionary'>MLOpSupportLimits</a>.elu">§</a></span></dt>
<dd>Defined in <strong title='elu is defined in Web Neural Network API'><a href=https://webmachinelearning.github.io/webnn/#dom-mlopsupportlimits-elu>Web Neural Network API</a></strong> </dd>