aboutsummaryrefslogtreecommitdiff
path: root/files/ja/mozilla/firefox/experimental_features/index.html
blob: d207d24131b124c5d45bf4c6d9085283004f44d6 (plain)
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
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
---
title: Firefox における実験的機能
slug: Mozilla/Firefox/Experimental_features
tags:
  - Experimental
  - Firefox
  - Preferences
  - features
translation_of: Mozilla/Firefox/Experimental_features
---
<div>{{FirefoxSidebar}}</div>

<p>このページでは、提案されているまたは最先端のウェブプラットフォーム標準を含む、Firefox の実験的かつ部分的に実装された機能を一覧にしています。また、それらの機能が搭載されているビルドの情報、「既定で」有効になっているかどうか、有効または無効にするためにどの<em>環境設定</em>を使用すべきかについても説明しています。これにより、機能がリリースされる前に、その機能をテストすることができます。</p>

<p>新機能は、最初に <a href="https://nightly.mozilla.org/">Firefox Nightly</a> ビルドに登場し、多くの場合、既定で有効化されます。その後、 <a href="https://www.mozilla.org/en-US/firefox/developer/">Firefox Developer Edition</a> に引き継がれ、最終的にはリリースビルドになります。リリースビルドにおいて既定で有効化された機能は、もはや実験的なものではないので、このトピックから削除してください。</p>

<p>実験的な機能は、 <a href="https://support.mozilla.org/en-US/kb/about-config-editor-firefox">Firefox 設定エディター</a> (Firefox のアドレスバーに <code>about:config</code> と入力) を使って、以下に示す関連する<em>設定</em>を変更することで、有効または無効にすることができます。</p>

<div class="notecard note">
  <h4>編集者からのお願い</h4>
  <p>これらの表に機能を追加する際には、 {{TemplateLink("bug")}} マクロ <code>\{{bug(<em>bug-number</em>)}}</code> を使って関連するバグへのリンクを含めるようにしてください。</p>
</div>

<h2 id="HTML">HTML</h2>

<h3 id="Element_&lt;dialog&gt;">要素: &lt;dialog&gt;</h3>

<p>HTML の {{HTMLElement("dialog")}} 要素とそれに関連する DOM API は、 HTML ベースのモーダルなダイアログボックスに対応しています。現在の実装は少々不格好ですが、基本的には機能しています。 (詳細は {{bug(840640)}} を参照してください。)</p>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col" style="vertical-align: bottom;">リリースチャネル</th>
   <th scope="col" style="vertical-align: bottom;">追加されたバージョン</th>
   <th scope="col" style="vertical-align: bottom;">既定で有効か</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <th scope="row">Nightly</th>
   <td>53</td>
   <td>Yes</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">設定名</th>
   <th colspan="2"><code>dom.dialog_element.enabled</code></th>
  </tr>
 </tbody>
</table>

<h3 id="Global_attribute_inputmode">グローバル属性: inputmode</h3>

<p><code><a href="/ja/docs/Web/HTML/Global_attributes/inputmode">inputmode</a></code> グローバル属性の実装は WHATWG 仕様書に併せて更新してきましたが ({{bug(1509527)}})、 contenteditable コンテンツで利用できるようにするなど、他の変更も必要です。 (詳細は {{bug(1205133)}} を参照してください。)</p>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col" style="vertical-align: bottom;">リリースチャネル</th>
   <th scope="col" style="vertical-align: bottom;">追加されたバージョン</th>
   <th scope="col" style="vertical-align: bottom;">既定で有効か</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">設定名</th>
   <th colspan="2"><code>dom.forms.inputmode</code></th>
  </tr>
 </tbody>
</table>

<h3 id="inert_attribute">inert 属性</h3>

<p>{{domxref("HTMLElement")}}{{DOMxRef("HTMLElement.inert")}} プロパティは論理値で、存在する場合、ブラウザーが支援技術、ページ検索、テキスト選択から要素を「無視」するようになります。この機能の状態についての詳細は、 {{bug(1655722)}} を参照してください。</p>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col" style="vertical-align: bottom;">リリースチャネル</th>
   <th scope="col" style="vertical-align: bottom;">追加されたバージョン</th>
   <th scope="col" style="vertical-align: bottom;">既定で有効か</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <th scope="row">Nightly</th>
   <td>81</td>
   <td>No</td>
  </tr>
  <tr>
   <th scope="row">Developer Edition</th>
   <td>81</td>
   <td>No</td>
  </tr>
  <tr>
   <th scope="row">Beta</th>
   <td>81</td>
   <td>No</td>
  </tr>
  <tr>
   <th scope="row">Release</th>
   <td>81</td>
   <td>No</td>
  </tr>
  <tr>
   <th scope="row">設定名</th>
   <th colspan="2"><code>html5.inert.enabled</code></th>
  </tr>
 </tbody>
</table>

<h3 id="Layout_for_input_typesearch">input type="search" のレイアウト</h3>

<p><code>input type="search"</code> のレイアウトが更新されました。これにより、何らかの入力を始めたときに、他のブラウザーの実装と同様にクリアアイコンが現れるようになります。 (詳しくは {{bug(558594)}} を参照してください。)</p>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col" style="vertical-align: bottom;">リリースチャネル</th>
   <th scope="col" style="vertical-align: bottom;">追加されたバージョン</th>
   <th scope="col" style="vertical-align: bottom;">既定で有効か</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <th scope="row">Nightly</th>
   <td>81</td>
   <td>No</td>
  </tr>
  <tr>
   <th scope="row">Developer Edition</th>
   <td>81</td>
   <td>No</td>
  </tr>
  <tr>
   <th scope="row">Beta</th>
   <td>81</td>
   <td>No</td>
  </tr>
  <tr>
   <th scope="row">Release</th>
   <td>81</td>
   <td>No</td>
  </tr>
  <tr>
   <th scope="row">設定名</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">CSS の迷子の制御文字を 16 進数のボックスで表示する</h3>

