summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/blink/renderer/platform/runtime_enabled_features.json5
blob: 4ab43d81cce2a63465d1b472a1135e9479d62503 (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
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
{
  // See third_party/blink/renderer/platform/RuntimeEnabledFeatures.md
  //
  // This list is used to generate runtime_enabled_features.h/cc which contains
  // a class that stores static enablers for all experimental features.

  parameters: {
    // Each feature can be assigned a "status". The "status" can be either
    // one of the values in the |valid_values| list or a dictionary of
    // the platforms listed in |valid_keys| to |valid_values|.
    // Use "default" as the key if you want to specify the status of
    // the platforms other than the ones declared in the dictionary.
    // ** Omitting "default" means the feature is not enabled on
    // the platforms not listed in the status dictionary
    //
    // Definition of each status:
    // * status=stable: Enable this in all Blink configurations. We are
    //   committed to these APIs indefinitely.
    // * status=experimental: In-progress features, Web Developers might play
    //   with, but are not on by default in stable.
    // * status=test: Enabled in ContentShell for testing, otherwise off.
    // Features without a status are not enabled anywhere by default.
    //
    // Example of the dictionary value use:
    // {
    //   name: "ExampleFeature",
    //   status: {"Android": "stable", "Win": "experimental"},
    // }
    // "ExampleFeature" will be stable on Android/WebView/WebLayer, experimental
    // on Windows and not enabled on any other platform.
    //
    // Note that the Android status key implies Chrome for Android, WebView and
    // WebLayer.
    //
    // "stable" features listed here should be rare, as anything which we've
    // shipped stable can have its runtime flag removed soon after.
    status: {
      valid_values: ["stable", "experimental", "test"],
      valid_keys: ["Android", "Win", "ChromeOS_Ash", "ChromeOS_Lacros", "Mac", "Linux"]
    },

    // "implied_by" or "depends_on" specifies relationship to other features:
    // * implied_by: ["feature1","feature2",...]
    //   The feature is automatically enabled if any implied_by features is
    //   enabled. To effectively disable the feature, you must disable the
    //   feature and all the implied_by features.
    // * depends_on: ["feature1","feature2",...]
    //   The feature can be enabled only if all depends_on features are enabled.
    // Only one of "implied_by" and "depends_on" can be specified.
    implied_by: {
      default: [],
      valid_type: "list",
    },

    // *DO NOT* specify features that depend on origin trial features.
    // It is NOT supported. As a workaround, you can either specify the same
    // |origin_trial_feature_name| for the feature or add the OT feature to
    // the |implied_by| list.
    // TODO(https://crbug.com/954679): Add support for origin trial features in 'depends_on' list
    depends_on: {
      default: [],
      valid_type: "list",
    },

    // origin_trial_feature_name: "FEATURE_NAME" is used to integrate the
    // feature with the Origin Trials framework. The framework allows the
    // feature to be enabled at runtime on a per-page basis through a signed
    // token for the corresponding feature name. Declaring the
    // origin_trial_feature_name will modify the generation of the static
    // methods in runtime_enabled_features.h/cpp -- the no-parameter version
    // will not be generated, so all callers have to use the version that takes
    // a const FeatureContext* argument.
    origin_trial_feature_name: {
    },
    // origin_trial_os specifies the platforms where the trial is available.
    // The default is empty, meaning all platforms.
    origin_trial_os: {
      default: [],
      valid_type: "list",
    },
    // origin_trial_type specifies the unique type of the trial, when not the
    // usual trial for a new experimental feature.
    origin_trial_type: {
      default: "",
      valid_type: "str",
      valid_values: ["deprecation", "intervention", ""],
    },
    // origin_trial_allows_insecure specifies whether the trial can be enabled
    // in an insecure context, with default being false. This can only be set
    // to true for a "deprecation" type trial.
    origin_trial_allows_insecure: {
      valid_type: "bool",
    },

    // origin_trial_allows_third_party specifies whether the trial can be enabled
    // from third party origins, with default being false.
    origin_trial_allows_third_party: {
      valid_type: "bool",
    },

    // settable_from_internals specifies whether a feature can be set from
    // internals.runtimeFlags, with the default being false.
    settable_from_internals: {
      valid_type: "bool",
    },

    // public specifies whether a feature can be accessed via
    // third_party/blink/public/platform/web_runtime_features.h, with the
    // default being false.
    public: {
      valid_type: "bool",
    },

    // Feature policy IDL extended attribute (see crrev.com/2247923004).
    feature_policy: {
    },

    // The string name of a base::Feature. The C++ variable name in
    // blink::features is built with this string by prepending 'k'.
    // If this field is specified, the base::Feature is automatically generated
    // in features_generated.{h,cc}.
    //
    // The default value of the base::Feature instance is:
    //  base::FEATURE_ENABLED_BY_DEFAULT if 'status' field is 'stable", and
    //  base::FEATURE_DISABLED_BY_DEFAULT otheriwse.
    // It can be overridden by 'base_feature_status' field.
    //
    // If the flag should be associated with a feature not in blink::features,
    // we need to map them in content/child/runtime_features.cc.
    base_feature: {
      valid_type: "str",
      default: "",
    },

    // Specifiy the default value of the base::Feature instance. This field
    // works only if base_feature is not empty.
    // If the field is missing or "", the default value depends on the 'status'
    // field.  See the comment above.
    // "disabled" sets base::FEATURE_DISABLED_BY_DEFAULT, and "enabled" sets
    // base::FEATURE_ENABLED_BY_DEFAULT.
    base_feature_status: {
      valid_type: "str",
      valid_values: ["", "disabled", "enabled"],
      default: "",
    },

    // Specify how the flag value is updated from the base::Feature value. This
    // field is used only if base_feature is not empty.
    //
    // * "enabled_or_overridden"
    // - If the base::Feature default is overridden by field trial or command
    //   line, set Blink feature to the state of the base::Feature;
    // - Otherwise if the base::Feature is enabled, enable the Blink feature.
    // - Otherwise no change.
    //
    // * "overridden"
    //   Enables the Blink feature when the base::Feature is overridden by field
    //   trial or command line. Otherwise no change. Its difference from
    //   "enabled_or_overridden" is that the Blink feature isn't affected by the
    //   default state of the base::Feature.
    //
    //   This is useful for Blink origin trial features especially those
    //   implemented in both Chromium and Blink. As origin trial only controls
    //   the Blink features, for now we require the base::Feature to be enabled
    //   by default, but we don't want the default enabled status affect the
    //   Blink feature. See also https://crbug.com/1048656#c10.
    //   This can also be used for features that are enabled by default in
    //   Chromium but not in Blink on all platforms and we want to use the Blink
    //   status. However, we would prefer consistent Chromium and Blink status
    //   to this.
    copied_from_base_feature_if: {
      valid_type: "str",
      valid_values: ["enabled_or_overridden", "overridden"],
      default: "enabled_or_overridden",
    },
  },

  data: [
    {
      name: "AbortSignalThrowIfAborted",
      status: "stable",
    },
    {
      name: "AbortSignalTimeout",
      status: "stable",
    },
    {
      name: "Accelerated2dCanvas",
      settable_from_internals: true,
      status: "stable",
    },
    {
      name: "AcceleratedSmallCanvases",
      status: "stable",
    },
    {
      name: "AccessibilityAriaTouchPassthrough",
      status: "experimental",
      origin_trial_feature_name: "AccessibilityAriaTouchPassthrough",
    },
    {
      name: "AccessibilityAriaVirtualContent",
      public: true,
      status: "experimental",
    },
    {
      name: "AccessibilityExposeDisplayNone",
      status: "test",
    },
    {
      name: "AccessibilityExposeHTMLElement",
      public: true,
    },
    {
      name: "AccessibilityExposeIgnoredNodes",
      public: true,
    },
    {
      name: "AccessibilityObjectModel",
      status: "experimental",
    },
    {
      name: "AccessibilityPageZoom",
      public: true,
    },
    {
      name: "AccessibilityUseAXPositionForDocumentMarkers",
      public: true,
    },
    {
      name: "AddressSpace",
      status: "experimental",
      implied_by: ["CorsRFC1918"],
    },
    {
      // Interest Group JS API/runtimeflag.
      name: "AdInterestGroupAPI",
      origin_trial_feature_name: "AdInterestGroupAPI",
      implied_by: ["Fledge", "Parakeet"],
      base_feature: "AdInterestGroupAPI",
    },
    {
      name: "AdTagging",
      public: true,
      status: "test",
    },
    {
      name: "AllowContentInitiatedDataUrlNavigations",
    },
    {
      name: "AndroidDownloadableFontsMatching",
      public: true,
    },
    {
      name: "AnimationWorklet",
      status: "experimental",
    },
    {
      name: "AnonymousIframe",
      origin_trial_allows_third_party: true,
      origin_trial_feature_name: "AnonymousIframeOriginTrial",
      public: true,
      status: "test",
    },
    {
      name: "AOMAriaRelationshipProperties",
      public: true,
      status: "experimental",
    },
    {
      name: "AriaTouchPassthrough",
      status: "experimental",
    },
    {
      name: "AttributionReporting",
      origin_trial_feature_name: "PrivacySandboxAdsAPIs",
      origin_trial_allows_third_party: true,
      status: "experimental",
    },
    // The runtime flag for AudioContext.setSinkID().
    // See: https://github.com/WebAudio/web-audio-api/pull/2498
    {
      name: "AudioContextSetSinkId",
      status: "test",
    },
    {
      name: "AudioOutputDevices",
      // Android does not yet support switching of audio output devices
      status: {"Android": "", "default": "stable"},
    },
    {
      name: "AudioVideoTracks",
      status: "experimental",
    },
    {
      name: "AutoDarkMode",
      origin_trial_feature_name: "AutoDarkMode",
    },
    {
      name: "AutoDisableAccessibilityV2",
      public: true,
    },
    {
      // Makes autofill look across shadow boundaries when collecting form
      // controls to fill.
      name: "AutofillShadowDOM",
      status: "experimental",
      base_feature: "AutofillShadowDOM",
    },
    {
      name: "AutomationControlled",
      public: true,
      settable_from_internals: true,
    },
    {
      name: "AutoPictureInPicture",
      depends_on: ["PictureInPictureAPI"],
      status: "experimental",
    },
    {
      // Flag set by the media::kAutoplayIgnoreWebAudio feature flag.
      name: "AutoplayIgnoresWebAudio",
      public: true,
      settable_from_internals: true,
    },
    // When enabled, enforces new interoperable semantics for 3D transforms.
    // See crbug.com/1008483.
    {
      name: "BackfaceVisibilityInterop",
      base_feature: "BackfaceVisibilityInterop",
    },
    {
      name: "BackForwardCache",
      public: true,
    },
    {
      name: "BackForwardCacheExperimentHTTPHeader",
      origin_trial_feature_name: "BackForwardCacheExperimentHTTPHeader",
      status: "experimental",
    },
    {
      name: "BackForwardCacheNotRestoredReasons",
      status: "experimental",
      origin_trial_feature_name: "BackForwardCacheNotRestoredReasons",
      base_feature: "BackForwardCacheSendNotRestoredReasons",
      base_feature_status: "disabled",
      copied_from_base_feature_if: "overridden",
      public: true,
    },
    {
      name: "BackgroundFetch",
      public: true,
      status: "stable",
    },
    {
      name: "BarcodeDetector",
      status: {
        // Built-in barcode detection APIs are only available from some
        // platforms. See //services/shape_detection.
        "Android": "stable",
        "ChromeOS_Ash": "stable",
        "ChromeOS_Lacros": "stable",
        "Mac": "stable",
        "default": "test",
      },
    },
    {
      name: "BatchFetchRequests",
      status: "test",
      base_feature: "BatchFetchRequests",
    },
    {
      // https://github.com/WICG/display-locking/blob/master/explainer-beforematch.md
      name: "BeforeMatchEvent",
      origin_trial_feature_name: "BeforeMatchEvent",
      status: "stable",
    },
    {
      name: "BidiCaretAffinity",
    },
    {
      name: "BlinkExtensionChromeOS",
    },
    {
      name: "BlinkExtensionChromeOSHID",
      depends_on: ["BlinkExtensionChromeOS"],
    },
    {
      name: "BlinkExtensionChromeOSWindowManagement",
      depends_on: ["BlinkExtensionChromeOS"],
    },
    {
      name: "BlinkRuntimeCallStats",
    },
    {
      // https://html.spec.whatwg.org/multipage/urls-and-fetching.html#blocking-attributes
      name: "BlockingAttribute",
      status: "stable",
    },
    {
      name: "BlockingFocusWithoutUserActivation",
      status: "experimental",
      base_feature: "BlockingFocusWithoutUserActivation",
    },
    {
      name: "BrowserVerifiedUserActivationKeyboard",
      public: true,
    },
    {
      name: "BrowserVerifiedUserActivationMouse",
      public: true,
    },
    {
      name: "CacheStorageCodeCacheHint",
      origin_trial_feature_name: "CacheStorageCodeCacheHint",
      status: "experimental",
    },
    {
      name: "Canvas2dImageChromium",
      public: true,
    },
    {
      name: "Canvas2dLayers",
    },
    {
      name: "Canvas2dScrollPathIntoView",
      status: "experimental",
    },
    {
      name: "CanvasColorManagementV2",
      status: "experimental",
    },
    {
      name: "CanvasHDR",
      status: "experimental",
    },
    {
      name: "CanvasImageSmoothing",
      status: "experimental",
    },
    {
      name: "CapabilityDelegationFullscreenRequest",
      status: "stable",
    },
    {
      name: "CaptureHandle",
      depends_on: ["GetDisplayMedia"],
      status: {"Android": "", "default": "stable"},
    },
    {
      name: "checkVisibility",
      status: "stable",
    },
    {
      name: "ClearIdentityInCanMakePaymentEvent",
      base_feature: "ClearIdentityInCanMakePaymentEvent",
      origin_trial_allows_third_party: true,
      origin_trial_feature_name: "IdentityInCanMakePaymentEventFeature",
      origin_trial_type: "deprecation",
      public: true,
    },
    {
      name: "ClickToCapturedPointer",
      status: "experimental",
    },
    {
      name: "ClientHintsMetaEquivDelegateCH",
      status: "stable",
      base_feature: "ClientHintsMetaEquivDelegateCH",
    },
    {
      name: "ClientHintsMetaHTTPEquivAcceptCH",
      status: "stable",
      base_feature: "ClientHintsMetaHTTPEquivAcceptCH",
    },
    {
      name: "ClientHintThirdPartyDelegation",
      status: "stable",
      base_feature: "ClientHintThirdPartyDelegation",
    },
    {
      // Allows read/write of custom formats with unsanitized clipboard content.
      // See crbug.com/106449.
      name: "ClipboardCustomFormats",
      status: "stable",
      base_feature: "ClipboardCustomFormats",
    },
    {
      name: "ClipboardSvg",
      status: "experimental",
    },
    {
      name: "ClipboardUnsanitizedContent",
      status: "experimental",
    },
    {
      name: "CloseWatcher",
    },
    {
      name: "CLSScrollAnchoring",
      status: "stable",
      base_feature: "CLSScrollAnchoring",
    },
    {
      name: "CoepReflection",
      status: "test",
    },
    {
      name: "CompositeBGColorAnimation",
      public: true,
      status: "experimental",
    },
    {
      name: "CompositeBoxShadowAnimation",
    },
    {
      name: "CompositeClipPathAnimation",
    },
    {
      name: "CompositedSelectionUpdate",
      public: true,
      status: {"Android": "stable"},
    },
    {
      name: "ComputedAccessibilityInfo",
      status: "experimental",
    },
    {
      // blink::features::kComputePressure is a kill switch for the API. If the
      // feature is disabled, origin trial tokens are ignored.
      name: "ComputePressure",
      origin_trial_feature_name: "ComputePressure",
      status: "experimental",
      base_feature: "ComputePressure",
      base_feature_status: "enabled",
      copied_from_base_feature_if: "overridden",
    },
    {
      name: "ConditionalFocus",
      origin_trial_feature_name: "ConditionalFocus",
      status: {"Android": "", "default": "experimental"},
    },
    {
      name: "ConsolidatedMovementXY",
      public: true,
    },
    {
      name: "ContactsManager",
      status:  {"Android": "stable", "default": "test"},
    },
    {
      name: "ContactsManagerExtraProperties",
      status:  {"Android": "stable", "default": "test"},
    },
    {
      name: "ContentIndex",
      status:  {"Android": "stable", "default": "experimental"},
    },
    {
      name: "ContentVisibilityAutoStateChangeEvent",
      status: "stable",
    },
    {
      name: "ContextMenu",
      status: "experimental",
    },
    {
      name: "CooperativeScheduling",
      public: true,
    },
    {
      name: "CorsRFC1918",
    },
    {
      name: "CrossOriginOpenerPolicyReporting",
      origin_trial_feature_name: "CrossOriginOpenerPolicyReporting",
      origin_trial_allows_third_party: true,
      status: "experimental",
    },
    {
      // Allows positioning a positioned element relative to another one.
      // https://tabatkins.github.io/specs/css-anchor-position/
      name: "CSSAnchorPositioning",
      status: "experimental",
    },
    {
      // Whether <image> values are allowed as counter style <symbol>
      name: "CSSAtRuleCounterStyleImageSymbols",
    },
    {
      // https://drafts.csswg.org/css-counter-styles/#counter-style-speak-as
      name: "CSSAtRuleCounterStyleSpeakAsDescriptor",
      status: "test",
    },
    {
      // https://drafts.csswg.org/css-conditional-4/#support-definition-ext
      // https://github.com/w3c/csswg-drafts/issues/7280#issuecomment-1143852187
      name: "CSSAtSupportsAlwaysNonForgivingParsing",
      status: "experimental",
    },
    {
      // Support CSS Values Level 4 calc simplification and serialization
      // as specified in the specs below.
      // https://drafts.csswg.org/css-values-4/#calc-simplification
      // https://drafts.csswg.org/css-values-4/#calc-serialize
      name: "CSSCalcSimplificationAndSerialization"
    },
    {
      // Support case-sensitive attribute selector modifier
      // https://drafts.csswg.org/selectors-4/#attribute-case
      name: "CSSCaseSensitiveSelector",
      status: "test",
    },
    {
      // Support for CSS Color Module Level 4
      // https://www.w3.org/TR/css-color-4/
      name: "CSSColor4",
      status:  "experimental",
    },
    {
      name: "CSSColorContrast",
      status: "experimental",
    },
    {
      name: "CSSColorTypedOM",
      status:  "experimental",
    },
    {
      // Flag for supporting size and inline-size container-types along with the
      // @container rules for size queries. Also implies support for container
      // relative units and inline-size containment.
      // https://drafts.csswg.org/css-contain-3/#container-queries
      name: "CSSContainerQueries",
      status: "stable"
    },
    {
      // https://drafts.csswg.org/css-contain-3/#container-lengths
      name: "CSSContainerRelativeUnits",
      implied_by: ["CSSContainerQueries"]
    },
    {
      // With this flag disabled, we run UpdateStyle() over the full DOM tree
      // before running interleaved style/layout. With this flag enabled, we
      // skip style recalc in UpdateStyle() for containers which are guaranteed
      // to be reachable in the following layout.
      name: "CSSContainerSkipStyleRecalc",
      implied_by: ["CSSContainerQueries"]
    },
    {
      // Support for contain:inline-size
      name: "CSSContainSize1D",
      implied_by: ["CSSContainerQueries"]
    },
    {
      // Include custom properties in CSSComputedStyleDeclaration::item/length.
      // https://crbug.com/949807
      name: "CSSEnumeratedCustomProperties",
      status: "test",
    },
    {
      name: "CSSFocusVisible",
      status: "stable",
    },
    {
      name: "CSSFoldables",
      status: "experimental",
    },
    {
      // @font-face Font property descriptors auto range.
      // https://www.w3.org/TR/css-fonts-4/#font-prop-desc
      name: "CSSFontFaceAutoVariableRange",
      status: "test",
    },
    {
      name: "CSSFontFaceSrcTechParsing",
      status: "stable"
    },
    {
      name: "CSSFontFamilyMath",
      status: "experimental",
      implied_by: ["MathMLCore"],
    },
    {
      name: "CSSFontSizeAdjust",
      status: "test",
    },
    {
      name: "CSSGridTemplatePropertyInterpolation",
      depends_on: ["LayoutNGGridFragmentation"],
      status: "stable",
    },
    {
      // This needs to be kept as a runtime flag as long as we need to forcibly
      // disable it for WebView on Android versions older than P. See
      // https://crrev.com/f311a84728272e30979432e8474089b3db3c67df
      name: "CSSHexAlphaColor",
      status: "stable",
    },
    {
      // crbug.com/924069
      name: "CSSHyphenateLimitChars",
      status: "test",
    },
    {
      name: "CSSIcUnit",
      status: "stable",
    },
    {
      name: "CSSIndependentTransformProperties",
      status: "stable",
    },
    {
        // http://crbug.com/1276900
        name: "CSSInitialLetter",
        depends_on: ["LayoutNG"],
        status: "test",
    },
    {
      name: "CSSLastBaseline",
      status: "stable",
    },
    {
      name: "CSSLayoutAPI",
      status: "experimental",
    },
    {
      name: "CSSLhUnit",
      status: "experimental",
    },
    {
      name: "CSSLogical",
      status: "experimental",
    },
    {
      name: "CSSLogicalOverflow",
      status: "test",
    },
    {
      name: "CSSMarkerNestedPseudoElement",
      status: "experimental",
    },
    {
      name: "CSSMathDepth",
      status: "experimental",
      implied_by: ["MathMLCore"],
    },
    {
      name: "CSSMathShift",
      status: "experimental",
      implied_by: ["MathMLCore"],
    },
    {
      name: "CSSMathStyle",
      status: "experimental",
      implied_by: ["MathMLCore"],
    },
    {
      name: "CSSMathVariant",
      status: "experimental",
      implied_by: ["MathMLCore"],
    },
    {
      // Support for Media Queries Level 4 syntax.
      //
      // https://drafts.csswg.org/mediaqueries-4/#mq-syntax
      name: "CSSMediaQueries4",
      status: "stable",
    },
    {
      name: "CSSMixBlendModePlusLighter",
      status: "stable"
    },
    {
      name: "CSSObjectViewBox",
      status: "stable",
    },
    {
      name: "CSSOffsetPathRay",
      status: "experimental",
    },
    {
      name: "CSSOffsetPathRayContain",
      status: "experimental",
    },
    {
      name: "CSSOffsetPositionAnchor",
      status: "experimental",
    },
    {
      name: "CSSOverflowForReplacedElements",
      status: "test",
      base_feature: "CSSOverflowForReplacedElements",
      copied_from_base_feature_if: "overridden",
    },
    {
      name: "CSSPaintAPIArguments",
      status: "experimental",
    },
    {
      name: "CSSPictureInPicture",
      status: "experimental",
      depends_on: ["PictureInPictureAPI"],
    },
    {
      name: "CSSPositionStickyStaticScrollPosition",
      status: "experimental",
    },
    {
      // Match input elements which have been autofilled by user agent.
      // https://html.spec.whatwg.org/multipage/semantics-other.html#selector-autofill
      name: "CSSPseudoAutofill",
      status: "experimental",
    },
    {
      name: "CSSPseudoDir",
      status: "experimental",
    },
    {
      name: "CSSPseudoHas",
      status: "stable",
    },
    {
      // When an audio, video, or similar resource is "playing"
      // or "paused".
      // https://www.w3.org/TR/selectors-4/#video-state
      name: "CSSPseudoPlayingPaused",
      status: "test",
    },
    {
      // https://drafts.csswg.org/css-cascade-6/#scoped-styles
      name: "CSSScope",
      status: "experimental",
    },
    // Scrollbar styling.
    // https://drafts.csswg.org/css-scrollbars/
    {
      name: "CSSScrollbars",
      status: "test",
    },
    // Support for scroll-timeline.
    //
    // https://drafts.csswg.org/scroll-animations-1/#scroll-timeline-shorthand
    {
      name: "CSSScrollTimeline",
      status: "experimental",
    },
    {
      name: "CSSSelectorFragmentAnchor",
      status: "experimental",
      base_feature: "CssSelectorFragmentAnchor",
    },
    {
      name: "CSSSnapSize",
      status: "experimental",
    },
    {
      // Support for CSS ::spelling-error, ::grammar-error, and the
      // spelling-error and grammar-error values in text-decoration-line.
      //
      // https://drafts.csswg.org/css-pseudo-4/#selectordef-spelling-error
      // https://drafts.csswg.org/css-pseudo-4/#selectordef-grammar-error
      // https://drafts.csswg.org/css-text-decor-4/#valdef-text-decoration-line-spelling-error
      // https://drafts.csswg.org/css-text-decor-4/#valdef-text-decoration-line-grammar-error
      name: "CSSSpellingGrammarErrors",
      status: "experimental",
    },
    {
      // https://drafts.csswg.org/css-contain-3/#style-container
      name: "CSSStyleQueries",
      status: "experimental"
    },
    // Support for CSS Toggles, https://tabatkins.github.io/css-toggle/
    {
      name: "CSSToggles",
      status: "test",
    },
    {
      // Explainer: https://github.com/DevSDK/css-trigonometric-functions
      name: "CSSTrigonometricFunctions",
      status: "test",
    },
    // Support for registered custom properties with <image> syntax.
    {
      name: "CSSVariables2ImageValues",
      status: "test",
    },
    // Support for registered custom properties with <transform-list> and
    // <transform-function> syntax.
    {
      name: "CSSVariables2TransformValues",
      status: "test",
    },
    {
      name: "CSSVideoDynamicRangeMediaQueries",
      status: "experimental"
    },
    {
      // Support for viewport units added by css-values-4.
      //
      // https://drafts.csswg.org/css-values-4/#viewport-relative-units
      name: "CSSViewportUnits4",
      status: "stable",
    },
    // Support for view-timeline.
    //
    // https://drafts.csswg.org/scroll-animations-1/#view-timeline-shorthand
    {
      name: "CSSViewTimeline",
      status: "test",
    },
    {
      name: "CustomElementDefaultStyle",
      status: "experimental",
    },
    {
      name: "Database",
      public: true,
      status: "stable",
    },
    {
      name: "DecodeJpeg420ImagesToYUV",
      public: true,
      status: "stable",
    },
    {
      name: "DecodeLossyWebPImagesToYUV",
      public: true,
      status: "stable",
    },
    {
      // crbug.com/1259085
      name: "DeferredShaping",
      depends_on: ["LayoutNG"],
      status: "test",
      base_feature: "DeferredShaping",
    },
    {
      name: "DeflateRawCompressionFormat",
      status: "stable",
    },
    {
      name: "DelegatedInkTrails",
      status: "stable",
    },
    // https://github.com/w3c/resource-timing/pull/343
    {
      name: "DeliveryType",
      status: "experimental",
    },
    {
      name: "DesktopCaptureDisableLocalEchoControl",
      status: "experimental",
    },
    {
      name: "DesktopPWAsSubApps",
      status: "test",
      base_feature: "DesktopPWAsSubApps",
    },
    {
      name: "DeviceAttributes",
      origin_trial_feature_name: "DeviceAttributes",
      origin_trial_os: ["chromeos"],
      origin_trial_allows_third_party: true,
      status: "experimental",
    },
    {
      name: "DeviceOrientationRequestPermission",
      status: "experimental",
    },
    {
      name: "DevicePosture",
      public: true,
      status: "experimental",
    },
    {
      name: "DigitalGoods",
      origin_trial_feature_name: "DigitalGoodsV2",
      origin_trial_os: ["android", "chromeos"],
      public: true,
      status: {
        "Android": "stable",
        "ChromeOS_Ash": "stable",
        "ChromeOS_Lacros": "stable",
        // crbug.com/1143079: Web tests cannot differentiate ChromeOS and Linux,
        // so enable the API on all platforms for testing.
        "default": "test"
      },
    },
    {
      name: "DigitalGoodsV2_1",
      status: {
        "Android": "stable",
        "ChromeOS_Ash": "stable",
        "ChromeOS_Lacros": "stable",
        // crbug.com/1143079: Web tests cannot differentiate ChromeOS and Linux,
        // so enable the API on all platforms for testing.
        "default": "test"
      },
    },
    {
      name: "DirectSockets",
      public: true,
      status: "experimental",
    },
    {
      name: "DisableDifferentOriginSubframeDialogSuppression",
      origin_trial_feature_name: "DisableDifferentOriginSubframeDialogSuppression",
      origin_trial_type: "deprecation",
      origin_trial_allows_insecure: true,
    },
    {
      name: "DisableHardwareNoiseSuppression",
      origin_trial_feature_name: "DisableHardwareNoiseSuppression",
      status: "experimental",
    },
    {
      name: "DisplayCutoutAPI",
      public: true,
      settable_from_internals: true,
    },
    {
      // When a Web application calls getDisplayMedia() and asks for video,
      // allow a hint to be provided as to whether it prefers that a
      // certain surface type be more prominently offered to the user.
      //
      // https://github.com/w3c/mediacapture-screen-share/pull/186/files
      name: "DisplaySurfaceConstraint",
      status: "stable",
    },
    {
      name: "DocumentCookie",
    },
    {
      name: "DocumentDomain",
    },
    {
      name: "DocumentPictureInPictureAPI",
      depends_on: ["PictureInPictureAPI"],
      public: true,
      status: {
        "Android": "",
        "ChromeOS_Lacros": "",
        "default": "experimental",
      },
      settable_from_internals: true,
    },
    {
      name: "DocumentPolicy",
      public: true,
      status: "stable",
    },
    // Enables the ability to use Document Policy header to control feature
    // DocumentDomain.
    {
      name: "DocumentPolicyDocumentDomain",
      status: "experimental",
      depends_on: ["DocumentPolicy"],
    },
    {
      name: "DocumentPolicyNegotiation",
      origin_trial_feature_name: "DocumentPolicyNegotiation",
      public: true,
      status: "experimental",
      depends_on: ["DocumentPolicy"],
    },
    // Enables the ability to use Document Policy header to control feature
    // SyncXHR.
    {
      name: "DocumentPolicySyncXHR",
      status: "experimental",
      depends_on: ["DocumentPolicy"],
    },
    {
      // Document transitions, including shared element transitions.
      // See https://github.com/WICG/shared-element-transitions
      name: "DocumentTransition",
      base_feature: "DocumentTransition",
    },
    {
      name: "DocumentWrite",
    },
    {
      name: "EarlyHintsPreloadForNavigationOptIn",
      origin_trial_feature_name: "EarlyHintsPreloadForNavigation",
      status: "stable",
    },
    {
      // If enabled, allows web pages to use the experimental EditContext API to
      // better control text input. See crbug.com/999184.
      name: "EditContext",
      status: "experimental",
      base_feature: "EditContext",
    },
    {
      name: "ElementSuperRareData",
      status: "experimental",
      base_feature: "ElementSuperRareData",
    },
    {
      // Non-standard API Event.path. Should be replaced by Event.composedPath.
      // TODO(1277431): This flag should be eventually disabled.
      name: "EventPath",
      public: true,
      status: "stable",
      base_feature: "EventPath",
    },
    {
      name: "ExperimentalContentSecurityPolicyFeatures",
      status: "experimental",
    },
    {
      name: "ExperimentalJSProfilerMarkers",
      status: "experimental"
    },
    {
      name: "ExperimentalPolicies",
      depends_on: ["DocumentPolicy"],
      status: "experimental"
    },
    // Prototype implementation of web snapshots - blink integration. Suitable
    // for local testing, *not* suitable for origin trials. Replacing the
    // current implementation with the real Blink integration is expected
    // before M102. See crbug.com/1173534.
    {
      name: "ExperimentalWebSnapshots",
    },
    {
      name: "ExtendedTextMetrics",
      status: "experimental",
    },
    {
      name: "ExtraWebGLVideoTextureMetadata",
    },
    {
      name: "EyeDropperAPI",
      status: {
        // EyeDropper UI is available only on Windows, Mac, and Linux. This list
        // should match the supported operating systems for the kEyeDropper
        // base::Feature.
        "Mac": "stable",
        "Win": "stable",
        "Linux": "stable",
      },
    },
    {
      name: "FaceDetector",
      status: "experimental",
    },
    {
      name: "FakeNoAllocDirectCallForTesting",
      status: "test",
    },
    {
      name: "FeaturePolicyReporting",
      status: "experimental"
    },
    {
      name: "FedCm",
      public: true,
      status: "stable",
    },
    {
      name: "FedCmIdpSigninStatus",
      depends_on: ["FedCm"],
      public: true,
      status: "test",
    },
    {
      name: "FedCmIdpSignout",
      depends_on: ["FedCm"],
      public: true,
      status: "test",
    },
    {
      name: "FedCmIframeSupport",
      depends_on: ["FedCm"],
      public: true,
      status: "test",
    },
    {
      name: "FedCmMultipleIdentityProviders",
      depends_on: ["FedCm"],
      public: true,
      status: "test",
    },
    {
      name: "FencedFrames",
      // This helps enable and expose the <fencedframe> element, but note that
      // blink::features::kFencedFrames must be enabled as well, similar to
      // Portals, as we require the support of the browser process to fully
      // enable the feature. Enabling this runtime enabled feature alone has no
      // effect.
      origin_trial_feature_name: "PrivacySandboxAdsAPIs",
      origin_trial_allows_third_party: true,
      public: true,
    },
    {
      name: "FetchUploadStreaming",
      status: "stable",
    },
    {
      // Also enabled when blink::features::kFileHandlingAPI is overridden
      // on the command line (or via chrome://flags).
      name: "FileHandling",
      depends_on: ["FileSystemAccessLocal"],
      status: {"Android": "test", "default": "stable"},
      origin_trial_feature_name: "FileHandling",
      origin_trial_os: ["win", "mac", "linux", "fuchsia", "chromeos"],
      base_feature: "FileHandlingAPI",
    },
    {
      name: "FileHandlingIcons",
      depends_on: ["FileHandling"],
      status: {"Android": "test", "default": "experimental"},
    },
    {
      name: "FileSystem",
      public: true,
      status: "stable",
    },
    {
      // Shared objects by OPFS and non-OPFS File System Access API.
      name: "FileSystemAccess",
      implied_by: ["FileSystemAccessLocal", "FileSystemAccessOriginPrivate"],
    },
    {
      name: "FileSystemAccessAccessHandle",
      status: "stable",
    },
    {
      // In-development features for the File System Access API.
      name: "FileSystemAccessAPIExperimental",
      status: "experimental",
    },
    {
      // Non-OPFS File System Access API.
      name: "FileSystemAccessLocal",
      status: {"Android": "test", "default": "stable"},
    },
    {
      // OPFS File System Access API.
      name: "FileSystemAccessOriginPrivate",
      status: {"Android": "experimental", "default": "stable"},
    },
    {
      // Whether to re-enable async interface for FileSystemSyncAccessHandle
      // This is used by enterprise policy during migration.
      name: "FileSystemSyncAccessHandleAsyncInterfaceOverride",
      public: true,
    },
    {
      name: "FirstPartySets",
    },
    {
      name: "FixedElementsDontOverscroll",
      status: "stable",
      base_feature: "FixedElementsDontOverscroll",
    },
    {
      name: "Fledge",
      origin_trial_feature_name: "PrivacySandboxAdsAPIs",
      origin_trial_allows_third_party: true,
    },
    {
      name: "FluentScrollbars",
    },
    {
      name: "Focusgroup",
      status: "experimental",
      origin_trial_feature_name: "Focusgroup",
    },
    {
      name: "FocuslessSpatialNavigation",
      settable_from_internals: true,
    },
    {
      name: "FontAccess",
      base_feature: "FontAccess",
      status: {"Android": "", "default": "stable"},
    },
    {
      name: "FontPalette",
      status: "stable",
    },
    {
      name: "FontSrcLocalMatching",
      // No status, as the web platform runtime enabled feature is controlled by
      // a Chromium level feature.
    },
    {
      // TODO(crbug.com/1231644): This flag is being kept (even though the
      // feature has shipped) until there are settings to allow users to
      // customize the feature.
      name: "ForcedColors",
      public: true,
      status: "stable",
    },
    {
      name: "ForcedColorsPreserveParentColor",
      status: "stable",
    },
    {
      // This is used in tests to perform memory measurement without
      // waiting for GC.
      name:"ForceEagerMeasureMemory",
    },
    {
      // https://github.com/flackr/reduce-motion/blob/main/explainer.md
      name: "ForceReduceMotion",
    },
    {
      name: "ForceTallerSelectPopup",
      status: {"ChromeOS_Ash": "stable", "ChromeOS_Lacros": "stable"},
    },
    {
      name: "FormattedText",
      depends_on: ["LayoutNG"],
      status: "experimental",
    },
    {
      name: "FormRelAttribute",
      status: "stable",
      base_feature: "FormRelAttribute",
    },
    {
      name: "FractionalScrollOffsets",
      implied_by: ["PercentBasedScrolling"],
      public: true,
    },
    {
      name: "FreezeFramesOnVisibility",
      status: "experimental",
    },
    {
      name: "GamepadButtonAxisEvents",
      status: "experimental",
    },
    {
      name: "GetDisplayMedia",
      public: true,
      status: {
        "Android": "experimental",
        "default": "stable",
        },
    },
    {
      // Enables the getDisplayMediaSet API for multi surface capture.
      name: "GetDisplayMediaSet",
      depends_on: ["GetDisplayMedia"],
      public: true,
      status: "test",
    },
    {
      name: "GetDisplayMediaSetAutoSelectAllScreens",
      depends_on: ["GetDisplayMediaSet"],
      public: true,
      status: {
        "ChromeOS_Ash": "test",
        "ChromeOS_Lacros": "test",
        "default": "",
      }
    },
    {
      name: "GroupEffect",
      status: "test",
    },
    {
      name: "HandwritingRecognition",
      status: {
        "ChromeOS_Ash": "stable",
        "ChromeOS_Lacros": "stable",
        "default": "experimental",
      },
    },
    {
      name: "HidDeviceForget",
      depends_on: ["WebHID"],
      status: {"Android": "", "default": "stable"},
    },
    // HighlightAPI's custom highlights use HighlightInheritance's behavior even
    // if the HighlightInheritance feature is not enabled.
    {
      name: "HighlightAPI",
      status: "stable",
    },
    {
      name: "HighlightInheritance",
    },
    {
      name: "HighlightOverlayPainting",
      status: "stable",
    },
    {
      name: "HighlightPointerEvents",
      depends_on: ["HighlightAPI"],
    },
    {
      name: "HrefTranslate",
      depends_on: ["TranslateService"],
      origin_trial_feature_name: "HrefTranslate",
      status: "stable",
    },
    {
      // TODO(crbug.com/1315717): This flag is being used to deprecate support for <param> urls within <object> elements. This feature is controlled by blink::features::kHTMLParamElementUrlSupport.
      name: "HTMLParamElementUrlSupport",
      status: "stable",
      base_feature: "HTMLParamElementUrlSupport",
    },
    {
      // TODO(crbug.com/1307772): Enables the Pop-up API.
      name: "HTMLPopupAttribute",
      status: "experimental",
      origin_trial_feature_name: "HTMLPopupAttribute",
      implied_by: ["HTMLSelectMenuElement"],
      base_feature: "HTMLPopupAttribute",
    },
    {
      name: "HTMLSelectMenuElement",
      status: "experimental",
    },
    {
      name: "IDBBatchGetAll",
      status:"experimental",
    },
    {
      name: "IdleDetection",
      public: true,
      status: "stable",
    },
    {
      name: "ImplicitRootScroller",
      public: true,
      settable_from_internals: true,
      status: {"Android": "stable"},
    },
    {
      name: "InertAttribute",
      status: "stable",
    },
    {
      // If a painting bug no longer reproduces with this feature enabled, then
      // the bug is caused by incorrect cull rects.
      name: "InfiniteCullRect",
    },
    {
      name: "InputMultipleFieldsUI",
      // No plan to support complex UI for date/time INPUT types on Android.
      status: {"Android": "test", "default": "stable"},
    },
    {
      name: "InstalledApp",
      public: true,
      status: "stable",
    },
    {
      name: "KeyboardAccessibleTooltip",
      status: "experimental",
    },
    {
      name: "KeyboardFocusableScrollers",
      status: "experimental",
    },
    {
      name: "LangAttributeAwareFormControlUI",
      settable_from_internals: true,
    },
    {
      name: "LangAttributeAwareSvgText",
      base_feature: "LangAttributeAwareSvgText",
      status: "stable",
    },
    {
      // LayoutNG has been enabled in M76, but we still keep this flag for
      // testing. See web_tests/FlagExpectations/disable-layout-ng for more
      // details about running web tests with LayoutNG disabled. This flag also
      // provides a convenient way for testing legacy layout code path in blink
      // unit tests.
      name: "LayoutNG",
      implied_by: ["BidiCaretAffinity"],
      status: "stable",
      base_feature: "LayoutNG",
    },
    {
      name: "LayoutNGBlockFragmentation",
      status: "stable",
    },
    {
      name: "LayoutNGBlockInInline",
      depends_on: ["LayoutNG"],
      status: "stable",
    },
    {
      // A kill-switch for a fix of crbug.com/1366268.
      name: "LayoutNGDelayScrollOffsetClamping",
      base_feature: "LayoutNGDelayScrollOffsetClamping",
      status: "stable",
    },
    {
      // Block fragmentation support in the flex layout algorithm.
      // https://drafts.csswg.org/css-flexbox-1/#pagination
      name: "LayoutNGFlexFragmentation",
      depends_on: ["LayoutNG", "LayoutNGBlockFragmentation"],
      status: "stable",
    },
    {
      // crbug.com/989916
      name: "LayoutNGForeignObject",
      depends_on: ["LayoutNG"],
      status: "stable",
    },
    {
      // crbug.com/1346221
      name: "LayoutNGFrameSet",
      depends_on: ["LayoutNG"],
      status: "stable",
    },
    {
      // Block fragmentation support in the grid layout algorithm.
      // https://drafts.csswg.org/css-grid-1/#pagination
      name: "LayoutNGGridFragmentation",
      depends_on: ["LayoutNG","LayoutNGBlockFragmentation"],
      status: "stable",
    },
    {
      name: "LayoutNGPrinting",
      depends_on: ["LayoutNG","LayoutNGBlockFragmentation"],
      status: "stable",
      base_feature: "LayoutNGPrinting",
    },
    {
      name: "LayoutNGSubgrid",
      depends_on: ["LayoutNG"],
      status: "test"
    },
    {
      // Block fragmentation support in the table layout algorithm.
      // https://drafts.csswg.org/css-tables-3/#fragmentation
      name: "LayoutNGTableFragmentation",
      depends_on: ["LayoutNG","LayoutNGBlockFragmentation"],
      status: "stable",
    },
    {
      // crbug.com/1335309
      name: "LayoutNGVTTCue",
      status: "stable",
    },
    {
      name: "LazyFrameLoading",
      public: true,
      status: "stable",
    },
    {
      name: "LazyFrameVisibleLoadTimeMetrics",
      public: true,
    },
    {
      name: "LazyImageLoading",
      public: true,
      status: "stable",
    },
    {
      name: "LazyImageVisibleLoadTimeMetrics",
      public: true,
    },
    {
      name: "LazyInitializeMediaControls",
      public: true,
      // This is enabled by features::kLazyInitializeMediaControls.
    },
    {
      name: "LCPAnimatedImagesWebExposed",
      status: "test",
    },
    {
      name: "LegacyWindowsDWriteFontFallback",
      // Enabled by features::kLegacyWindowsDWriteFontFallback;
    },
    {
      name: "MachineLearningCommon",
      implied_by: ["MachineLearningModelLoader", "MachineLearningNeuralNetwork"],
      status: "experimental",
    },
    {
      name: "MachineLearningModelLoader",
      status: "experimental",
    },
    {
      name: "MachineLearningNeuralNetwork",
      status: "test",
    },
    {
      name: "ManagedConfiguration",
      status: "stable",
      base_feature: "ManagedConfiguration",
    },
    {
      name: "MathMLCore",
      status:"experimental",
      depends_on: ["LayoutNG"],
    },
    {
      name:"MeasureMemory",
      status:"stable",
    },
    {
      name: "MediaCapabilitiesDynamicRange",
      status: "test",
    },
    {
      name: "MediaCapabilitiesEncodingInfo",
      status: "experimental",
    },
    {
      name: "MediaCapabilitiesSpatialAudio",
      status: "test",
    },
    {
      name: "MediaCapture",
      status: {"Android": "stable"},
    },
    {
      name: "MediaCaptureBackgroundBlur",
      status: "experimental",
    },
    // Set to reflect the MediaCastOverlayButton feature.
    {
      name: "MediaCastOverlayButton",
      public: true,
    },
    {
      name: "MediaControlsExpandGesture",
      public: true,
    },
    {
      name: "MediaControlsOverlayPlayButton",
      public: true,
      settable_from_internals: true,
      status: {"Android": "stable"},
    },
    {
      name: "MediaElementVolumeGreaterThanOne",
    },
    // Set to reflect the kMediaEngagementBypassAutoplayPolicies feature.
    {
      name: "MediaEngagementBypassAutoplayPolicies",
      public: true,
    },
    {
      name: "MediaLatencyHint",
      status: "test",
    },
    {
      name: "MediaQueryNavigationControls",
    },
    {
      name: "MediaSession",
      public: true,
      status: "stable",
    },
    {
      name: "MediaSessionWebRTC",
      public: true,
    },
    {
      name: "MediaSourceExperimental",
      status: "experimental",
    },
    {
      name: "MediaSourceExtensionsForWebCodecs",
      status: "experimental",
      origin_trial_feature_name: "MediaSourceExtensionsForWebCodecs",
    },
    {
      name: "MediaSourceInWorkers",
      status: "stable",
      origin_trial_feature_name: "MediaSourceInWorkers",
      base_feature: "MediaSourceInWorkers",
    },
    {
      // Availability of this feature depends on MediaSourceInWorkers also
      // being enabled. MediaSourceInWorkers is an OT feature, so this cannot
      // use the "depends_on" key.
      name: "MediaSourceInWorkersUsingHandle",
      status: "stable",
      base_feature: "MediaSourceInWorkersUsingHandle",
    },
    {
      name: "MediaSourceNewAbortAndDuration",
      status: "experimental",
    },
    {
      // This is used in cases of mixed specification of stable and
      // experimental MediaSource features, such as in the IDL for an interface
      // constructor where exposure of the constructor in Window vs other
      // contexts can vary in stable vs experimental.
      name: "MediaSourceStable",
      status: "stable",
    },
    {
      // Feature added "guarding" the already launched exposure of
      // MediaStreamTracks in the Window contexts, to allow exposure in other
      // contexts to be feature controlled, crbug.com/c/1290274.
      name: "MediaStreamTrackInWindow",
      status: "stable",
    },
    {
      name: "MediaStreamTrackInWorker",
    },
    {
      name: "MediaStreamTrackTransfer",
      status: "test",
    },
    // This is enabled by default on Windows only. The only part that's
    // "experimental" is the support on other platforms.
    {
      name: "MiddleClickAutoscroll",
      status: "test",
    },
    {

      name: "MobileLayoutTheme",
    },
    {
      name: "MojoJS",
      status: "test",
    },
    // MojoJSTest is used exclusively in testing environments, whereas MojoJS
    // may also be used elsewhere.
    {
      name: "MojoJSTest",
      status: "test",
    },
    {
      // When enabled, iframes are not capturing mouse events by default.
      name: "MouseSubframeNoImplicitCapture",
      public: true,
    },
    {
      name: "NavigationApi",
      status: "stable",
    },
    {
      name: "NavigationId",
      status: "experimental",
      base_feature: "NavigationId",
    },
    {
      name: "NavigatorContentUtils",
      // Android does not yet support NavigatorContentUtils.
      status: {"Android": "", "default": "stable"},
    },
    {
      name: "NetInfoDownlinkMax",
      public: true,
      // Only Android, ChromeOS support NetInfo downlinkMax, type and ontypechange now
      status: {
        "Android": "stable",
        "ChromeOS_Ash": "stable",
        "ChromeOS_Lacros": "stable",
        "default": "experimental",
      },
    },
    {
      name: "NeverSlowMode",
      public: true,
    },
    {
      name: "NewFlexboxSizing",
    },
    {
      name: "NoIdleEncodingForWebTests",
      status: "test",
    },
    {
      name: "NotificationConstructor",
      // Android won't be able to reliably support non-persistent notifications, the
      // intended behavior for which is in flux by itself.
      status: {"Android": "", "default": "stable"},
    },
    // NotificationContentImage is not available in all platforms
    // The Notification Center on Mac OS X does not support content images.
    {
      name: "NotificationContentImage",
      public: true,
      status: {"Mac": "test", "default": "stable"},
    },
    {
      name: "Notifications",
      public: true,
      status: "stable",
    },
    {
      name: "NotificationTriggers",
      origin_trial_feature_name: "NotificationTriggers",
      status: "experimental",
    },
    {
      name: "OffMainThreadCSSPaint",
      status: "stable",
    },
    {
      name: "OffscreenCanvasCommit",
      status: "experimental",
    },
    {
      // TODO(crbug.com/920069): Remove OffsetParentNewSpecBehavior after the
      // feature is in stable with no issues.
      name: "OffsetParentNewSpecBehavior",
      status: "experimental",
      base_feature: "OffsetParentNewSpecBehavior",
    },
    {
      name: "OnDeviceChange",
      // Android does not yet support SystemMonitor.
      status: {"Android": "", "default": "stable"},
    },
    {
      name: "OrientationEvent",
      status: {"Android": "stable"},
    },
    {
      name: "OriginIsolationHeader",
      status: "stable",
    },
    {
      name: "OriginPolicy",
      status: "experimental",
    },

    // Define a sample API for testing integration with the Origin Trials
    // Framework. The sample API is used in both unit and web tests for the
    // Origin Trials Framework. Do not change this flag to stable, as it exists
    // solely to generate code used by the sample API implementation.
    {
      name: "OriginTrialsSampleAPI",
      origin_trial_feature_name: "Frobulate",
    },
    // As above. Do not change this flag to stable, as it exists solely to
    // generate code used by the origin trials sample API implementation.
    // TODO(yashard): Add tests for this feature.
    {
      name: "OriginTrialsSampleAPIDependent",
      depends_on: ["OriginTrialsSampleAPI"],
    },
    // As above. Do not change this flag to stable, as it exists solely to
    // generate code used by the origin trials sample API implementation.
    {
      name: "OriginTrialsSampleAPIDeprecation",
      origin_trial_feature_name: "FrobulateDeprecation",
      origin_trial_type: "deprecation",
      origin_trial_allows_insecure: true,
    },
    // As above. Do not change this flag to stable, as it exists solely to
    // generate code used by the origin trials sample API implementation.
    {
      name: "OriginTrialsSampleAPIExpiryGracePeriod",
      origin_trial_feature_name: "FrobulateExpiryGracePeriod",
    },
    // As above. Do not change this flag to stable, as it exists solely to
    // generate code used by the origin trials sample API implementation.
    {
      name: "OriginTrialsSampleAPIExpiryGracePeriodThirdParty",
      origin_trial_feature_name: "FrobulateExpiryGracePeriodThirdParty",
      origin_trial_allows_third_party: true,
    },
    // As above. Do not change this flag to stable, as it exists solely to
    // generate code used by the origin trials sample API implementation.
    {
      name: "OriginTrialsSampleAPIImplied",
      origin_trial_feature_name: "FrobulateImplied",
      implied_by: ["OriginTrialsSampleAPI", "OriginTrialsSampleAPIInvalidOS"],
    },
    // As above. Do not change this flag to stable, as it exists solely to
    // generate code used by the origin trials sample API implementation.
    {
      name: "OriginTrialsSampleAPIInvalidOS",
      origin_trial_feature_name: "FrobulateInvalidOS",
      origin_trial_os: ["invalid"],
    },
    // As above. Do not change this flag to stable, as it exists solely to
    // generate code used by the origin trials sample API implementation.
    {
      name: "OriginTrialsSampleAPINavigation",
      origin_trial_feature_name: "FrobulateNavigation",
    },
    // As above. Do not change this flag to stable, as it exists solely to
    // generate code used by the origin trials sample API implementation.
    {
      name: "OriginTrialsSampleAPIPersistentExpiryGracePeriod",
      origin_trial_feature_name: "FrobulatePersistentExpiryGracePeriod",
    },
    // As above. Do not change this flag to stable, as it exists solely to
    // generate code used by the origin trials sample API implementation.
    {
      name: "OriginTrialsSampleAPIPersistentFeature",
      origin_trial_feature_name: "FrobulatePersistent",
    },
    // As above. Do not change this flag to stable, as it exists solely to
    // generate code used by the origin trials sample API implementation.
    {
      name: "OriginTrialsSampleAPIThirdParty",
      origin_trial_feature_name: "FrobulateThirdParty",
      origin_trial_allows_third_party: true,
    },
    {
      name: "OverscrollCustomization",
      settable_from_internals: true,
      status: "experimental",
    },
    // The following are developer opt-outs and opt-ins for page freezing. If
    // neither is specified then heuristics will be applied to determine whether
    // the page is eligible.
    {
      name: "PageFreezeOptIn",
      origin_trial_feature_name: "PageFreezeOptIn",
    },
    {
      name: "PageFreezeOptOut",
      origin_trial_feature_name: "PageFreezeOptOut",
    },
    {
      name: "PagePopup",
      // Android does not have support for PagePopup
      status: {"Android": "", "default": "stable"},
    },
    {
      name: "PaintUnderInvalidationChecking",
      settable_from_internals: true,
    },
    {
      // PARAKEET ad serving runtime flag/JS API.
      name: "Parakeet",
      origin_trial_feature_name: "Parakeet",
      base_feature: "Parakeet",
    },
    {
      name: "ParallelPrimaryFont",
      depends_on: ["ParallelTextShaping"],
      // http://crbug.com/1315900
      // Global DeviceScaleFactor prevents us to use this feature.
      status: {"ChromeOS_Ash": "", "ChromeOS_Lacros": "", "Linux": "",
               "default": ""},
    },
    {
      name: "ParallelTextShaping",
      depends_on: ["LayoutNG"],
      // http://crbug.com/1264280
    },
    {
      name: "PartitionedCookies",
      origin_trial_feature_name: "PartitionedCookies",
      status: "experimental",
      origin_trial_feature_name: "PartitionedCookies",
      origin_trial_allows_third_party: true,
    },
    // This is to add an option to enable the Reveal button on password inputs while waiting ::reveal gets standardized.
    {
      name: "PasswordReveal",
    },
    {
      name: "PaymentApp",
      depends_on: ["PaymentRequest"],
      public: true,
      status: "experimental",
    },
    {
      name: "PaymentMethodChangeEvent",
      depends_on: ["PaymentRequest"],
      status: "stable",
    },
    // PaymentRequest is enabled by default on Android
    {
      name: "PaymentRequest",
      public: true,
      status: "experimental",
    },
    {
      name: "PaymentRequestMerchantValidationEvent",
      status: "experimental",
    },
    {
      name: "PendingBeaconAPI",
      origin_trial_feature_name: "PendingBeaconAPI",
      origin_trial_allows_third_party: true,
      public: true,
      status: "experimental",
    },
    {
      name: "PercentBasedScrolling",
      public: true,
      settable_from_internals: true,
    },
    {
      name: "PerformanceManagerInstrumentation",
      public: true,
    },
    {
      name: "PeriodicBackgroundSync",
      public: true,
      status: "stable",
    },
    {
      name: "PerMethodCanMakePaymentQuota",
      origin_trial_feature_name: "PerMethodCanMakePaymentQuota",
      status: "experimental",
    },
    {
      name: "Permissions",
      public: true,
      status: "stable",
    },
    // See https://crbug.com/1324111
    {
      name: "PermissionsPolicyUnload",
      origin_trial_feature_name: "PermissionsPolicyUnload",
      status: "experimental",
      base_feature: "PermissionsPolicyUnload",
    },
    {
      name: "PermissionsRequestRevoke",
      status: "experimental",
    },
    {
      name: "PictureInPicture",
      public: true,
      settable_from_internals: true,
    },
    {
      name: "PictureInPictureAPI",
      public: true,
      status: "stable"
    },
    // This is a reverse OT used for a phased deprecation.
    // https://crbug.com/918374
    {
      name: "PNaCl",
      origin_trial_feature_name: "PNaCl",
    },
    {
      name: "PointerLockOptions",
      origin_trial_feature_name: "PointerLockOptions",
      public: true,
      status: "stable",
    },
    {
      name: "Portals",
      // Portals must be enabled by blink::features::kPortals as we require the
      // support of the browser process to enable the feature. Enabling this
      // feature specifically within blink has no effect. An experimental/test
      // status can only be set here if the default of blink::features::kPortals
      // allows for it.

      // Note that the origin trial paramaters are kept for future OT usage.
      // There is no currently running OT and it is not possible for OT code to
      // enable portals without browser process support.
      origin_trial_feature_name: "Portals",
      origin_trial_os: ["android"],
      public: true,
      base_feature: "Portals",
      copied_from_base_feature_if: "overridden",
    },
    {
      name: "PreciseMemoryInfo",
      public: true,
    },
    // Prefer not using composited scrolling. Composited scrolling will still
    // be used if there are other reasons forcing compositing. For consistency,
    // any code calling Settings::GetPreferCompositingToLCDTextEnabled() should
    // ensure that this flag overrides the setting.
    {
      name: "PreferNonCompositedScrolling",
      settable_from_internals: true,
    },
    {
      name: "PrefersColorSchemeClientHintHeader",
      status: "stable",
      base_feature: "PrefersColorSchemeClientHintHeader",
    },
    {
      name: "PrefersReducedData",
      status: "experimental",
    },
    {
      name: "PrefersReducedMotionClientHintHeader",
      status: "stable",
      base_feature: "PrefersReducedMotionClientHintHeader",
    },
    // TODO(crbug/695586): This flag is being used to deprecate support for
    // legacy quota API window.webkitStorageInfo.
    {
      name: "PrefixedStorageInfo",
      public: true,
      status: "stable",
      base_feature: "PrefixedStorageInfo",
      base_feature_status: "disabled",
    },
    // This feature is deprecated and we are evangelizing affected sites.
    // See https://crbug.com/346236 for current status.
    {
      name: "PrefixedVideoFullscreen",
      status: "stable",
    },
    {
      // https://crbug.com/1126305
      name: "Prerender2",
      status: "stable",
      base_feature: "Prerender2",
    },
    // This RTE feature is used to indicate the status of RTE feature Prerender2
    // and an embedder feature flag that enables the Prerender2. With this flag
    // on, the related functions document.prerendering,
    // document.onprerenderingchange, and activationStart will be exported.
    {
      name: "Prerender2RelatedFeatures",
      implied_by: ["Prerender2"],
      // This is not going into origin trial, "origin_trial_feature_name" is
      // required for using the "implied_by" behaviour.
      origin_trial_feature_name: "Prerender2RelatedFeatures__DONOTUSE",
      public: true,
    },
    {
      name: "Presentation",
      public: true,
      status: "stable",
    },
    {
      name: "PriorityHints",
      status: "stable",
    },
    // The RTE feature encompasses multiple APIs, including: Attribution
    // Reporting, FLEDGE, Topics and Fenced Frames.
    {
      name: "PrivacySandboxAdsAPIs",
      origin_trial_feature_name: "PrivacySandboxAdsAPIs",
      origin_trial_allows_third_party: true,
    },
    {
      name: "PrivateNetworkAccessNonSecureContextsAllowed",
      origin_trial_feature_name: "PrivateNetworkAccessNonSecureContextsAllowed",
      origin_trial_type: "deprecation",
      origin_trial_allows_insecure: true,
      status: "experimental",
    },
    {
      name: "PrivateNetworkAccessPermissionPrompt",
      base_feature: "PrivateNetworkAccessPermissionPrompt",
    },
    {
      name: "PushMessaging",
      public: true,
      status: "stable",
    },
    {
      name: "PushMessagingSubscriptionChange",
      public: true,
      status: "experimental",
    },
    {
      name: "QuickIntensiveWakeUpThrottlingAfterLoading",
      base_feature: "QuickIntensiveWakeUpThrottlingAfterLoading",
    },
    {
      name: "QuotaChange",
      status: "experimental",
    },
    // If enabled, the minor version of the User-Agent string will be reduced.
    // This User-Agent Reduction feature has been enabled starting from M101,
    // but we still keep this flag for future phase tests.
    {
      name: "ReduceUserAgentMinorVersion",
      status: "stable",
      base_feature: "ReduceUserAgentMinorVersion",
    },
    {
      // If enabled, the platform and oscpu of the User-Agent string will be
      // reduced.
      name: "ReduceUserAgentPlatformOsCpu",
      depends_on: ["ReduceUserAgentMinorVersion"],
      status: "experimental",
      base_feature: "ReduceUserAgentPlatformOsCpu",
    },
    {
      name: "RegionCapture",
      status: {"Android": "", "default": "stable"},
    },
    {
      name: "RemotePlayback",
      public: true,
      status: "stable",
    },
    {
      name: "RemotePlaybackBackend",
      settable_from_internals: true,
      // Tracking bug for the implementation: https://crbug.com/728609
      status: {"Android": "stable", "default": ""},
    },
    {
      name: "RemoveMobileViewportDoubleTap",
      public: true,
      status: "stable"
    },
    {
      name: "RenderBlockingStatus",
      status: "stable"
    },
    {
      // The renderpriority attribute feature.
      // https://github.com/WICG/display-locking/blob/main/explainers/update-rendering.md
      name: "RenderPriorityAttribute"
    },
    {
      name: "ResourceTimingResponseStatus",
      status: "experimental",
    },
    {
      name: "RestrictGamepadAccess",
      public: true,
      status: "experimental",
    },
    {
      name: "RtcAudioJitterBufferMaxPackets",
      origin_trial_feature_name: "RtcAudioJitterBufferMaxPackets",
      status: "experimental",
    },
    // Enables the use of the RTCIceTransport with extensions.
    {
      name: "RTCIceTransportExtension",
      origin_trial_feature_name: "RTCQuicTransport",
      status: "experimental",
    },
    // Enables the use of the Insertable Streams legacy API.
    // TODO(https://crbug.com/1119801): Remove when the origin trial ends.
    {
      name: "RTCInsertableStreams",
      origin_trial_feature_name: "RTCInsertableStreams",
      status: "experimental",
    },
    // Enables the use of the RTCQuicTransport object.
    {
      name: "RTCQuicTransport",
      origin_trial_feature_name: "RTCQuicTransport",
      status: "experimental",
    },
    // Enables the use of |RTCRtpTransceiver::setOfferedRtpHeaderExtensions|,
    // |RTCRtpTransceiver::headerExtensionsToOffer|, and
    // |RTCRtpTransceiver::headerExtensionsNegotiated|.
    {
      name: "RTCRtpHeaderExtensionControl",
      status: "experimental",
    },
    {
      name: "RTCStatsRelativePacketArrivalDelay",
      origin_trial_feature_name: "RTCStatsRelativePacketArrivalDelay",
      status: "experimental",
    },
    // Enables the use of SVC scalability mode in WebRTC.
    // Spec: https://w3c.github.io/webrtc-svc/
    {
      name: "RTCSvcScalabilityMode",
      status: "experimental",
    },
    {
      name: "SanitizerAPI",
      status: "experimental",
      base_feature: "SanitizerAPI",
    },
    {
      name: "SanitizerAPIv0",
      status: "stable",
      implied_by: ["SanitizerAPI"],
      base_feature: "SanitizerAPIv0",
    },
    {
      // https://wicg.github.io/webcomponents/proposals/Scoped-Custom-Element-Registries
      name: "ScopedCustomElementRegistry",
      status: "test",
    },

    // WebSpeech API with both speech recognition and synthesis functionality
    // is not fully enabled on all platforms.
    {
      name: "ScriptedSpeechRecognition",
      public: true,
      status: "stable",
    },
    {
      name: "ScriptedSpeechSynthesis",
      public: true,
      status: "stable",
    },
    {
      name: "ScriptElementSupports",
      status: "stable",
    },
    {
      name: "ScrollbarWidth",
      status: "test",
    },
    {
      name: "ScrollCustomization",
    },
    {
      name: "ScrollEndEvents",
      settable_from_internals: true,
      status: "experimental",
    },
    {
      name: "ScrollTimeline",
      status: "experimental",
      implied_by: ["AnimationWorklet", "CSSScrollTimeline", "CSSViewTimeline"]
    },
    // Implements documentElement.scrollTop/Left and bodyElement.scrollTop/Left
    // as per the spec, matching other Web engines.
    {
      name: "ScrollTopLeftInterop",
      status: "stable",
    },
    {
      // Whether to enable scroll update optimizations. See crbug.com/1346789.
      name: "ScrollUpdateOptimizations",
      base_feature: "ScrollUpdateOptimizations",
      status: "stable",
    },
    {
      name: "SecureContextFixForSharedWorkers",
      status: "stable",
    },
    // SecurePaymentConfirmation has shipped on some platforms, but its
    // availability is controlled by the browser process (via the
    // SecurePaymentConfirmationBrowser feature), as it requires browser
    // support to function. See //content/public/common/content_features.cc
    //
    // The status is set to 'test' here to enable some WPT tests that only
    // require blink-side support to function.
    {
      name: "SecurePaymentConfirmation",
      public: true,
      status: "test",
    },
    {
      name: "SecurePaymentConfirmationDebug",
      public: true,
    },
    {
      name: "SecurePaymentConfirmationOptOut",
      origin_trial_feature_name: "SecurePaymentConfirmationOptOut",
      origin_trial_allows_third_party: true
    },
    {
      // When a Web application calls getDisplayMedia() and asks for video,
      // allow a hint to be provided as to whether the current tab should be
      // excluded from the list of tabs offered to the user.
      //
      // https://github.com/w3c/mediacapture-screen-share/pull/216/files
      name: "SelfBrowserSurfaceConstraint",
      status: "stable",
    },
    {
      name: "SendBeaconThrowForBlobWithNonSimpleType",
      public: true,
      status: "stable",
    },
    {
      name: "SendFullUserAgentAfterReduction",
      origin_trial_feature_name: "SendFullUserAgentAfterReduction",
      origin_trial_allows_third_party: true
    },
    {
      name: "SendMouseEventsDisabledFormControls",
      status: "experimental",
    },
    {
      name: "SensorExtraClasses",
      public: true,
      status: "experimental",
    },
    {
      name: "Serial",
      status: {"Android": "", "default": "stable"},
    },
    {
      name: "SerialPortForget",
      status: {"Android": "", "default": "stable"},
    },
    {
      name: "ServiceWorkerClientLifecycleState",
      status: "experimental",
    },
    {
      name: "SharedArrayBuffer",
      public: true,
    },
    {
      name: "SharedArrayBufferOnDesktop",
      public: true,
    },
    {
      name: "SharedArrayBufferUnrestrictedAccessAllowed",
      public: true,
    },
    {
      name: "SharedAutofill",
      public: true,
      status: "test",
    },
    {
      name: "SharedStorageAPI",
      origin_trial_feature_name: "PrivacySandboxAdsAPIs",
      origin_trial_allows_third_party: true,
      public: true,
    },
    {
      name: "SharedWorker",
      public: true,
      // Android does not yet support SharedWorker. crbug.com/154571
      status: {"Android": "", "default": "stable"},
    },
    {
      name: "SignatureBasedIntegrity",
      origin_trial_feature_name: "SignatureBasedIntegrity",
      status: "experimental",
    },
    {
      name: "SiteInitiatedMirroring",
      status: "experimental",
    },
    {
      name: "SkipAd",
      depends_on: ["MediaSession"],
      origin_trial_feature_name: "SkipAd",
      status: "experimental",
    },
    {
      // Skips the browser touch event filter, ensuring that events that reach
      // the queue and would otherwise be filtered out will instead be passed
      // onto the renderer compositor process as long as the page hasn't timed
      // out. If skip_filtering_process is browser_and_renderer, also skip the
      // renderer cc touch event filter, ensuring that events will be passed
      // onto the renderer main thread.
      name: "SkipTouchEventFilter",
      settable_from_internals: true,
      base_feature: "SkipTouchEventFilter",
      status: "stable",
    },
    {
      name: "SoftNavigationHeuristics",
      status: "experimental",
      depends_on: ["NavigationId"],
      base_feature: "SoftNavigationHeuristics",
    },
    // An origin trial feature name is required for this, even though it's
    // actually enabled by the more specific trial. Having these as separate
    // features will allow Blink to distinguish for which thing the trial
    // was enabled.
    {
      name: "SpeculationRules",
      implied_by: ["SpeculationRulesPrefetchProxy", "SpeculationRulesPrefetchWithSubresources", "Prerender2"],
      origin_trial_feature_name: "SpeculationRules__DONOTUSE",
    },
    {
      name: "SpeculationRulesFetchFromHeader"
    },
    // Origin trial to enable Speculation Rules for access to the prefetch proxy.
    // https://crbug.com/1190167
    {
      name: "SpeculationRulesPrefetchProxy",
      origin_trial_feature_name: "SpeculationRulesPrefetch",
      status: {"Android": "stable"},
      base_feature: "SpeculationRulesPrefetchProxy",
      copied_from_base_feature_if: "overridden",
    },
    {
      "name": "SpeculationRulesPrefetchWithSubresources",
    },
    {
      name: "SrcsetMaxDensity",
    },
    // Used as argument in attribute of stable-release functions/interfaces
    // where a runtime-enabled feature name is required for correct IDL syntax.
    // This is a global flag; do not change its status.
    {
      name: "StableBlinkFeatures",
      status: "stable",
    },
    {
      // Enabled when blink::features::kStorageAccessAPI is enabled.
      name: "StorageAccessAPI",
      status: "test",
    },
    {
      name: "StorageAccessAPIForOriginExtension",
      public: true,
      status: "test",
      base_feature: "StorageAccessAPIForOriginExtension",
    },
    {
      name: "StorageBuckets",
      status: "experimental",
      base_feature: "StorageBuckets",
    },
    {
      name: "StorageFoundationAPI",
      origin_trial_feature_name: "StorageFoundationAPI",
      status: "experimental",
    },
    {
      name: "StrictMimeTypesForWorkers",
      status: "experimental"
    },
    {
      name: "StylusHandwriting",
    },
    {
      name: "SupportsFontFormatTech",
      status: "stable"
    },
    {
      // When a Web application calls getDisplayMedia() and asks for video,
      // allow a hint to be provided to offer the user an option to
      // dynamically switch the source display surface during the capture.
      //
      // https://github.com/w3c/mediacapture-screen-share/pull/225/files
      name: "SurfaceSwitchingConstraint",
      status: "stable",
    },
    {
      name: "SVGTextNG",
      depends_on: ["LayoutNG"],
      status: "stable"
    },
    {
      name: "SynthesizedKeyboardEventsForAccessibilityActions",
      status: "experimental",
    },
    {
      // When a Web application calls getDisplayMedia() and asks for audio,
      // allow a hint to be provided as to whether the Web application is
      // interested in system-audio being among the options offered to the user.
      //
      // https://github.com/w3c/mediacapture-screen-share/pull/222/files
      name: "SystemAudioConstraint",
      status: "stable",
    },
    {
      name: "SystemWakeLock",
      status: "experimental",
    },
    // For unit tests.
    {
      name: "TestFeature",
    },
    // For unit tests.
    {
      name: "TestFeatureDependent",
      depends_on: ["TestFeatureImplied"],
    },
    // For unit tests.
    {
      name: "TestFeatureImplied",
      implied_by: ["TestFeature"],
    },
    {
      // crbug.com/1008951
      name: "TextDecoratingBox",
      status: "stable",
    },
    {
      name: "TextDetector",
      status: "experimental",
    },
    {
      name: "TextFragmentAPI",
      status: "experimental",
    },
    {
      name: "TextFragmentIdentifiers",
      origin_trial_feature_name: "TextFragmentIdentifiers",
      public: true,
      status: "stable",
      base_feature: "TextFragmentAnchor",
    },
    {
      name: "TextFragmentTapOpensContextMenu",
      status: {"Android": "stable"},
    },
    {
      // Forces same-process display:none cross-origin iframes to be throttled
      // in the same manner that OOPIFs are.
      name: "ThrottleDisplayNoneAndVisibilityHiddenCrossOriginIframes",
      status: "experimental",
      base_feature: "ThrottleDisplayNoneAndVisibilityHiddenCrossOriginIframes",
    },
    {
      name: "TimerThrottlingForBackgroundTabs",
      public: true,
      status: "stable",
    },
    {
      name: "TimeZoneChangeEvent",
      status: "experimental",
    },
    {
      name: "TopicsAPI",
      origin_trial_feature_name: "PrivacySandboxAdsAPIs",
      origin_trial_allows_third_party: true,
      public: true,
    },
    // https://crbug.com/1314739
    {
      name: "TouchActionEffectiveAtPointerDown",
      status: "stable",
    },
    // This feature allows touch dragging and a context menu to occur
    // simultaneously, with the assumption that the menu is non-modal.  Without
    // this feature, a long-press touch gesture can start either a drag or a
    // context-menu in Blink, not both (more precisely, a context menu is shown
    // only if a drag cannot be started).
    {
      name: "TouchDragAndContextMenu",
      implied_by: ["TouchDragOnShortPress"],
      public: true,
    },
    // This feature makes touch dragging to occur at the short-press gesture,
    // which occurs right before the long-press gesture.  This feature assumes
    // that TouchDragAndContextMenu is enabled.
    {
      name: "TouchDragOnShortPress",
    },
    // Many websites disable mouse support when touch APIs are available.  We'd
    // like to enable this always but can't until more websites fix this bug.
    // Chromium sets this conditionally (eg. based on the presence of a
    // touchscreen) in ApplyWebPreferences. "Touch events" themselves are always
    // enabled since they're a feature always supported by Chrome.
    {
      name: "TouchEventFeatureDetection",
      origin_trial_feature_name: "ForceTouchEventFeatureDetectionForInspector",
      public: true,
      status: "stable",
    },
    // This is conditionally set if the platform supports translation.
    {
      name: "TranslateService"
    },
    {
      name: "TrustedTypeBeforePolicyCreationEvent",
      status: "experimental",
    },
    {
      name: "TrustedTypesUseCodeLike",
      status: "experimental",
    },
    {
      name: "TrustTokens",
      origin_trial_feature_name: "TrustTokens",
      origin_trial_allows_third_party: true,
      public: true,
      status: "test",
    },
    {
      // Always allow trust token issuance (so long as the base::Feature
      // is enabled). Used for testing; circumvents a runtime check that,
      // if this RuntimeEnabledFeature is not present, guarantees the origin
      // trial is enabled.
      name: "TrustTokensAlwaysAllowIssuance",
      public: true,
      status: "test",
    },
    // This is a reverse OT used for a phased deprecation of Cryptotoken, the
    // component extension that implements the U2F security key API.
    // https://crbug.com/1224886
    {
      name: "U2FSecurityKeyAPI",
      origin_trial_feature_name: "U2FSecurityKeyAPI",
      origin_trial_os: ["win", "mac", "linux", "chromeos"],
      origin_trial_type: "deprecation",
    },
    {
      name: "UnclosedFormControlIsInvalid",
      status: "experimental",
    },
    {
      name: "UnexposedTaskIds",
    },
    // This is a reverse OT used for a phased deprecation, on desktop
    // https://crbug.com/1071424
    {
      name: "UnrestrictedSharedArrayBuffer",
      origin_trial_feature_name: "UnrestrictedSharedArrayBuffer",
      origin_trial_os: ["win", "mac", "linux", "fuchsia", "chromeos"],
    },
    {
      name: "URLPatternCompareComponent",
      status: "experimental",
    },
    {
      name: "UserActivationSameOriginVisibility",
      public: true,
    },
    {
      name: "UserAgentClientHint",
      status: "stable",
      base_feature: "UserAgentClientHint",
    },
    {
      name: "UserAgentReduction",
      origin_trial_feature_name: "UserAgentReduction",
      origin_trial_allows_third_party: true,
      // iOS not included as it should not send a reduced User-Agent string.
      origin_trial_os: ["android", "chromeos", "fuchsia", "linux", "mac", "win"],
      base_feature: "ReduceUserAgent",
    },
    {
      name: "V8IdleTasks",
      public: true,
    },
    {
      name: "VariableCOLRV1",
      status: "stable",
      base_feature: "VariableCOLRV1",
    },
    {
      // Whether a video element should automatically play fullscreen unless
      // 'playsinline' is set.
      name: "VideoAutoFullscreen",
      settable_from_internals: true,
    },
    {
      name: "VideoFullscreenOrientationLock",
    },
    {
      name: "VideoPlaybackQuality",
      public: true,
      status: "stable",
    },
    {
      name: "VideoRotateToFullscreen",
    },
    {
      name: "VideoTrackGenerator",
      status: "test",
    },
    {
      name: "VideoTrackGeneratorInWindow",
      status: "test",
    },
    {
      name: "VideoTrackGeneratorInWorker",
    },
    {
      name: "VideoWakeLockOptimisationHiddenMuted",
      public: true,
      status: "stable",
    },
    {
      name: "ViewportHeightClientHintHeader",
      status: "stable",
      base_feature: "ViewportHeightClientHintHeader",
    },
    {
      name: "ViewportMetaInteractiveWidgetProperty",
      status: "stable",
    },
    {
      name: "ViewportSegments",
      status: "experimental",
    },
    {
      name: "VisibilityCollapseColumn",
    },
    {
      name: "VisibilityStateEntry",
      status: "experimental",
    },
    {
      // The "WakeLock" feature was originally implied_by "ScreenWakeLock" and
      // "SystemWakeLock". The former was removed after being promoted to
      // stable, but we need to keep this feature around for code and IDLs that
      // should work with both screen and system wake locks.
      name: "WakeLock",
      status: "stable",
      implied_by: ["SystemWakeLock"],
    },
    {
      // When enabled, this will issue a warning to the console any time
      // rendering is forced withing content-visibility subtrees (both
      // content-visibility: auto and content-visibility: hidden).
      name: "WarnOnContentVisibilityRenderAccess",
    },
    {
      name: "WebAnimationsAPI",
      status: "stable",
      implied_by: ["AnimationWorklet"],
    },
    {
      name: "WebAnimationsSVG",
      status: "experimental",
    },
    {
      name: "WebAppDarkMode",
      origin_trial_feature_name: "WebAppDarkMode",
      status: "experimental",
      base_feature: "WebAppEnableDarkMode",
    },
    {
      name: "WebAppLaunchHandler",
      origin_trial_feature_name: "Launch Handler",
      status: "experimental",
      base_feature: "WebAppEnableLaunchHandler",
    },
    {
      name: "WebAppLaunchQueue",
      // This is not going into origin trial, "origin_trial_feature_name" is
      // required for using the "implied_by" behaviour.
      origin_trial_feature_name: "WebAppLaunchQueue",
      implied_by: ["WebAppLaunchHandler", "FileHandling"],
    },
    {
      name:"WebAppsLockScreen",
      status:"experimental",
    },
    {
      name: "WebAppTabStrip",
      status: "experimental",
    },
    {
      name: "WebAppTranslations",
      status: "experimental",
      base_feature: "WebAppEnableTranslations",
    },
    {
      // This flag enables the Manifest parser to handle URL Handlers.
      // Also enabled when blink::features::kWebAppEnableUrlHandlers is
      // overridden on the command line (or via chrome://flags).
      name: "WebAppUrlHandling",
      status: "experimental",
      origin_trial_feature_name: "WebAppUrlHandling",
      origin_trial_os: ["win", "mac", "linux"],
    },
    {
      name: "WebAppWindowControlsOverlay",
      origin_trial_feature_name: "WebAppWindowControlsOverlay",
      origin_trial_os: ["win", "mac", "linux", "chromeos"],
      status: "stable",
    },
    {
      name: "WebAssemblyCSP",
      status: "stable",
    },
    {
      name: "WebAssemblyExceptions",
      origin_trial_feature_name: "WebAssemblyExceptions",
      status: "test",
    },
    // WebAuth is disabled on Android versions prior to N (7.0) due to lack of
    // supporting APIs, see runtime_features.cc.
    {
      name: "WebAuth",
      status: "stable",
    },
    // When enabled adds the authenticator attachment used for registration and
    // authentication to the public key credential response.
    {
      name: "WebAuthAuthenticatorAttachment",
      status: "test"
    },
    // A more subtle UI for WebAuthn that is web exposed.
    // It's controlled by the corresponding Chromium feature which needs to
    // be enabled to make the whole feature work, except for WPTs where the
    // virtual authenticator environment is used.
    {
      name: "WebAuthenticationConditionalUI",
      status: "stable",
    },
    // https://github.com/w3c/webauthn/pull/1663
    {
      name: "WebAuthenticationDevicePublicKey",
      status: "experimental",
    },
    {
      name: "WebAuthenticationLargeBlobExtension",
      status: "experimental",
    },
    {
      name: "WebAuthenticationRemoteDesktopSupport",
      public: true,
    },
    // WebBluetooth is enabled by default on Android, ChromeOS and Mac.
    // It is also supported in Windows 10 which is handled in runtime_features.cc
    {
      name: "WebBluetooth",
      public: true,
      status: {
        "Android": "stable",
        "ChromeOS_Ash": "stable", "ChromeOS_Lacros": "stable",
        "Mac": "stable",
        "default": "experimental",
      },
    },
    {
      name: "WebBluetoothGetDevices",
      public: true,
      status: "experimental",
    },
    {
      name: "WebBluetoothScanning",
      status: "experimental",
    },
    {
      name: "WebBluetoothWatchAdvertisements",
      public: true,
      status: "experimental",
    },
    {
      name: "WebCodecs",
      status: "stable",
      origin_trial_feature_name: "WebCodecs"
    },
    {
      name: "WebCodecsDequeueEvent",
      status: "stable",
    },
    {
      name: "WebGLColorManagement",
      status: "stable",
    },
    {
      name: "WebGLDeveloperExtensions",
      public: true,
      status: "experimental",
    },
    {
      // Draft WebGL extensions are deliberately not enabled by experimental web
      // platform features.
      name: "WebGLDraftExtensions",
      public: true,
    },
    {
      name: "WebGLImageChromium",
      public: true,
    },
    // WebGPU adds a large attack surface area to the GPU process and allows
    // running arbitrary programs on the GPU (compute shaders), which may
    // perform arbitrary read/writes of GPU memory if not properly sandboxed.
    // That's why it is not enabled as part of the
    // --enable-experimental-web-platform-features flag.
    {
      name: "WebGPU",
      origin_trial_feature_name: "WebGPU",
      public: true,
    },
    {
      // WebGPU developer features are deliberately not enabled by experimental
      // web platform features.
      name: "WebGPUDeveloperFeatures",
      public: true,
    },
    {
      // Requires both WebGPU and --enable-experimental-web-platform-features
      name: "WebGPUImportTexture",
      status: "experimental",
    },
    {
      name: "WebHID",
      status: {"Android": "", "default": "stable"},
    },
    {
      name: "WebHIDExclusionFiltersOption",
      status: "stable",
    },
    {
      // It is only enabled in extension environment for now.
      name: "WebHIDOnServiceWorkers",
      depends_on: ["WebHID"],
      public: true,
    },
    // Legacy ::-webkit-scrollbar* pseudo element styling. Enabled for stable
    // but configurable via WebPreferences.
    {
      name: "WebKitScrollbarStyling",
      status: "stable",
    },
    {
      name: "WebNFC",
      public: true,
      status: {"Android": "stable", "default": "test"},
    },
    {
      name: "WebNFCMakeReadOnly",
      depends_on: ["WebNFC"],
      status: {"Android": "stable", "default": "test"},
    },
    {
      name: "WebOTP",
      public: true,
      status: "stable",
    },
    {
      name: "WebOTPAssertionFeaturePolicy",
      depends_on: ["WebOTP"],
      public: true,
      status: "stable",
    },
    {
      name: "WebPaymentAPICSP",
      origin_trial_feature_name: "WebPaymentAPICSP",
      origin_trial_allows_third_party: true,
      public: true,
    },
    // WebShare is enabled by default on Android.
    {
      name: "WebShare",
      public: true,
      status: "test",
    },
    {
      name: "WebSocketStream",
      status: "experimental",
    },
    {
      name: "WebTransportCustomCertificates",
      origin_trial_feature_name: "WebTransportCustomCertificates",
      status: "stable",
    },
    {
      name: "WebUSB",
      public: true,
      status: "stable",
    },
    {
      name: "WebUsbDeviceForget",
      status: "stable",
    },
    {
      name: "WebUSBOnDedicatedWorkers",
      status: "stable",
      depends_on: ["WebUSB"],
    },
    {
      // It is only enabled in extension environment for now.
      name: "WebUSBOnServiceWorkers",
      depends_on: ["WebUSB"],
      public: true,
    },
    {
      name: "WebVTTRegions",
      status: "experimental",
    },
    {
      name: "WebXR",
      public: true,
      status: "stable",
    },
    {
      name: "WebXRAnchors",
      depends_on: ["WebXRARModule", "WebXRHitTest"],
      status: "stable"
    },
    {
      name: "WebXRARModule",
      depends_on: ["WebXR"],
      public: true,
      status: "stable",
    },
    {
      name: "WebXRCameraAccess",
      depends_on: ["WebXRARModule"],
      public: true,
      status: "stable",
    },
    {
      name: "WebXRDepth",
      origin_trial_feature_name: "WebXRDepth",
      depends_on: ["WebXRARModule"],
      public: true,
      status: "stable",
    },
    {
      name: "WebXRHandInput",
      depends_on: ["WebXRARModule"],
      public: true,
      status: "experimental"
    },
    {
      name: "WebXRHitTest",
      depends_on: ["WebXRARModule"],
      public: true,
      status: "stable",
    },
    {
      name: "WebXRHitTestEntityTypes",
      depends_on: ["WebXRHitTest"],
      status: "experimental"
    },
    {
      name: "WebXRImageTracking",
      origin_trial_feature_name: "WebXRImageTracking",
      depends_on: ["WebXRARModule"],
      public: true,
      status: "experimental",
    },
    {
      name: "WebXRLightEstimation",
      depends_on: ["WebXRARModule"],
      public: true,
      status: "stable",
    },
    {
      name: "WebXRPlaneDetection",
      origin_trial_feature_name: "WebXRPlaneDetection",
      depends_on: ["WebXRARModule"],
      public: true,
      status: "experimental",
    },
    {
      name: "WebXRViewportScale",
      depends_on: ["WebXRARModule"],
      public: true,
      status: "stable",
    },
    {
      name: "WGIGamepadTriggerRumble",
      status: "test",
    },
    // If enabled, window.default[Ss]tatus will be supported. This is disabled
    // by default, and is here to allow this behavior to be re-enabled via Finch
    // in case of problems. This flag should be removed by Q1 2023, assuming
    // no problems are encountered.
    {
      name: "WindowDefaultStatus",
      base_feature: "WindowDefaultStatus",
    },
    // New behavior for window.open's interpretation of the windowFeatures parameter.
    {
      name: "WindowOpenNewPopupBehavior",
      status: "stable",
      base_feature: "WindowOpenNewPopupBehavior",
    },
    // Extends window placement functionality for multi-screen devices. Also
    // exposes requisite information about displays connected to the device.
    {
      name: "WindowPlacement",
      status: "stable",
      base_feature: "WindowPlacement",
    },
    // Exposes user-friendly screen labels, determined by the platform, to sites
    // with window-placement permission.
    {
      name: "WindowPlacementEnhancedScreenLabels",
      status: "stable",
    },
    // Allows sites to request fullscreen when the set of screens change.
    {
      name: "WindowPlacementFullscreenOnScreensChange",
      depends_on: ["WindowPlacement"],
      status: "experimental",
      base_feature: "WindowPlacementFullscreenOnScreensChange",
    },
    {
      // If enabled, the `getDisplayMedia()` family of APIs will ask for NV12
      // frames, which should trigger a zero-copy path in the tab capture code.
      name: "ZeroCopyTabCapture",
      base_feature: "ZeroCopyTabCapture",
    },
  ],
}