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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
|
---
title: Funzionalità sperimentali in Firefox
slug: Mozilla/Firefox/Funzionalità_sperimentali
translation_of: Mozilla/Firefox/Experimental_features
---
<div>{{FirefoxSidebar}}</div>
<p class="summary">In order to test new features, Mozilla publishes a test version of the Firefox browser, <a href="https://nightly.mozilla.org/">Firefox Nightly</a>, every day. These nightly builds of Firefox typically include experimental or partially-implemented features, including those for proposed or cutting-edge Web platform standards.</p>
<p class="summary"><span class="seoSummary">This page lists features that are in Nightly versions of Firefox along with information on how to activate them, if necessary.</span> You can test your Web sites and applications before these features get released and ensure everything will still work with the latest Web technology capabilities.</p>
<p>To test these experimental features, you need to download <a href="https://nightly.mozilla.org/">Firefox Nightly</a> or <a href="https://www.mozilla.org/en-US/firefox/developer/">Firefox Developer Edition</a>. Which you need is described alongside each feature's description below.</p>
<div class="blockIndicator note">
<p><strong>Editor's note:</strong> When adding features to these tables, please try to include a link to the relevant bug or bugs using the {{TemplateLink("bug")}} macro: <code>\{{bug(<em>bug-number</em>)}}</code>.</p>
</div>
<h2 id="HTML">HTML</h2>
<h3 id="Element_<dialog>">Element: <dialog></h3>
<p>The HTML {{HTMLElement("dialog")}} element and its associated DOM APIs provide support for HTML-based modal dialog boxes. The current implementation is a little inelegant but is basically functional. See {{bug(840640)}} for more details.</p>
<table class="standard-table" style="max-width: 42rem;">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Release channel</th>
<th scope="col" style="vertical-align: bottom;">Version added</th>
<th scope="col" style="vertical-align: bottom;">Enabled by default?</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>53</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>53</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>53</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>53</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Preference name</th>
<th colspan="2"><code>dom.dialog_element.enabled</code></th>
</tr>
</tbody>
</table>
<h3 id="Global_attribute_inputmode">Global attribute: inputmode</h3>
<p>Our implementation of the <code><a href="/en-US/docs/Web/HTML/Global_attributes/inputmode">inputmode</a></code> global attribute has been updated as per the WHATWG spec ({{bug(1509527)}}), but we still need to make other changes too, like making it available on contenteditable content. See also {{bug(1205133)}} for details.</p>
<table class="standard-table" style="max-width: 42rem;">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Release channel</th>
<th scope="col" style="vertical-align: bottom;">Version added</th>
<th scope="col" style="vertical-align: bottom;">Enabled by default?</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>75</td>
<td>Yes</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>75</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>75</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>75</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Preference name</th>
<th colspan="2"><code>dom.forms.inputmode</code></th>
</tr>
</tbody>
</table>
<h3 id="<link_relpreload>"><link rel="preload"></h3>
<p>The {{HTMLElement("link")}} element's {{htmlattrxref("rel", "link")}} attribute is intended to help provide performance gains by letting you download resources earlier in the page lifecycle, ensuring that they're available earlier and are less likely to block page rendering. Read <a href="/en-US/docs/Web/HTML/Preloading_content">Preloading content with rel="preload"</a> for more details. For more details on the status of this feature, see {{bug(1639607)}}.</p>
<table class="standard-table" style="max-width: 42rem;">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Release channel</th>
<th scope="col" style="vertical-align: bottom;">Version added</th>
<th scope="col" style="vertical-align: bottom;">Enabled by default?</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>78</td>
<td>Yes</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>78</td>
<td>Yes</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>78</td>
<td>Yes</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>78</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Preference name</th>
<th colspan="2"><code>network.preload</code></th>
</tr>
</tbody>
</table>
<h2 id="CSS">CSS</h2>
<h3 id="Display_stray_control_characters_in_CSS_as_hex_boxes">Display stray control characters in CSS as hex boxes</h3>
<p>This feature renders control characters (Unicode category Cc) other than <em>tab</em> (<code>U+0009</code>), <em>line feed</em> (<code>U+000A</code>), <em>form feed</em> (<code>U+000C</code>), and <em>carriage return</em> (<code>U+000D</code>) as a hexbox when they are not expected.<br>
<br>
See {{bug(1099557)}} for more details.</p>
<table class="standard-table" style="max-width: 42rem;">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Release channel</th>
<th scope="col" style="vertical-align: bottom;">Version added</th>
<th scope="col" style="vertical-align: bottom;">Enabled by default?</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>43</td>
<td>Yes</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>43</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>43</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>43</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Preference name</th>
<th colspan="2"><code>layout.css.control-characters.enabled</code> or <code>layout.css.control-characters.visible</code></th>
</tr>
</tbody>
</table>
<h3 id="Property_initial-letter">Property: initial-letter</h3>
<p>The {{cssxref("initial-letter")}} CSS property is part of the {{SpecName("CSS3 Inline")}} specification and allows you to specify how dropped, raised, and sunken initial letters are displayed.<br>
<br>
See {{bug(1223880)}} for more details.</p>
<table class="standard-table" style="max-width: 42rem;">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Release channel</th>
<th scope="col" style="vertical-align: bottom;">Version added</th>
<th scope="col" style="vertical-align: bottom;">Enabled by default?</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>50</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>50</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>50</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>50</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Preference name</th>
<th colspan="2"><code>layout.css.initial-letter.enabled</code></th>
</tr>
</tbody>
</table>
<h3 id="Conic_gradients">Conic gradients</h3>
<p><a href="/en-US/docs/Web/CSS/gradient#Conic_gradient">Conic gradients</a> expand CSS gradients to allow the color transitions to be rendered circling around a center point rather than radiating from it. See {{bug(1175958)}} for more details.</p>
<table class="standard-table" style="max-width: 42rem;">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Release channel</th>
<th scope="col" style="vertical-align: bottom;">Version added</th>
<th scope="col" style="vertical-align: bottom;">Enabled by default?</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>75</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>75</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>75</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>75</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Preference name</th>
<th colspan="2"><code>layout.css.conic-gradient.enabled</code> and <code>gfx.webrender.all</code></th>
</tr>
</tbody>
</table>
<h3 id="Pseudo-class_focus-visible">Pseudo-class: :focus-visible</h3>
<p>Allows focus styles to be applied to elements like buttons and form controls, only when they are focused using the keyboard (e.g. when tabbing between elements), and not when they are focused using a mouse or other pointing device. See <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1617600">bug 1617600</a> for more details.</p>
<table class="standard-table" style="max-width: 42rem;">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Release channel</th>
<th scope="col" style="vertical-align: bottom;">Version added</th>
<th scope="col" style="vertical-align: bottom;">Enabled by default?</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>75</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>75</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>75</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>75</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Preference name</th>
<th colspan="2"><code>layout.css.focus-visible.enabled</code></th>
</tr>
</tbody>
</table>
<h3 id="Single_numbers_as_aspect_ratio_in_media_queries">Single numbers as aspect ratio in media queries</h3>
<p>Support for using a single {{cssxref("number")}} as a {{cssxref("ratio")}} when specifying the aspect ratio for a <a href="/en-US/docs/Web/CSS/Media_Queries">media query</a>. See {{bug(1565562)}} for more details.</p>
<table class="standard-table" style="max-width: 42rem;">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Release channel</th>
<th scope="col" style="vertical-align: bottom;">Version added</th>
<th scope="col" style="vertical-align: bottom;">Enabled by default?</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>70</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>70</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>70</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>70</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Preference name</th>
<th colspan="2"><code>layout.css.aspect-ratio-number.enabled</code></th>
</tr>
</tbody>
</table>
<h3 id="Property_backdrop-filter">Property: backdrop-filter</h3>
<p>The {{cssxref("backdrop-filter")}} property applies filter effects to the area behind an element. See {{bug(1178765)}} for more details.</p>
<table class="standard-table" style="max-width: 42rem;">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Release channel</th>
<th scope="col" style="vertical-align: bottom;">Version added</th>
<th scope="col" style="vertical-align: bottom;">Enabled by default?</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>70</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>70</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>70</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>70</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Preference name</th>
<th colspan="2"><code>layout.css.backdrop-filter.enabled</code></th>
</tr>
</tbody>
</table>
<h3 id="Grid_Masonry_layout">Grid: Masonry layout</h3>
<p>Adds support for a masonry style layout based on grid layout where one axis has a masonry layout while having normal grid layout on the other. This allows to create gallery style layouts like on Pinterest. See {{bug(1607954)}} for more details.</p>
<table class="standard-table" style="max-width: 42rem;">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Release channel</th>
<th scope="col" style="vertical-align: bottom;">Version added</th>
<th scope="col" style="vertical-align: bottom;">Enabled by default?</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>77</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>77</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>77</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>77</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Preference name</th>
<th colspan="2"><code>layout.css.grid-template-masonry-value.enabled</code></th>
</tr>
</tbody>
</table>
<h2 id="APIs">APIs</h2>
<h3 id="Graphics_Canvas_WebGL_and_WebGPU">Graphics: Canvas, WebGL, and WebGPU</h3>
<h4 id="Interface_OffscreenCanvas">Interface: OffscreenCanvas</h4>
<p>The {{domxref("OffscreenCanvas")}} interface provides a canvas that can be rendered offscreen. It is available in both the window and <a href="/en-US/docs/Web/API/Web_Workers_API">worker</a> contexts. See {{bug(1390089)}} for more details.</p>
<table class="standard-table" style="max-width: 42rem;">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Release channel</th>
<th scope="col" style="vertical-align: bottom;">Version added</th>
<th scope="col" style="vertical-align: bottom;">Enabled by default?</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>44</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>44</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>44</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>44</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Preference name</th>
<th colspan="2"><code>gfx.offscreencanvas.enabled</code></th>
</tr>
</tbody>
</table>
<h4 id="Hit_regions">Hit regions</h4>
<p>Whether the mouse coordinates are within a particular area on the canvas is a common problem to solve. The hit region API allows you define an area of your canvas and provides another possibility to expose interactive content on a canvas to accessibility tools.</p>
<table class="standard-table" style="max-width: 42rem;">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Release channel</th>
<th scope="col" style="vertical-align: bottom;">Version added</th>
<th scope="col" style="vertical-align: bottom;">Enabled by default?</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>30</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>30</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>30</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>30</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Preference name</th>
<th colspan="2"><code>canvas.hitregions.enabled</code></th>
</tr>
</tbody>
</table>
<h4 id="WebGL_Draft_extensions">WebGL: Draft extensions</h4>
<p>When this preference is enabled, any WebGL extensions currently in "draft" status which are being tested are enabled for use. Currently, there are no WebGL extensions being tested by Firefox.</p>
<h4 id="WebGPU_API">WebGPU API</h4>
<p>This new API provides low-level support for performing computation and graphics rendering using the {{interwiki("wikipedia", "Graphics Processing Unit")}} (GPU) of the user's device or computer. The <a href="https://gpuweb.github.io/gpuweb/">specification</a> is still a work-in-progress. See {{bug(1602129)}} for our progress on this API.</p>
<table class="standard-table" style="max-width: 42rem;">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Release channel</th>
<th scope="col" style="vertical-align: bottom;">Version added</th>
<th scope="col" style="vertical-align: bottom;">Enabled by default?</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>73</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>73</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>73</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>73</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Preference name</th>
<th colspan="2"><code>dom.webgpu.enabled</code></th>
</tr>
</tbody>
</table>
<h3 id="HTML_DOM_API">HTML DOM API</h3>
<h4 id="Global_event_beforeinput">Global event: beforeinput</h4>
<p>The global {{domxref("HTMLElement.beforeinput_event", "beforeinput")}} event is sent to an {{HTMLElement("input")}} element—or any element whose {{htmlattrxref("contenteditable")}} attribute is enabled—immediately before the element's value changes.</p>
<table class="standard-table" style="max-width: 42rem;">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Release channel</th>
<th scope="col" style="vertical-align: bottom;">Version added</th>
<th scope="col" style="vertical-align: bottom;">Enabled by default?</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>74</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>74</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>74</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>74</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Preference name</th>
<th colspan="2"><code>dom.input_events.beforeinput.enabled</code></th>
</tr>
</tbody>
</table>
<h4 id="HTMLMediaElement_method_setInkId">HTMLMediaElement method: setInkId()</h4>
<p>{{domxref("HTMLMediaElement.setSinkId()")}} allows you to set the sink ID of an audio output device on an {{domxref("HTMLMediaElement")}}, thereby changing where the audio is being output. See {{bug(934425)}} for more details.</p>
<table class="standard-table" style="max-width: 42rem;">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Release channel</th>
<th scope="col" style="vertical-align: bottom;">Version added</th>
<th scope="col" style="vertical-align: bottom;">Enabled by default?</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>64</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>64</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>64</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>64</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Preference name</th>
<th colspan="2"><code>media.setsinkid.enabled</code></th>
</tr>
</tbody>
</table>
<h4 id="HTMLMediaElement_properties_audioTracks_and_videoTracks">HTMLMediaElement properties: audioTracks and videoTracks</h4>
<p>Enabling this feature adds the {{domxref("HTMLMediaElement.audioTracks")}} and {{domxref("HTMLMediaElement.videoTracks")}} properties to all HTML media elements. However, because Firefox doesn't currently suport multiple audio and video tracks, the most common use cases for these properties don't work, so they're both disabled by default. See {{bug(1057233)}} for more details.</p>
<table class="standard-table" style="max-width: 42rem;">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Release channel</th>
<th scope="col" style="vertical-align: bottom;">Version added</th>
<th scope="col" style="vertical-align: bottom;">Enabled by default?</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>33</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>33</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>33</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>33</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Preference name</th>
<th colspan="2"><code>media.track.enabled</code></th>
</tr>
</tbody>
</table>
<h3 id="DOM">DOM</h3>
<h4 id="Document_property_autoplayPolicy">Document property: autoplayPolicy</h4>
<p>The {{domxref("document")}} property {{domxref("Document.autoplayPolicy", "autoplayPolicy")}} returns a string indicating how the browser handles requests to automatically play media (either using the {{domxref("HTMLMediaElement.autoplay", "autoplay")}} property on a media element or by attempting to trigger playback from JavaScript code. The spec for this API is still being written. The value changes over time depending on what the user is doing, their preferences, and the state of the browser in general. Potential values include <code>allowed</code> (autoplay is currently permitted), <code>allowed-muted</code> (autoplay is allowed but only with no—or muted—audio), and <code>disallowed</code> (autoplay is not allowed at this time). See {{bug(1506289)}} for more details.</p>
<table class="standard-table" style="max-width: 42rem;">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Release channel</th>
<th scope="col" style="vertical-align: bottom;">Version added</th>
<th scope="col" style="vertical-align: bottom;">Enabled by default?</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>66</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>66</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>66</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>66</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Preference name</th>
<th colspan="2"><code>dom.media.autoplay.autoplay-policy-api</code></th>
</tr>
</tbody>
</table>
<h4 id="GeometryUtils_methods_convertPointFromNode_convertRectFromNode_and_convertQuadFromNode">GeometryUtils methods: convertPointFromNode(), convertRectFromNode(), and convertQuadFromNode()</h4>
<p>The {{domxref("GeometryUtils")}} methods {{domxref("GeometryUtils.convertPointFromNode", "convertPointFromNode()")}}, {{domxref("GeometryUtils.convertRectFromNode", "convertRectFromNode()")}}, and {{domxref("GeometryUtils.convertQuadFromNode", "convertQuadFromNode()")}} map the given point, rectangle, or quadruple from the {{domxref("Node")}} on which they're called to another node. See {{bug(918189)}} for more details.</p>
<table class="standard-table" style="max-width: 42rem;">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Release channel</th>
<th scope="col" style="vertical-align: bottom;">Version added</th>
<th scope="col" style="vertical-align: bottom;">Enabled by default?</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>31</td>
<td>Yes</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>31</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>31</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>31</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Preference name</th>
<th colspan="2"><code>layout.css.getBoxQuads.enabled</code></th>
</tr>
</tbody>
</table>
<h4 id="GeometryUtils_method_getBoxQuads">GeometryUtils method: getBoxQuads()</h4>
<p>The {{domxref("GeometryUtils")}} method {{domxref("GeometryUtils.getBoxQuads", "getBoxQuads()")}} returns the CSS boxes for a {{domxref("Node")}} relative to any other node or viewport. See {{bug(917755)}} for more details.</p>
<table class="standard-table" style="max-width: 42rem;">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Release channel</th>
<th scope="col" style="vertical-align: bottom;">Version added</th>
<th scope="col" style="vertical-align: bottom;">Enabled by default?</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>31</td>
<td>Yes</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>31</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>31</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>31</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Preference name</th>
<th colspan="2"><code>layout.css.convertFromNode.enable</code></th>
</tr>
</tbody>
</table>
<h3 id="Payment_Request_API">Payment Request API</h3>
<h4 id="Primary_payment_handling">Primary payment handling</h4>
<p>The <a href="/en-US/docs/Web/API/Payment_Request_API">Payment Request API</a> provides support for handling web-based payments within web content or apps. Due to a bug that came up during testing of the user interface, we have decided to postpone shipping this API while discussions over potential changes to the API are held. Work is ongoing. See {{bug(1318984)}} for more details on the state of this API.</p>
<table class="standard-table" style="max-width: 42rem;">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Release channel</th>
<th scope="col" style="vertical-align: bottom;">Version added</th>
<th scope="col" style="vertical-align: bottom;">Enabled by default?</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>55</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>55</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>55</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>55</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Preference name</th>
<th colspan="2"><code>dom.payments.request.enabled</code> and<br>
<code>dom.payments.request.supportedRegions</code></th>
</tr>
</tbody>
</table>
<h4 id="Basic_Card_API">Basic Card API</h4>
<p>Extends the <a href="/en-US/docs/Web/API/Payment_Request_API">Payment Request API</a> with dictionaries that define data structures describing card payment types and payment responses. See {{domxref("BasicCardRequest")}} and {{domxref("BasicCardResponse")}}.</p>
<table class="standard-table" style="max-width: 42rem;">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Release channel</th>
<th scope="col" style="vertical-align: bottom;">Version added</th>
<th scope="col" style="vertical-align: bottom;">Enabled by default?</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>56</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>56</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>56</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>56</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Preference name</th>
<th colspan="2"><code>dom.payments.request.enabled</code> and<br>
<code>dom.payments.request.supportedRegions</code></th>
</tr>
</tbody>
</table>
<h3 id="Visual_Viewport_API">Visual Viewport API</h3>
<p>The <a href="/en-US/docs/Web/API/Visual_Viewport_API">Visual Viewport API</a> provides access to information describing the position of the {{Glossary("visual viewport")}} relative to the document as well as to the window's content area. It also supports events to monitor changes to this information. See {{bug(1550390)}} for more details. There currently is no real plan to ship this on desktop, but you can track the state of that just in case it changes in {{bug(1551302)}}.</p>
<table class="standard-table" style="max-width: 42rem;">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Release channel</th>
<th scope="col" style="vertical-align: bottom;">Version added</th>
<th scope="col" style="vertical-align: bottom;">Enabled by default?</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>63</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>63</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>63</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>63</td>
<td>Starting in Firefox 68, on Android only</td>
</tr>
<tr>
<th scope="row">Preference name</th>
<th colspan="2"><code>dom.visualviewport.enabled</code></th>
</tr>
</tbody>
</table>
<h3 id="Constructable_stylesheets">Constructable stylesheets</h3>
<p>The addition of a constructor to the {{domxref("CSSStyleSheet")}} interface as well as a variety of related changes makes it possible to directly create new stylesheets without having to add the sheet to the HTML. This makes it much easier to create reusable stylesheets for use with <a href="/en-US/docs/Web/Web_Components/Using_shadow_DOM">Shadow DOM</a>. Our implementation is not yet complete; see {{bug(1520690)}} for more details.</p>
<table class="standard-table" style="max-width: 42rem;">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Release channel</th>
<th scope="col" style="vertical-align: bottom;">Version added</th>
<th scope="col" style="vertical-align: bottom;">Enabled by default?</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>73</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>73</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>73</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>73</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Preference name</th>
<th colspan="2"><code>layout.css.constructable-stylesheets.enabled</code></th>
</tr>
</tbody>
</table>
<h3 id="WebRTC_and_media">WebRTC and media</h3>
<p>The following experimental features include those found in the <a href="/en-US/docs/Web/API/WebRTC_API">WebRTC API</a>, the <a href="/en-US/docs/Web/API/Web_Audio_API">Web Audio API</a>, the <a href="/en-US/docs/Web/API/Media_Session_API">Media Session API</a>, the <a href="/en-US/docs/Web/API/Media_Source_Extensions_API">Media Source Extensions API</a>, the <a href="/en-US/docs/Web/API/Encrypted_Media_Extensions_API">Encrypted Media Extensions API</a>, and the <a href="/en-US/docs/Web/API/Media_Streams_API">Media Capture and Streams API</a>.</p>
<h4 id="Media_Session_API">Media Session API</h4>
<p>The entire Firefox implementation of the Media Session API is currently experimental. This API is used to customize the handling of media-related notifications, to manage events and data useful for presenting a user interface for managing media playback, and to obtain media file metadata. See {{bug(1112032)}} for more details.</p>
<table class="standard-table" style="max-width: 42rem;">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Release channel</th>
<th scope="col" style="vertical-align: bottom;">Version added</th>
<th scope="col" style="vertical-align: bottom;">Enabled by default?</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>71</td>
<td>Yes</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>71</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>71</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>71</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Preference name</th>
<th colspan="2"><code>dom.media.mediasession.enabled</code></th>
</tr>
</tbody>
</table>
<h4 id="Asynchronous_SourceBuffer_add_and_remove">Asynchronous SourceBuffer add and remove</h4>
<p>This adds the promise-based methods {{domxref("SourceBuffer.appendBufferAsync", "appendBufferAsync()")}} and {{domxref("SourceBuffer.removeAsync", "removeAsync()")}} for adding and removing media source buffers to the {{domxref("SourceBuffer")}} interface. See {{bug(1280613)}} and {{bug(778617)}} for more information.</p>
<table class="standard-table" style="max-width: 42rem;">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Release channel</th>
<th scope="col" style="vertical-align: bottom;">Version added</th>
<th scope="col" style="vertical-align: bottom;">Enabled by default?</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>62</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>62</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>62</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>62</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Preference name</th>
<th colspan="2"><code>media.mediasource.experimental.enabled</code></th>
</tr>
</tbody>
</table>
<h4 id="AVIF_AV1_Image_File_format_support">AVIF (AV1 Image File format) support</h4>
<p>With this feature enabled, Firefox supports the AV1 Image File (AVIF) format. This is a still image file format that leverages the capabilities of the AV1 video compression algorithms to reduce image size. See {{bug(1443863)}} for more details.</p>
<table class="standard-table" style="max-width: 42rem;">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Release channel</th>
<th scope="col" style="vertical-align: bottom;">Version added</th>
<th scope="col" style="vertical-align: bottom;">Enabled by default?</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>77</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>77</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>77</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>77</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Preference name</th>
<th colspan="2"><code>image.avif.enabled</code></th>
</tr>
</tbody>
</table>
<h2 id="Security_and_privacy">Security and privacy</h2>
<h4 id="Block_plain_text_requests_from_Flash_on_encrypted_pages">Block plain text requests from Flash on encrypted pages</h4>
<p>In order to help mitigate man-in-the-middle (MitM) attacks caused by Flash content on encrypted pages, a preference has been added to treat <code>OBJECT_SUBREQUEST</code>s as active content. See {{bug(1190623)}} for more details.</p>
<table class="standard-table" style="max-width: 42rem;">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Release channel</th>
<th scope="col" style="vertical-align: bottom;">Version added</th>
<th scope="col" style="vertical-align: bottom;">Enabled by default?</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>59</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>59</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>59</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>59</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Preference name</th>
<th colspan="2"><code>security.mixed_content.block_object_subrequest</code></th>
</tr>
</tbody>
</table>
<h4 id="Insecure_page_labeling">Insecure page labeling</h4>
<p>These two preferences add a "Not secure" text label in the address bar next to the traditional lock icon when a page is loaded insecurely (that is, using {{Glossary("HTTP")}} rather than {{Glossary("HTTPS")}}). See {{bug(1335970)}} for more details.</p>
<table class="standard-table" style="max-width: 42rem;">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Release channel</th>
<th scope="col" style="vertical-align: bottom;">Version added</th>
<th scope="col" style="vertical-align: bottom;">Enabled by default?</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>60</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>60</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>60</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>60</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Preference name</th>
<th colspan="2"><code>security.insecure_connection_text.enabled</code> for normal browsing mode; <code>security.insecure_connection_text.pbmode.enabled</code> for private browsing mode</th>
</tr>
</tbody>
</table>
<h4 id="Upgrading_mixed_display_content">Upgrading mixed display content</h4>
<p>When enabled, this preference causes Firefox to automatically upgrade requests for media content from HTTP to HTTPS on secure pages. The intent is to prevent mixed-content conditions in which some content is loaded securely while other content is insecure. If the upgrade fails (because the media's host doesn't support HTTPS), the media is not loaded. See {{bug(1435733)}} for more details.</p>
<p>This also changes the console warning; if the upgrade succeeds, the message indicates that the request was upgraded, instead of showing a warning.</p>
<table class="standard-table" style="max-width: 42rem;">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Release channel</th>
<th scope="col" style="vertical-align: bottom;">Version added</th>
<th scope="col" style="vertical-align: bottom;">Enabled by default?</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>60</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>60</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>60</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>60</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Preference name</th>
<th colspan="2"><code>security.mixed_content.upgrade_display_content</code></th>
</tr>
</tbody>
</table>
<h4 id="Implicit_relnoopener_on_links_with_target_blank">Implicit rel="noopener" on links with target="_blank"</h4>
<p>Following Safari's lead, this experiment causes setting the {{htmlattrxref("target", "a")}} attribute on an {{HTMLElement("a")}} element to <code>_blank</code> (that is, using <code>target="_blank"</code>) to imply that the default value of {{htmlattrxref("rel", "a")}} is <code>noopener</code> rather than <code>opener</code>, which is the usual default. To bypass this security measure, web developers should explicitly request an opener relationship using <code>rel="opener"</code> on their <code><a></code> elements that use <code>target="_blank"</code> to open the link into a new window or tab. See {{bug(1503681)}} for more details.</p>
<table class="standard-table" style="max-width: 42rem;">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Release channel</th>
<th scope="col" style="vertical-align: bottom;">Version added</th>
<th scope="col" style="vertical-align: bottom;">Enabled by default?</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>65</td>
<td>Yes</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>65</td>
<td>Yes</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>65</td>
<td>Yes</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>65</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Preference name</th>
<th colspan="2"><code>dom.targetBlankNoOpener.enabled</code></th>
</tr>
</tbody>
</table>
<h4 id="FTP_support_disabled">FTP support disabled</h4>
<p>For security reasons, Mozilla intends to remove support for {{Glossary("FTP")}} from Firefox in 2010, effective in Firefox 82. See {{bug(1622409)}} for implementation progress. The <code>network.ftp.enabled</code> preference must be enabled (set to <code>true</code>) to allow FTP to be used.</p>
<table class="standard-table" style="max-width: 42rem;">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Release channel</th>
<th scope="col" style="vertical-align: bottom;">Version added</th>
<th scope="col" style="vertical-align: bottom;">Enabled by default?</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>77</td>
<td>Yes</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>77</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>77</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>77</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Preference name</th>
<th colspan="2"><code>network.ftp.enabled</code></th>
</tr>
</tbody>
</table>
<h2 id="Developer_tools">Developer tools</h2>
<p>Mozilla's developer tools are constantly evolving. We experiment with new ideas, add new features, and test them on the Nightly and Developer Edition channels before letting them go through to beta and release. The features below are the current crop of experimental developer tool features.</p>
<h4 id="Color_scheme_simulation">Color scheme simulation</h4>
<p>Adds an option to simulate different color schemes allowing to test {{cssxref("@media/prefers-color-scheme", "@prefers-color-scheme")}} media queries. Using this media query lets your style sheet specify whether it prefers a light or dark user interface. This feature lets you test your code without having to change settings in your browser (or operating system, if the browser follows a system-wide color scheme setting).</p>
<p>See {{bug(1550804)}} and {{bug(1137699)}} for more details.</p>
<table class="standard-table" style="max-width: 42rem;">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Release channel</th>
<th scope="col" style="vertical-align: bottom;">Version added</th>
<th scope="col" style="vertical-align: bottom;">Enabled by default?</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>72</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>72</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>72</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>72</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Preference name</th>
<th colspan="2"><code>devtools.inspector.color-scheme-simulation.enabled</code></th>
</tr>
</tbody>
</table>
<h4 id="Execution_context_selector">Execution context selector</h4>
<p>This feature displays a button on the console's command line that lets you change the context in which the expression you enter will be executed. See {{bug(1605154)}} and {{bug(1605153)}} for more details.</p>
<table class="standard-table" style="max-width: 42rem;">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Release channel</th>
<th scope="col" style="vertical-align: bottom;">Version added</th>
<th scope="col" style="vertical-align: bottom;">Enabled by default?</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>75</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>75</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>75</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>75</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Preference name</th>
<th colspan="2"><code>devtools.webconsole.input.context</code></th>
</tr>
</tbody>
</table>
<h4 id="Mobile_gesture_support_in_Responsive_Design_Mode">Mobile gesture support in Responsive Design Mode</h4>
<p>Mouse gestures are used to simulate mobile gestures like swiping/scrolling, double-tap and pinch-zooming and long-press to select/open the context menu. See {{bug(1621781)}}, {{bug(1245183)}}, and {{bug(1401304)}} for more details.</p>
<table class="standard-table" style="max-width: 42rem;">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Release channel</th>
<th scope="col" style="vertical-align: bottom;">Version added</th>
<th scope="col" style="vertical-align: bottom;">Enabled by default?</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>76<sup>[1]</sup></td>
<td>Yes</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>76<sup>[1]</sup></td>
<td>Yes</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>76<sup>[1]</sup></td>
<td>Yes</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>76<sup>[1]</sup></td>
<td>No</td>
</tr>
<tr>
<th scope="row">Preference name</th>
<th colspan="2">n/a</th>
</tr>
</tbody>
</table>
<p>[1] Support for zooming using the double-tap gesture was added in Firefox 76. The other gestures were added for Firefox 79.</p>
<h4 id="Compatibility_panel">Compatibility panel</h4>
<p>A side panel for the Page Inspector that shows you information detailing your app's cross-browser compatibility status. See {{bug(1584464)}} for more details.</p>
<table class="standard-table" style="max-width: 42rem;">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Release channel</th>
<th scope="col" style="vertical-align: bottom;">Version added</th>
<th scope="col" style="vertical-align: bottom;">Enabled by default?</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>71</td>
<td>Yes</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>71</td>
<td>Yes</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>71</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>71</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Preference name</th>
<th colspan="2"><code>devtools.inspector.compatibility.enabled</code></th>
</tr>
</tbody>
</table>
<h2 id="UI">UI</h2>
<h4 id="Desktop_zooming">Desktop zooming</h4>
<p>This feature lets you enable smooth pinch zooming on desktop computers without requiring layout reflows, just like mobile devices do. See {{bug(1245183)}} for further details.</p>
<table class="standard-table" style="max-width: 42rem;">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Release channel</th>
<th scope="col" style="vertical-align: bottom;">Version added</th>
<th scope="col" style="vertical-align: bottom;">Enabled by default?</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>42</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>42</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>42</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>42</td>
<td>No</td>
</tr>
<tr>
<th scope="row">Preference name</th>
<th colspan="2"><code>apz.allow_zooming</code> and (on Windows) <code>apz.windows.use_direct_manipulation</code></th>
</tr>
</tbody>
</table>
<h2 id="See_also">See also</h2>
<ul>
<li><a href="/en-US/docs/Mozilla/Firefox/Releases">Firefox developer release notes</a></li>
<li><a href="https://nightly.mozilla.org/">Firefox Nightly</a></li>
<li><a href="https://www.mozilla.org/en-US/firefox/developer/">Firefox Developer Edition</a></li>
</ul>
|