<p>この機能は、予期せずタブ (U+0009)、行送り (U+000A)、ページ送り (U+000C)、復改 (U+000D) 以外の制御文字 (Unicode の Cc カテゴリー) が現れていない場合に 16 進数で表示します。 (詳細は {{bug(1099557)}} を参照してください)。</p>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col" style="vertical-align: bottom;">リリースチャネル</th>
   <th scope="col" style="vertical-align: bottom;">追加されたバージョン</th>
   <th scope="col" style="vertical-align: bottom;">既定で有効か</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">設定名</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">initial-letter プロパティ</h3>

<p>CSS の {{cssxref("initial-letter")}} プロパティは、 <a href="https://drafts.csswg.org/css-inline/">CSS Inline Layout</a> 仕様に含まれており、先頭文字の表示方法を dropped, raise, sunken から指定することができます。 (詳細は {{bug(1223880)}} を参照してください。)</p>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col" style="vertical-align: bottom;">リリースチャネル</th>
   <th scope="col" style="vertical-align: bottom;">追加されたバージョン</th>
   <th scope="col" style="vertical-align: bottom;">既定で有効か</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">設定名</th>
   <th colspan="2"><code>layout.css.initial-letter.enabled</code></th>
  </tr>
 </tbody>
</table>

<h3 id="Property_aspect-ratio">aspect-ratio プロパティ</h3>

<p>CSS の {{cssxref("aspect-ratio")}} プロパティは <a href="https://drafts.csswg.org/css-sizing-4/">CSS4 Sizing</a> 仕様の一部であり、ある縦横比のボックスを生成することができます。 (詳しくは {{bug(1639963)}} および {{bug(1646096)}} を参照してください。)</p>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col" style="vertical-align: bottom;">リリースチャネル</th>
   <th scope="col" style="vertical-align: bottom;">追加されたバージョン</th>
   <th scope="col" style="vertical-align: bottom;">既定で有効か</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <th scope="row">Nightly</th>
   <td>81</td>
   <td>Yes</td>
  </tr>
  <tr>
   <th scope="row">Developer Edition</th>
   <td>81</td>
   <td>No</td>
  </tr>
  <tr>
   <th scope="row">Beta</th>
   <td>81</td>
   <td>No</td>
  </tr>
  <tr>
   <th scope="row">Release</th>
   <td>81</td>
   <td>No</td>
  </tr>
  <tr>
   <th scope="row">設定名</th>
   <th colspan="2"><code>layout.css.aspect-ratio.enabled</code></th>
  </tr>
 </tbody>
</table>

<h3 id="Property_font_size_adjust">font-size-adjust プロパティの値 2 つの構文</h3>

<p>CSS の {{cssxref("font-size-adjust")}} プロパティが <a href="https://drafts.csswg.org/css-fonts-5/">CSS5 Fonts 5</a> 仕様で更新され、フォントメトリックを正規化するために定義するためのもう一つの値を追加しています。 (詳しくは {{bug(1711479)}} を参照してください。)</p>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col" style="vertical-align: bottom;">リリースチャネル</th>
   <th scope="col" style="vertical-align: bottom;">追加されたバージョン</th>
   <th scope="col" style="vertical-align: bottom;">既定で有効か</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <th scope="row">Nightly</th>
   <td>91</td>
   <td>Yes</td>
  </tr>
  <tr>
   <th scope="row">Developer Edition</th>
   <td>91</td>
   <td>No</td>
  </tr>
  <tr>
   <th scope="row">Beta</th>
   <td>91</td>
   <td>No</td>
  </tr>
  <tr>
   <th scope="row">Release</th>
   <td>91</td>
   <td>No</td>
  </tr>
  <tr>
   <th scope="row">設定名</th>
   <th colspan="2"><code>layout.css.font-size-adjust.basis.enabled</code></th>
  </tr>
 </tbody>
</table>


<h3 id="Descriptor_size_adjust">size-adjust 記述子</h3>

<p>CSS の {{cssxref("@font-face/size-adjust")}} 記述子は <a href="https://drafts.csswg.org/css-fonts-5/">CSS5 Fonts</a> 仕様の一部であり、このフォントに関連する書体の輪郭とメトリクスの乗数を定義します。これにより、様々なフォントが同じフォントサイズでレンダリングされた場合に、デザインの調和が取りやすくなります。 (詳細は {{bug(1698495)}} を参照してください。)</p>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col" style="vertical-align: bottom;">リリースチャネル</th>
   <th scope="col" style="vertical-align: bottom;">追加されたバージョン</th>
   <th scope="col" style="vertical-align: bottom;">既定で有効か</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <th scope="row">Nightly</th>
   <td>89</td>
   <td>Yes</td>
  </tr>
  <tr>
   <th scope="row">Developer Edition</th>
   <td>89</td>
   <td>No</td>
  </tr>
  <tr>
   <th scope="row">Beta</th>
   <td>89</td>
   <td>No</td>
  </tr>
  <tr>
   <th scope="row">Release</th>
   <td>89</td>
   <td>No</td>
  </tr>
  <tr>
   <th scope="row">設定名</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">メディアクエリーで縦横比として 1 つの数値を使用</h3>

<p><a href="/ja/docs/Web/CSS/Media_queries">メディアクエリー</a>で縦横比を指定する際に、 1 つの {{cssxref("number")}}{{cssxref("ratio")}} として使用できるようになりました。 (詳細は {{bug(1565562)}} を参照してください。)</p>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col" style="vertical-align: bottom;">リリースチャネル</th>
   <th scope="col" style="vertical-align: bottom;">追加されたバージョン</th>
   <th scope="col" style="vertical-align: bottom;">既定で有効か</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">設定名</th>
   <th colspan="2"><code>layout.css.aspect-ratio-number.enabled</code></th>
  </tr>
 </tbody>
</table>

<h3 id="Property_backdrop-filter">backdrop-filter プロパティ</h3>

