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
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
|
---
title: Fonctionnalités expérimentales dans Firefox
slug: Mozilla/Firefox/Experimental_features
tags:
- Experimental
- Firefox
- Preferences
- features
translation_of: Mozilla/Firefox/Experimental_features
---
<div>{{FirefoxSidebar}}</div>
<p>Cette page détaille les fonctionnalités expérimentales ou partiellement implémentées présentes dans Firefox. Cela inclut les fonctionnalités concernées par les standards web très récents ou en cours de construction. Les informations de cette page permettent de savoir quelles versions contiennent ces fonctionnalités, si elles sont activées par défaut et la <em>préférence</em> qui peut être utilisée pour les activer ou les désactiver. Cela vous permet de tester les fonctionnalités avant leur sortie « générale ».</p>
<p>Les nouvelles fonctionnalités sont d'abord introduites dans <a href="https://nightly.mozilla.org/">Firefox Nightly</a> où elles sont activées par défaut la plupart du temps. Elles passent ensuite sur la version <a href="https://www.mozilla.org/fr/firefox/developer/">Firefox Developer Edition</a> puis enfin dans la version finale (<i>release</i>). Lorsqu'une fonctionnalité est activée par défaut dans une version <i>release</i>, elle n'est plus considérée comme expérimentale et devrait être retiré de cette liste.</p>
<p>Les fonctionnalités expérimentales peuvent être activées ou désactivées via <a href="https://support.mozilla.org/fr/kb/about-config-editor-firefox">l'éditeur de configuration Firefox</a> (accessible en saisissant <code>about:config</code> dans la barre d'adresse de Firefox) en modifiant la ou les <em>préférence(s)</em> indiquées ci-après.</p>
<h2 id="html">HTML</h2>
<h3 id="element_<dialog>">L'élément <dialog></h3>
<p>L'élément HTML <a href="/fr/docs/Web/HTML/Element/dialog"><code><dialog></code></a> et les API du DOM associées permettent de créer des boîtes de dialogue modales en HTML. L'implémentation actuelle manque de finesse mais permet les fonctionnalités de base. Voir <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=840640">le bug 840640</a> pour plus de détails.</p>
<table class="standard-table">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Canal</th>
<th scope="col" style="vertical-align: bottom;">Ajouté dans la version</th>
<th scope="col" style="vertical-align: bottom;">Activé par défaut</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>53</td>
<td>Oui</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>53</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>53</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>53</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Nom de la préférence</th>
<th colspan="2"><code>dom.dialog_element.enabled</code></th>
</tr>
</tbody>
</table>
<h3 id="global_attribute_inputmode">Attribut global inputmode</h3>
<p>L'implémentation de l'attribut global <code><a href="/fr/docs/Web/HTML/Global_attributes/inputmode">inputmode</a></code> a été mise à jour afin de suivre la spécification WHATWG (<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1509527">le bug 1509527</a>), mais d'autres changements sont encore nécessaires (par exemple, le rendre disponible pour le contenu <code>contenteditable</code>), voir <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1205133">le bug 1205133</a> pour plus de détails.</p>
<table class="standard-table">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Canal</th>
<th scope="col" style="vertical-align: bottom;">Ajouté dans la version</th>
<th scope="col" style="vertical-align: bottom;">Activé par défaut</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>75</td>
<td>Oui</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>75</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>75</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>75</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Nom de la préférence</th>
<th colspan="2"><code>dom.forms.inputmode</code></th>
</tr>
</tbody>
</table>
<h3 id="inert_attribute">Attribut inert</h3>
<p>La propriété <a href="/fr/docs/Web/API/HTMLElement/inert"><code>HTMLElement.inert</code></a> de <a href="/fr/docs/Web/API/HTMLElement"><code>HTMLElement</code></a> est un booléen qui, lorsqu'il est présent, peut permettre au navigateur d'ignorer l'élément pour les technologies d'assistance, la recherche sur la page et la sélection de texte. Pour plus de détails sur cette fonctionnalité, voir <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1655722">le bug 1655722</a>.</p>
<table class="standard-table">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Canal</th>
<th scope="col" style="vertical-align: bottom;">Ajouté dans la version</th>
<th scope="col" style="vertical-align: bottom;">Activé par défaut</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>81</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>81</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>81</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>81</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Nom de la préférence</th>
<th colspan="2"><code>html5.inert.enabled</code></th>
</tr>
</tbody>
</table>
<h3 id="layout_for_input_typesearch">Disposition pour les champs input de type search</h3>
<p>La mise en forme des éléments <code>input type="search"</code> a été mise à jour. Il y a désormais une icône qui apparaît après une saisie pour permettre d'effacer le champ. Ce comportement permet de rejoindre celui des autres navigateurs. Voir <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=558594">le bug 558594</a> pour plus de détails.</p>
<table class="standard-table">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Canal</th>
<th scope="col" style="vertical-align: bottom;">Ajouté dans la version</th>
<th scope="col" style="vertical-align: bottom;">Activé par défaut</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>81</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>81</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>81</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>81</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Nom de la préférence</th>
<th colspan="2"><code>layout.forms.input-type-search.enabled</code></th>
</tr>
</tbody>
</table>
<h2 id="css">CSS</h2>
<h3 id="display_stray_control_characters_in_css_as_hex_boxes">Affichage des caractères de contrôle (rectangle avec valeur hexadécimale)</h3>
<p>Cette fonctionnalité affiche les caractères de contrôle (catégorie Unicode Cc) autres que <em>tab</em> (<code>U+0009</code>), <em>saut de ligne</em> (<code>U+000A</code>), <em>saut de page</em> (<code>U+000C</code>) et <em>retour chariot</em> (<code>U+000D</code>) sous la forme d'un rectangle avec leur valeur hexadécimale à l'intérieur lorsque ces caractères sont inattendus. Voir <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1099557">le bug 1099557</a> pour plus de détails.</p>
<table class="standard-table">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Canal</th>
<th scope="col" style="vertical-align: bottom;">Ajouté dans la version</th>
<th scope="col" style="vertical-align: bottom;">Activé par défaut</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>43</td>
<td>Oui</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>43</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>43</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>43</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Nom de la préférence</th>
<th colspan="2"><code>layout.css.control-characters.enabled</code> ou <code>layout.css.control-characters.visible</code></th>
</tr>
</tbody>
</table>
<h3 id="property_initial-letter">Propriété initial-letter</h3>
<p>La propriété CSS <a href="/fr/docs/Web/CSS/initial-letter"><code>initial-letter</code></a> fait partie du module de spécification <a href="https://drafts.csswg.org/css-inline/">CSS3 Inline</a> et permet d'indiquer l'élévation (entre autres) des lettres initiales. Voir <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1223880">le bug 1223880</a> pour plus de détails.</p>
<table class="standard-table">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Canal</th>
<th scope="col" style="vertical-align: bottom;">Ajouté dans la version</th>
<th scope="col" style="vertical-align: bottom;">Activé par défaut</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>50</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>50</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>50</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>50</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Nom de la préférence</th>
<th colspan="2"><code>layout.css.initial-letter.enabled</code></th>
</tr>
</tbody>
</table>
<h3 id="property_aspect-ratio">Propriété aspect-ratio</h3>
<p>La propriété CSS <a href="/fr/docs/Web/CSS/aspect-ratio"><code>aspect-ratio</code></a> est décrite dans le module de spécification <a href="https://drafts.csswg.org/css-sizing-4/">CSS4 Sizing</a> et permet de créer des boîtes qui respectent des proportions (<i>aspect ratio</i> en anglais) données. Voir <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1639963">le bug 1639963</a> et <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1646096">le bug 1646096</a> pour plus de détails.</p>
<table class="standard-table">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Canal</th>
<th scope="col" style="vertical-align: bottom;">Ajouté dans la version</th>
<th scope="col" style="vertical-align: bottom;">Activé par défaut</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>81</td>
<td>Oui</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>81</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>81</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>81</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Nom de la préférence</th>
<th colspan="2"><code>layout.css.aspect-ratio.enabled</code></th>
</tr>
</tbody>
</table>
<h3 id="descriptor_size_adjust">Descripteur size-adjust</h3>
<p>Le descripteur CSS <a href="/fr/docs/Web/CSS/@font-face/size-adjust"><code>@font-face/size-adjust</code></a> est décrit dans le module de spécification <a href="https://drafts.csswg.org/css-fonts-5/">CSS5 Fonts</a> et définit un facteur de multiplication pour les contours des glyphes et les métriques associées à la police. Cela facilite l'harmonisation lorsqu'on utilise plusieurs polices qui sont affichées avec le même corps. Voir <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1698495">le bug 1698495</a> pour plus de détails.</p>
<table class="standard-table">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Canal</th>
<th scope="col" style="vertical-align: bottom;">Ajouté dans la version</th>
<th scope="col" style="vertical-align: bottom;">Activé par défaut</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>89</td>
<td>Oui</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>89</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>89</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>89</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Nom de la préférence</th>
<th colspan="2"><code>layout.css.size-adjust.enabled</code></th>
</tr>
</tbody>
</table>
<h3 id="single_numbers_as_aspect_ratio_in_media_queries">Nombres seuls pour les proportions dans les requêtes média</h3>
<p>Il s'agit ici de la prise en charge permettant d'utiliser un seul nombre (<a href="/fr/docs/Web/CSS/number"><code>number</code></a>) pour exprimer le <a href="/fr/docs/Web/CSS/ratio">ratio</a> lors de la définition d'une <a href="/fr/docs/Web/CSS/Media_Queries">requête média</a>. Voir <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1565562">le bug 1565562</a> pour plus de détails.</p>
<table class="standard-table">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Canal</th>
<th scope="col" style="vertical-align: bottom;">Ajouté dans la version</th>
<th scope="col" style="vertical-align: bottom;">Activé par défaut</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>70</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>70</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>70</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>70</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Nom de la préférence</th>
<th colspan="2"><code>layout.css.aspect-ratio-number.enabled</code></th>
</tr>
</tbody>
</table>
<h3 id="property_backdrop-filter">Propriété backdrop-filter</h3>
<p>La propriété <a href="/fr/docs/Web/CSS/backdrop-filter"><code>backdrop-filter</code></a> permet d'appliquer des effets de filtre à la zone située derrière un élément. Voir <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1178765">le bug 1178765</a> pour plus de détails.</p>
<table class="standard-table">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Canal</th>
<th scope="col" style="vertical-align: bottom;">Ajouté dans la version</th>
<th scope="col" style="vertical-align: bottom;">Activé par défaut</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>70</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>70</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>70</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>70</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Nom de la préférence</th>
<th colspan="2"><code>layout.css.backdrop-filter.enabled</code></th>
</tr>
</tbody>
</table>
<h3 id="grid_masonry_layout">Grilles : disposition en maçonnerie</h3>
<p>Cette fonctionnalité ajoute la prise en charge pour <a href="/fr/docs/Web/CSS/CSS_Grid_Layout/Masonry_Layout">les dispositions « en maçonnerie »</a> basées sur les grilles où un axe est organisé avec une disposition donnée et où l'autre suit une disposition de grille normale. Cela permet aux développeuses et développeurs de créer plus facilement des dispositions pour des galeries. Voir <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1607954">le bug 1607954</a> pour plus de détails.</p>
<table class="standard-table">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Canal</th>
<th scope="col" style="vertical-align: bottom;">Ajouté dans la version</th>
<th scope="col" style="vertical-align: bottom;">Activé par défaut</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>77</td>
<td>Oui</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>77</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>77</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>77</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Nom de la préférence</th>
<th colspan="2"><code>layout.css.grid-template-masonry-value.enabled</code></th>
</tr>
</tbody>
</table>
<h3 id="media_feature_prefers-contrast">Caractéristique média prefers-contrast</h3>
<p>La caractéristique média <code><a href="/fr/docs/Web/CSS/@media/prefers-contrast">prefers-contrast</a></code> est utilisée afin de déterminer si une utilisatrice ou un utilisateur indiqué une préférence pour un contraste élevé ou non. Voir <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1506364">le bug 1506364</a> pour plus de détails.</p>
<table class="standard-table">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Canal</th>
<th scope="col" style="vertical-align: bottom;">Ajouté dans la version</th>
<th scope="col" style="vertical-align: bottom;">Activé par défaut</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>80</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>80</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>80</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>80</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Nom de la préférence</th>
<th colspan="2">
<p><code>layout.css.prefers-contrast.enabled</code></p>
</th>
</tr>
</tbody>
</table>
<h3 id="property_math-style">Propriété math-style </h3>
<p>La propriété <a href="/fr/docs/Web/CSS/math-style"><code>math-style</code></a> indique si les équations MathML doivent être affichées avec une hauteur normale ou compacte. Voir <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1665975">le bug 1665975</a> pour plus de détails.</p>
<table class="standard-table">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Canal</th>
<th scope="col" style="vertical-align: bottom;">Ajouté dans la version</th>
<th scope="col" style="vertical-align: bottom;">Activé par défaut</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>83</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>83</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>83</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>83</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Nom de la préférence</th>
<th colspan="2"><code>layout.css.math-style.enabled</code></th>
</tr>
</tbody>
</table>
<h2 id="javascript">JavaScript</h2>
<h3 id="relative_indexing_method">Méthode at() pour l'indexation relative</h3>
<p>La méthode <code>at()</code> qui permet d'utiliser une indexation relative a été ajoutée aux objets <code><a href="/fr/docs/Web/JavaScript/Reference/Global_Objects/Array">Array</a></code>, <code><a href="/fr/docs/Web/JavaScript/Reference/Global_Objects/String">String</a></code> et <code><a href="/fr/docs/Web/JavaScript/Reference/Global_Objects/TypedArray">TypedArray</a></code>. L'utilisation d'un entier positif comme argument renverra l'élément situé à cet index tandis qu'un entier négatif permettra de récupérer un élément à partir de la fin du tableau ou de la chaîne. Ainsi <code>1</code> fournira le deuxième élément tandis que <code>-1</code> renverra le dernier élément. Voir <code><a href="/fr/docs/Web/JavaScript/Reference/Global_Objects/Array/at">Array.prototype.at()</a></code>, <code><a href="/fr/docs/Web/JavaScript/Reference/Global_Objects/String/at">String.prototype.at()</a></code> et <code><a href="/fr/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/at">TypedArray.prototype.at()</a></code> pour plus de détails.</p>
<table class="standard-table">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Canal</th>
<th scope="col" style="vertical-align: bottom;">Ajouté dans la version</th>
<th scope="col" style="vertical-align: bottom;">Activé par défaut</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>85</td>
<td>Oui</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>85</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>85</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>85</td>
<td>Non</td>
</tr>
</tbody>
</table>
<h3 id="private_class_fields">Champs de classe privés</h3>
<p>Voir la page <a href="/fr/docs/Web/JavaScript/Reference/Classes/Private_class_fields">sur les champs de classe privés</a> pour plus d'informations.</p>
<table class="standard-table">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Canal</th>
<th scope="col" style="vertical-align: bottom;">Ajouté dans la version</th>
<th scope="col" style="vertical-align: bottom;">Activé par défaut</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>81</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>81</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>81</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>81</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Noms des préférences</th>
<th colspan="2"><code>javascript.options.experimental.private_fields<br>
javascript.options.experimental.private_methods</code></th>
</tr>
</tbody>
</table>
<h2 id="apis">Fonctionnalités des API Web</h2>
<h3 id="graphics_canvas_webgl_and_webgpu">Graphismes : Canvas, WebGL, WebGPU</h3>
<h4 id="canvasrenderingcontext2d.createConicGradient">CanvasRenderingContext2D.createConicGradient()</h4>
<p>L'interface <a href="/fr/docs/Web/API/CanvasRenderingContext2D"><code>CanvasRenderingContext2D</code></a> rattachée à l'API <a href="/fr/docs/Web/API/Canvas_API"><code>Canvas</code></a> fournit désormais une méthode <a href="/fr/docs/Web/API/CanvasRenderingContext2D/createConicGradient"><code>createConicGradient()</code></a>. Celle-ci renvoie une valeur <a href="/fr/docs/Web/API/CanvasGradient"><code>CanvasGradient</code></a> à la façon des méthodes existantes pour les <a href="/fr/docs/Web/API/CanvasRenderingContext2D/createLinearGradient">dégradés linéaires</a> et <a href="/fr/docs/Web/API/CanvasRenderingContext2D/createRadialGradient">radiaux</a> mais pour les dégradés coniques. Voir <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1627014">le bug 1627014</a> pour plus de détails.</p>
<table class="standard-table">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Canal</th>
<th scope="col" style="vertical-align: bottom;">Ajouté dans la version</th>
<th scope="col" style="vertical-align: bottom;">Activé par défaut</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>86</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>86</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>86</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>86</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Nom de la préférence</th>
<th colspan="2"><code>canvas.createConicGradient.enabled</code></th>
</tr>
</tbody>
</table>
<h4 id="interface_offscreencanvas">Interface OffscreenCanvas</h4>
<p>L'interface <a href="/fr/docs/Web/API/OffscreenCanvas"><code>OffscreenCanvas</code></a> fournit un canevas dont le rendu est effectué en dehors de l'écran. Il est disponible dans les contextes de la fenêtre et des <a href="/fr/docs/Web/API/Web_Workers_API">workers</a>. Voir <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1390089">le bug 1390089</a> pour plus de détails.</p>
<table class="standard-table">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Canal</th>
<th scope="col" style="vertical-align: bottom;">Ajouté dans la version</th>
<th scope="col" style="vertical-align: bottom;">Activé par défaut</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>44</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>44</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>44</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>44</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Nom de la préférence</th>
<th colspan="2"><code>gfx.offscreencanvas.enabled</code></th>
</tr>
</tbody>
</table>
<h4 id="hit_regions">API Hit Regions</h4>
<p>Déterminer si les coordonnées de la souris sont situées dans une région donnée d'un canevas est un problème courant. L'API Hit Regions permet de définir une zone du canevas et fournit d'autres outils pour exposer le contenu interactif d'un canevas aux outils d'accessibilité.</p>
<table class="standard-table">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Canal</th>
<th scope="col" style="vertical-align: bottom;">Ajouté dans la version</th>
<th scope="col" style="vertical-align: bottom;">Activé par défaut</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>30</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>30</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>30</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>30</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Nom de la préférence</th>
<th colspan="2"><code>canvas.hitregions.enabled</code></th>
</tr>
</tbody>
</table>
<h4 id="webgpu_api">WebGPU API</h4>
<p>Cette nouvelle API fournit une prise en charge bas niveau pour les calculs et le rendu graphique en utilisant le GPU de l'appareil. <a href="https://gpuweb.github.io/gpuweb/">La spécification</a> est toujours en cours d'écriture. Voir <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1602129">le bug 1602129</a> pour l'état de l'implémentation pour cette API.</p>
<table class="standard-table">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Canal</th>
<th scope="col" style="vertical-align: bottom;">Ajouté dans la version</th>
<th scope="col" style="vertical-align: bottom;">Activé par défaut</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>73</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>73</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>73</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>73</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Nom de la préférence</th>
<th colspan="2"><code>dom.webgpu.enabled</code></th>
</tr>
</tbody>
</table>
<h3 id="html_dom_api">API HTML DOM</h3>
<h4 id="htmlmediaelement_method_setsinkid">Méthode setSinkId() pour HTMLMediaElement</h4>
<p><a href="/fr/docs/Web/API/HTMLMediaElement/setSinkId"><code>HTMLMediaElement.setSinkId()</code></a> permet de définir l'identifiant d'un « sink » d'un appareil de sortie audio sur un <a href="/fr/docs/Web/API/HTMLMediaElement"><code>HTMLMediaElement</code></a> ce qui permet de modifier l'endroit où l'audio sort. Voir <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=934425">le bug 934425</a> pour plus de détails.</p>
<table class="standard-table">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Canal</th>
<th scope="col" style="vertical-align: bottom;">Ajouté dans la version</th>
<th scope="col" style="vertical-align: bottom;">Activé par défaut</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>64</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>64</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>64</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>64</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Nom de la préférence</th>
<th colspan="2"><code>media.setsinkid.enabled</code></th>
</tr>
</tbody>
</table>
<h4 id="htmlmediaelement_properties_audiotracks_and_videotracks">Propriétés audioTracks et videoTracks pour HTMLMediaElement</h4>
<p>Cette fonctionnalité ajoute les propriétés <a href="/fr/docs/Web/API/HTMLMediaElement/audioTracks"><code>HTMLMediaElement.audioTracks</code></a> et <a href="/fr/docs/Web/API/HTMLMediaElement/videoTracks"><code>HTMLMediaElement.videoTracks</code></a> aux éléments HTML qui sont des médias. Toutefois, comme Firefox ne prend actuellement pas en charge les pistes audio et vidéo multiples, les cas d'usage de ces propriétés ne fonctionnent pas et elles sont donc désactivées par défaut. Voir <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1057233">le bug 1057233</a> pour plus de détails.</p>
<table class="standard-table">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Canal</th>
<th scope="col" style="vertical-align: bottom;">Ajouté dans la version</th>
<th scope="col" style="vertical-align: bottom;">Activé par défaut</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>33</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>33</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>33</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>33</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Nom de la préférence</th>
<th colspan="2"><code>media.track.enabled</code></th>
</tr>
</tbody>
</table>
<h3 id="dom">DOM</h3>
<h4 id="clipboarditem">ClipboardItem</h4>
<p>L'interface <a href="/fr/docs/Web/API/ClipboardItem"><code>ClipboardItem</code></a>, rattachée à l'API <a href="/fr/docs/Web/API/Clipboard_API"><code>Clipboard API</code></a> est désormais prise en charge et <a href="/fr/docs/Web/API/Clipboard/write"><code>Clipboard.write()</code></a> accepte une série d'<a href="/fr/docs/Web/API/ClipboardItem">éléments de presse-papier (<code>ClipboardItem</code>)</a> plutôt que l'implémentation précédente avec des objets <a href="/fr/docs/Web/API/DataTransfer">DataTransfer</a>. Elle est disponible avec la préférence <code>dom.events.asyncClipboard.clipboardItem</code> qui était précédemment intitulée <code>dom.events.asyncClipboard.dataTransfer</code>. Voir <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1619947">le bug 1619947</a> pour plus de détails.</p>
<table class="standard-table">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Canal</th>
<th scope="col" style="vertical-align: bottom;">Ajouté dans la version</th>
<th scope="col" style="vertical-align: bottom;">Activé par défaut</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>87</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>87</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>87</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>87</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Nom de la préférence</th>
<th colspan="2"><code><strong>dom.events.asyncClipboard.clipboardItem</strong></code></th>
</tr>
</tbody>
</table>
<h4 id="html_sanitizer_api">API HTML Sanitizer</h4>
<p>L'API <a href="/fr/docs/Web/API/HTML_Sanitizer_API"><code>HTML Sanitizer</code></a> permet aux développeuses et développeurs de prendre en entrée des chaînes de caractères HTML non sécurisées et de les nettoyer afin de pouvoir les insérer dans le DOM d'un document. Les éléments par défaut pour chaque propriété de configuration sont toujours en cours d'étude. Pour cette raison, le paramètre de configuration n'a pas été implémenté. Voir <a href="/fr/docs/Web/API/Sanitizer/sanitizer">la documentation du constructeur</a> pour plus d'informations et <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1673309">le bug 1673309</a> pour plus de détails.</p>
<table class="standard-table">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Canal</th>
<th scope="col" style="vertical-align: bottom;">Ajouté dans la version</th>
<th scope="col" style="vertical-align: bottom;">Activé par défaut</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>84</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>84</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>84</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>84</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Nom de la préférence</th>
<th colspan="2"><code><strong>dom.security.sanitizer.enabled</strong></code></th>
</tr>
</tbody>
</table>
<h4 id="document_property_autoplaypolicy">Propriété autoplayPolicy pour Document</h4>
<p>La propriété <a href="/fr/docs/Web/API/Document/autoplayPolicy"><code>autoplayPolicy</code></a>, rattachée à <a href="/fr/docs/Web/API/Document"><code>document</code></a>, renvoie une chaîne de caractères indiquant la façon dont le navigateur gère les requêtes pour la lecture automatique des médias (déclenchée avec l'utilisation de la propriété <a href="/fr/docs/Web/API/HTMLMediaElement/autoplay"><code>autoplay</code></a> ou via le déclenchement de la lecture depuis du code JavaScript). La spécification de cette API est en cours d'écriture. La valeur de cette propriété évolue selon les actions de l'utilisateur, leurs préférences/configurations et de l'état du navigateur. Les valeurs possibles sont <code>allowed</code> (la lecture automatique est possible), <code>allowed-muted</code> (la lecture automatique est possible mais sans audio), et <code>disallowed</code> (la lecture automatique n'est pas possible). Voir <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1506289">le bug 1506289</a> pour plus de détails.</p>
<table class="standard-table">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Canal</th>
<th scope="col" style="vertical-align: bottom;">Ajouté dans la version</th>
<th scope="col" style="vertical-align: bottom;">Activé par défaut</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>66</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>66</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>66</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>66</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Nom de la préférence</th>
<th colspan="2"><code>dom.media.autoplay.autoplay-policy-api</code></th>
</tr>
</tbody>
</table>
<h4 id="geometryutils_methods_convertpointfromnode_convertrectfromnode_and_convertquadfromnode">Méthodes convertPointFromNode(), convertRectFromNode(), et convertQuadFromNode() pour GeometryUtils</h4>
<p>Les méthodes <code>convertPointFromNode()</code>, <code>convertRectFromNode()</code>, et <code></code>convertQuadFromNode()</code> effectuent la correspondance entre un point, un rectangle ou un quadrilatère donné et le <a href="/fr/docs/Web/API/Node"><code>Node</code></a> depuis lequel ils sont appelés vers un autre nœud. Voir <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=918189">le bug 918189</a> pour plus de détails.</p>
<table class="standard-table">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Canal</th>
<th scope="col" style="vertical-align: bottom;">Ajouté dans la version</th>
<th scope="col" style="vertical-align: bottom;">Activé par défaut</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>31</td>
<td>Oui</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>31</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>31</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>31</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Nom de la préférence</th>
<th colspan="2"><code>layout.css.getBoxQuads.enabled</code></th>
</tr>
</tbody>
</table>
<h4 id="geometryutils_method_getboxquads">Méthode getBoxQuads() pour GeometryUtils</h4>
<p>La méthode <code>getBoxQuads()</code> pour <code>GeometryUtils</code> renvoie les boîtes CSS d'un objet <a href="/fr/docs/Web/API/Node"><code>Node</code></a> relatif à un autre nœud ou à la zone d'affichage. Voir <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=917755">le bug 917755</a> pour plus de détails.</p>
<table class="standard-table">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Canal</th>
<th scope="col" style="vertical-align: bottom;">Ajouté dans la version</th>
<th scope="col" style="vertical-align: bottom;">Activé par défaut</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>31</td>
<td>Oui</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>31</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>31</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>31</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Nom de la préférence</th>
<th colspan="2"><code>layout.css.convertFromNode.enable</code></th>
</tr>
</tbody>
</table>
<h3 id="payment_request_api">API Payment Request</h3>
<h4 id="primary_payment_handling">Gestion de la méthode de paiement principale</h4>
<p>L'API <a href="/fr/docs/Web/API/Payment_Request_API">Payment Request</a> permet de gérer les paiements au sein de contenu ou d'application web. En raison d'un bug lors des tests de l'interface utilisateur, il a été décidé de suspendre la sortie de cette API tant que des discussions sont en cours sur des changements potentiels à cette API. Le travail est en cours. Voir <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1318984">le bug 1318984</a> pour plus de détails.</p>
<table class="standard-table">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Canal</th>
<th scope="col" style="vertical-align: bottom;">Ajouté dans la version</th>
<th scope="col" style="vertical-align: bottom;">Activé par défaut</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>55</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>55</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>55</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>55</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Nom de la préférence</th>
<th colspan="2"><code>dom.payments.request.enabled</code> et <code>dom.payments.request.supportedRegions</code></th>
</tr>
</tbody>
</table>
<h4 id="basic_card_api">API Basic Card</h4>
<p>Il s'agit d'étendre l'API <a href="/fr/docs/Web/API/Payment_Request_API">Payment Request</a> avec des dictionnaires définissant les structures de données qui décrivent les types de cartes de paiement et les réponses de paiement. Voir <a href="/fr/docs/Web/API/BasicCardRequest"><code>BasicCardRequest</code></a> et <a href="/fr/docs/Web/API/BasicCardResponse"><code>BasicCardResponse</code></a>.</p>
<table class="standard-table">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Canal</th>
<th scope="col" style="vertical-align: bottom;">Ajouté dans la version</th>
<th scope="col" style="vertical-align: bottom;">Activé par défaut</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>56</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>56</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>56</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>56</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Nom de la préférence</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">API Visual Viewport</h3>
<p>L'API <a href="/fr/docs/Web/API/Visual_Viewport_API">Visual Viewport</a> (qu'on peut traduire en « zone d'affichage visuelle ») donne accès à des informations décrivant la position de <a href="/fr/docs/Glossary/visual_viewport">la zone d'affichage visuelle</a> relative au document et à la zone de contenu de la fenêtre. Elle contient également des évènements pour surveiller les évolutions. Voir <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1550390">le bug 1550390</a> pour plus de détails. Il n'est pas prévu de fournir cette API sur la version pour ordinateur de bureau, voir <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1551302">le bug 1551302</a> si besoin.</p>
<table class="standard-table">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Canal</th>
<th scope="col" style="vertical-align: bottom;">Ajouté dans la version</th>
<th scope="col" style="vertical-align: bottom;">Activé par défaut</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>63</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>63</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>63</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>63</td>
<td>À partir de Firefox 68, sur Android uniquement</td>
</tr>
<tr>
<th scope="row">Nom de la préférence</th>
<th colspan="2"><code>dom.visualviewport.enabled</code></th>
</tr>
</tbody>
</table>
<h3 id="constructable_stylesheets">Constructeur pour les feuilles de style</h3>
<p>Cette fonctionnalité ajoute un constructeur pour l'interface <a href="/fr/docs/Web/API/CSSStyleSheet"><code>CSSStyleSheet</code></a> et d'autres modifications permettant de créer de nouvelles feuilles de style sans avoir à ajouter la feuille au HTML. Cela permet de créer des feuilles de style réutilisables beaucoup plus facilement afin de les utiliser avec <a href="/fr/docs/Web/Web_Components/Using_shadow_DOM">Shadow DOM</a>. L'implémentation actuelle n'est pas encore terminée. Voir <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1520690">le bug 1520690</a> pour plus de détails.</p>
<table class="standard-table">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Canal</th>
<th scope="col" style="vertical-align: bottom;">Ajouté dans la version</th>
<th scope="col" style="vertical-align: bottom;">Activé par défaut</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>73</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>73</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>73</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>73</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Nom de la préférence</th>
<th colspan="2"><code>layout.css.constructable-stylesheets.enabled</code></th>
</tr>
</tbody>
</table>
<h3 id="webrtc_and_media">WebRTC et média</h3>
<p>Les fonctionnalités expérimentales qui suivent incluent celles relatives aux API suivantes <a href="/fr/docs/Web/API/WebRTC_API">WebRTC</a>, <a href="/fr/docs/Web/API/Web_Audio_API">Web Audio</a>, <a href="/fr/docs/Web/API/Media_Source_Extensions_API">Media Source Extensions</a>, <a href="/fr/docs/Web/API/Encrypted_Media_Extensions_API">Encrypted Media Extensions</a>, et <a href="/fr/docs/Web/API/Media_Streams_API">Media Capture and Streams</a>.</p>
<h4 id="asynchronous_sourcebuffer_add_and_remove">Méthodes asynchrones pour l'ajout et le retrait sur SourceBuffer</h4>
<p>Cette fonctionnalité ajoute les méthodes <a href="/fr/docs/Web/API/SourceBuffer/appendBufferAsync"><code>appendBufferAsync()</code></a> et <a href="/fr/docs/Web/API/SourceBuffer/removeAsync"><code>removeAsync()</code></a> qui fonctionnent avec des promesses et permettent d'ajouter et de retirer des tampons de source média à l'interface <a href="/fr/docs/Web/API/SourceBuffer"><code>SourceBuffer</code></a>. Voir <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1280613">le bug 1280613</a> et <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=778617">le bug 778617</a> pour plus d'informations.</p>
<table class="standard-table">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Canal</th>
<th scope="col" style="vertical-align: bottom;">Ajouté dans la version</th>
<th scope="col" style="vertical-align: bottom;">Activé par défaut</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>62</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>62</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>62</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>62</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Nom de la préférence</th>
<th colspan="2"><code>media.mediasource.experimental.enabled</code></th>
</tr>
</tbody>
</table>
<h4 id="avif_av1_image_file_format_support">Prise en charge du format AVIF (AV1 Image File)</h4>
<p>Avec cette fonctionnalité, Firefox prend en charge le format <a href="/fr/docs/Web/Media/Formats/Image_types#avif">AV1 Image File (AVIF)</a>. Il s'agit d'un format d'image tirant parti des algorithmes de compression vidéo AV1 pour réduire la taille des images. Voir <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1443863">le bug 1443863</a> pour plus de détails.</p>
<table class="standard-table">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Canal</th>
<th scope="col" style="vertical-align: bottom;">Ajouté dans la version</th>
<th scope="col" style="vertical-align: bottom;">Activé par défaut</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>77</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>77</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>77</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>77</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Nom de la préférence</th>
<th colspan="2"><code>image.avif.enabled</code></th>
</tr>
</tbody>
</table>
<h4 id="av1_support_for_firefox_on_android">Prise en charge d'AV1 pour Firefox sur Android</h4>
<p>Cette fonctionnalité permet à Firefox sur Android d'utiliser <a href="/fr/docs/Web/Media/Formats/Video_codecs#av1">le format AV1</a>. Cette fonctionnalité est disponible pour les versions <i>nightly</i> pour Firefox sur Android à partir de la version 81. Elle est activée par défaut.</p>
<table class="standard-table">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Canal</th>
<th scope="col" style="vertical-align: bottom;">Ajouté dans la version</th>
<th scope="col" style="vertical-align: bottom;">Activé par défaut</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>81</td>
<td>Oui</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>—</td>
<td>—</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>—</td>
<td>—</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>—</td>
<td>—</td>
</tr>
<tr>
<th scope="row">Nom de la préférence</th>
<th colspan="2">—</th>
</tr>
</tbody>
</table>
<h2 id="security_and_privacy">Sécurité et confidentialité</h2>
<h4 id="block_plain_text_requests_from_flash_on_encrypted_pages">Block plain text requests from Flash on encrypted pages</h4>
<p>Afin d'atténuer le risque d'attaque de l'homme du milieu (MitM) pour le contenu Flash sur les pages chiffrées, une préférence a été ajoutée afin de traiter <code>OBJECT_SUBREQUEST</code> comme du contenu actif. Voir <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1190623">le bug 1190623</a> pour plus de détails.</p>
<table class="standard-table">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Canal</th>
<th scope="col" style="vertical-align: bottom;">Ajouté dans la version</th>
<th scope="col" style="vertical-align: bottom;">Activé par défaut</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>59</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>59</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>59</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>59</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Nom de la préférence</th>
<th colspan="2"><code>security.mixed_content.block_object_subrequest</code></th>
</tr>
</tbody>
</table>
<h4 id="insecure_page_labeling">Indication des pages non-sécurisées</h4>
<p>Les deux préférences suivantes permettent d'ajouter un libellé « Non-sécurisé » dans la barre d'adresse à côté de l'icône de cadenas lorsqu'une page est chargée de façon non-sécurisée (via <a href="/fr/docs/Glossary/HTTP">HTTP</a> plutôt qu'avec <a href="/fr/docs/Glossary/https">HTTPS</a>). Voir <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1335970">le bug 1335970</a> pour plus de détails.</p>
<table class="standard-table">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Canal</th>
<th scope="col" style="vertical-align: bottom;">Ajouté dans la version</th>
<th scope="col" style="vertical-align: bottom;">Activé par défaut</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>60</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>60</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>60</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>60</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Nom de la préférence</th>
<th colspan="2"><code>security.insecure_connection_text.enabled</code> pour la navigation en mode normale, <code>security.insecure_connection_text.pbmode.enabled</code> pour la navigation en mode privé</th>
</tr>
</tbody>
</table>
<h4 id="upgrading_mixed_display_content">Mise à niveau pour les médias chargés avec une sécurité mixte</h4>
<p>Lorsque la préférence correspondante est activée, Firefox passe les requêtes des contenus média HTTP en HTTPS pour les pages sécurisées. L'objectif est d'éviter des conditions de contenu mixte où du contenu serait chargé de façon sécurisée tandis qu'un autre contenu serait chargé de façon non-sécurisée. Si la bascule en HTTPS échoue (par exemple si l'hôte qui sert le média ne prend pas en charge HTTPS), le média n'est pas chargé. Voir <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1435733">le bug 1435733</a >pour plus de détails.</p>
<p>Cela modifie également l'avertissement de la console : si la mise à niveau réussit, un message indiquant que la requête a été mise à niveau est affiché plutôt qu'un avertissement.</p>
<table class="standard-table">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Canal</th>
<th scope="col" style="vertical-align: bottom;">Ajouté dans la version</th>
<th scope="col" style="vertical-align: bottom;">Activé par défaut</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>84</td>
<td>Oui</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>60</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>60</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>60</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Nom de la préférence</th>
<th colspan="2"><code>security.mixed_content.upgrade_display_content</code></th>
</tr>
</tbody>
</table>
<h4 id="feature_policy">En-tête Feature-Policy</h4>
<p><a href="/fr/docs/Web/HTTP/Feature_Policy">Feature-Policy</a> est un en-tête HTTP qui permet de choisir l'activation, la désactivation ou certaines des fonctionnalités et API dans le navigateur. Cet en-tête est similaire au CSP mais permet de contrôler des fonctionnalités plutôt que des traits liés à la sécurité.</p>
<div class="notecard note">
<h4>Note</h4>
<p>L'en-tête <code>Feature-Policy</code> a été renommé en <code>Permissions-Policy</code> dans la spécification. Cet article sera mis à jour afin de refléter ce changement.</p>
</div>
<table class="standard-table">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Canal</th>
<th scope="col" style="vertical-align: bottom;">Ajouté dans la version</th>
<th scope="col" style="vertical-align: bottom;">Activé par défaut</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>65</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>65</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>65</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>65</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Nom de la préférence</th>
<th colspan="2"><code>dom.security.featurePolicy.header.enabled</code></th>
</tr>
</tbody>
</table>
<h2 id="developer_tools">Outils de développement</h2>
<h4 id="execution_context_selector">Sélecteur pour le contexte d'exécution</h4>
<p>Cette fonctionnalité affiche un bouton sur la ligne de commande de la console qui permet de changer le contexte dans lequel l'expression saisie est exécutée. Voir <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1605154">le bug 1605154</a> et <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1605153">le bug 1605153</a> pour plus de détails.</p>
<table class="standard-table">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Canal</th>
<th scope="col" style="vertical-align: bottom;">Ajouté dans la version</th>
<th scope="col" style="vertical-align: bottom;">Activé par défaut</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>75</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>75</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>75</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>75</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Nom de la préférence</th>
<th colspan="2"><code>devtools.webconsole.input.context</code></th>
</tr>
</tbody>
</table>
<h4 id="mobile_gesture_support_in_responsive_design_mode">Prise en charge des gestes mobiles en vue adaptative</h4>
<p>Les gestes à la souris peuvent être utilisés pour simuler des gestes tactiles sur mobiles comme le défilement, le zoom en pinçant, l'appui long ou l'appui double. Voir <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1621781">le bug 1621781</a>, <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1245183">le bug 1245183</a>, et <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1401304">le bug 1401304</a> pour plus de détails.</p>
<table class="standard-table">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Canal</th>
<th scope="col" style="vertical-align: bottom;">Ajouté dans la version</th>
<th scope="col" style="vertical-align: bottom;">Activé par défaut</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>76<sup>[1]</sup></td>
<td>Oui</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>76<sup>[1]</sup></td>
<td>Oui</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>76<sup>[1]</sup></td>
<td>Oui</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>76<sup>[1]</sup></td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Nom de la préférence</th>
<th colspan="2">n/a</th>
</tr>
</tbody>
</table>
<p>[1] La prise en charge pour le geste de double toucher a été ajouté avec Firefox 76. Les autres gestes ont été ajoutés avec Firefox 79.</p>
<h4 id="server-sent_events_in_Network_Monitor">Évènements émis par le serveur dans le moniteur réseau</h4>
<p>Cette fonctionnalité permet au moniteur réseau d'afficher des informations sur <a href="/fr/docs/Web/API/Server-sent_events">les évènements émis par le serveur</a>. Voir <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1405706">le bug 1405706</a> pour plus de détails.</p>
<table class="standard-table">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Canal</th>
<th scope="col" style="vertical-align: bottom;">Ajouté dans la version</th>
<th scope="col" style="vertical-align: bottom;">Activé par défaut</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>80</td>
<td>Oui</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>80</td>
<td>Oui</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>80</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>80</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Nom de la préférence</th>
<th colspan="2"><code>devtools.netmonitor.features.serverSentEvents</code></th>
</tr>
</tbody>
</table>
<h4 id="css_browser_compatibility_tooltips">Bulles d'informations pour la compatibilité CSS des navigateurs</h4>
<p>La vue pour les règles CSS peut afficher des bulles d'informations pour la compatibilité des navigateurs pour les propriétés qui ont des problèmes connus. Pour plus d'informations, voir : <a href="/fr/docs/Tools/Page_Inspector/How_to/Examine_and_edit_HTML#browser_compat_warnings">Examiner et éditer le HTML > Avertissements de compatibilité navigateur</a>.</p>
<table class="standard-table">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Canal</th>
<th scope="col" style="vertical-align: bottom;">Ajouté dans la version</th>
<th scope="col" style="vertical-align: bottom;">Activé par défaut</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>81</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>81</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>81</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>81</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Nom de la préférence</th>
<th colspan="2"><code>devtools.inspector.ruleview.inline-compatibility-warning.enabled</code></th>
</tr>
</tbody>
</table>
<h2 id="ui">Interface utilisateur (UI)</h2>
<h4 id="desktop_zooming">Zoom (version bureau)</h4>
<p>Cette fonctionnalité permet, pour les ordinateurs de bureau, un zoom doux avec le geste de pincement sans qu'il y ait de redessin de l'écran, à la façon des appareils mobiles. Voir <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1245183">le bug 1245183</a> et <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1620055">le bug 1620055</a> pour plus de détails.</p>
<table class="standard-table">
<thead>
<tr>
<th scope="col" style="vertical-align: bottom;">Canal</th>
<th scope="col" style="vertical-align: bottom;">Ajouté dans la version</th>
<th scope="col" style="vertical-align: bottom;">Activé par défaut</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Nightly</th>
<td>42</td>
<td>Oui</td>
</tr>
<tr>
<th scope="row">Developer Edition</th>
<td>42</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Beta</th>
<td>42</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Release</th>
<td>42</td>
<td>Non</td>
</tr>
<tr>
<th scope="row">Nom de la préférence</th>
<th colspan="2"><code>apz.allow_zooming</code> et pour Windows : <code>apz.windows.use_direct_manipulation</code></th>
</tr>
</tbody>
</table>
<h2 id="see_also">Voir aussi</h2>
<ul>
<li><a href="/fr/docs/Mozilla/Firefox/Releases">Les notes de version pour Firefox destinées aux développeuses et développeurs</a></li>
<li><a href="https://nightly.mozilla.org/">Firefox Nightly</a></li>
<li><a href="https://www.mozilla.org/fr/firefox/developer/">Firefox Developer Edition</a></li>
</ul>
|