<p>{{cssxref("backdrop-filter")}} プロパティは、要素の背後の領域にフィルター効果を適用します。 (詳しくは {{bug(1178765)}} を参照してください。)</p>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col" style="vertical-align: bottom;">リリースチャネル</th>
   <th scope="col" style="vertical-align: bottom;">追加されたバージョン</th>
   <th scope="col" style="vertical-align: bottom;">既定で有効か</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">設定名</th>
   <th colspan="2"><code>layout.css.backdrop-filter.enabled</code></th>
  </tr>
 </tbody>
</table>

<h3 id="Value_content_none"><code>content</code> プロパティの none 値</h3>

<p><code>none</code> の値を {{cssxref("content")}} プロパティに設定すると、あたかも要素が空であるかのように、要素の子がこの要素の子としてレンダリングされることを抑制します。 (詳細は {{bug(1699964)}} を参照。)</p>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col" style="vertical-align: bottom;">リリースチャネル</th>
   <th scope="col" style="vertical-align: bottom;">追加されたバージョン</th>
   <th scope="col" style="vertical-align: bottom;">既定で有効か</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <th scope="row">Nightly</th>
   <td>91</td>
   <td>No</td>
  </tr>
  <tr>
   <th scope="row">Developer Edition</th>
   <td>91</td>
   <td>No</td>
  </tr>
  <tr>
   <th scope="row">Beta</th>
   <td>91</td>
   <td>No</td>
  </tr>
  <tr>
   <th scope="row">Release</th>
   <td>91</td>
   <td>No</td>
  </tr>
  <tr>
   <th scope="row">設定名</th>
   <th colspan="2"><code>layout.css.element-content-none.enabled</code></th>
  </tr>
 </tbody>
</table>

<h3 id="Fit_content_function"><code>fit-content()</code> 関数の <code>width</code> など大きさを指定するプロパティでの使用</h3>

<p>{{cssxref("fit-content()")}} 関数は {{cssxref("width")}} をその他の大きさを指定するプロパティに適用することです。。この関数は、 CSS グリッドレイアウトのトラックのサイズ調整ですでに十分対応しています。(詳細は {{bug(1312588)}} を参照してください。)</p>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col" style="vertical-align: bottom;">リリースチャネル</th>
   <th scope="col" style="vertical-align: bottom;">追加されたバージョン</th>
   <th scope="col" style="vertical-align: bottom;">既定で有効か</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <th scope="row">Nightly</th>
   <td>91</td>
   <td>No</td>
  </tr>
  <tr>
   <th scope="row">Developer Edition</th>
   <td>91</td>
   <td>No</td>
  </tr>
  <tr>
   <th scope="row">Beta</th>
   <td>91</td>
   <td>No</td>
  </tr>
  <tr>
   <th scope="row">Release</th>
   <td>91</td>
   <td>No</td>
  </tr>
  <tr>
   <th scope="row">設定名</th>
   <th colspan="2"><code>layout.css.fit-content-function.enabled</code></th>
  </tr>
 </tbody>
</table>

<h3 id="Grid_Masonry_layout">グリッド: メイソンリーレイアウト</h3>

<p>グリッドレイアウトをベースにした<a href="/ja/docs/Web/CSS/CSS_Grid_Layout/Masonry_Layout">メイソンスタイルレイアウト</a>を追加しました。メイソンリーレイアウトスタイルレイアウトは、一方の軸がメイソンリーレイアウトスタイル、もう一方の軸が通常のグリッドレイアウトです。これにより、開発者は Pinterest のようなギャラリースタイルのレイアウトを簡単に作成できるようになります。詳しくは {{bug(1607954)}} を参照してください。</p>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col" style="vertical-align: bottom;">リリースチャネル</th>
   <th scope="col" style="vertical-align: bottom;">追加されたバージョン</th>
   <th scope="col" style="vertical-align: bottom;">既定で有効か</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">設定名</th>
   <th colspan="2"><code>layout.css.grid-template-masonry-value.enabled</code></th>
  </tr>
 </tbody>
</table>

<h3 id="Media_feature_prefers-contrast">prefers-contrast メディア特性</h3>

<p><code><a href="/ja/docs/Web/CSS/@media/prefers-contrast">prefers-contrast</a></code> メディア特性は、ウェブコンテンツの表示において、ユーザーが高め (または低め) のコントラストを指定しているかどうかを検出するために使用されます。詳細については、 {{bug("1506364")}} を参照してください。</p>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col" style="vertical-align: bottom;">リリースチャネル</th>
   <th scope="col" style="vertical-align: bottom;">追加されたバージョン</th>
   <th scope="col" style="vertical-align: bottom;">既定で有効か</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <th scope="row">Nightly</th>
   <td>80</td>
   <td>No</td>
  </tr>
  <tr>
   <th scope="row">Developer Edition</th>
   <td>80</td>
   <td>No</td>
  </tr>
  <tr>
   <th scope="row">Beta</th>
   <td>80</td>
   <td>No</td>
  </tr>
  <tr>
   <th scope="row">Release</th>
   <td>80</td>
   <td>No</td>
  </tr>
  <tr>
   <th scope="row">設定名</th>
   <th colspan="2">
    <p><code>layout.css.prefers-contrast.enabled</code></p>
   </th>
  </tr>
 </tbody>
</table>

<h3 id="Property_math-style">math-style プロパティ</h3>

<p>{{cssxref("math-style")}} プロパティは、 MathML の数式の高さを通常にするかコンパクトにするかを示します。 (詳しくは {{bug(1665975)}} を参照してください。)</p>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col" style="vertical-align: bottom;">リリースチャネル</th>
   <th scope="col" style="vertical-align: bottom;">追加されたバージョン</th>
   <th scope="col" style="vertical-align: bottom;">既定で有効か</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <th scope="row">Nightly</th>
   <td>83</td>
   <td>No</td>
  </tr>
  <tr>
   <th scope="row">Developer Edition</th>
   <td>83</td>
   <td>No</td>
  </tr>
  <tr>
   <th scope="row">Beta</th>
   <td>83</td>
   <td>No</td>
  </tr>
  <tr>
   <th scope="row">Release</th>
   <td>83</td>
   <td>No</td>
  </tr>
  <tr>
   <th scope="row">設定名</th>
   <th colspan="2"><code>layout.css.math-style.enabled</code></th>
  </tr>
 </tbody>
</table>

<h2 id="JavaScript">JavaScript</h2>


<h2 id="APIs">APIs</h2>

<h3 id="Graphics_Canvas_WebGL_and_WebGPU">グラフィック: Canvas, WebGL, WebGPU</h3>

<h4 id="Interface_OffscreenCanvas">OffscreenCanvas インターフェイス</h4>

<p>{{domxref("OffscreenCanvas")}} インターフェイスは、画面外でレンダリングできるキャンバスを提供します。これは、ウィンドウと<a href="/ja/docs/Web/API/Web_Workers_API">ワーカー</a>の両方のコンテキストで利用できます。 (詳細は {{bug(1390089)}} を参照してください。)</p>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col" style="vertical-align: bottom;">リリースチャネル</th>
   <th scope="col" style="vertical-align: bottom;">追加されたバージョン</th>
   <th scope="col" style="vertical-align: bottom;">既定で有効か</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">設定名</th>
   <th colspan="2"><code>gfx.offscreencanvas.enabled</code></th>
  </tr>
 </tbody>
</table>

<h4 id="Hit_regions">ヒット領域</h4>

<p>マウスの座標がキャンバス上の特定の領域内にあるかどう かは、解決すべき一般的な問題です。ヒットリージョン API を使用すると、キャンバスの領域を定義することができ、キャンバス上のインタラクティブ コンテンツをアクセシビリティ ツールに公開する別の可能性が生まれます。</p>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col" style="vertical-align: bottom;">リリースチャネル</th>
   <th scope="col" style="vertical-align: bottom;">追加されたバージョン</th>
   <th scope="col" style="vertical-align: bottom;">既定で有効か</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">設定名</th>
   <th colspan="2"><code>canvas.hitregions.enabled</code></th>
  </tr>
 </tbody>
</table>

<h4 id="WebGL_Draft_extensions">WebGL: ドラフト拡張</h4>

<p>この設定を有効にすると、現在 "draft" ステータスでテスト中の WebGL 拡張機能が使用可能になります。現在、 Firefox でテスト中の WebGL 拡張機能はありません。</p>

<h4 id="WebGPU_API">WebGPU API</h4>

<p>これは新しい API で、ユーザーの端末やコンピューターの GPU (Graphics Processing Unit) を使用して、計算やグラフィックのレンダリングを行うための低レベルのサポートを提供します。この<a href="https://gpuweb.github.io/gpuweb/">仕様</a>はまだ完成していません。この API の進捗状況については、 {{bug(1602129)}} を参照してください。</p>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col" style="vertical-align: bottom;">リリースチャネル</th>
   <th scope="col" style="vertical-align: bottom;">追加されたバージョン</th>
   <th scope="col" style="vertical-align: bottom;">既定で有効か</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">設定名</th>
   <th colspan="2"><code>dom.webgpu.enabled</code></th>
  </tr>
 </tbody>
</table>

<h3 id="HTML_DOM_API">HTML DOM API</h3>

<h4 id="HTMLMediaElement_method_setSinkId">HTMLMediaElement の setSinkId() メソッド</h4>

<p>{{domxref("HTMLMediaElement.setSinkId()")}} は、 {{domxref("HTMLMediaElement")}} に音声出力機器のシンク ID を設定することで、音声の出力先を変更することができます。詳細は {{bug(934425)}} を参照してください。</p>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col" style="vertical-align: bottom;">リリースチャネル</th>
   <th scope="col" style="vertical-align: bottom;">追加されたバージョン</th>
   <th scope="col" style="vertical-align: bottom;">既定で有効か</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">設定名</th>
   <th colspan="2"><code>media.setsinkid.enabled</code></th>
  </tr>
 </tbody>
</table>

<h4 id="HTMLMediaElement_properties_audioTracks_and_videoTracks">HTMLMediaElement の audioTracks および videoTracks プロパティ</h4>

<p>この機能を有効にすると、 HTML のすべてのメディア要素に {{domxref("HTMLMediaElement.audioTracks")}} および {{domxref("HTMLMediaElement.videoTracks")}} プロパティが追加されます。しかし、 Firefox は現在、複数の音声トラックや動画トラックに対応していないため、これらのプロパティの最も一般的な使用例は機能せず、既定では両方とも無効になっています。詳細については {{bug(1057233)}} を参照してください。</p>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col" style="vertical-align: bottom;">リリースチャネル</th>
   <th scope="col" style="vertical-align: bottom;">追加されたバージョン</th>
   <th scope="col" style="vertical-align: bottom;">既定で有効か</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">設定名</th>
   <th colspan="2"><code>media.track.enabled</code></th>
  </tr>
 </tbody>
</table>

<h3 id="DOM">DOM</h3>

<h4 id="clipboarditem">ClipboardItem</h4>

<p>{{domxref('Clipboard API')}}{{domxref('ClipboardItem')}} インターフェイスに対応し、 {{domxref('Clipboard.write()')}}{{domxref('ClipboardItem','クリップボードアイテム')}}の並びを、以前に実装されていた {{domxref('DataTransfer','dataTransfer オブジェクト')}} の代わりに受け入れます。これは、以前は <code>dom.events.asyncClipboard.dataTransfer</code> であった <code>dom.events.asyncClipboard.clipboardItem</code> を設定することで利用可能です。詳細については、 {{bug('1619947')}} を参照してください。</p>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col" style="vertical-align: bottom;">リリースチャネル</th>
   <th scope="col" style="vertical-align: bottom;">追加されたバージョン</th>
   <th scope="col" style="vertical-align: bottom;">既定で有効か</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <th scope="row">Nightly</th>
   <td>87</td>
   <td>No</td>
  </tr>
  <tr>
   <th scope="row">Developer Edition</th>
   <td>87</td>
   <td>No</td>
  </tr>
  <tr>
   <th scope="row">Beta</th>
   <td>87</td>
   <td>No</td>
  </tr>
  <tr>
   <th scope="row">Release</th>
   <td>87</td>
   <td>No</td>
  </tr>
  <tr>
   <th scope="row">設定名</th>
   <th colspan="2"><code><strong>dom.events.asyncClipboard.clipboardItem</strong></code></th>
  </tr>
 </tbody>
</table>

<h4 id="clipboardread">ClipboardRead</h4>

<p>クリップボードインターフェイスの <a href="/ja/docs/Web/API/Clipboard/read">Clipboard.read()</a> メソッドは、以前は <code>dom.events.asyncClipboard.clipboardItem</code> の下にあったものが、 <code>dom.events.asyncClipboard.read</code> の環境設定の下でも利用できるようになりました。(詳細は ({{bug(1701512)}}) を参照してください。)</p>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col" style="vertical-align: bottom;">リリースチャネル</th>
   <th scope="col" style="vertical-align: bottom;">追加されたバージョン</th>
   <th scope="col" style="vertical-align: bottom;">既定で有効か</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <th scope="row">Nightly</th>
   <td>90</td>
   <td>No</td>
  </tr>
  <tr>
   <th scope="row">Developer Edition</th>
   <td>90</td>
   <td>No</td>
  </tr>
  <tr>
   <th scope="row">Beta</th>
   <td>90</td>
   <td>No</td>
  </tr>
  <tr>
   <th scope="row">Release</th>
   <td>90</td>
   <td>No</td>
  </tr>
  <tr>
   <th scope="row">設定名</th>
   <th colspan="2"><code>dom.events.asyncClipboard.read</code> </th>
  </tr>
 </tbody>
</table>

<h4 id="HTML_Sanitizer_API">HTML Sanitizer API</h4>

<p>{{domxref('HTML Sanitizer API')}} は、開発者が信頼できない HTML 文字列を受け取り、文書の DOM に安全に挿入するためにそれらをサニタイズすることを可能にします。各設定プロパティ内の既定の要素 (サニタイズされる要素) はまだ検討中です。このため、 config 引数は実装されていません (詳しくは{{domxref('Sanitizer.sanitizer()', 'the constructor', '', 1)}}を参照してください)。詳細は、 {{bug('1673309')}} を参照してください。</p>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col" style="vertical-align: bottom;">リリースチャネル</th>
   <th scope="col" style="vertical-align: bottom;">追加されたバージョン</th>
   <th scope="col" style="vertical-align: bottom;">既定で有効か</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <th scope="row">Nightly</th>
   <td>84</td>
   <td>No</td>
  </tr>
  <tr>
   <th scope="row">Developer Edition</th>
   <td>84</td>
   <td>No</td>
  </tr>
  <tr>
   <th scope="row">Beta</th>
   <td>84</td>
   <td>No</td>
  </tr>
  <tr>
   <th scope="row">Release</th>
   <td>84</td>
   <td>No</td>
  </tr>
  <tr>
   <th scope="row">設定名</th>
   <th colspan="2"><code><strong>dom.security.sanitizer.enabled</strong></code></th>
  </tr>
 </tbody>
</table>

<h4 id="Document_property_autoplayPolicy">Document の autoplayPolicy プロパティ</h4>

<p>{{domxref("document")}}{{domxref("Document.autoplayPolicy", "autoplayPolicy")}} プロパティは、 (メディア要素の {{domxref("HTMLMediaElement.autoplay", "autoplay")}} プロパティを使用するか、または JavaScript コードから再生を開始させようとする) メディアの自動再生のリクエストをブラウザーがどのように処理するかを示す文字列を返します。この API の仕様はまだ作成中です。この値は、ユーザーが何をしているか、ユーザーの好み、およびブラウザ全体の状態に応じて、時間とともに変化します。想定される値としては、 <code>allowed</code> (自動再生は現在許可されている)、 <code>allowed-muted</code> (自動再生は許可されているが、音声がないかミュートされている場合のみ)、<code>disallowed</code> (自動再生は現在許可されていない) などがあります。詳細は、 {{bug(1506289)}} を参照してください。</p>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col" style="vertical-align: bottom;">リリースチャネル</th>
   <th scope="col" style="vertical-align: bottom;">追加されたバージョン</th>
   <th scope="col" style="vertical-align: bottom;">既定で有効か</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">設定名</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 の convertPointFromNode(), convertRectFromNode(), convertQuadFromNode() メソッド</h4>

<p><code>GeometryUtils</code><code>convertPointFromNode()</code><code>convertRectFromNode()</code>)、<code></code>convertQuadFromNode()</code> の各メソッドは、指定された点、矩形、または四角形を、呼び出されたノードから別のノードにマッピングします。 (詳細は {{bug(918189)}} を参照してください。)</p>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col" style="vertical-align: bottom;">リリースチャネル</th>
   <th scope="col" style="vertical-align: bottom;">追加されたバージョン</th>
   <th scope="col" style="vertical-align: bottom;">既定で有効か</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">設定名</th>
   <th colspan="2"><code>layout.css.getBoxQuads.enabled</code></th>
  </tr>
 </tbody>
</table>

<h4 id="GeometryUtils_method_getBoxQuads">GeometryUtils の getBoxQuads() メソッド</h4>

<p><code>GeometryUtils</code><code>getBoxQuads()</code> メソッドは、他のノードやビューポートとの相対的な {{domxref("Node")}} の CSS ボックスを返します。(詳細は {{bug(917755)}} を参照してください。)</p>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col" style="vertical-align: bottom;">リリースチャネル</th>
   <th scope="col" style="vertical-align: bottom;">追加されたバージョン</th>
   <th scope="col" style="vertical-align: bottom;">既定で有効か</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">設定名</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">主要な支払いの扱い</h4>

<p><a href="/ja/docs/Web/API/Payment_Request_API">Payment Request API</a> は、ウェブコンテンツやアプリ内でウェブベースの支払いを処理するためのサポートを提供します。ユーザーインターフェイスのテスト中にバグが発生したため、 API の変更を検討している間、この API の出荷を延期することにしました。作業は継続中です。(詳細は {{bug(1318984)}} をご参照ください。)</p>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col" style="vertical-align: bottom;">リリースチャネル</th>
   <th scope="col" style="vertical-align: bottom;">追加されたバージョン</th>
   <th scope="col" style="vertical-align: bottom;">既定で有効か</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">設定名</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><a href="/ja/docs/Web/API/Payment_Request_API">Payment Request API</a> に、カード支払い種別と支払い応答を記述するデータを定義する辞書を拡張します。 {{domxref("BasicCardRequest")}}{{domxref("BasicCardResponse")}} を参照してください。</p>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col" style="vertical-align: bottom;">リリースチャネル</th>
   <th scope="col" style="vertical-align: bottom;">追加されたバージョン</th>
   <th scope="col" style="vertical-align: bottom;">既定で有効か</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">設定名</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><a href="/ja/docs/Web/API/Visual_Viewport_API">Visual Viewport API</a> は、文書やウィンドウのコンテンツ領域に対する{{Glossary("visual viewport", "視覚ビューポート")}}の相対的な位置を示す情報へのアクセスを提供します。また、この情報の変更を監視するイベントにも対応しています。詳細については、 {{bug(1550390)}} を参照してください。現在、これをデスクトップ版に展開する計画があり、その状況は {{bug(1551302)}} で確認できます。</p>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col" style="vertical-align: bottom;">リリースチャネル</th>
   <th scope="col" style="vertical-align: bottom;">追加されたバージョン</th>
   <th scope="col" style="vertical-align: bottom;">既定で有効か</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">設定名</th>
   <th colspan="2"><code>dom.visualviewport.enabled</code></th>
  </tr>
 </tbody>
</table>

<h3 id="Constructable_stylesheets">構築可能なスタイルシート</h3>

<p>{{domxref("CSSStyleSheet")}} インターフェースにコンストラクターが追加され、また関連する様々な変更により、 HTML にシートを追加することなく、新しいスタイルシートを直接作成できるようになりました。これにより、<a href="/ja/docs/Web/Web_Components/Using_shadow_DOM">シャドウ DOM</a> で使用するための再利用可能なスタイルシートの作成がより容易になります。我々の実装はまだ完全ではなく、詳細は {{bug(1520690)}} を参照してください。</p>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col" style="vertical-align: bottom;">リリースチャネル</th>
   <th scope="col" style="vertical-align: bottom;">追加されたバージョン</th>
   <th scope="col" style="vertical-align: bottom;">既定で有効か</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">設定名</th>
   <th colspan="2"><code>layout.css.constructable-stylesheets.enabled</code></th>
  </tr>
 </tbody>
</table>

<h3 id="WebRTC_and_media">WebRTC とメディア</h3>

<p><a href="/ja/docs/Web/API/WebRTC_API">WebRTC API</a><a href="/ja/docs/Web/API/Web_Audio_API">Web Audio API</a><a href="/ja/docs/Web/API/Media_Source_Extensions_API">Media Source Extensions API</a><a href="/ja/docs/Web/API/Encrypted_Media_Extensions_API">Encrypted Media Extensions API</a><a href="/ja/docs/Web/API/Media_Streams_API">Media Capture and Streams API</a> にある以下の機能は実験的なものです。</p>

<h4 id="Asynchronous_SourceBuffer_add_and_remove">非同期の SourceBuffer の追加と削除</h4>

<p>これにより、メディアソースバッファを追加および削除するためのプロミスベースのメソッド {{domxref("SourceBuffer.appendBufferAsync", "appendBufferAsync()")}} および {{domxref("SourceBuffer.removeAsync", "removeAsync()")}}{{domxref("SourceBuffer")}} インターフェイスに追加されます。詳細については、 {{bug(1280613)}} および {{bug(778617)}} を参照してください。</p>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col" style="vertical-align: bottom;">リリースチャネル</th>
   <th scope="col" style="vertical-align: bottom;">追加されたバージョン</th>
   <th scope="col" style="vertical-align: bottom;">既定で有効か</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">設定名</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) 対応</h4>

<p>この機能を有効にすると、 Firefox は <a href="/ja/docs/Web/Media/Formats/Image_types#avif">AV1 画像ファイル (AVIF)</a> 形式をサポートします。これは、 AV1 動画圧縮アルゴリズムの機能を利用して画像サイズを小さくした静止画ファイル形式です。(詳細については、 {{bug(1443863)}} を参照してください。)</p>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col" style="vertical-align: bottom;">リリースチャネル</th>
   <th scope="col" style="vertical-align: bottom;">追加されたバージョン</th>
   <th scope="col" style="vertical-align: bottom;">既定で有効か</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">設定名</th>
   <th colspan="2"><code>image.avif.enabled</code></th>
  </tr>
 </tbody>
</table>

<h4 id="AV1_support_for_Firefox_on_Android">Android 版Firefox の AV1 対応</h4>

<p>Android 版 Firefox で、 <a href="/ja/docs/Web/Media/Formats/Video_codecs#av1">AV1 形式のメディア</a>を利用できるようになります。この機能は、 Android 版 Firefox 81 以降で有効な Nightly ビルドで利用できます。既定では有効になっています。</p>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col" style="vertical-align: bottom;">リリースチャネル</th>
   <th scope="col" style="vertical-align: bottom;">追加されたバージョン</th>
   <th scope="col" style="vertical-align: bottom;">既定で有効か</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <th scope="row">Nightly</th>
   <td>81</td>
   <td>Yes</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">設定名</th>
   <th colspan="2"></th>
  </tr>
 </tbody>
</table>

<h4 id="JPEG_XL_support">JPEG XL 対応</h4>

<p>この機能を有効にすると、 Firefox は <a href="https://jpeg.org/jpegxl/">JPEG XL</a> 画像に対応します。詳細は {{bug(1539075)}} を参照してください。この機能は、Firefox 90 以降で有効なナイトリービルドで利用できます。</p>

<table class="standard-table">
  <thead>
   <tr>
    <th scope="col" style="vertical-align: bottom;">リリースチャネル</th>
    <th scope="col" style="vertical-align: bottom;">追加されたバージョン</th>
    <th scope="col" style="vertical-align: bottom;">既定で有効か</th>
   </tr>
  </thead>
  <tbody>
   <tr>
    <th scope="row">Nightly</th>
    <td>90</td>
    <td>No</td>
   </tr>
   <tr>
    <th scope="row">Developer Edition</th>
    <td>90</td>
    <td>No</td>
   </tr>
   <tr>
    <th scope="row">Beta</th>
    <td>90</td>
    <td>No</td>
   </tr>
   <tr>
    <th scope="row">Release</th>
    <td></td>
    <td></td>
   </tr>
   <tr>
    <th scope="row">設定名</th>
    <th colspan="2">image.jxl.enabled</th>
   </tr>
  </tbody>
 </table>

<h2 id="Security_and_privacy">セキュリティとプライバシー</h2>

<h4 id="Block_plain_text_requests_from_Flash_on_encrypted_pages">暗号化されたページ上の Flash からのプレーンテキストのリクエストをブロックする</h4>

<p>暗号化されたページ上の Flash コンテンツによって引き起こされる中間者攻撃 (MitM) を軽減するために、 <code>OBJECT_SUBREQUEST</code> をアクティブなコンテンツとして扱う設定が追加されました。詳細については、 {{bug(1190623)}} を参照してください。</p>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col" style="vertical-align: bottom;">リリースチャネル</th>
   <th scope="col" style="vertical-align: bottom;">追加されたバージョン</th>
   <th scope="col" style="vertical-align: bottom;">既定で有効か</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">設定名</th>
   <th colspan="2"><code>security.mixed_content.block_object_subrequest</code></th>
  </tr>
 </tbody>
</table>

<h4 id="Insecure_page_labeling">安全でないページのラベル付け</h4>

<p>この 2 つの環境設定では、安全でない方法でページが読み込まれた場合 ({{Glossary("HTTPS")}} ではなく {{Glossary("HTTP")}} を使用した場合) に、従来のロックアイコンの隣に「Not secure」というテキストラベルがアドレスバーに追加されます。詳細については、 {{bug(1335970)}} を参照してください。</p>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col" style="vertical-align: bottom;">リリースチャネル</th>
   <th scope="col" style="vertical-align: bottom;">追加されたバージョン</th>
   <th scope="col" style="vertical-align: bottom;">既定で有効か</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">設定名</th>
   <th colspan="2">通常閲覧モードは <code>security.insecure_connection_text.enabled</code>、プライベート閲覧モードは <code>security.insecure_connection_text.pbmode.enabled</code></th>
  </tr>
 </tbody>
</table>

<h4 id="Upgrading_mixed_display_content">混合表示コンテンツのアップグレード</h4>

<p>この設定を有効にすると、 Firefox は安全なページでメディアコンテンツへの要求を HTTP から HTTPS に自動的にアップグレードします。これは、一部のコンテンツが安全に読み込まれる一方で、他のコンテンツが安全でないという混合コンテンツの状態を防ぐことを目的としています。(メディアのホストが HTTPS に対応していないために) アップグレードが失敗した場合、そのメディアは読み込まれません。(詳細については、 {{bug(1435733)}} を参照してください。)</p>

<p>これはコンソールの警告も変更します。アップグレードが成功した場合、警告ではなく、リクエストがアップグレードされたことを示すメッセージを表示します。</p>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col" style="vertical-align: bottom;">リリースチャネル</th>
   <th scope="col" style="vertical-align: bottom;">追加されたバージョン</th>
   <th scope="col" style="vertical-align: bottom;">既定で有効か</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <th scope="row">Nightly</th>
   <td>84</td>
   <td>Yes</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">設定名</th>
   <th colspan="2"><code>security.mixed_content.upgrade_display_content</code></th>
  </tr>
 </tbody>
</table>


<h4 id="Feature_policy">機能ポリシー</h4>

<p><a href="/ja/docs/Web/HTTP/Feature_Policy">機能ポリシー</a>は、ウェブ開発者がブラウザーの特定の機能や API の動作を選択的に有効化、無効化、変更することを可能にします。 CSP と似ていますが、セキュリティの動作ではなく機能を制御します。</p>

<div class="notecard note">
  <h4>メモ</h4>
  <p><code>Feature-Policy</code> ヘッダーは、仕様書では <code>Permissions-Policy</code> に名称が変更されており、本記事もいずれその変更を反映して更新される予定です。</p>
</div>

<table class="standard-table">
  <thead>
   <tr>
    <th scope="col" style="vertical-align: bottom;">リリースチャネル</th>
    <th scope="col" style="vertical-align: bottom;">追加されたバージョン</th>
    <th scope="col" style="vertical-align: bottom;">既定で有効か</th>
   </tr>
  </thead>
  <tbody>
   <tr>
    <th scope="row">Nightly</th>
    <td>65</td>
    <td>No</td>
   </tr>
   <tr>
    <th scope="row">Developer Edition</th>
    <td>65</td>
    <td>No</td>
   </tr>
   <tr>
    <th scope="row">Beta</th>
    <td>65</td>
    <td>No</td>
   </tr>
   <tr>
    <th scope="row">Release</th>
    <td>65</td>
    <td>No</td>
   </tr>
   <tr>
    <th scope="row">設定名</th>
    <th colspan="2"><code>dom.security.featurePolicy.header.enabled</code></th>
   </tr>
  </tbody>
 </table>

<h2 id="Developer_tools">開発ツール</h2>

<p>Mozilla の開発者向けツールは常に進化しています。私たちは新しいアイディアを試し、新しい機能を追加し、Nightly や Developer Edition のチャンネルでテストしてから、ベータ版やリリースに移行しています。以下の機能は、現在の実験的な開発者ツールの機能の一部です。</p>

<h4 id="Execution_context_selector">実行コンテキストセレクター</h4>

<p>この機能では、コンソールのコマンドラインにボタンが表示され、入力した式が実行されるコンテキストを変更することができます。(詳細は、 {{bug(1605154)}} および {{bug(1605153)}} を参照してください。)</p>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col" style="vertical-align: bottom;">リリースチャネル</th>
   <th scope="col" style="vertical-align: bottom;">追加されたバージョン</th>
   <th scope="col" style="vertical-align: bottom;">既定で有効か</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">設定名</th>
   <th colspan="2"><code>devtools.webconsole.input.context</code></th>
  </tr>
 </tbody>
</table>

<h4 id="Mobile_gesture_support_in_Responsive_Design_Mode">レスポンシブデザインモードでのモバイルジェスチャーのサポート</h4>

<p>マウスジェスチャーを使用して、スワイプ/スクロール、ダブルタップやピンチズーム、長押しによるコンテキストメニューの選択/オープンなどのモバイルジェスチャーをシミュレートすることができます。 (詳細については {{bug(1621781)}}{{bug(1245183)}}{{bug(1401304)}} を参照してください。)</p>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col" style="vertical-align: bottom;">リリースチャネル</th>
   <th scope="col" style="vertical-align: bottom;">追加されたバージョン</th>
   <th scope="col" style="vertical-align: bottom;">既定で有効か</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">設定名</th>
   <th colspan="2">n/a</th>
  </tr>
 </tbody>
</table>

<p>[1] ダブルタップのジェスチャーによるズームの対応は Firefox 76 で追加されました。他のジェスチャーは Firefox 79 で追加されました。</p>

<h4 id="Server-sent_events_in_Network_Monitor">ネットワークモニターにおける Server-sent event</h4>

<p>ネットワークモニターが <a href="/ja/docs/Web/API/Server-sent_events">server-sent</a> event についての情報を表示する機能です。 (詳細については {{bug(1405706)}} を参照してください。)</p>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col" style="vertical-align: bottom;">リリースチャネル</th>
   <th scope="col" style="vertical-align: bottom;">追加されたバージョン</th>
   <th scope="col" style="vertical-align: bottom;">既定で有効か</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <th scope="row">Nightly</th>
   <td>80</td>
   <td>Yes</td>
  </tr>
  <tr>
   <th scope="row">Developer Edition</th>
   <td>80</td>
   <td>Yes</td>
  </tr>
  <tr>
   <th scope="row">Beta</th>
   <td>80</td>
   <td>No</td>
  </tr>
  <tr>
   <th scope="row">Release</th>
   <td>80</td>
   <td>No</td>
  </tr>
  <tr>
   <th scope="row">設定名</th>
   <th colspan="2"><code>devtools.netmonitor.features.serverSentEvents</code></th>
  </tr>
 </tbody>
</table>

<h4 id="CSS_browser_compatibility_tooltips">CSS のブラウザー互換性ツールチップ</h4>

<p>CSS ルールビューでは、既知の問題がある CSS プロパティの隣にブラウザーの互換性ツールチップを表示させることができます。詳しい情報は <a href="/ja/docs/Tools/Page_Inspector/How_to/Examine_and_edit_HTML#browser_compat_warnings">HTML の調査と編集 &gt; ブラウザー互換性の警告</a>を参照してください。</p>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col" style="vertical-align: bottom;">リリースチャネル</th>
   <th scope="col" style="vertical-align: bottom;">追加されたバージョン</th>
   <th scope="col" style="vertical-align: bottom;">既定で有効か</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <th scope="row">Nightly</th>
   <td>81</td>
   <td>No</td>
  </tr>
  <tr>
   <th scope="row">Developer Edition</th>
   <td>81</td>
   <td>No</td>
  </tr>
  <tr>
   <th scope="row">Beta</th>
   <td>81</td>
   <td>No</td>
  </tr>
  <tr>
   <th scope="row">Release</th>
   <td>81</td>
   <td>No</td>
  </tr>
  <tr>
   <th scope="row">設定名</th>
   <th colspan="2"><code>devtools.inspector.ruleview.inline-compatibility-warning.enabled</code></th>
  </tr>
 </tbody>
</table>

<h2 id="UI">UI</h2>

<h4 id="Desktop_zooming">デスクトップ版のズーム</h4>

<p>この機能により、デスクトップ PC では、モバイル端末のようにレイアウトの変更をすることなく、スムーズなピンチズームが可能になります。(詳細は {{bug(1245183)}} および {{bug(1620055)}} を参照してください。)</p>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col" style="vertical-align: bottom;">リリースチャネル</th>
   <th scope="col" style="vertical-align: bottom;">追加されたバージョン</th>
   <th scope="col" style="vertical-align: bottom;">既定で有効か</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <th scope="row">Nightly</th>
   <td>42</td>
   <td>Yes</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">設定名</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">関連情報</h2>

<ul>
 <li><a href="/ja/docs/Mozilla/Firefox/Releases">Firefox 開発者リリースノート</a></li>
 <li><a href="https://nightly.mozilla.org/">Firefox Nightly</a></li>
 <li><a href="https://www.mozilla.org/ja/firefox/developer/">Firefox Developer Edition</a></li>
</ul>