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 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891
|
{
// 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. These features may be
// turned on using the "Experimental Web Platform features" flag in
// chrome://flags/#enable-experimental-web-platform-features.
// * 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, experimental
// on Windows and not enabled on any other platform.
//
// Note that the Android status key implies Chrome for Android and WebView.
//
// "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", "Mac", "Linux", "iOS"]
},
// "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 dedicated
// methods. The default is false. This should be rare because
// WebRuntimeFeatures::EnableFeatureFromString() works in most cases.
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'.
// As long as this field isn't "none", a base::Feature is automatically
// generated in features_generated.{h,cc}. By default the "name" field
// is used for the feature name, but can be overridden here.
//
// 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 otherwise.
// 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 specify `base_feature: "none"` and map the features in
// content/child/runtime_features.cc. `base_feature: "none"` is strongly
// discouraged if the feature doesn't have an associated base feature
// because the feature would lack a killswitch controllable via finch.
base_feature: {
valid_type: "str",
default: "",
},
// Specify the default value of the base::Feature instance. This field
// works only if base_feature is not "none".
// 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 status is overridden to the enabled or disabled
// state by field trial or command line, set Blink feature to the state
// of the base::Feature. Note: "Override to Default" doesn't affect the
// Blink feature.
// - Otherwise if the base::Feature is enabled, enable the Blink feature.
// - Otherwise no change.
//
// * "overridden"
// Enables the Blink feature when the base::Feature status is overridden
// to the enabled or disabled state 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. Note: "Override to Default" deosn't affect the Blink
// 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",
},
// browser_process_read_access indicates the runtime feature state should be
// readable in the browserprocess via RuntimeFeatureStateReadContext.
// TODO(crbug.com/1377000): this feature does not support origin trial
// tokens provided in HTTP headers. Any tokens provided via HTTP header will
// be dropped.
browser_process_read_access: {
default: false,
value_type: "bool",
},
// browser_process_read_write_access indicates the runtime feature state
// should be writable in the browserprocess via RuntimeFeatureStateContext.
// TODO(crbug.com/1377000): this feature does not support origin trial
// tokens provided in HTTP headers. Any tokens provided via HTTP header will
// be dropped.
browser_process_read_write_access: {
default: false,
value_type: "bool",
},
// is_protected_feature indicates whether the feature enablement state should
// be tracked using a base::Protected<bool> value or just a regular bool
// value.
is_protected_feature: {
default: false,
value_type: "bool",
}
},
data: [
{
name: "Accelerated2dCanvas",
settable_from_internals: true,
status: "stable",
},
{
name: "AcceleratedSmallCanvases",
status: "stable",
},
{
name: "AccessibilityAriaVirtualContent",
public: true,
status: "experimental",
base_feature: "none",
},
{
name: "AccessibilityCustomElementRoleNone",
public: true,
status: "test",
base_feature: "none",
},
{
name: "AccessibilityExposeDisplayNone",
status: "test",
},
{
// If the author did not define aria-actions, surface button and link
// children inside option and menuitem elements as implicit actions.
name: "AccessibilityImplicitActions",
status: "experimental",
},
{
// Use a minimum role of group on elements that are keyboard-focusable.
// See https://w3c.github.io/html-aam/#minimum-role.
name: "AccessibilityMinRoleTabbable",
},
{
name: "AccessibilityOSLevelBoldText",
status: "experimental",
public: true,
},
{
// Enforce no accessible name on objects that have a role where names are
// prohibited (listed in https://w3c.github.io/aria/#namefromprohibited):
// log a friendly error in the developer console, and trigger a DCHECK().
// The incorrect markup situation will be repaired, and the name will
// be exposed as a description instead.
// TODO(crbug.com/350528330,
// https://github.com/web-platform-tests/interop-accessibility/issues/133,
// https://github.com/w3c/accname/issues/240,
// https://github.com/w3c/accname/issues/241): If community feedback is
// positive, and WPT + accname testable statements are updated to allow
// this, then add status: test.
name: "AccessibilityProhibitedNames",
},
{
name: "AccessibilitySerializationSizeMetrics",
status: "experimental",
},
{
name: "AccessibilityUseAXPositionForDocumentMarkers",
base_feature: "none",
public: true,
},
{
name: "AddressSpace",
status: "experimental",
implied_by: ["CorsRFC1918"],
},
{
// Interest Group JS API/runtimeflag.
name: "AdInterestGroupAPI",
status: "stable",
origin_trial_feature_name: "AdInterestGroupAPI",
implied_by: ["Fledge", "Parakeet"],
public: true,
},
// Fix for crbug.com/403358869
{
name: "AdjustDOMOffsetToLayoutOffsetForSecureText",
status: "stable",
},
// Adjust the end of the next paragraph if the end position for the
// paragraph is updated while moving the paragraph. See
// https://crbug.com/329121649
{
name: "AdjustEndOfNextParagraphIfMovedParagraphIsUpdated",
status: "stable",
},
{
name: "AdTagging",
public: true,
status: "test",
base_feature: "none",
},
{
name: "AIPageContentPaidContentAnnotation",
status: "stable"
},
{
name: "AIPromptAPI",
public: true,
status: {
"Win": "experimental",
"Mac": "experimental",
"Linux": "experimental",
"default": "",
},
origin_trial_feature_name: "AIPromptAPIMultimodalInput",
origin_trial_os: ["win", "mac", "linux"],
origin_trial_allows_third_party: true,
implied_by: ["AIPromptAPIMultimodalInput"],
},
{
// Extension access to "AIPromptAPI".
name: "AIPromptAPIForExtension",
public: true,
status: {
"Win": "stable",
"Mac": "stable",
"Linux": "stable",
"default": "",
},
},
{
name: "AIPromptAPIForWorkers",
public: true,
},
{
name: "AIPromptAPIMultimodalInput",
status: {
"Win": "experimental",
"Mac": "experimental",
"Linux": "experimental",
"default": "",
},
origin_trial_feature_name: "AIPromptAPIMultimodalInput",
origin_trial_os: ["win", "mac", "linux"],
origin_trial_allows_third_party: true,
base_feature_status: "enabled",
copied_from_base_feature_if: "overridden",
},
{
// Gates access to the responseConstraint enhancement for "AIPromptAPI".
// This feature alone does not expose any "AIPromptAPI" feature access.
name: "AIPromptAPIStructuredOutput",
status: "stable",
},
{
name: "AIProofreadingAPI",
status: "test",
},
{
name: "AIRewriterAPI",
status: {
"Win": "experimental",
"Mac": "experimental",
"Linux": "experimental",
"default": "",
},
origin_trial_feature_name: "AIRewriterAPI",
origin_trial_os: ["win", "mac", "linux"],
origin_trial_allows_third_party: true,
base_feature_status: "enabled",
copied_from_base_feature_if: "overridden",
},
{
name: "AIRewriterAPIForWorkers",
public: true,
},
{
name: "AISummarizationAPI",
status: {
"Win": "stable",
"Mac": "stable",
"Linux": "stable",
"default": "",
},
},
{
name: "AISummarizationAPIForWorkers",
public: true,
},
{
name: "AIWriterAPI",
status: {
"Win": "experimental",
"Mac": "experimental",
"Linux": "experimental",
"default": "",
},
origin_trial_feature_name: "AIWriterAPI",
origin_trial_os: ["win", "mac", "linux"],
origin_trial_allows_third_party: true,
base_feature_status: "enabled",
copied_from_base_feature_if: "overridden",
},
{
name: "AIWriterAPIForWorkers",
public: true,
},
{
name: "AlignZoomToCenter",
status: "stable",
},
{
name: "AllowContentInitiatedDataUrlNavigations",
base_feature: "none",
},
// Fix for https://crbug.com/41238177.
{
name: "AllowCopyingEmptyLastTableCell",
status: "stable",
},
{
name: "AllowPreloadingWithCSPMetaTag",
status: "experimental",
},
{
name: "AllowSameSiteNoneCookiesInSandbox",
base_feature: "none",
// No status because this blink runtime feature doesn't work by itself.
// It's controlled by the corresponding Chromium feature,
// net::features::kAllowSameSiteNoneCookiesInSandbox, which needs to be
// enabled to make the whole feature work.
},
{
// https://crbug.com/40681200
name: "AllowSkippingEditingBoundaryToMergeEnd",
status: "stable",
},
{
name: "AllowSvgUseToReferenceExternalDocumentRoot",
status: "stable",
},
{
name: "AllowSyntheticTimingForCanvasCapture",
base_feature: "none",
status: {
"Mac": "stable",
"default": ""
}
},
{
name: "AllowURNsInIframes",
base_feature: "none",
},
{
// Kill switch for https://crbug.com/415834974 which changes anchor
// positioning adjustments to occur even in cases where there is no
// scrollable overflow.
name: "AnchorPositionAdjustmentWithoutOverflow",
status: "stable",
},
{
name: "AndroidDownloadableFontsMatching",
base_feature: "none",
public: true,
},
{
// https://chromestatus.com/feature/5083257285378048
name: "AnimationProgressAPI",
status: "stable",
},
{
// https://drafts.csswg.org/web-animations-2/#triggers
name: "AnimationTrigger",
status: "experimental",
},
{
name: "AnimationWorklet",
},
{
name: "AnonymousIframe",
status: "stable",
},
{
name: "AOMAriaRelationshipProperties",
public: true,
status: "stable",
},
{
name: "AOMAriaRelationshipPropertiesAriaOwns",
public: true,
status: "experimental",
depends_on: ["AOMAriaRelationshipProperties"],
},
{
name: "AppTitle",
status: "experimental",
origin_trial_feature_name: "AppTitle",
origin_trial_os: ["win", "mac", "linux", "chromeos"],
base_feature: "WebAppEnableAppTitle",
},
{
name: "AriaActions",
status: "experimental",
},
{
name: "AriaNotify",
status: {"Android": "experimental", "Win": "experimental", "Mac": "experimental", "Linux": "experimental"},
implied_by: ["AriaNotifyV2"],
},
{
name: "AriaNotifyV2",
status: {"Android": "test", "Win": "test", "Mac": "test", "Linux": "test"},
},
{
name: "AriaRowColIndexText",
status: "stable",
},
{
// When enabled, perform async IPCs from CookieJar::SetCookie to the
// network service.
name: "AsyncSetCookie",
},
{
name: "AttributionReporting",
status: "stable",
base_feature: "none",
public: true,
},
{
name: "AudioContextInterruptedState",
status: "stable",
},
{
name: "AudioContextOnError",
status: "stable",
},
{
// AudioContext.playoutStats interface.
// https://chromestatus.com/feature/5172818344148992
name: "AudioContextPlayoutStats",
origin_trial_feature_name: "AudioContextPlayoutStats",
status: "experimental",
},
{
name: "AudioContextSetSinkId",
status: "stable",
},
{
name: "AudioOutputDevices",
// Android support for switching audio output devices is not stable
status: {"Android": "", "default": "stable"},
public: true,
base_feature: "none"
},
{
name: "AudioVideoTracks",
status: "experimental",
},
{
name: "AutoDarkMode",
base_feature: "none",
origin_trial_feature_name: "AutoDarkMode",
},
{
name: "AutomationControlled",
base_feature: "none",
public: true,
settable_from_internals: true,
},
{
name: "AutoPictureInPictureVideoHeuristics",
status: "experimental",
},
{ // If the start and end positions are the same in MoveParagraph,
// there is no need to collapse the whitespace between them.
// https://crbug.com/406053617
name: "AvoidNormalizingVisiblePositionsWhenStartEqualsEnd",
status: "stable",
},
// When enabled, clicking on canvas element will not update the selection.
// See crbug.com/40130450.
{
name: "AvoidSelectionChangeOnCanvasClick",
status: "stable"
},
// When enabled, enforces new interoperable semantics for 3D transforms.
// See crbug.com/1008483.
{
name: "BackfaceVisibilityInterop",
},
{
name: "BackForwardCache",
base_feature: "none",
public: true,
},
{
name: "BackForwardCacheExperimentHTTPHeader",
origin_trial_feature_name: "BackForwardCacheExperimentHTTPHeader",
status: "experimental",
base_feature: "none",
},
{
name: "BackForwardCacheNotRestoredReasons",
status: "stable",
origin_trial_feature_name: "BackForwardCacheNotRestoredReasons",
base_feature: "BackForwardCacheSendNotRestoredReasons",
base_feature_status: "enabled",
copied_from_base_feature_if: "overridden",
},
{
name: "BackForwardCacheRestorationPerformanceEntry",
status: "experimental",
},
{
name: "BackForwardCacheUpdateNotRestoredReasonsName",
status: "stable",
},
{
// Used to enable Blink side of features flags for Default Nav Transition.
name: "BackForwardTransitions",
},
{
name: "BackgroundFetch",
public: true,
status: "stable",
base_feature: "none",
},
// A developer opt-out for background page freezing.
{
name: "BackgroundPageFreezeOptOut",
base_feature: "none",
origin_trial_feature_name: "BackgroundPageFreezeOptOut",
origin_trial_type: "deprecation",
},
{
name: "BarcodeDetector",
status: {
// Built-in barcode detection APIs are only available from some
// platforms. See //services/shape_detection.
"Android": "stable",
"ChromeOS": "stable",
"Mac": "stable",
"default": "test",
},
},
{
name: "BidiCaretAffinity",
},
{
name: "BlinkExtensionChromeOS",
browser_process_read_write_access: true,
},
{
name: "BlinkExtensionChromeOSKiosk",
depends_on: ["BlinkExtensionChromeOS"],
browser_process_read_write_access: true,
},
{
name: "BlinkExtensionWebView",
public: true,
},
{
name: "BlinkExtensionWebViewMediaIntegrity",
public: true,
},
{
name: "BlinkLifecycleScriptForbidden",
},
{
name: "BlinkRuntimeCallStats",
},
{
name: "BlockingFocusWithoutUserActivation",
status: "experimental",
},
// crbug.com/1147998: Mouse and Pointer boundary event dispatch (i.e. dispatch
// of enter, leave, over, out events) tracks DOM node removal to fix event
// pairing on ancestor nodes.
{
name: "BoundaryEventDispatchTracksNodeRemoval",
public: true,
status: "experimental",
},
{
name: "BrowserInitiatedAutomaticPictureInPicture",
public: true,
status: "experimental",
},
{
name: "BrowserVerifiedUserActivationKeyboard",
base_feature: "none",
public: true,
},
{
name: "BrowserVerifiedUserActivationMouse",
base_feature: "none",
public: true,
},
{
name: "BufferedBytesConsumerLimitSize",
status: "stable",
},
{
name: "BuiltInAIAPI",
status: "experimental",
base_feature_status: "enabled",
// An OT feature name is required to satisfy `implied_by` build checks.
// The feature reuses AIPromptAPIMultimodalInput, but any origin trial
// features in the `implied_by` list will enable this feature as well.
origin_trial_feature_name: "AIPromptAPIMultimodalInput",
copied_from_base_feature_if: "overridden",
implied_by: [
"AIPromptAPI",
"AIPromptAPIMultimodalInput",
"AIRewriterAPI",
"AISummarizationAPI",
"AIWriterAPI",
"LanguageDetectionAPI",
"TranslationAPI",
"AIProofreadingAPI",
]
},
{
// Bypasses the enforcement of the Page Embedded Permission Control
// security checks. This flag is disabled by default and should only be
// enabled in automated tests in order to allow them to avoid needing to
// wait until the PEPC is validated and also to use JS-initiated clicks.
name: "BypassPepcSecurityForTesting",
},
{
name: "CacheStorageCodeCacheHint",
origin_trial_feature_name: "CacheStorageCodeCacheHint",
status: "experimental",
base_feature: "none",
},
{
name: "CallExitNodeWithoutLayoutObject",
status: "stable",
},
{
name: "Canvas2dCanvasFilter",
status: "experimental",
},
{
name: "Canvas2dGPUTransfer",
status: "experimental",
},
{
name: "Canvas2dImageChromium",
base_feature: "none",
public: true,
},
{
name: "Canvas2dLayers",
},
{
name: "Canvas2dLayersWithOptions",
status: "experimental",
depends_on: ["Canvas2dLayers"],
},
{
name: "Canvas2dMesh",
origin_trial_feature_name: "Canvas2dMesh",
origin_trial_allows_third_party: true,
status: "test",
},
{
// https://github.com/WICG/html-in-canvas/blob/main/README.md
name: "CanvasDrawElement",
status: "test",
},
{
name: "CanvasFloatingPoint",
status: "stable",
},
{
// https://crbug.com/394052224
name: "CanvasGradientCSSColor4",
status: "experimental",
},
{
name: "CanvasHDR",
status: "experimental",
},
{
// No status because this blink runtime feature doesn't work by itself.
// It's controlled by the corresponding Chromium feature,
// fingerprinting_protection_interventions::features::kCanvasNoise through
// modified_runtime_features and setting its status in the browser
// process.
name: "CanvasInterventions",
browser_process_read_write_access: true,
base_feature: "none",
},
{
// https://chromestatus.com/feature/5066778773028864
name: "CanvasTextLang",
status: "stable",
},
{
// crbug.com/389726691.
name: "CanvasTextNg",
origin_trial_feature_name: "CanvasTextNg",
status: "experimental",
},
{
// Kill switch for https://crbug.com/330506337.
name: "CanvasUsesArcPaintOp",
status: "stable",
},
{
name: "CapabilityDelegationDisplayCaptureRequest",
status: "experimental",
},
{
name: "CaptureController",
status: {"Android": "", "default": "stable"},
},
{
// TODO(crbug.com/1444712): Before enabling that flag by default,
// make sure MouseCursorOverlayController does not transmit mouse
// events to a CaptureController that don't have any
// capturedmousechange listener attached to it.
// See https://github.com/screen-share/mouse-events/issues/14
name: "CapturedMouseEvents",
"depends_on": ["CaptureController"],
status: {"Android": "", "default": "test"},
},
{
name: "CapturedSurfaceControl",
status: {"Android": "", "default": "stable"}
},
{
name: "CapturedSurfaceResolution",
status: { "Win": "stable", "Mac": "stable", "ChromeOS": "stable", "default": ""},
},
{
name: "CaptureHandle",
depends_on: ["GetDisplayMedia"],
status: {"Android": "", "default": "stable"},
},
{
// https://www.w3.org/TR/cssom-view-1/#dom-document-caretpositionfrompoint
name: "CaretPositionFromPoint",
status: "stable",
},
{
// Changes the caret's affinity to upstream, preventing spaces
// from appearing in the previous line when typing at the start
// of a wrapped line. See https://crbug.com/40677155
name: "CaretWithTextAffinityUpstream",
status: "stable",
},
{
name: "CascadedAfterChangeStyle",
status: "stable",
},
{
// Kill switch for changes to RenderFrameMetadataObserverImpl in connection with Engagement
// Signals. See https://crrev.com/c/4544201 and https://crbug.com/1458640.
name: "CCTNewRFMPushBehavior",
base_feature_status: "enabled",
},
{
// If focus is not at canonical position then spellcheck should be deactivated.
// crbug.com/396485529
name: "CheckForCanonicalPositionInIdleSpellCheck",
status: "stable",
},
{
name: "CheckVisibilityExtraProperties",
status: "stable",
},
// This flag shifts the timing of clearing the popover invoker so that it
// happens after the `beforetoggle` event is fired. This is something of a
// bug fix: see the spec discussion at
// https://github.com/whatwg/html/issues/11246#issuecomment-2860876897.
// This is enabled by default, and is a kill switch. It shipped in M138,
// and can be removed in M140.
{
name: "ClearPopoverInvokerAfterBeforeToggle",
status: "stable",
},
{
// Allows top-level sites to restrict collection of high-entropy UA client
// hints (from 3Ps, or itself) via the getHighEntropyValues API.
// crbug.com/385161047
name: "ClientHintUAHighEntropyValuesPermissionPolicy",
status: "test",
},
{
// Enables clipboardchange event API for listening for changes to the
// system clipboard
// https://chromestatus.com/feature/5085102657503232
name: "ClipboardChangeEvent",
base_feature: "none",
},
{
// Enables the API for getting a unique token of the system clipboard's
// current state.
// https://chromestatus.com/feature/5124993439236096
name: "ClipboardContentsId",
status: "test",
},
// This ensures that clipboard event fires on a target node which is
// focused in case no visible selection is present.
// crbug.com/40735783
{
name: "ClipboardEventTargetCanBeFocusedElement",
status: "stable",
},
{
// Support ClipboardItemData of Promise<DOMString> type according to spec
// https://w3c.github.io/clipboard-apis/#typedefdef-clipboarditemdata
name: "ClipboardItemWithDOMStringSupport",
status: "stable",
},
{
// Enables the ability to reset the clipboard snapshot when clipboard write
// operations are performed. This feature ensures that stale clipboard data
// is cleared and a fresh snapshot is created when necessary.
// See crbug.com/388081043
name: "ClipboardSnapshotResetOnWrite",
status: "stable",
},
{
name: "ClipElementVisibleBoundsInLocalRoot",
status: "stable",
},
{
name: "ClipPathNestedRasterOptimization",
status: "stable",
},
{
// Avoid queuing a task to fire a selectionchange event when there is already a task scheduled
// to do that for the target according to the new spec:
// https://w3c.github.io/selection-api/#scheduling-selectionhange-event
name: "CoalesceSelectionchangeEvent",
status: "stable",
},
{
name: "CoepReflection",
status: "test",
},
{
name: "CollapseZeroWidthSpaceWhenReuseItem",
status: "stable",
},
{
name: "CompositeBGColorAnimation",
public: true,
status: "experimental",
base_feature: "none",
},
{
name: "CompositeBoxShadowAnimation",
},
{
name: "CompositeClipPathAnimation",
status: "experimental",
public: true,
},
{
name: "CompositedAnimationsCancelledAsynchronously",
status: "stable"
},
{
name: "CompositedSelectionUpdate",
public: true,
status: {"Android": "stable"},
base_feature: "none",
},
{
name: "CompositingDecisionAtAnimationPhaseBoundaries"
},
{
name: "CompositionForegroundMarkers",
status: {
"Android": "stable",
"default": "",
}
},
{
name: "CompressionDictionaryTransport",
base_feature: "none",
public: true,
},
{
name: "CompressionDictionaryTransportBackend",
base_feature: "none",
public: true,
},
{
name: "ComputedAccessibilityInfo",
status: "experimental",
},
{
name: "ComputeInsertionPositionBasedOnAnchorType",
status: "stable",
},
{
name: "ComputePressure",
status: {
"Android": "",
"default": "stable",
}
},
{
name: "ComputePressureOwnContributionEstimate",
status: {
"Android": "",
"default": "experimental",
}
},
{
name: "ConsiderFullChildNodeContentForListify",
status: "stable",
},
{
name: "ContactsManager",
status: {"Android": "stable", "default": "test"},
},
{
name: "ContactsManagerExtraProperties",
status: {"Android": "stable", "default": "test"},
},
{
name: "ContainerTiming",
status: "experimental",
},
{
name: "ContainerTypeNoLayoutContainment",
status: "stable",
},
{
name: "ContentIndex",
status: {"Android": "stable", "default": "experimental"},
},
{
name: "ContextMenu",
status: "experimental",
},
{
name: "ContinueEventTimingRecordingWhenBufferIsFull",
status: "stable",
},
{
// Enable support for Controlled Frame, providing the Controlled
// Frame tag to IWA apps and other contexts. See
// https://github.com/WICG/controlled-frame/blob/main/README.md for more
// info.
name: "ControlledFrame",
public: true,
status: "experimental",
base_feature_status: "disabled",
},
{
name: "CookieDeprecationFacilitatedTesting",
base_feature: "none",
},
{
name: "CoopRestrictProperties",
origin_trial_feature_name: "CoopRestrictProperties",
base_feature: "none",
},
{
// Corrects the handling of <form> elements nested within <template> tags
// in HTML parsing. See https://crbug.com/352896478 for details.
name: "CorrectTemplateFormParsing",
status: "experimental"
},
{
name: "CorsRFC1918",
},
{
// Allow WebAuthn relying parties to report information about existing
// credentials back to credential storage providers.
// Enabled by default on M132. Remove flag on or after M135.
name: "CredentialManagerReport",
status: "stable",
},
{
// When enabled, allowlisting script urls and scripts used in eval via
// hashes will be supported in script-src. Controlled by the
// network::features::kCSPScriptSrcHashesInV1 flag.
// See crbug.com/392657736 for details.
name: "CSPHashesV1",
base_feature: "none",
},
{
name: "CSPReportHash",
status: "stable",
},
{
// The AccentColor And AccentColorText CSS system color keywords
name: "CSSAccentColorKeyword",
status: "experimental",
},
{
// CSS attr() function that accepts not only string types
// and can be used in all properties.
// https://drafts.csswg.org/css-values-5/#attr-notation
name: "CSSAdvancedAttrFunction",
status: "stable",
},
{
// Enables alignment properties for block and inline out-of-flow elements.
name: "CSSAlignBlockAndInlineOutOfFlows",
status: "stable",
},
{
// Allows using counter() and counters() in alt text (after / in content property).
name: "CSSAltCounter",
status: "experimental",
},
{
// Remember the scroll offset of the default anchor when initially
// displaying an anchor-positioned element, and when it switches position
// options (`position-try-fallbacks`), also known as an anchor
// recalculation point.
//
// https://drafts.csswg.org/css-anchor-position-1/#scroll
//
// This remembered scroll offset may affect the sizing of an
// anchor-positioned element, if it is tethered to the default anchor at
// one edge, and to the original containing block at the other edge.
// This feature was shipped in M135, and the flag can be cleaned up in
// M137, assuming no issues.
name: "CSSAnchorRememberedScrollOffset",
status: "stable",
},
{
// Support for the anchor-scope property.
// https://drafts.csswg.org/css-anchor-position-1/#anchor-scope
name: "CSSAnchorScope",
status: "stable",
},
{
// Let transforms affect anchor() and anchor-size() functions.
name: "CSSAnchorWithTransforms",
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",
},
{
// Replaces `string` type in CSS attr() function syntax with `raw-string`.
// https://github.com/w3c/csswg-drafts/issues/11645#issuecomment-2701601350
name: "CSSAttrRawString",
status: "stable",
},
{
// https://chromestatus.com/feature/5125388091260928
name: "CSSBackgroundClipUnprefix",
status: "stable",
},
// https://chromestatus.com/feature/5459864205393920
{
// https://chromestatus.com/feature/5125388091260928
name: "CSSBorderShape",
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",
},
{
// https://chromestatus.com/feature/5082469066604544
name: "CSSCaretAnimation",
status: "experimental",
},
{
// Need a feature entry
name: "CSSCaretShape",
status: "test",
},
{
// Support case-sensitive attribute selector modifier
// https://drafts.csswg.org/selectors-4/#attribute-case
name: "CSSCaseSensitiveSelector",
status: "test",
},
{
// In the cases where it is impossible or impractical to determine the
// measure of the “0” glyph, it must be assumed to be 0.5em wide by 1em
// tall. Thus, the ch unit falls back to 0.5em in the general case, and to
// 1em when it would be typeset upright (i.e. writing-mode is vertical-rl or
// vertical-lr and text-orientation is upright).
// https://drafts.csswg.org/css-values-4/#ch
// See crbug.com/416145497 for more details.
name: "CSSChUnitSpecCompliantFallback",
status: "stable",
},
{
name: "CSSColorContrast",
status: "experimental",
},
{
name: "CSSColorTypedOM",
status: "experimental",
},
{
name: "CSSComputedStyleFullPseudoElementParser",
status: "stable",
},
// https://drafts.csswg.org/css-values-5/#progress
// container-progress()
{
name: "CSSContainerProgressNotation",
status: "experimental",
},
{
// https://github.com/w3c/csswg-drafts/issues/8376#issuecomment-2751161553
name: "CSSContainerStyleQueriesRange",
status: "test",
},
{
// https://drafts.csswg.org/css-borders-4/#corner-shaping
name: "CSSCornerShape",
status: "stable",
},
{
// https://drafts.csswg.org/css-borders-4/#corner-shaping
name: "CSSCornersShorthand",
status: "experimental",
depends_on: ["CSSCornerShape"],
},
{
// Unprefixed cross-fade() (in addition to the existing -webkit-cross-fade()).
// https://drafts.csswg.org/css-images-4/#cross-fade-function
name: "CSSCrossFade",
status: "experimental",
},
{
// Allows getComputedStyle() and similar to get information about :visited colors.
// Only safe if PartitionVisitedLinkDatabaseWithSelfLinks is enabled.
name: "CSSDoNotHideVisitedColor",
},
{
name: "CSSDynamicRangeLimit",
status: "stable",
},
{
// Include custom properties in CSSComputedStyleDeclaration::item/length.
// https://crbug.com/949807
name: "CSSEnumeratedCustomProperties",
status: "test",
},
{
name: "CSSExponentialFunctions",
status: "stable",
},
{
name: "CSSFallbackContainerQueries",
status: "experimental",
},
{
// crbug.com/417306102
name: "CssFitWidthText",
status: "test",
},
{
name: "CSSFontSizeAdjust",
status: "stable",
},
{
// https://drafts.csswg.org/css-mixins-1/#function-rule
name: "CSSFunctions",
status: "stable",
},
{
// https://chromestatus.com/feature/5157805733183488
name: "CSSGapDecoration",
status: "experimental",
},
{
// 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",
},
{
// // https://drafts.csswg.org/css-values-5/#ident
name: "CSSIdentFunction",
status: "test",
},
{
// Support making elements inert through the interactivity property.
name: "CSSInert",
status: "stable",
},
{
// CSS if() function for custom properties. Flag is used only for media
// queries support in conditions.
// https://drafts.csswg.org/css-values-5/#if-notation.
name: "CSSInlineIfForMediaQueries",
status: "stable",
},
{
// CSS if() function for custom properties. Flag is used only for style
// queries support in conditions.
// https://drafts.csswg.org/css-values-5/#if-notation.
name: "CSSInlineIfForStyleQueries",
status: "stable",
},
{
// CSS if() function for custom properties. Flag is used only for supports
// queries support in conditions.
// https://drafts.csswg.org/css-values-5/#if-notation.
name: "CSSInlineIfForSupportsQueries",
status: "stable",
},
{
// Support for the interest-delay shorthand property.
// The longhands are controlled by HTMLInterestForAttribute. The
// shorthand is controlled separately since shorthands can not be enabled
// by an origin trial.
name: "CSSInterestDelayShorthand",
status: "experimental",
},
{
// https://chromestatus.com/feature/6289894144212992
name: "CSSKeyframesRuleLength",
status: "stable",
},
{
name: "CSSLayoutAPI",
status: "experimental",
},
{
name: "CSSLetterSpacingPercentage",
status: "experimental",
},
{
name: "CSSLineClamp",
status: "experimental",
},
{
name: "CSSLineClampLineBreakingEllipsis",
depends_on: ["CSSLineClamp"],
},
{
name: "CSSMarkerNestedPseudoElement",
status: "stable",
},
{
name: "CSSMasonryLayout",
status: "test",
public: true,
},
// https://drafts.csswg.org/css-values-5/#progress
// media-progress()
{
name: "CSSMediaProgressNotation",
status: "experimental",
},
{
name: "CSSMixins",
status: "test",
},
{
// Kill switch for crbug.com/378966977
name: "CSSNegatedFeatureless",
status: "stable",
},
{
name: "CSSNestedPseudoElements",
status: "stable",
},
{
name: "CSSPaintAPIArguments",
status: "experimental",
},
{
// Ignore the stylesheet encoding when parsing URLs, always using UTF-8.
// See crbug.com/1485525.
name: "CSSParserIgnoreCharsetForURLs",
},
{
name: "CSSPositionStickyStaticScrollPosition",
status: "test",
},
{
name: "CSSPreferredTextScale",
status: "stable",
},
// https://drafts.csswg.org/css-values-5/#progress
// progress()
{
name: "CSSProgressNotation",
status: "stable",
},
{
// For ::column pseudo-element for fragment styling.
// https://github.com/flackr/carousel/blob/main/fragmentation/README.md
name: "CSSPseudoColumn",
status: "stable",
},
{
// Enables the :has-slotted pseudo-selector.
// https://chromestatus.com/feature/5134941143433216
name: "CSSPseudoHasSlotted",
status: "experimental",
},
{
// Enables the :open pseudo-selector.
// https://chromestatus.com/feature/5085419215781888
name: "CSSPseudoOpen",
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",
},
{
// For ::scroll-up-button and ::scroll-down-button pseudo-elements for Carousel.
// https://github.com/flackr/carousel/tree/main/scroll-button
name: "CSSPseudoScrollButtons",
status: "stable",
depends_on: ["PseudoElementsFocusable"],
},
{
// For ::scroll-marker and ::scroll-marker-group pseudo-elements for Carousel.
// https://github.com/flackr/carousel/tree/main/scroll-marker
name: "CSSPseudoScrollMarkers",
status: "stable",
depends_on: ["PseudoElementsFocusable"],
},
{
// TODO(crbug.com/40932006): CSS 'reading-flow' property for reading order
// of grid, flexbox and block items.
// https://drafts.csswg.org/css-display-4/#reading-flow
// This should ship in M137, and it can be removed after M139.
name: "CSSReadingFlow",
status: "stable",
},
{
// TODO(crbug.com/393550130): CSS 'reading-order' property to overwrite
// reading-flow order.
// https://drafts.csswg.org/css-display-4/#reading-order
// This should ship in M137, and it can be removed after M139.
name: "CSSReadingOrder",
status: "stable",
depends_on: ["CSSReadingFlow"],
},
{
// crbug.com/359616070
name: "CSSRelativeColorLateResolveAlways",
status: "stable",
},
{
// Non-standard 'auto' keyword for the CSS resize property. Used for
// selectively enable resize corner for textarea via UA stylesheet, but
// unintentionally exposed to author sheets. UA rule is now using
// -internal-textarea-auto instead.
name: "CSSResizeAuto",
status: "stable",
},
{
// Enables env(safe-area-max-inset-*).
// https://github.com/w3c/csswg-drafts/issues/11019
name: "CSSSafeAreaMaxInset",
status: "stable"
},
{
name: "CSSSafePrintableInset",
status: "experimental",
},
{
// The "@import scope(...)" syntax.
// https://github.com/w3c/csswg-drafts/issues/7348
name: "CSSScopeImport",
status: "experimental",
},
{
name: "CSSScrollDirectionContainerQueries",
status: "test",
},
{
// https://drafts.csswg.org/css-scroll-snap-2#scroll-initial-target
name: "CSSScrollInitialTarget",
status: "stable",
},
{
// https://drafts.csswg.org/css-scroll-snap-2/#scrollsnapchange
name: "CSSScrollSnapChangeEvent",
status: "stable",
},
{
// https://drafts.csswg.org/css-scroll-snap-2/#scrollsnapchanging
name: "CSSScrollSnapChangingEvent",
status: "stable",
},
{
// https://drafts.csswg.org/css-scroll-snap-2/#snapevent-interface
name: "CSSScrollSnapEventConstructorExposed",
status: "experimental",
},
{
// https://drafts.csswg.org/css-scroll-snap-2/#snap-events
name: "CSSScrollSnapEvents",
status: "stable",
implied_by: ["CSSScrollSnapChangeEvent", "CSSScrollSnapChangingEvent"],
},
{
// https://drafts.csswg.org/css-scroll-snap-2#scroll-start
name: "CSSScrollStart",
status: "test",
},
{
// scroll-target-group property
// https://drafts.csswg.org/css-overflow-5/#scroll-target-group
name: "CSSScrollTargetGroup",
status: "experimental",
},
{
name: "CSSSelectorFragmentAnchor",
status: "experimental",
base_feature: "CssSelectorFragmentAnchor",
},
{
// https://drafts.csswg.org/css-shapes-2/#shape-function
name: "CSSShapeFunction",
status: "stable",
},
{
name: "CSSShapeFunctionCompositeAnimation",
status: "stable",
depends_on: ["CSSShapeFunction", "CompositeClipPathAnimation"]
},
{
name: "CSSShapeFunctionDirectionAgnosticArc",
status: "stable",
},
{
name: "CSSShapeFunctionOffsetPath",
status: "stable",
},
{
// Ignore cycles in unused var()/attr() fallbacks.
name: "CSSShortCircuitVarAttr",
status: "stable",
// The CSSShortCircuitVarAttr branch assumes that fallbacks
// are type-agnostic.
depends_on: ["CSSTypeAgnosticVarFallback"],
},
{
// sibling-index() and sibling-count()
name: "CSSSiblingFunctions",
status: "stable",
},
{
// Allow sibling-index() and sibling-count() in @container queries
name: "CSSSiblingFunctionsInContainerQueries",
status: "stable",
},
{
name: "CSSSignRelatedFunctions",
status: "stable",
},
{
// Explainer: https://drafts.csswg.org/css-values/#round-func
name: "CSSSteppedValueFunctions",
status: "stable",
},
{
name: "CSSSupportsAtRuleFunction",
status: "experimental",
},
{
name: "CSSSupportsForImportRules",
status: "stable",
},
{
// Allows the CSS "accent-color" property to support the system accent color as the default option.
name: "CSSSystemAccentColor",
status: {
"ChromeOS": "stable",
"Mac": "stable",
"Win": "stable",
"default": "experimental",
},
},
{
// crbug.com/1463890: CSS `text-autospace` property
name: "CSSTextAutoSpace",
status: "experimental",
},
{
// crbug.com/1463890, crbug.com/1463891: CSS `text-spacing` shorthand
name: "CSSTextSpacing",
depends_on: ["CSSTextAutoSpace"],
status: "experimental",
},
{
// crbug.com/41442840: Enabled by default on M139, remove after M141.
name: "CSSTransitionNoneRunningTransitionsFix",
status: "stable",
},
{
// Support for tree-scoped [1] timeline names (e.g. produced by
// scroll-timeline).
//
// [1] https://drafts.csswg.org/css-scoping-1/#shadow-names
name: "CSSTreeScopedTimelines",
},
{
// The var() fallback does not validate against the type
// of the custom property being referenced.
name: "CSSTypeAgnosticVarFallback",
status: "stable",
},
{
name: "CSSTypedArithmetic",
status: "experimental",
},
// Support for `user-select:contain`.
{
name: "CSSUserSelectContain",
status: "test",
},
{
name: "CSSVideoDynamicRangeMediaQueries",
status: "experimental",
},
{
// https://chromestatus.com/feature/4850737974345728
name: "CSSViewTransitionAutoName",
status: "experimental",
},
{
// Adds the appearance:base-select CSS value which makes <select>
// rendering using alternate content in the UA shadowroot which is
// customizable.
name: "CustomizableSelect",
status: "stable",
// SelectParserRelaxation is needed to allow more content in <select>
// than just <option>s etc.
depends_on: ["SelectParserRelaxation"],
},
{
// If a node within a customizable <select> doesn't obey the content
// model, an Issue is reported to DevTools so that web authors get more
// context on why this can impact the accessibility behavior of the
// <select>. Shipped in M138, flag can be removed M140.
name: "CustomizableSelectElementAccessibilityIssues",
status: "stable",
depends_on: ["CustomizableSelect"],
},
{
// appearance:base-select for <select multiple> and <select size=n>
// https://issues.chromium.org/issues/357649033
name: "CustomizableSelectInPage",
status: "experimental",
depends_on: ["CustomizableSelect"],
},
{
// appearance:base-select for <select multiple size=1> with a picker.
name: "CustomizableSelectMultiplePopup",
status: "experimental",
depends_on: ["CustomizableSelectInPage"],
},
{
// Replaces \r\n and \r with \n in setCustomValidity.
// https://github.com/whatwg/html/pull/10350
// https://issues.chromium.org/issues/340814283
name: "CustomValidityNormalizeNewlines",
status: "stable",
},
{
// https://chromestatus.com/feature/5134293578285056
name: "Database",
},
{
// Fix HandleMouseFocus selection for delegated focus text control.
// See https://crbug.com/400317114
// This feature was shipped in M136, so this flag can be removed in M138.
name: "DelegatesFocusTextControlFix",
status: "stable",
},
// This allows pages to opt out of the unload deprecation. Enabling this
// allows unload event handers to be used in the frame regardless of any
// Permissions-Policy setting.
// https://crbug.com/1432116
{
name: "DeprecateUnloadOptOut",
origin_trial_feature_name: "DeprecateUnloadOptOut",
origin_trial_type: "deprecation",
origin_trial_allows_third_party: true,
origin_trial_allows_insecure: true,
},
{
name: "DesktopCaptureDisableLocalEchoControl",
status: "experimental",
},
{
name: "DesktopPWAsAdditionalWindowingControls",
status: "test",
},
{
name: "DesktopPWAsSubApps",
status: "test",
},
{
name: "DeviceAttributes",
status: {
"ChromeOS": "stable",
"default": "experimental",
},
},
{
name: "DeviceAttributesPermissionPolicy",
status: "experimental",
},
{
name: "DeviceBoundSessionCredentials",
origin_trial_feature_name: "DeviceBoundSessionCredentials",
origin_trial_os: ["win", "linux", "mac"],
status: "experimental",
// Killswitch is net::features::kDeviceBoundSessions
base_feature: "none",
},
{
name: "DeviceOrientationRequestPermission",
status: "experimental",
},
{
name: "DevicePosture",
status: "stable",
},
{
// This feature makes the <dialog> element close properly when its "open"
// attribute is removed. https://github.com/whatwg/html/issues/5802 and
// https://github.com/whatwg/html/pull/10124.
name: "DialogCloseWhenOpenRemoved",
status: "experimental",
},
{
// This feature makes the dialog element fire beforetoggle and toggle
// events every time it is closed or opened.
// https://bugs.chromium.org/p/chromium/issues/detail?id=1521813
name: "DialogElementToggleEvents",
status: "stable",
},
{
name: "DialogNewFocusBehavior",
status: "experimental",
depends_on: ["NewGetFocusableAreaBehavior"],
},
{
name: "DigitalGoods",
origin_trial_feature_name: "DigitalGoodsV2",
origin_trial_os: ["android", "chromeos"],
public: true,
status: {
"Android": "stable",
"ChromeOS": "stable",
// crbug.com/1143079: Web tests cannot differentiate ChromeOS and Linux,
// so enable the API on all platforms for testing.
"default": "test"
},
base_feature: "none",
},
{
name: "DigitalGoodsV2_1",
status: {
"Android": "stable",
"ChromeOS": "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: "stable",
},
{
// Experimental support for the Direct Sockets API in Service Workers.
// https://github.com/WICG/direct-sockets
name: "DirectSocketsInServiceWorkers",
status: "test",
depends_on: ["DirectSockets"],
},
{
// Experimental support for the Direct Sockets API in Shared Workers.
// https://github.com/WICG/direct-sockets
name: "DirectSocketsInSharedWorkers",
status: "test",
depends_on: ["DirectSockets"],
},
{
name: "DisableDifferentOriginSubframeDialogSuppression",
base_feature: "none",
origin_trial_feature_name: "DisableDifferentOriginSubframeDialogSuppression",
origin_trial_type: "deprecation",
origin_trial_allows_insecure: true,
},
{
name: "DisableReduceAcceptLanguage",
origin_trial_feature_name: "DisableReduceAcceptLanguage",
origin_trial_type: "deprecation",
origin_trial_allows_insecure: true,
origin_trial_allows_third_party: true,
base_feature: "none",
},
{
// `kHidden` and `kHiddenButPainting` visibility states are treated as
// hidden in the sense of `document.visibilityState`. However, they are
// handled differently internally. For example, video playback should
// continue in `kHiddenButPainting`, such as when the page is being
// background captured. When enabled, this feature causes blink to
// notify internal observers about visibility changes between the two
// hidden states, in addition to transitions to/from `kVisible`.
//
// Since the two hidden states are exposed to the web identically, there
// is no `visibilitychanged` event fired when switching between them.
//
// When this feature is disabled, blink reverts to its original behavior
// of eliding transitions between the two hidden states, including to
// internal observers. This behavior causes problems with capture and
// picture-in-picture, but is preserved as a safe fallback.
name: "DispatchHiddenVisibilityTransitions",
status: "stable",
base_feature: "DispatchHiddenVisibilityTransitions",
},
{
// Dispatch selectionchange event per element according to the new spec:
// https://w3c.github.io/selection-api/#selectionchange-event
name: "DispatchSelectionchangeEventPerElement",
status: "stable",
},
{
// Allowing elements with display:contents to have focus.
// See https://crbug.com/1366037
name: "DisplayContentsFocusable",
status: "experimental",
},
{
name: "DisplayCutoutAPI",
base_feature: "none",
public: true,
},
{
name: "DocumentCookie",
},
{
name: "DocumentDomain",
},
{
// Enables DocumentIsolationPolicy.
// See https://https://github.com/WICG/document-isolation-policy.
name: "DocumentIsolationPolicy",
status: "experimental",
origin_trial_feature_name: "DocumentIsolationPolicy",
origin_trial_os: ["win", "mac", "linux", "chromeos"],
base_feature: "none",
},
{
name: "DocumentOpenOriginAliasRemoval",
status: "experimental",
copied_from_base_feature_if: "overridden",
},
{
name: "DocumentOpenSandboxInheritanceRemoval",
status: "stable",
copied_from_base_feature_if: "overridden",
},
{
name: "DocumentPictureInPictureAPI",
status: {
"Android": "",
"default": "stable",
},
},
// Enables `preferInitialWindowPlacement` Document PiP option to skip
// re-using the previous pip window bounds.
{
name: "DocumentPictureInPicturePreferInitialPlacement",
status: {
"Android": "",
"default": "stable",
},
},
// Enables propagating user activation from a document picture-in-picture
// window up to its opener window and vice versa.
{
name: "DocumentPictureInPictureUserActivation",
status: {
"Android": "",
"default": "stable",
},
},
// Enables the ability to use Document Policy header to control feature
// DocumentDomain.
{
name: "DocumentPolicyDocumentDomain",
status: "experimental",
},
// Enables the ability to use Document Policy header to control feature
// ExpectNoLinkedResources.
{
name: "DocumentPolicyExpectNoLinkedResources",
status: "stable",
},
// Enables the ability to use Document Policy header to control feature
// IncludeJSCallStacksInCrashReports. https://chromestatus.com/feature/4731248572628992
{
name: "DocumentPolicyIncludeJSCallStacksInCrashReports",
status: "stable",
},
{
name: "DocumentPolicyNegotiation",
origin_trial_feature_name: "DocumentPolicyNegotiation",
public: true,
status: "experimental",
base_feature: "none",
},
// Enables the ability to use Document Policy header to control feature
// SyncXHR.
{
name: "DocumentPolicySyncXHR",
status: "experimental",
},
{
name: "DocumentWrite",
},
{
// This is a flag for performance improvements that shipped in M134,
// for use as a kill-switch and for other finch measurement in Q2 2025.
name: "DOMInsertionFaster",
status: "stable",
},
{
name: "DOMPartsAPI",
status: "experimental",
implied_by: ["DOMPartsAPIMinimal"],
},
{
name: "DOMPartsAPIMinimal",
},
// Dynamically change the safe area insets based on the bottom browser
// controls visibility.
{
name: "DynamicSafeAreaInsets",
status: {"Android": "stable"},
},
// Dynamically change the safe area insets as browser controls scrolls.
{
name: "DynamicSafeAreaInsetsOnScroll",
depends_on: ["DynamicSafeAreaInsets"],
status: {"Android": "stable"},
},
{
// crbug.com/341564372
name: "EditingFastDelete",
status: "stable",
},
{
// crbug.com/341564372
name: "EditingFastRichReplace",
status: "stable",
},
{
name: "ElementCapture",
status: {"Android": "", "default": "stable"},
},
{
name: "ElementInnerTextHandleFirstLineStyle",
status: "stable",
},
{
// crbug.com/40118302
name: "EmptyReferenceFilterInvalidation",
status: "stable",
},
{
name: "EnforceAnonymityExposure",
status: "stable",
},
{
// See: crbug.com/40771555
name: "EnterInOpenShadowRoots",
status: "stable",
},
{
// Escapes "<" and ">" in attribute values. This was launched
// in M138, and this flag can be removed in M140.
// See: crbug.com/1175016
name: "EscapeLtGtInAttributes",
status: "stable",
},
{
name: "EventTimingHandleKeyboardEventSimulatedClick",
status: "stable",
},
{
name: "EventTimingInteractionCount",
status: "experimental",
},
{
// Event Timings should not get interactionId assigned if the next paint
// was affected by autoscroll, i.e. from text selection.
name: "EventTimingSelectionAutoScrollNoInteractionId",
status: "stable",
},
{
name: "ExperimentalContentSecurityPolicyFeatures",
status: "experimental",
base_feature: "none",
},
{
name: "ExperimentalJSProfilerMarkers",
status: "experimental",
},
{
name: "ExperimentalMachineLearningNeuralNetwork",
// Enabled by webnn::mojom::features::kExperimentalWebMachineLearningNeuralNetwork.
base_feature: "none",
},
{
name: "ExperimentalPolicies",
status: "experimental",
},
{
name: "ExposeCoarsenedRenderTime",
status: "stable",
},
{
name: "ExposeCSSFontFeatureValuesRule",
status: "stable",
},
{
name: "ExposeRenderTimeNonTaoDelayedImage",
},
{
name: "ExtendedTextMetrics",
status: "experimental",
},
{
// Kill-switch for crbug.com/40434449.
// Added in M139, and it can be removed in M141.
name: "ExternalPopupMenuClickEvent",
status: "stable",
},
{
name: "EyeDropperAPI",
status: {
// EyeDropper UI is available on ChromeOS, Linux (x11), Mac, and Win.
// This list should match the supported operating systems for the
// kEyeDropper base::Feature.
"ChromeOS": "stable",
"Linux": "stable",
"Mac": "stable",
"Win": "stable",
},
// When running under experimental platform variants, such as
// Linux/Wayland, EyeDropper base::Feature defined in the browser
// process is used to disable it at runtime, if needed.
base_feature: "none",
public: true,
},
{
name: "FaceDetector",
status: "experimental",
},
// Kill switch.
{
name: "FastClearNeedsRepaint",
status: "stable",
},
{
name: "FastPositionIterator",
// Not enabled due to a RTL issue. crbug.com/1421016.
},
{
// crbug.com/414112253
name: "FastSelectionSync",
status: "stable",
depends_on: ["SelectionDeleteFromDocumentUaShadowFix"],
},
{
name: "FedCm",
public: true,
status: "stable",
base_feature: "none",
},
{
name: "FedCmAutofill",
implied_by: ["FedCmDelegation"],
public: true,
status: "test",
base_feature: "none",
},
{
name: "FedCmDelegation",
depends_on: ["FedCm"],
public: true,
status: "test",
base_feature: "none",
},
{
name: "FedCmIdPRegistration",
depends_on: ["FedCm"],
public: true,
status: "test",
base_feature: "none",
},
{
name: "FedCmLightweightMode",
depends_on: ["FedCm"],
status: "test",
public: true,
base_feature: "none",
},
{
name: "FedCmMultipleIdentityProviders",
depends_on: ["FedCm"],
status: "stable",
base_feature: "none",
public: true,
origin_trial_feature_name: "FedCmMultipleIdentityProviders",
origin_trial_os: ["win", "mac", "linux", "chromeos"],
origin_trial_allows_third_party: true,
},
{
name: "FencedFrames",
base_feature: "none",
// This helps enable and expose the <fencedframe> element, but note that
// blink::features::kFencedFrames must be enabled as well, as we require
// the support of the browser process to fully enable the feature.
// Enabling this runtime enabled feature alone has no effect.
public: true,
status: "stable",
},
{
name: "FencedFramesAPIChanges",
// Various new IDL attributes on the <fencedframe> element (such as
// `config`, `sandbox`, and `allow`).
base_feature_status: "enabled",
copied_from_base_feature_if: "enabled_or_overridden",
status: "stable",
},
{
name: "FencedFramesDefaultMode",
base_feature_status: "disabled",
copied_from_base_feature_if: "enabled_or_overridden",
public: true,
},
{
// Allows fenced frames to access unpartioned data via Shared Storage in
// exchange for disabling untrusted network access. This is the Blink
// counterpart of the base::Feature with the same name. Because local
// unpartitioned data access requires browser and renderer process
// coordination, the value of this flag is strictly controlled by the
// base::Feature variant, and setting this flag does nothing.
name: "FencedFramesLocalUnpartitionedDataAccess",
base_feature: "none",
public: true,
},
{
// Add Request.bytes() and Response.bytes()
// https://chromestatus.com/feature/5239268180754432
name: "FetchBodyBytes",
status: "stable",
},
{
// The Blink runtime-enabled feature name for the API's IDL.
// https://chromestatus.com/feature/4654499737632768
name: "FetchLaterAPI",
status: "stable",
},
{
// The retry ability for Fetch keepalive requests.
// https://chromestatus.com/feature/5181984581877760
name: "FetchRetry",
origin_trial_feature_name: "FetchRetry",
origin_trial_allows_third_party: true,
status: "experimental",
base_feature: "FetchRetry",
// base_feature is meant as kill-switch. This runtime-enabled feature
// should follow the Origin Trial unless explicitly overriden by Finch or
// commandline flags.
base_feature_status: "enabled",
// Enables the Blink feature only when the base::Feature is overridden by
// field trial or command line.
copied_from_base_feature_if: "overridden",
},
{
name: "FetchUploadStreaming",
status: "stable",
},
{
// Killswitch M136.
name: "FewerSubsequences",
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"},
base_feature: "FileHandlingAPI",
},
{
name: "FileHandlingIcons",
depends_on: ["FileHandling"],
status: {"Android": "test", "default": "experimental"},
base_feature: "none",
},
{
name: "FileSystem",
public: true,
status: "stable",
base_feature: "none",
},
{
// Shared objects by OPFS and non-OPFS File System Access API.
name: "FileSystemAccess",
implied_by: ["FileSystemAccessLocal", "FileSystemAccessOriginPrivate"],
},
{
// In-development features for the File System Access API.
name: "FileSystemAccessAPIExperimental",
status: "experimental",
},
{
// The FileSystemHandle.getCloudIdentifiers() method (see
// crbug.com/1443354).
name: "FileSystemAccessGetCloudIdentifiers",
status: {
"ChromeOS": "experimental",
"default": "",
}
},
{
// Non-OPFS File System Access API.
name: "FileSystemAccessLocal",
status: {"default": "stable"},
},
{
name: "FileSystemAccessLockingScheme",
status: "stable",
},
{
// OPFS File System Access API.
name: "FileSystemAccessOriginPrivate",
status: "stable",
},
{
// The FileSystemObserver interface for the File System Access API.
// See https://crbug.com/1019297.
name: "FileSystemObserver",
depends_on: ["FileSystemAccess"],
status: {
"Android": "experimental",
"iOS": "experimental",
"default": "stable",
},
},
{
// The unobserve function of the FileSystemObserver.
// See https://crbug.com/321980469.
name: "FileSystemObserverUnobserve",
status: "experimental",
},
{
name: "FindFirstMisspellingEndWhenNonEditable",
status: "stable",
},
{
// crbug.com/408309951
name: "FindNestedAnnotationFix",
status: "stable",
},
{
// crbug.com/409358630
name: "FindOrphanAnnotationFix",
status: "stable",
},
{
// crbug.com/411739501
name: "FixNextPositionCalculationInInsertList",
status: "stable",
},
{
name: "Fledge",
status: "stable",
base_feature: "none",
public: true,
},
{
// Enables deal support within auctions.
name: "FledgeAuctionDealSupport",
status: "test",
},
{
name: "FledgeBiddingAndAuctionServerAPI",
origin_trial_feature_name: "FledgeBiddingAndAuctionServer",
origin_trial_allows_third_party: true,
base_feature: "none",
status: "stable",
},
{
name: "FledgeBiddingAndAuctionServerAPIMultiSeller",
status: "stable",
},
{
name: "FledgeClickiness",
status: "test",
},
{
name: "FledgeCustomMaxAuctionAdComponents",
status: "stable",
},
{
// Enables using a 'deprecatedRenderURLReplacements' field within the
// Protected Audience ad auction config.
name: "FledgeDeprecatedRenderURLReplacements",
public: true,
status: "stable",
},
{
name: "FledgeDirectFromSellerSignalsHeaderAdSlot",
status: "stable",
},
{
// Feature flag to control removal, in case we run into unexpected
// breakage.
//
// TODO(crbug.com/384481095): Remove in a few milestones, along with the
// implementation code.
name: "FledgeDirectFromSellerSignalsWebBundles",
},
{
name: "FledgeMultiBid",
public: true,
status: "stable",
},
{
// Enables the private model training API in Protected Audience.
// https://github.com/WICG/turtledove/blob/main/PA_private_model_training.md
name: "FledgePrivateModelTraining",
status: "test",
},
{
// Enables real time reporting API in Protected Audience.
// https://github.com/WICG/turtledove/blob/main/PA_real_time_monitoring.md
name: "FledgeRealTimeReporting",
public: true,
status: "stable",
},
{
// Enables the ability to set seller nonces on the header response and
// use bidNonce in bids.
name: "FledgeSellerNonce",
status: "stable",
},
{
// Enables having `executionMode` in the auctionConfig to use for seller scripts.
name: "FledgeSellerScriptExecutionMode",
status: "test",
},
{
name: "FledgeTrustedSignalsKVv1CreativeScanning",
status: "test",
},
{
name: "FledgeTrustedSignalsKVv2ContextualData",
depends_on: ["FledgeTrustedSignalsKVv2Support"],
status: "test",
},
{
name: "FledgeTrustedSignalsKVv2Support",
status: "stable",
},
{
name: "FlexWrapBalance",
status: "experimental",
},
{
// Don't create LayoutMultiColumnFlowThread objects, or any of the other
// legacy multicol objects.
name: "FlowThreadLess",
depends_on: ["LayoutBoxVisualLocation"],
status: "stable",
},
{
name: "FluentOverlayScrollbars",
// The associated base feature is defined in
// ui/native_theme/native_theme_features.cc.
base_feature: "none",
},
{
name: "FluentScrollbars",
// The associated base feature is defined in
// ui/native_theme/native_theme_features.cc.
base_feature: "none",
},
{
name: "Focusgroup",
status: "experimental",
base_feature: "none",
origin_trial_feature_name: "Focusgroup",
},
{
name: "FontAccess",
status: {"Android": "", "default": "stable"},
},
{
name: "FontFamilyPostscriptMatchingCTMigration",
},
{
name: "FontFamilyStyleMatchingCTMigration",
},
{
// crbug.com/40398871
name: "FontFeatureSettingsDescriptor",
status: "experimental",
},
{
name: "FontPresentWin",
status: "stable",
},
{
name: "FontSrcLocalMatching",
base_feature: "none",
// No status, as the web platform runtime enabled feature is controlled by
// a Chromium level feature.
},
{
name: "FontSystemFallbackNotoCjk",
status: "stable",
},
{
// 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",
base_feature: "none",
},
// Killswitch M135.
{
name: "ForceDelayedIntersectionUpdate",
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",
},
{
// TODO(crbug.com/1419161): Remove this feature after M113 has been stable
// for a few weeks or more. This is a kill switch that, when enabled, goes
// back to the old behavior, which was to restore the state for <input>
// and <select> even when they had `autocomplete=off`.
name: "FormControlRestoreStateIfAutocompleteOff",
},
{
// TODO(crbug.com/1432009) Allow form controls with vertical writing mode
// to have direction affect the flow of the control.
name: "FormControlsVerticalWritingModeDirectionSupport",
status: "stable",
},
{
// TODO(crbug.com/389587444): Remove this feature after M134 is stable.
// Form-associated custom elements should check isFocusable on the
// focus delegate if the shadow host has delegatesFocus=true.
name: "FormValidationCustomElementsDelegatesFocusFix",
status: "stable",
},
{
name: "FractionalScrollOffsets",
base_feature: "none",
public: true,
},
{
name: "FreezeFramesOnVisibility",
status: "experimental",
},
{
name: "GamepadMultitouch",
status: "experimental",
public: true,
},
{
name: "GetAllScreensMedia",
depends_on: ["GetDisplayMedia"],
public: true,
status: {
"ChromeOS": "stable",
"default": "test",
},
},
{
name: "GetComputedStyleOutsideFlatTree",
status: "stable",
},
{
name: "GetDisplayMedia",
public: true,
status: {
"Android": "experimental",
"default": "stable",
},
base_feature: "none",
},
{
name: "GetDisplayMediaRequiresUserActivation",
depends_on: ["GetDisplayMedia"],
status: "experimental",
},
{
name: "GroupEffect",
status: "test",
},
{
// Enables Skipping children for invisible select elements containing
// non-editable node while calculating end of paragraph.
name: "HandleDeletionAtStartAndEndBoundaryContainingHiddenElement",
status: "stable",
},
{
name: "HandwritingRecognition",
status: {
"ChromeOS": "stable",
"default": "experimental",
},
},
{
name: "HarfBuzzBufferPool",
status: "stable",
},
{
name: "HasUAVisualTransition",
status: "stable",
},
// TODO(crbug.com/333628468): Enables the `headingoffset` and
// `headingreset` attributes, which allow for alternate styles of building
// structured headings. This is being actively prototyped, starting ~M136.
// For more see https://github.com/whatwg/html/issues/5033
{
name: "HeadingOffset",
status: "experimental",
},
{
name: "HighlightInheritance",
status: "stable",
},
{
name: "HighlightPointerEvents",
},
{
name: "HighlightsFromPoint",
status: "test",
},
{
name: "HrefTranslate",
depends_on: ["TranslateService"],
origin_trial_feature_name: "HrefTranslate",
status: "stable",
base_feature: "none",
},
// The `anchor` attribute, supported by both anchor positioning and the
// popover API.
{
name: "HTMLAnchorAttribute",
status: "experimental",
},
// Additional default command/commandfor actions that aren't part of v1 of
// commands. When this flag is disabled only v1 actions (popover and dialog
// defaults) will work.
{
name: "HTMLCommandActionsV2",
depends_on: ["HTMLCommandAttributes"],
status: "test",
},
// Adds support for the `command` and `commandfor` attributes, as specified
// in the open-ui "Invokers" explainer.
// https://open-ui.org/components/invokers.explainer/
// This feature was shipped in M135 and can be removed in M137.
{
name: "HTMLCommandAttributes",
status: "stable",
},
// Adds support for the 'request-close' command.
{
name: "HTMLCommandRequestClose",
depends_on: ["HTMLCommandAttributes"],
status: "stable",
},
{
name: "HTMLElementScrollParent",
status: "experimental",
},
// The `<embed>` should follow the specification, layout is not forced
// when the `type` attribute is set to `image`.
// https://html.spec.whatwg.org/C/#the-embed-element
// This feature was shipped in M131, so this flag can be removed in M133.
{
name: "HTMLEmbedElementNotForceLayout",
status: "stable",
},
// The width attribute on the hr element, previously converted 0 values to 1px.
// This will ship in M133, so should be safe to remove in M135.
{
name: "HTMLHRWidthAllowZero",
status: "stable"
},
// Return a natural width/height of zero from
// HTMLImageElement.naturalWidth/Height for SVG images that don't have a
// natural width/height set.
{
name: "HTMLImageElementActualNaturalSize",
status: "test",
},
// Adds support for the experimental `interesttarget`
// attributes, as specified in the open-ui "Interest Invokers" explainer.
// https://open-ui.org/components/interest-invokers.explainer/
{
name: "HTMLInterestTargetAttribute",
status: "experimental",
origin_trial_feature_name: "HTMLInterestTargetAttribute",
origin_trial_allows_third_party: true,
},
// Enables the "context menu item only" behavior mode for the
// `interesttarget` API. In this mode, the context menu is displayed in the
// "normal" location, but an additional line item is added to the menu which
// allows the user to show interest. This is enabled by default, but depends
// on HTMLInterestTargetAttribute.
{
name: "HTMLInterestTargetContextMenuItemOnly",
status: "stable",
depends_on: ["HTMLInterestTargetAttribute"],
},
// If this flag is enabled, the "partial interest" concept for the
// `interesttarget` API is not used. When an interest invoker is focused,
// the target immediately gets full interest, regardless of whether it
// contains focusable content. This is primarily to test the behavior with
// users, to see which is the best.
{
name: "HTMLInterestTargetNoPartialInterest",
depends_on: ["HTMLInterestTargetAttribute"],
},
{
// A flag, just for local testing to make the
// HTML parser yield more often and take longer to resume.
// This helps when debugging flaky tests caused by parser
// yielding heuristics.
name: "HTMLParserYieldAndDelayOftenForTesting",
},
{
name: "HTMLParserYieldByUserTiming",
status: "test",
},
{
// When enabled, specifies visual affordances for printing such as headers,
// footers and page numbers, to be PDF annotations.
// See section 14.8.2.2.1 here for info:
// https://opensource.adobe.com/dc-acrobat-sdk-docs/pdfstandards/PDF32000_2008.pdf
name: "HTMLPrintingArtifactAnnotations",
status: "stable",
},
{
name: "HTMLSelectElementShowPicker",
status: "stable",
},
{
name: "ICUCapitalization",
status: "experimental",
},
{
name: "IgnoreLetterSpacingInCursiveScripts",
status: "stable",
},
{
// crbug.com/40602913
name: "IgnoreOutOfFlowPositionForPreviousText",
status: "stable",
},
{
name: "ImageDataPixelFormat",
status: "stable",
},
{
name: "ImplicitRootScroller",
public: true,
settable_from_internals: true,
status: {"Android": "stable"},
base_feature: "none",
},
// This change, although technically breaking, is expected to be fully web-compatible
// due to how import attributes are currently used in the ecosystem. However, this is
// a killswitch just in case. This can be removed once it ships to stable and no
// regressions are reported.
{
name: "ImportAttributesDisallowUnknownKeys",
status: "stable"
},
{
name: "ImportMapIntegrity",
status: "stable"
},
{
// Improved retargeting behavior of ToggleEvent.source and
// CommandEvent.source to match Event.relatedTarget.
// crbug.com/420639769
name: "ImprovedSourceRetargeting",
status: "experimental",
},
{
name: "IncomingCallNotifications",
},
{
// When enabled, every traversable mainframe same-doc navigation will
// increment the `viz::LocalSurfaceId` from the impl thread.
name: "IncrementLocalSurfaceIdForMainframeSameDocNavigation",
status: {"Android": "stable"},
},
{
name: "IndexedDbGetAllRecords",
status: "experimental",
},
{
name: "InertElementNonEditable",
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: "InheritUserModifyWithoutContenteditable",
status: "stable",
},
{
// crbug.com/370217727
name: "InitialLetterRaiseBySpecified",
status: "stable",
},
{
name: "InlineBlockInSameLine",
status: "stable",
},
{
// If enabled, and the inner html parser is unable to successfully
// parse, it will log histograms of why it failed. The logging is
// non-trivial.
name: "InnerHTMLParserFastpathLogFailure",
status: "experimental",
},
{
name: "InputEventConstructorThrows",
status: "stable",
},
{
// The HTML parser inserts a </select> end tag before inserting <input>
// when parsing inside of a <select> tag. We want to allow <input> inside
// <select>, but it isn't web compatible enough. This flag allows <input>
// inside <select> but only if there is another open tag in between the
// <input> and the <select>, like <select><div><input>.
// For now, this flag also makes <input> close <select> like it used to
// when the <input> is put directly within an <option> or <optgroup>.
name: "InputInSelect",
status: "experimental",
depends_on: ["SelectParserRelaxation"],
},
{
name: "InputMultipleFieldsUI",
// No plan to support complex UI for date/time INPUT types on Android and
// iOS.
status: {"Android": "test", "iOS": "test", "default": "stable"},
},
// Insert a blockquote before a outer block after creating the blockquote
// when indenting a node whose outer block is a blockquote. See
// https://crbug.com/327665597
{
name: "InsertBlockquoteBeforeOuterBlock",
status: "stable",
},
{
name: "InsertLineBreakIfInlineListItem",
status: "stable",
},
{
// crbug.com/1420675
name: "InsertLineBreakIfPhrasingContent",
status: {"Android": "test", "default": "stable"},
},
{
// Improved support for debugging CSSNestedDeclarations.
name: "InspectorGhostRules",
status: "stable",
},
{
name: "InstalledApp",
public: true,
status: "stable",
base_feature: "none",
},
{
name: "InstallOnDeviceSpeechRecognition",
status: "stable",
},
{
name: "IntegrityPolicyScript",
status: "stable",
base_feature: "none",
public: true,
},
{
name: "InterestGroupsInSharedStorageWorklet",
public: true,
status: "stable",
},
{
name: "InteroperablePrivateAttribution",
status: "experimental",
},
{
// If enabled, IntersectionObserverScrollMargin will be parsed.
name: "IntersectionObserverScrollMargin",
status: "stable",
},
{
name: "InvertedColors",
status: "experimental",
},
{
name: "InvisibleSVGAnimationThrottling",
status: "stable",
},
{
name: "IsolatedSVGDocumentOptimization",
status: "stable",
},
{
name: "JavaScriptCompileHintsPerFunctionMagicRuntime",
status: "experimental",
origin_trial_feature_name: "JavaScriptCompileHintsPerFunctionMagic",
},
{
name: "JavaScriptSourcePhaseImports",
},
{
name: "KeyboardAccessibleTooltip",
status: "experimental",
base_feature: "none",
},
{
// TODO(crbug.com/40113891): This feature allows scrollers to be
// keyboard focusable by default. This was enabled by default in M130,
// but this flag should not be removed until the origin trial and
// enterprise policies have both expired. See the
// KeyboardFocusableScrollersOptOut flag.
name: "KeyboardFocusableScrollers",
status: "stable",
},
{
// TODO(crbug.com/40113891): Disables KeyboardFocusableScrollers.
// This feature only takes effect if KeyboardFocusableScrollers is
// enabled. It will overwrite the behavior and not allow scrollers to be
// keyboard focusable by default.
name: "KeyboardFocusableScrollersOptOut",
origin_trial_feature_name: "KeyboardFocusableScrollersOptOut",
// This is not a feature that is being deprecated, but the origin trial
// *is* being used to allow sites to opt back out of the feature launch.
// So we're marking it as a "deprecation" trial.
origin_trial_type: "deprecation",
origin_trial_allows_insecure: true,
origin_trial_allows_third_party: true,
},
{
name: "LangAttributeAwareFormControlUI",
settable_from_internals: true,
},
{
name: "LanguageDetectionAPI",
status: {
"Win": "stable",
"Mac": "stable",
"Linux": "stable",
"ChromeOS": "stable",
"default": "",
},
origin_trial_feature_name: "LanguageDetectionAPI",
origin_trial_allows_third_party: true,
base_feature_status: "enabled",
copied_from_base_feature_if: "overridden",
},
{
name: "LanguageDetectionAPIForWorkers",
public: true,
},
{
name: "LayoutAddChildBeforeDescendantFix",
status: "stable",
},
{
// LayoutBox::PhysicalLocation() to return a truly visual offset - the
// offset of its first fragment relatively to the first fragment of its
// containing block, also when block-fragmented (used to be in the
// "stitched" flow-thread coordinate space).
name: "LayoutBoxVisualLocation",
status: "stable",
},
{
name: "LayoutFlexNewRowAlgorithm",
status: "stable",
},
{
name: "LayoutFlexNewStretch",
status: "stable",
},
{
name: "LayoutIgnoreMarginsForSticky",
},
{
name: "LayoutIsAnonymousBlockFix",
status: "stable",
},
{
name: "LayoutMinSizeAutoIndefinite",
status: "stable",
},
{
name: "LayoutNewReplacedLogic",
status: "stable",
},
{
name: "LayoutNGShapeCache",
status: "stable",
base_feature: "LayoutNGShapeCache",
},
{
name: "LayoutReplacedReturnExplicitDefaultNaturalSize",
},
{
name: "LayoutStretch",
status: "stable",
},
{
name: "LayoutStretchCacheFix",
status: "stable",
},
{
name: "LazyInitializeMediaControls",
base_feature: "none",
public: true,
// This is enabled by features::kLazyInitializeMediaControls.
},
{
// If enabled, the lazy load image observer will use a scroll margin in
// its init dictionary instead of a root margin.
name: "LazyLoadScrollMargin",
public: true,
status: "stable",
},
{
// If enabled, the lazy load iframe observer will use a scroll margin in
// its init dictionary instead of a root margin.
name: "LazyLoadScrollMarginIframe",
public: true,
status: "stable",
},
{
name: "LimitThirdPartyCookies",
origin_trial_feature_name: "LimitThirdPartyCookies",
status: "experimental",
base_feature: "none",
},
{
name: "LineBreakEarlyReturn",
status: "stable",
},
{
name: "ListItemWithCounterSetNotSetExplicitValue",
status: "stable",
},
{
name: "ListOwnerMustHaveCSSBox",
status: "stable",
},
{
name: "LocalNetworkAccessPermissionPolicy",
base_feature: "none",
// No status because this blink runtime feature doesn't work by itself.
// It's controlled by network::features::kLocalNetworkAccessChecks which
// needs to be enabled to make the whole feature work (see
// crbug.com/394009026).
},
{
name: "LockedMode",
status: "test",
// Enabled by features::kLockedMode.
public: true,
},
{
// Enable sourceCharPosition for the invoke-type resolve-promise
// https://issues.chromium.org/issues/381529126
name: "LongAnimationFrameSourceCharPosition",
status: "experimental",
},
{
// Enable retrieving sourceLine and sourceColumn in LoAF implementation.
// https://issues.chromium.org/issues/391417815
name: "LongAnimationFrameSourceLineColumn",
status: "test",
implied_by: ["LongAnimationFrameSourceLineColumnInterface"],
},
{
// Add sourceLine and sourceColumn to PerformanceScriptTiming
// https://issues.chromium.org/issues/391417815
name: "LongAnimationFrameSourceLineColumnInterface",
status: "test",
},
{
// Long press on a link selects the link text instead of bringing up
// context menu. Enabled only on Android AuthView.
name: "LongPressLinkSelectText",
},
{
// Use LongAnimationFrameMonitor to emit longtask entries
name: "LongTaskFromLongAnimationFrame",
status: "test",
},
{
name: "MacCharacterFallbackCache",
status: "stable",
},
{
name: "MacDisableCtrlHomeEnd",
status: "stable",
},
{
name: "MachineLearningNeuralNetwork",
// Enabled by webnn::mojom::features::kWebMachineLearningNeuralNetwork.
base_feature: "none",
},
{
name: "ManagedConfiguration",
status: "stable",
},
{
name:"MeasureMemory",
status:"stable",
},
{
name: "MediaCapabilitiesEncodingInfo",
status: "experimental",
},
{
name: "MediaCapabilitiesSpatialAudio",
status: "test",
},
{
name: "MediaCapture",
status: {"Android": "stable"},
},
{
name: "MediaCaptureBackgroundBlur",
origin_trial_feature_name: "MediaCaptureBackgroundBlur",
status: "experimental",
implied_by: ["MediaCaptureCameraControls"],
base_feature: "none",
},
{
name: "MediaCaptureCameraControls",
status: "experimental",
},
{
name: "MediaCaptureConfigurationChange",
origin_trial_feature_name: "MediaCaptureBackgroundBlur",
status: "experimental",
implied_by: ["MediaCaptureBackgroundBlur"],
base_feature: "none",
},
{
name: "MediaCaptureVoiceIsolation",
status: "experimental",
},
// Set to reflect the MediaCastOverlayButton feature.
{
name: "MediaCastOverlayButton",
base_feature: "none",
public: true,
},
{
name: "MediaControlsExpandGesture",
base_feature: "none",
public: true,
},
{
name: "MediaControlsOverlayPlayButton",
public: true,
settable_from_internals: true,
status: {"Android": "stable"},
base_feature: "none",
},
{
name: "MediaElementVolumeGreaterThanOne",
},
// Set to reflect the kMediaEngagementBypassAutoplayPolicies feature.
{
name: "MediaEngagementBypassAutoplayPolicies",
base_feature: "none",
public: true,
},
{
name: "MediaLatencyHint",
status: "test",
},
{
name: "MediaPlaybackWhileNotVisiblePermissionPolicy",
status: "test",
origin_trial_feature_name: "MediaPlaybackWhileNotVisiblePermissionPolicy",
},
{
name: "MediaPreviewsOptOut",
base_feature: "none",
origin_trial_feature_name: "MediaPreviewsOptOutPersistent",
origin_trial_allows_third_party: true,
},
{
name: "MediaQueryNavigationControls",
},
{
name: "MediaSession",
public: true,
status: "stable",
base_feature: "none",
},
{
name: "MediaSessionChapterInformation",
status: "stable",
},
{
name: "MediaSessionEnterPictureInPicture",
public: true,
status: "stable",
},
{
name: "MediaSourceExperimental",
status: "experimental",
},
{
name: "MediaSourceExtensionsForWebCodecs",
status: "experimental",
base_feature: "none",
origin_trial_feature_name: "MediaSourceExtensionsForWebCodecs",
},
{
name: "MediaSourceNewAbortAndDuration",
status: "stable",
},
{
name: "MediaStreamTrackTransfer",
status: "test",
base_feature: "none",
},
{
name: "MediaStreamTrackWebSpeech",
status: {
"Linux": "stable",
"Mac": "stable",
"Win": "stable",
"default": "experimental",
},
},
{
name: "MenuElements",
status: "test",
},
{
name: "MessagePortCloseEvent",
status: "test",
},
// This is a killswitch for <meta http-equiv="refresh"> no
// longer accepting fractions, landed around M125.
// It can be removed in M127 if there are no problems.
{
name: "MetaRefreshNoFractional",
status: "stable",
},
// This is enabled by default on Windows only. The only part that's
// "experimental" is the support on other platforms.
{
name: "MiddleClickAutoscroll",
status: "test",
},
// Killswitch for crbug.com/40062462 fix.
{
name: "MixedContentAutoupgradesUseIsMixedContentRestrictedInFrame",
status: "stable",
},
{
name: "MobileLayoutTheme",
},
{
name: "ModifyParagraphCrossEditingoundary",
status: "stable",
},
{
name: "MojoJS",
status: "test",
is_protected_feature: true,
},
// MojoJSTest is used exclusively in testing environments, whereas MojoJS
// may also be used elsewhere.
{
name: "MojoJSTest",
status: "test",
base_feature: "none",
is_protected_feature: true,
},
// Move the selection to the last position in the list item. See
// https://crbug.com/331841851
{
name: "MoveEndingSelectionToListChild",
status: "stable",
},
{
name: "MoveToParagraphStartOrEndSkipsNonEditable",
status: "stable",
},
{
name: "MulticolColumnWrapping",
status: "experimental",
},
{
name: "MultipleImportMaps",
status: "stable",
},
{
name: "MultiSelectDeselectWhenOnlyOption",
status: "test",
},
{
name: "NavigateEventCanTransition",
},
{
name: "NavigateEventCommitBehavior",
status: "experimental",
},
{
name: "NavigateEventPopstateLimitations",
status: "stable",
},
{
name: "NavigateEventSourceElement",
status: "stable",
},
{
name: "NavigationId",
status: "experimental",
origin_trial_feature_name: "SoftNavigationHeuristics",
implied_by: ["SoftNavigationHeuristics"],
},
{
name: "NavigatorContentUtils",
// Android does not yet support NavigatorContentUtils.
status: {"Android": "", "default": "stable"},
},
{
name: "NestedViewTransition",
status: "experimental",
},
{
name: "NetInfoConstantType",
},
{
name: "NetInfoDownlinkMax",
public: true,
// Only Android, ChromeOS support NetInfo downlinkMax, type and ontypechange now
status: {
"Android": "stable",
"ChromeOS": "stable",
"default": "experimental",
},
base_feature: "none",
},
{
// This is a killswitch for the behavior of Element::GetFocusableArea
// on delegatesFocus shadow hosts. This flag can be removed in M127 if
// things are stable.
name: "NewGetFocusableAreaBehavior",
status: "stable",
},
{
// This turns off all font antialiasing for tests unless it is
// explicitly required and enabled using the
// "--enable-font-antialiasing" flag like in the case of
// "virtual/text-antialias/" virtual test suite.
// crbug.com/339041663
name: "NoFontAntialiasing",
status: "test",
},
{
name: "NoIdleEncodingForWebTests",
status: "test",
},
// Doesn't increase the end offset on getting the range for a new line
// character. See https://crbug.com/326888905
{
name: "NoIncreasingEndOffsetOnSplittingTextNodes",
status: "stable",
},
// Doesn't insert empty blockquotes on outdenting a blockquote. See
// https://crbug.com/323960902
{
name: "NonEmptyBlockquotesOnOutdenting",
status: "stable",
},
{
// TODO(crbug.com/1426629): This feature enables the deprecated value
// slider-vertical. Disable this feature to stop parsing or allowing these
// values.
// https://drafts.csswg.org/css-ui-4/#appearance-switching
name: "NonStandardAppearanceValueSliderVertical",
status: "stable",
},
{
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"},
base_feature: "none",
},
{
name: "Notifications",
public: true,
status: "stable",
base_feature: "none",
},
{
name: "NotificationTriggers",
origin_trial_feature_name: "NotificationTriggers",
status: "experimental",
base_feature: "none",
},
{
name: "NumberInputFullWidthChars",
status: "stable",
},
{
name: "ObservableAPI",
status: "stable",
public: true,
},
{
name: "OffMainThreadCSSPaint",
status: "stable",
},
{
name: "OffscreenCanvasCommit",
status: "experimental",
},
{
name: "OffscreenCanvasGetContextAttributes",
status: "stable",
},
{
name: "OmitBlurEventOnElementRemoval",
status: "test"
},
{
name: "OnDeviceWebSpeechAvailable",
status: "stable",
},
{
// This flag makes the <option> element's label attribute render the
// contents of the label attribute even if it is only whitespace in order
// to match the spec and firefox. It also stops stripping/simplifying
// whitespace when using the label attribute for rendering.
// https://github.com/whatwg/html/issues/10955
name: "OptionLabelAttributeWhitespace",
status: "stable",
},
{
name: "OrientationEvent",
status: {"Android": "stable"},
},
{
name: "OriginIsolationHeader",
status: "stable",
base_feature: "none",
},
{
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",
base_feature: "none",
origin_trial_feature_name: "Frobulate",
public: 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: "OriginTrialsSampleAPIBrowserReadWrite",
base_feature: "none",
origin_trial_feature_name: "FrobulateBrowserReadWrite",
browser_process_read_write_access: 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.
// TODO(yashard): Add tests for this feature.
{
name: "OriginTrialsSampleAPIDependent",
depends_on: ["OriginTrialsSampleAPI"],
base_feature: "none",
},
// 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",
base_feature: "none",
origin_trial_feature_name: "FrobulateDeprecation",
origin_trial_type: "deprecation",
origin_trial_allows_insecure: true,
public: 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",
base_feature: "none",
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",
base_feature: "none",
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",
base_feature: "none",
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",
base_feature: "none",
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",
base_feature: "none",
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",
base_feature: "none",
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",
base_feature: "none",
origin_trial_feature_name: "FrobulatePersistent",
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: "OriginTrialsSampleAPIPersistentInvalidOS",
base_feature: "none",
origin_trial_feature_name: "FrobulatePersistentInvalidOS",
origin_trial_allows_third_party: true,
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: "OriginTrialsSampleAPIPersistentThirdPartyDeprecationFeature",
base_feature: "none",
origin_trial_feature_name: "FrobulatePersistentThirdPartyDeprecation",
origin_trial_allows_third_party: true,
origin_trial_type: "deprecation",
},
// 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",
base_feature: "none",
origin_trial_feature_name: "FrobulateThirdParty",
origin_trial_allows_third_party: true,
},
{
name: "OverscrollCustomization",
status: "experimental",
},
{
name: "PagePopup",
// Android does not have support for PagePopup
status: {"Android": "", "iOS": "", "default": "stable"},
},
{
name: "PageRevealEvent",
status: "stable",
},
{
name: "PageSwapEvent",
status: "stable",
},
{
name: "PaintHighlightsForFirstLetter",
status: "stable",
},
{
name: "PaintHoldingForIframes",
status: "stable",
},
{
name: "PaintHoldingForLocalIframes",
status: "stable",
},
// Kill switch.
{
name: "PaintLayerUpdateOptimizations",
status: "stable",
},
{
name: "PaintTimingMixin",
status: "experimental",
},
{
name: "PaintUnderInvalidationChecking",
settable_from_internals: true,
},
{
// PARAKEET ad serving runtime flag/JS API.
name: "Parakeet",
origin_trial_feature_name: "Parakeet",
},
{
// Uses base::Time::FromUTCString() in ParseDate() instead of code from
// ParseDateFromNullTerminatedCharacters() from date_math.cc.
name: "ParseDateUsesBaseTimeFromUtcString",
status: "stable",
},
{
name: "PartialCompletionNotAllowedInMoveParagraphs",
status: "stable",
},
{
name: "PartitionedPopins",
status: "experimental",
},
{
name: "PartitionVisitedLinkDatabaseWithSelfLinks",
status: {"iOS": "", "default": "stable"},
},
// This is to add an option to enable the Reveal button on password inputs while waiting ::reveal gets standardized.
{
name: "PasswordReveal",
},
{
name: "PaymentApp",
public: true,
status: "experimental",
base_feature: "none",
},
{
// https://chromestatus.com/feature/5198846820352000
name: "PaymentLinkDetection",
status: "experimental",
},
{
name: "PaymentMethodChangeEvent",
depends_on: ["PaymentRequest"],
status: "stable",
},
// PaymentRequest is enabled by default on Android
{
name: "PaymentRequest",
public: true,
status: "experimental",
base_feature: "none",
},
{
name: "PerformanceManagerInstrumentation",
base_feature: "none",
public: true,
},
{
// Enables performance.mark('mark_feature_usage'): crbug.com/1517170
name: "PerformanceMarkFeatureUsage",
status: "experimental"
},
{
name: "PerformanceNavigateSystemEntropy",
},
{
name: "PerformanceNavigationTimingConfidence",
origin_trial_feature_name: "PerformanceNavigationTimingConfidence",
status: "experimental",
},
{
name: "PeriodicBackgroundSync",
public: true,
status: "stable",
base_feature: "none",
},
{
name: "PerMethodCanMakePaymentQuota",
origin_trial_feature_name: "PerMethodCanMakePaymentQuota",
status: "experimental",
base_feature: "none",
},
{
// Tracking bug for the implementation: https://crbug.com/1462930
name: "PermissionElement",
origin_trial_feature_name: "PermissionElement",
origin_trial_os: ["win", "mac", "linux", "fuchsia", "chromeos", "android"],
status: "experimental",
public: true,
base_feature_status: "enabled",
copied_from_base_feature_if: "overridden",
},
{
// Tracking bug for the implementation: crbug.com/352249547
// This flag adds having the option to show an icon in the Permission
// element, if developers want to.
// The flag will enable us to land the feature over multiple CLs, and will
// be enabled after the feature has been fully implemented.
name: "PermissionElementIcon",
status: "stable",
depends_on: ["PermissionElement"],
},
{
name: "Permissions",
public: true,
status: "stable",
base_feature: "none",
},
{
name: "PermissionsRequestRevoke",
status: "experimental",
},
{
// crbug.com/398955086
name: "PlaceholderVisibility",
status: "stable",
},
{
// crbug.com/389726691.
name: "PlainTextPainter",
status: "stable",
},
// This is a reverse OT used for a phased deprecation.
// https://crbug.com/918374
{
name: "PNaCl",
base_feature: "none",
origin_trial_feature_name: "PNaCl",
public: true,
},
{
name: "PointerEventDeviceId",
status: "stable",
},
// Coalesced/predicted event targets in untrusted events.
// See https://crbug.com/353538500
{
name: "PointerEventTargetsInEventLists",
status: "stable",
},
{
// Flag for enabling the pointer lock API on Android
name: "PointerLockOnAndroid",
},
{
name: "PositionOutsideTabSpanCheckSiblingNode",
status: "stable",
},
{
name: "PotentialPermissionsPolicyReporting",
status: "stable",
},
{
name: "PreciseMemoryInfo",
base_feature: "none",
public: true,
},
// Adds a web setting to disable CSS ScrollbarColor, ScrollbarWidth, and
// legacy ::-webkit-scrollbar* pseudo-element styling.
{
name: "PreferDefaultScrollbarStyles",
},
// 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: "PreferredAudioOutputDevices",
base_feature_status: "enabled",
copied_from_base_feature_if: "overridden",
origin_trial_feature_name: "PreferredAudioOutputDevices",
origin_trial_allows_third_party: true,
status: "experimental",
public: true,
},
{
name: "PrefersReducedData",
status: "experimental",
},
{
// Used to allow preloading data: URLs with link rel=preload.
// https://crbug.com/348442535
name: "PreloadLinkRelDataUrls",
status: "experimental",
},
{
// This flag changes the UA stylesheet to make some elements use
// margin-block instead of margin-top/margin-bottom in order to match the
// HTML spec and firefox. Shipping in M137.
// https://issues.chromium.org/issues/407315792
name: "PreLogicalMargin",
status: "stable",
},
{
// Used to allow chrome://flags to turn off prerendering. (Without using
// the user-facing preloading settings page to turn off other
// preloading.) See https://crbug.com/1494471.
//
// It also has some feature params defined throughout the codebase.
name: "Prerender2",
status: "stable",
},
{
name: "Presentation",
public: true,
status: "stable",
base_feature: "none",
},
{
// When enabled, prevents undo to be applied if the enclosing block
// is not editable
name: "PreventUndoIfNotEditable",
status: "stable"
},
{
// Controls the aggregate error reporting feature, which allows for
// contributions to be made conditional on error conditions that can be
// hit when using the API. This also defers contribution merging and
// modifies the budgeting flow.
// https://chromestatus.com/feature/5194896325214208
name: "PrivateAggregationApiErrorReporting",
status: "experimental",
},
{
// Controls whether Private Aggregation's "maxContributions" field is
// enabled for Shared Storage callers. If disabled, the field will be
// ignored. https://chromestatus.com/feature/5189366316793856
name: "PrivateAggregationApiMaxContributions",
status: "stable",
},
{
name: "PrivateNetworkAccessNonSecureContextsAllowed",
origin_trial_feature_name: "PrivateNetworkAccessNonSecureContextsAllowed",
origin_trial_type: "deprecation",
origin_trial_allows_insecure: true,
status: "experimental",
base_feature: "none",
},
{
name: "PrivateNetworkAccessNullIpAddress",
status: "experimental",
base_feature: "none",
},
{
name: "PrivateNetworkAccessPermissionPrompt",
origin_trial_feature_name: "PrivateNetworkAccessPermissionPrompt",
origin_trial_os: ["win", "mac", "linux", "fuchsia", "chromeos"],
status: "stable",
public: true,
base_feature: "none",
},
{
name: "PrivateStateTokens",
status: "stable",
base_feature: "none",
public: true,
},
{
// 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: "PrivateStateTokensAlwaysAllowIssuance",
public: true,
status: "test",
base_feature: "none",
},
{
// Propagate overscroll-behavior from the root element rather than the
// body element. crbug.com/41453796
name: "PropagateOverscrollBehaviorFromRoot",
status: "experimental"
},
// Protected memory varariant of the sample API for testing integration with
// the Origin Trials Framework. This is used only in unit tests.
// Do not change this flag to stable, as it exists
// solely to generate code used by the sample API implementation.
{
name: "ProtectedOriginTrialsSampleAPI",
base_feature: "none",
origin_trial_feature_name: "Frobulate",
is_protected_feature: "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.
// TODO(yashard): Add tests for this feature.
{
name: "ProtectedOriginTrialsSampleAPIDependent",
depends_on: ["ProtectedOriginTrialsSampleAPI"],
base_feature: "none",
is_protected_feature: "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: "ProtectedOriginTrialsSampleAPIImplied",
base_feature: "none",
origin_trial_feature_name: "FrobulateImplied",
implied_by: ["ProtectedOriginTrialsSampleAPI"],
is_protected_feature: "true",
},
{
// Allowing pseudo-elements to have focus.
name: "PseudoElementsFocusable",
status: "stable",
},
{
name: "PushMessageDataBytes",
depends_on: ["PushMessaging"],
status: "stable",
base_feature: "none",
},
{
name: "PushMessaging",
public: true,
status: "stable",
base_feature: "none",
},
{
name: "PushMessagingSubscriptionChange",
public: true,
status: "experimental",
base_feature: "none",
},
{
// ChromeStatus: https://chromestatus.com/feature/6194847180128256
name: "QuotaExceededErrorUpdate",
status: "stable",
},
{
// crbug.com/323953913
// Fix looking for next radio button in the form's scope. This was added
// in M135 and can be removed after M138.
name: "RadioInputNextButtonInScope",
status: "stable",
},
{
name: "RasterInducingScroll",
status: {
"Linux": "stable",
"Win": "stable",
"default": "test",
}
},
{
name: "ReadableStreamAsyncIterable",
status: "stable",
},
{
// Enables support for a 'min' option in ReadableStream BYOBReader.read(),
// allowing callers to specify the minimum number of bytes to be read into
// the buffer before resolving the read request.
// https://chromestatus.com/feature/6396991665602560
name: "ReadableStreamBYOBReaderReadMinOption",
status: "experimental",
},
// If enabled, both Accept-Language HTTP header and JavaScript getter will
// be reduced.
{
name: "ReduceAcceptLanguage",
base_feature: "none",
},
{
// If enabled, the screen sizes reported through the `Screen` interface
// will be limited to the size of the viewport unless Window Management
// permission has been granted.
name: "ReduceScreenSize",
settable_from_internals: true,
},
{
// If enabled, the deviceModel will be reduced to "K" and the
// androidVersion will be reduced to a static "10" string in android
// User-Agent string.
name: "ReduceUserAgentAndroidVersionDeviceModel",
depends_on: ["ReduceUserAgentMinorVersion"],
status: {"Android": "stable"},
},
// If enabled, the platform version in User-Agent Data will be removed.
// This feature is limited to Linux only.
{
name: "ReduceUserAgentDataLinuxPlatformVersion",
status: {"Linux": "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",
},
{
// If enabled, the platform and oscpu of the User-Agent string will be
// reduced.
name: "ReduceUserAgentPlatformOsCpu",
depends_on: ["ReduceUserAgentMinorVersion"],
status: {"Android": "", "default": "stable"},
},
{
// Killswitch M136.
name: "ReferenceFilterOutputBounds",
status: "stable",
},
{
name: "RegionCapture",
status: {"Android": "", "default": "stable"},
},
{
name: "RelatedWebsitePartitionAPI",
base_feature: "none",
// No status because this blink runtime feature doesn't work by itself.
// It's controlled by the corresponding Chromium feature,
// net::features::kRelatedWebsitePartitionAPI, which needs to be
// enabled to make the whole feature work.
},
{
// This flag allows more characters to be accepted as valid names in the
// createElement and attribute related DOM APIs.
// https://github.com/whatwg/dom/pull/1079
// http://crbug.com/40228234
// https://chromestatus.com/feature/6278918763708416
name: "RelaxDOMValidNames",
status: "experimental",
},
{
name: "RelOpenerBcgDependencyHint",
status: "experimental",
},
{
name: "RemotePlayback",
public: true,
status: "stable",
base_feature: "none",
},
{
name: "RemotePlaybackBackend",
settable_from_internals: true,
status: {
"Android": "stable",
"Win": "stable",
"Mac": "stable",
"Linux": "stable",
"default": "experimental"},
},
{
// This feature acts as a kill switch for ISO-2022-JP auto-detection.
// This will be shipped in M139, and it can be removed in M141.
// See https://chromestatus.com/feature/6576566521561088.
name: "RemoveCharsetAutoDetectionForISO2022JP",
status: "stable",
},
{
name: "RemoveDanglingMarkupInTarget",
status: "stable",
},
{
name: "RemoveDataUrlInSvgUse",
status: "stable",
},
{
// This feature was shipped in M138, so this flag can be removed in M140.
// See https://issues.chromium.org/issues/415911524.
name: "RemoveNodeDetermineNodeFullySelected",
status: "stable",
},
{
// See https://issues.chromium.org/issues/41474791
name: "RemoveSelectionCanonicalizationInMoveParagraph",
status: "stable",
},
{
// See https://issues.chromium.org/issues/41311101
name: "RemoveVisibleSelectionInDOMSelection",
status: "test",
},
{
// See https://github.com/whatwg/html/issues/11070
// ChromeStatus: https://chromestatus.com/feature/5207202081800192
name: "RenderBlockingFullFrameRate",
copied_from_base_feature_if: "overridden",
origin_trial_feature_name: "RenderBlockingFullFrameRate",
status: "test",
},
{
// See https://github.com/whatwg/html/issues/10034
name: "RenderBlockingInlineModuleScript",
status: "stable",
},
{
name: "RenderBlockingStatus",
status: "stable",
},
{
// The renderpriority attribute feature.
// https://github.com/WICG/display-locking/blob/main/explainers/update-rendering.md
name: "RenderPriorityAttribute",
},
{
// Allocates a render surface for 2D scale transforms, to prevent
// composited pixel alignment issues. See
// https://crbug.com/40084005
name: "RenderSurfaceFor2DScaleTransform",
status: "stable",
},
{
name: "ReportEventTimingAtVisibilityChange",
status: "stable",
},
{
name: "ReportFirstFrameTimeAsRenderTime",
status: "test",
},
{
name: "ResolveVarStylesOnCopy",
status: "stable",
},
{
name: "ResourceTimingContentEncoding",
status: "experimental",
},
{
name: "ResourceTimingContentType",
status: "experimental",
},
{
name: "ResourceTimingFinalResponseHeadersStart",
status: "stable",
},
{
name: "ResourceTimingInitiator",
status: "experimental",
},
{
name: "ResourceTimingUseCORSForBodySizes",
status: "test",
},
{
name: "ResponsiveIframes",
status: "test",
},
{
name: "RestrictGamepadAccess",
public: true,
status: "experimental",
base_feature: "none",
},
{
name: "RestrictGetBoundingClientRectForHiddenSVGElements",
status: "stable",
},
{
name: "RestrictOwnAudio",
status: "experimental",
},
{
name: "RestrictTabFocusForHiddenSVGElements",
status: "stable",
},
// Killswitch for retargeting drag events to UA shadow hosts.
// Added in M139, can be removed in M141.
{
name: "RetargetDragEvents",
status: "stable",
},
{
// Kill-switch for crbug.com/414129878.
// Added in M139, and it can be removed in M141.
name: "RevealSelectionInIframe",
status: "stable",
},
{
// New behavior when line breaker rewinds floats. crbug.com/1499290
name: "RewindFloats",
status: "stable",
},
{
// If enabled, makes the root scrollbars' foreground elements follow the
// browser
name: "RootScrollbarFollowsBrowserTheme",
status: {"Linux": "test", "Win": "test"},
},
{
name: "RoundScrollOffsets",
status: "stable",
},
{
name: "RtcAudioJitterBufferMaxPackets",
origin_trial_feature_name: "RtcAudioJitterBufferMaxPackets",
status: "experimental",
base_feature: "none",
},
{
name: "RTCDataChannelPriority",
status: "experimental",
},
{
name: "RTCEncodedFrameAudioLevel",
status: "stable",
},
{
name: "RTCEncodedFrameSetMetadata",
status: "experimental",
origin_trial_feature_name: "RTCEncodedFrameSetMetadata",
},
{
name: "RTCEncodedFrameTimestamps",
status: "stable",
},
{
name: "RTCEncodedVideoFrameAdditionalMetadata",
status: "experimental",
},
// Enables the use of jitterBufferTarget attribute in WebRTC.
// Spec: https://w3c.github.io/webrtc-extensions/#dom-rtcrtpreceiver-jitterbuffertarget
{
name: "RTCJitterBufferTarget",
status: "stable",
},
// Legacy callback-based getStats() has limited availability unless this
// Deprecation Trial is enabled.
// TODO(https://crbug.com/822696): Remove when origin trial ends.
{
name: "RTCLegacyCallbackBasedGetStats",
origin_trial_feature_name: "RTCLegacyCallbackBasedGetStats",
status: "experimental",
base_feature: "none",
},
// Enables the use of |RTCRtpEncodingParameters.codec|
{
name: "RTCRtpEncodingParametersCodec",
status: "stable",
},
{
name: "RTCRtpScaleResolutionDownTo",
status: "stable",
},
{
name: "RTCRtpScriptTransform",
status: "experimental",
},
{
name: "RTCRtpTransport",
status: "test",
},
{
name: "RTCStatsRelativePacketArrivalDelay",
origin_trial_feature_name: "RTCStatsRelativePacketArrivalDelay",
status: "experimental",
base_feature: "none",
},
// Enables the use of SVC scalability mode in WebRTC.
// Spec: https://w3c.github.io/webrtc-svc/
{
name: "RTCSvcScalabilityMode",
status: "stable",
},
{
// crbug.com/394983447
name: "RubyJustificationFix",
status: "stable",
},
{
// crbug.com/324111880
name: "RubyShortHeuristics",
status: "stable",
},
// This is a finch killswitch for a bug fix to the behavior of
// node.setTextContent(). The fix landed in M135, and this flag can be
// removed in M137 pending no issues.
{
name: "SameValueTextContentFiresMutationObservers",
status: "stable",
},
{
// Spec: https://wicg.github.io/sanitizer-api/
// Tracking bug: crbug.com/356601280
name: "SanitizerAPI",
status: "test",
},
{
name: "SchedulerYieldDisallowCrossFrameInheritance",
status: "stable",
},
{
// https://wicg.github.io/webcomponents/proposals/Scoped-Custom-Element-Registries
// https://github.com/whatwg/html/issues/10854
// Spec PRs:
// https://github.com/whatwg/html/pull/10869
// https://github.com/whatwg/dom/pull/1341
name: "ScopedCustomElementRegistry",
},
{
// https://github.com/WICG/view-transitions/blob/main/scoped-transitions.md
name: "ScopedViewTransitions",
status: "experimental"
},
// WebSpeech API with both speech recognition and synthesis functionality
// is not fully enabled on all platforms.
{
name: "ScriptedSpeechRecognition",
public: true,
status: "stable",
base_feature: "none",
},
{
name: "ScriptedSpeechSynthesis",
public: true,
status: "stable",
base_feature: "none",
},
{
name: "ScriptRunIteratorCombiningMarks",
status: "stable",
},
// Killswitch added in M134, as two flags
// ScrollableAreasWithScrollNodeOptimization and UnifiedScrollableArea
// before M137. We are keeping this flag for new optimizations and as a
// finch holdback experiment feature.
{
name: "ScrollableAreaOptimization",
status: "stable",
},
{
name: "ScrollAnchorPriorityCandidateSubtree",
status: "stable",
},
{
name: "ScrollbarColor",
status: "stable",
},
{
name: "ScrollbarGutterFixedPosBugfix",
status: "stable",
},
{
name: "ScrollbarWidth",
status: "stable",
},
// Killswitch added in M134, changed in M135.
{
name: "ScrollCullRectFromContainerRect",
status: "stable",
},
{
name: "ScrollEndEvents",
status: "stable",
},
{
name: "ScrollIntoViewNearest",
status: "experimental"
},
// TODO(355460994): Remove after M129.
// scroll into root frame didn't take scrollbar and borders into account,
// while this is fixed, to avoid any web compat issues we have this killswitch.
{
name: "ScrollIntoViewRootFrameViewportBugFix",
status: "stable",
},
// TODO(crbug.com/401443093): Remove after M141.
{
name: "ScrollIntoViewSelfScrollFix",
status: "stable"
},
{
// Separate flag for crbug.com/1426506 (getCurrentTime API change) which
// is expected to land after the initial launch of ScrollTimeline.
name: "ScrollTimelineCurrentTime",
status: "experimental"
},
{
// https://github.com/w3c/csswg-drafts/issues/9367#issuecomment-1854280461
name: "ScrollTimelineNamedRangeScroll",
status: "test",
},
// Implements documentElement.scrollTop/Left and bodyElement.scrollTop/Left
// as per the spec, matching other Web engines.
//
// This flag can't be removed until the Android min SDK version is 28
// (i.e., 'P') or later. See AWSettings.setScrollTopLeftInteropEnabled
// and its caller.
{
name: "ScrollTopLeftInterop",
status: "stable",
},
// Allows CSS styling of browser search results.
// https://issues.chromium.org/issues/339298411
// https://chromestatus.com/feature/5195073796177920
{
name: "SearchTextHighlightPseudo",
status: "experimental",
},
// 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",
base_feature: "none",
},
{
name: "SecurePaymentConfirmationAvailabilityAPI",
status: "stable",
},
{
name: "SecurePaymentConfirmationBrowserBoundKeys",
status: "stable",
},
{
name: "SecurePaymentConfirmationDebug",
base_feature: "none",
public: true,
},
{
name: "SecurePaymentConfirmationNetworkAndIssuerIcons",
status: "experimental",
},
{
name: "SecurePaymentConfirmationOptOut",
origin_trial_feature_name: "SecurePaymentConfirmationOptOut",
origin_trial_allows_third_party: true,
status: "stable",
base_feature: "none",
},
{
// Implements new UX for SPC including new output states, payment
// instrument details and payment entities logos.
name: "SecurePaymentConfirmationUxRefresh",
status: "test",
},
{
// Implements improved accessibility mappings for having an <input>
// inside of a <select> by keeping the child <input> in the a11y tree at
// the same place that its at in the DOM tree, but automatically setting
// up a controls relationship to the menu list popup.
name: "SelectAccessibilityNestedInput",
status: "test",
depends_on: ["CustomizableSelect"],
},
{
// Implements improved accessibility mappings for having an <input>
// inside of a <select> by reparenting the child <input> in the
// accessibility tree to be a sibling of the menu list popup.
name: "SelectAccessibilityReparentInput",
status: "test",
depends_on: ["CustomizableSelect"],
},
{
// SelectAudioOutput API
// https://chromestatus.com/feature/5164535504437248
name: "SelectAudioOutput",
status: {
"Android": "",
"default": "test",
},
},
{
// The selectedcontentelement attribute is for connecting select elements
// to arbitrary <selectedcontent> elements.
// https://github.com/openui/open-ui/issues/1063
name: "SelectedcontentelementAttribute",
status: "test",
depends_on: ["CustomizableSelect"],
},
{
// Implement Selection API across shadow DOM: direction and
// getComposedRanges().
// https://w3c.github.io/selection-api/#dom-selection-getcomposedranges
// https://w3c.github.io/selection-api/#dom-selection-direction
// This should ship in M137, and it can be removed after M139.
name: "SelectionAcrossShadowDOM",
status: "stable",
},
{
// See https://crbug.com/417823377
name: "SelectionDeleteFromDocumentUaShadowFix",
status: "stable",
},
{
// See https://crbug.com/395544401
name: "SelectionUpdateToInitialSelectionInListify",
status: "stable",
},
{
// Killswitch M136.
name: "SelectionVisibilityAfterPaint",
status: "stable",
},
{
// This flag is used to relax the rules used to slot elements into a
// select with the multiple attribute or size >1. This could be enabled
// in the case that SelectParserRelaxation causes a breaking change for
// websites which were relying on the parser throwing away tags which
// couldn't be slotted otherwise, like this:
// <select multiple>
// <ul>
// <option>hello</option>
// When the SelectParserRelaxation flag is removed, then this flag can be
// safely removed as well.
name: "SelectListBoxSlotAnything",
depends_on: ["SelectParserRelaxation"],
},
{
// If enabled, the select element will not dispatch a mouseup event when
// an option is selected using the keyboard.
// This should ship in M135, and it can be removed after M137.
// http://crbug.com/396611142
name: "SelectNoMouseUpForKeyboardSelection",
status: "stable",
},
{
// Makes the HTML parser allow most tags inside of <select> instead of
// only <option>, <optgroup>, and <hr>.
// https://github.com/whatwg/html/issues/10310
name: "SelectParserRelaxation",
status: "stable",
public: true,
},
{
// This is a feature used *only* for deprecation origin trial participants
// to opt *out* of the SelectParserRelaxation new behavior. If this
// feature is enabled, then SelectParserRelaxation will be disabled,
// regardless of the state of that flag. This deprecation trial is
// supported through M140, so this flag can be removed in M141+.
name: "SelectParserRelaxationOptOut",
origin_trial_feature_name: "SelectParserRelaxationOptOut",
origin_trial_type: "deprecation",
origin_trial_allows_third_party: true,
origin_trial_allows_insecure: true,
public: true,
},
{
name: "SendBeaconThrowForBlobWithNonSimpleType",
public: true,
status: "stable",
base_feature: "none",
},
{
name: "SensorExtraClasses",
public: true,
status: "experimental",
base_feature: "none",
},
{
name: "Serial",
status: {"Android": "test", "default": "stable"},
base_feature: "WebSerialAPI",
},
{
// Kill-switch for crbug.com/40791925.
// Added in M138, and it can be removed in M140.
name: "SerializeCdataAsTextInHTMLDocuments",
status: "stable",
},
{
name: "SerializeViewTransitionStateInSPA",
},
{
name: "SerialPortConnected",
status: {"Android": "", "default": "experimental"},
base_feature: "none",
},
{
name: "ServiceWorkerClientLifecycleState",
status: "experimental",
},
{
// Support for Service Worker APIs in Dedicated Workers.
// See https://chromestatus.com/feature/6497653025931264
// See https://issues.chromium.org/issues/40364838
name: "ServiceWorkerInDedicatedWorker",
},
{
name: "ServiceWorkerStaticRouterTimingInfo",
origin_trial_allows_third_party: true,
origin_trial_feature_name: "ServiceWorkerStaticRouterTimingInfo",
},
{
name: "SetSequentialFocusStartingPoint",
status: "experimental",
},
{
// Reference Target allows IDREF attributes to refer inside Shadow DOM.
// crbug.com/346835896
name: "ShadowRootReferenceTarget",
status: "experimental",
origin_trial_feature_name: "ShadowRootReferenceTarget"
},
{
// If enabled, Reference Target will support aria-owns.
// https://github.com/WICG/webcomponents/issues/1091
name: "ShadowRootReferenceTargetAriaOwns",
},
{
// crbug.com/329677645
name: "ShapeResultCachedPreviousSafeToBreakOffset",
status: "stable",
},
{
name: "SharedArrayBuffer",
base_feature: "none",
public: true,
},
{
name: "SharedArrayBufferUnrestrictedAccessAllowed",
base_feature: "none",
public: true,
},
{
name: "SharedAutofill",
public: true,
status: "test",
base_feature: "none",
},
{
name: "SharedStorageAPI",
base_feature: "none",
public: true,
status: "stable",
},
{
name: "SharedStorageWebLocks",
depends_on: ["SharedStorageAPI"],
status: "stable",
},
{
name: "SharedWorker",
public: true,
// Android does not yet support SharedWorker. crbug.com/154571
status: {"Android": "", "default": "stable"},
base_feature: "none",
},
{
// If enabled, SharedWorker supports extendedLifetime
// https://github.com/whatwg/html/issues/10997
name: "SharedWorkerExtendedLifetime",
status: "experimental",
origin_trial_feature_name: "SharedWorkerExtendedLifetime",
origin_trial_allows_third_party: true,
},
{
name: "SignatureBasedInlineIntegrity",
status: "experimental",
},
{
name: "SignatureBasedIntegrity",
status: "experimental",
origin_trial_feature_name: "SignatureBasedIntegrity",
origin_trial_allows_third_party: true,
},
{
name: "SkipAd",
depends_on: ["MediaSession"],
status: "stable",
},
{
// If enabled, only call ResourceLoadObserver callbacks if the DevTools
// panel is open.
name: "SkipCallbacksWhenDevToolsNotOpen",
status: "experimental",
},
{
name: "SkipLineBreakItemWhenIsCollapsed",
status: "stable",
},
{
// 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",
status: "stable",
},
// Fix for crbug.com/41393366
{
name: "SkipUnselectableContentInSerialization",
status: "stable",
},
{
name: "SmartCard",
status: {"Android": "", "default": "test"},
},
{
name: "SmartZoom",
base_feature: "none",
public: true,
status: {"Android": "test"},
},
{
name: "SmilAutoSuspendOnLag",
status: "stable",
},
{
// Used to enable the code for detecting soft navigations through task
// attribution. Set to stable as this generates an enabled-by-default
// base::Feature for a field-trial remote shutoff. Needs to be a runtime
// feature so that the Soft Navigation Heuristics Origin Trial can depend
// on it.
name: "SoftNavigationDetection",
status: "stable",
},
{
name: "SoftNavigationDetectionAdvancedPaintAttribution",
status: "experimental",
depends_on: ["SoftNavigationDetection"],
},
{
name: "SoftNavigationDetectionPrePaintBasedAttribution",
depends_on: ["SoftNavigationDetection"],
},
{
name: "SoftNavigationHeuristics",
status: "experimental",
origin_trial_allows_third_party: true,
origin_trial_feature_name: "SoftNavigationHeuristics",
},
{
// Whether spatial navigation should use cursor inheritance to exclude
// nodes where cursor is inherited. Kill-switch that can be remove once
// the change goes through a stable release.
name: "SpatNavUsesCursorInheritance",
status: "stable",
},
{
name: "SpeakerSelection",
status: "experimental",
},
// Enables spec-compliant suffix matching for JSON MIME types
// (e.g., text/html+json, image/svg+json) by allowing *+json patterns.
// https://chromestatus.com/feature/5470594816278528
{
name: "SpecCompliantJsonMimeTypes",
status: "stable",
},
{
name: "SpeculationRulesPrefetchWithSubresources",
},
{
// Enables to run prerendering for new tabs (e.g., target="_blank").
// See https://crbug.com/1350676.
name: "SpeculationRulesTargetHint",
origin_trial_feature_name: "SpeculationRulesTargetHint",
base_feature: "Prerender2InNewTab",
status: "stable",
copied_from_base_feature_if: "overridden",
},
{
name: "SplitTextNotCleanupDummySpans",
status: "stable",
},
// Kill switch for change to unify image-set and srcset selection logic.
{
name: "SrcsetSelectionMatchesImageSet",
status: "stable",
},
// 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",
base_feature: "none",
},
// Killswitch for https://crbug.com/40915318
{
name: "StandardHistoryStateEmptyUrlHandling",
status: "stable",
},
{
// See https://github.com/w3c/csswg-drafts/issues/9398
name: "StandardizedBrowserZoom",
status: "stable",
public: true,
},
{
name: "StandardizedBrowserZoomOptOut",
origin_trial_feature_name: "DisableStandardizedBrowserZoom",
origin_trial_type: "deprecation",
origin_trial_allows_insecure: true,
origin_trial_allows_third_party: true,
},
{
name: "StandardizedTimerClamping",
status: "stable",
public: true,
},
{
name: "StorageBuckets",
status: "stable",
},
{
// Gates the `durability()` method on a storage bucket and the property in
// the options struct.
name: "StorageBucketsDurability",
status: "experimental",
},
{
// Gates the `locks()` method on a storage bucket.
name: "StorageBucketsLocks",
status: "experimental",
},
{
name: "StrictMimeTypesForWorkers",
status: "experimental",
},
{
name: "StylusHandwriting",
base_feature: "none",
},
{
name: "SvgAnchorElementRelAttributes",
status: "stable",
},
{
// Feature for updating SVG presentation attribute style eagerly. This is
// a kill switch in case we encounter issues with this optimization.
name: "SvgEagerPresAttrStyleUpdate",
status: "stable",
},
{
// Enables loading of external SVG resource documents for the 'clip-path',
// 'fill', 'stroke' and 'marker-*' properties.
name: "SvgExternalResources",
status: "stable",
},
{
name: "SvgInlineRootPixelSnappingScaleAdjustment",
status: "test",
},
{
name: "SvgNoPixelSnappingScaleAdjustment",
status: "stable",
},
{
name: "SvgScriptElementAsyncAttribute",
status: "experimental",
},
{
name: "SvgTransformOnNestedSvgElement",
status: "stable",
},
{
name: "SvgUseInstancesAttributeSync",
status: "stable"
},
{
name: "SynthesizedKeyboardEventsForAccessibilityActions",
status: "experimental",
},
{
// This is used for emoji variation selectors support in system
// fallback matching. This is a workaround solution that helps to
// avoid incorrect font matching due to lack of cmap format 14
// subtable in system emoji fonts on various platforms.
// This should be eventually removed when the custom emoji font
// is shipped with Chrome or when system emoji fonts will have
// cmap format 14 subtable.
name: "SystemFallbackEmojiVSSupport",
status: "stable",
},
{
name: "SystemWakeLock",
status: "experimental",
},
{
name: "TableIsAutoFixedLayout",
status: "test",
},
// For unit tests.
{
// This is for testing copied_from_base_feature_if.
// This is set in base/test/test_suite.cc.
name: "TestBlinkFeatureDefault",
base_feature_status: "enabled",
copied_from_base_feature_if: "overridden",
},
{
name: "TestFeature",
base_feature: "none",
browser_process_read_write_access: true,
},
// For unit tests.
{
name: "TestFeatureDependent",
depends_on: ["TestFeatureImplied"],
base_feature: "none",
},
// This is a feature used for testing what happens when an origin trial
// feature has browser-process read/write access. It should never be used
// in production code.
{
name: "TestFeatureForBrowserProcessReadWriteAccessOriginTrial",
origin_trial_feature_name: "TestFeatureForBrowserProcessReadWriteAccessOriginTrial",
base_feature: "none",
browser_process_read_write_access: true,
},
// For unit tests.
{
name: "TestFeatureImplied",
implied_by: ["TestFeature"],
base_feature: "none",
},
// For unit tests.
{
name: "TestFeatureProtected",
base_feature: "none",
is_protected_feature: true,
},
// For unit tests.
{
name: "TestFeatureProtectedDependent",
depends_on: ["TestFeatureProtectedImplied"],
base_feature: "none",
is_protected_feature: true,
},
// For unit tests.
{
name: "TestFeatureProtectedImplied",
implied_by: ["TestFeatureProtected"],
base_feature: "none",
is_protected_feature: true,
},
// For unit tests.
{
name: "TestFeatureStable",
status: "stable",
},
{
// crbug.com/414858401
name: "TextareaLineEndingsAsBr",
status: "stable",
depends_on: ["EditingFastRichReplace"],
},
{
// crbug.com/414858401
name: "TextareaMultipleIfcs",
status: "stable",
depends_on: ["FastSelectionSync", "TextareaLineEndingsAsBr"],
},
{
// crbug.com/341564372
name: "TextareaSplitText",
status: "stable",
},
{
// killswitch for fix in M137
name: "TextareaStableResizing",
status: "stable",
},
{
name: "TextAutoSizingDisabledOnFlexbox",
status: "stable",
},
{
name: "TextDetector",
status: "experimental",
},
{
// crbug.com/325517313
name: "TextDiffSplitFix",
status: "stable",
},
{
// crbug.com/368657256
name: "TextEmphasisPositionAuto",
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"},
},
{
name: "TextMetricsBaselines",
status: "stable",
},
// This feature is used to inform the renderer of a user bypass from the
// browser process to disable third-party storage partitioning.
{
name: "ThirdPartyStoragePartitioningUserBypass",
browser_process_read_write_access: true,
base_feature: "none",
},
{
name: "TimerThrottlingForBackgroundTabs",
public: true,
status: "stable",
base_feature: "none",
},
{
name: "TimestampBasedCLSTracking",
status: "experimental"
},
{
name: "TimeZoneChangeEvent",
status: "experimental",
},
{
// Adds an "source" attribute to ToggleEvent which is set to the button
// that invoked the element which the toggle event was fired on, if
// appropriate.
// https://issues.chromium.org/issues/408018828
// https://github.com/whatwg/html/issues/9111
name: "ToggleEventSource",
status: "experimental",
},
{
name: "TopicsAPI",
base_feature: "none",
public: true,
status: "stable",
},
{
name: "TopicsDocumentAPI",
base_feature: "none",
public: true,
status: "stable",
},
{
// This feature allows calling the Topics API via an image
// attribute.
name: "TopicsImgAPI",
base_feature: "none",
public: true,
status: "experimental",
},
// This is a killswitch for the behavior where popover.showPopover() and
// dialog.showModal() throw DOM exceptions if the document isn't active.
// This landed in M132, and can be removed in M134.
{
name: "TopLayerInactiveDocumentExceptions",
status: "stable",
},
{
name: "TopLevelTpcd",
origin_trial_feature_name: "TopLevelTpcd",
origin_trial_type: "deprecation",
status: "experimental",
base_feature: "none",
},
// 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"],
base_feature: "none",
public: true,
},
// This feature enables drag and drop using touch input devices. Replaces
// the old "--enable-touch-drag-drop" and "--disable-touch-drag-drop"
// switches.
{
name: "TouchDragAndDrop",
base_feature: "none",
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",
base_feature: "none",
},
// Set to reflect the kTouchTextEditingRedesign feature.
{
name: "TouchTextEditingRedesign",
base_feature: "none",
},
{
name: "Tpcd",
origin_trial_feature_name: "Tpcd",
origin_trial_allows_third_party: true,
origin_trial_type: "deprecation",
status: "experimental",
base_feature: "none",
},
{
name: "TransferableRTCDataChannel",
status: "stable",
},
// This is conditionally set if the platform supports translation.
{
name: "TranslateService",
},
{
name: "TranslationAPI",
status: {
"Win": "stable",
"Mac": "stable",
"Linux": "stable",
"default": "",
},
origin_trial_feature_name: "TranslationAPI",
origin_trial_allows_third_party: true,
base_feature_status: "enabled",
copied_from_base_feature_if: "overridden",
},
{
name: "TranslationAPIForWorkers",
public: true,
},
{
// Traverse flat tree to find start and end of paragraph in delete
// selection to handle slot distribution in details.
// See https://crbug.com/413595949
name: "TraverseFlatTreeToHandleSlots",
status: "stable",
},
{
// Ensures symbols are treated as word boundaries during traversal.
// See https://crbug.com/40252642
name: "TreatSymbolsAsWordBoundary",
status: "stable",
},
{
name: "TrustedTypeBeforePolicyCreationEvent",
status: "experimental",
},
{
name: "TrustedTypesFromLiteral",
status: "experimental",
base_feature: "none",
},
{
// Adapt Trusted Types to its new spec, as part of HTML.
// Tracking bug: 330516530
name: "TrustedTypesHTML",
status: "test",
},
{
name: "TrustedTypesUseCodeLike",
status: "experimental",
},
{
name: "UnclosedFormControlIsInvalid",
status: "experimental",
},
{
name: "UnencodedDigest",
status: "experimental",
implied_by: ["SignatureBasedIntegrity"],
// It's unclear whether we'll trial this feature separately from
// `SignatureBasedIntegrity`, but we must specify an origin trial feature
// name in order for the `implied_by` relationship above to function.
origin_trial_feature_name: "UnencodedDigest"
},
{
name: "UnexposedTaskIds",
},
// This is a kill switch for the unprefixed Web Speech API.
{
name: "UnprefixedSpeechRecognition",
status: "stable",
},
{
name: "UnrestrictedMeasureUserAgentSpecificMemory",
},
// This is a reverse OT used for a phased deprecation, on desktop
// https://crbug.com/1071424
{
name: "UnrestrictedSharedArrayBuffer",
base_feature: "none",
origin_trial_feature_name: "UnrestrictedSharedArrayBuffer",
origin_trial_os: ["win", "mac", "linux", "fuchsia", "chromeos"],
},
// Enables using policy-controlled feature "usb-unrestricted" to allow
// isolated context to access protected USB interface classes and to
// bypass the USB blocklist.
{
name: "UnrestrictedUsb",
status: "stable",
depends_on: ["WebUSB"],
},
// If enabled, notify the associated DisplayCutoutHost of changes in
// complex safe area constraint usage on the page.
// Only Android may make use of this feature currently.
{
name: "UpdateComplexSafaAreaConstraints",
status: {
"Android": "stable",
"default": "",
}
},
// Fix for https://crbug.com/41329214.
{
name: "UpdateSelectionOnNodeInsertion"
},
{
name: "URLPatternCompareComponent",
status: "experimental",
},
{
name: "URLPatternGenerate",
status: "experimental",
},
{
name: "URLSearchParamsHasAndDeleteMultipleArgs",
status: "stable",
},
{
name: "UseBeginFramePresentationFeedback",
status: {
"ChromeOS": "stable",
},
},
{
// Android currently uses low-quality interpolation, while other platforms
// default to medium-quality. This flag is for experimenting with changing
// the value on Android. See: https://crbug.com/374315986.
name: "UseLowQualityInterpolation",
status: {
"Android": "stable",
"default": "",
},
},
{
// This flag uses the original DOM text for input when the password
// echo is enabled to create the offset_map.
name: "UseOriginalDomOffsetsForOffsetMap",
status: "test",
},
{
name: "UsePositionForPointInFlexibleBoxWithSingleChildElement",
status: "stable",
},
{
name: "UsePositionIfIsVisuallyEquivalentCandidate",
status: "stable",
},
{
name: "UserDefinedEntryPointTiming",
status: "experimental",
},
{
// Makes navigation APIs to use focus node for caret navigation instead
// of selection start.
// https://crbug.com/40658856
name: "UseSelectionFocusNodeForCaretNavigation",
status: "stable",
},
{
// Fix for https://crbug.com/421314614
name: "UseSelectionInDOMTreeAnchorInExtendSelection",
status: "stable"
},
{
name: "UseShadowHostStyleCheckEditable",
status: "stable",
},
{
// For invalidation set tracking, we build a map from style rules to
// their containing sheets. When this flag is enabled, we use that same
// map for the Selector Stats feature.
name: "UseStyleRuleMapForSelectorStats",
status: "stable",
},
{
name: "UseUndoStepElementDispatchBeforeInput",
status: "stable",
},
{
name: "V8IdleTasks",
base_feature: "none",
public: true,
},
{
// This is a performance improvement which has slight visual differences.
// Enabled in M137. http://crbug.com/334963179
name: "ValidationBubbleNoForcedLayout",
status: "stable",
},
{
name: "VideoAspectRatioNaturalDimension",
status: "stable",
},
{
// Whether a video element should automatically play fullscreen unless
// 'playsinline' is set.
name: "VideoAutoFullscreen",
settable_from_internals: true,
},
{
name: "VideoFrameMetadataBackgroundBlur",
status: "experimental",
},
{
name: "VideoFrameMetadataRtpTimestamp",
status: "experimental",
},
{
name: "VideoFullscreenOrientationLock",
},
{
name: "VideoRotateToFullscreen",
},
{
name: "VideoTrackGenerator",
status: "test",
},
{
name: "VideoTrackGeneratorInWindow",
status: "test",
},
{
name: "VideoTrackGeneratorInWorker",
},
{
name: "ViewportHeightClientHintHeader",
status: "stable",
},
{
name: "ViewportSegments",
status: "stable",
},
{
name: "ViewTransitionLongCallbackTimeoutForTesting",
status: "test",
},
{
name: "ViewTransitionUpdateLifecycleBeforeReady",
status: "stable",
},
{
name: "VisibilityCollapseColumn",
},
{
name: "VisualViewportOnScrollEnd",
status: "stable",
},
{
// 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: "WebAppInstallation",
status: "experimental",
},
{
name: "WebAppLaunchQueue",
status: {"Android": "test", "default": "stable"},
base_feature: "none",
},
{
name: "WebAppScopeExtensions",
origin_trial_feature_name: "WebAppScopeExtensions",
origin_trial_os: ["win", "mac", "linux", "chromeos"],
status: "experimental",
base_feature: "none",
},
{
name: "WebAppTabStrip",
status: {
"ChromeOS": "stable",
"default": "experimental"
},
base_feature: "DesktopPWAsTabStrip",
base_feature_status: "enabled",
copied_from_base_feature_if: "overridden",
},
{
name: "WebAppTabStripCustomizations",
status: {
"ChromeOS": "stable",
"default": "experimental"
},
base_feature: "DesktopPWAsTabStripCustomizations",
base_feature_status: "enabled",
copied_from_base_feature_if: "overridden",
},
{
name: "WebAppTranslations",
status: "experimental",
base_feature: "WebAppEnableTranslations",
},
{
// WebAssembly JS Promise Integration,
// https://github.com/WebAssembly/js-promise-integration/blob/main/proposals/js-promise-integration
name: "WebAssemblyJSPromiseIntegration",
origin_trial_feature_name: "WebAssemblyJSPromiseIntegration",
status: "experimental",
base_feature: "none",
},
{
name: "WebAssemblyJSStringBuiltins",
origin_trial_feature_name: "WebAssemblyJSStringBuiltins",
status: "stable",
},
{
// https://chromestatus.com/feature/5077691662073856
name: "WebAudioBypassOutputBuffering",
status: {
"Win": "stable",
"ChromeOS": "stable",
"Mac": "stable",
"Linux": "stable",
},
},
{
// https://chromestatus.com/feature/5077691662073856
// Allows an Enterprise Policy to override WebAudioBypassOutputBuffering
name: "WebAudioBypassOutputBufferingOptOut",
public: true,
},
// 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",
},
// Prototyping https://github.com/w3c/webauthn/issues/2144
{
name: "WebAuthenticationAmbient",
status: "experimental",
base_feature: "none",
public: true,
},
// https://w3c.github.io/webauthn/#dom-publickeycredentialcreationoptions-attestationformats
{
name: "WebAuthenticationAttestationFormats",
status: "experimental",
origin_trial_feature_name: "WebAuthnAttestationFormats",
origin_trial_os: ["android"],
origin_trial_allows_third_party: true,
},
// Enables providing a URL to retrieve a WebAuthn challenge.
// https://chromestatus.com/feature/5109012922892288
{
name: "WebAuthenticationChallengeUrl",
status: "experimental",
},
// https://w3c.github.io/webauthn/#dom-clientcapability-conditionalcreate
{
name: "WebAuthenticationConditionalCreate",
status: "test",
base_feature: "none",
public: true,
},
// Prototyping https://github.com/w3c/webauthn/issues/2228
{
name: "WebAuthenticationImmediateGet",
origin_trial_feature_name: "WebAuthenticationImmediateGet",
origin_trial_os: ["win", "mac", "linux", "chromeos"],
base_feature: "none",
public: true,
},
// Methods for deserializing WebAuthn requests from JSON/serializing
// responses into JSON.
// https://w3c.github.io/webauthn/#dom-publickeycredential-tojson
// https://w3c.github.io/webauthn/#sctn-parseCreationOptionsFromJSON
// https://w3c.github.io/webauthn/#sctn-parseRequestOptionsFromJSON
{
name: "WebAuthenticationJSONSerialization",
status: "stable",
},
{
name: "WebAuthenticationNewBfCacheHandlingBlink",
// No status because this blink runtime feature doesn't work by itself.
// It's controlled by the corresponding Chromium feature which needs to
// be enabled to make the whole feature work.
},
// https://w3c.github.io/webauthn/#prf-extension
{
name: "WebAuthenticationPRF",
status: "stable",
base_feature: "WebAuthenticationPRFExtension",
},
{
name: "WebAuthenticationRemoteDesktopSupport",
base_feature: "none",
public: true,
},
// https://w3c.github.io/webauthn/#sctn-supplemental-public-keys-extension
{
name: "WebAuthenticationSupplementalPubKeys",
status: "experimental",
},
// WebBluetooth is enabled by default on Android, ChromeOS, iOS, macOS and
// Windows.
{
name: "WebBluetooth",
public: true,
status: {
"Android": "stable",
"ChromeOS": "stable",
"iOS": "stable",
"Mac": "stable",
"Win": "stable",
"default": "experimental",
},
base_feature: "none",
},
{
name: "WebBluetoothGetDevices",
public: true,
status: "experimental",
base_feature: "none",
},
{
name: "WebBluetoothScanning",
status: "experimental",
},
{
name: "WebBluetoothWatchAdvertisements",
public: true,
status: "experimental",
base_feature: "none",
},
{
name: "WebCodecsCopyToRGB",
status: "stable",
},
{
name: "WebCodecsHBDFormats",
status: "stable",
},
{
name: "WebCodecsOrientation",
status: "stable",
},
{
name: "WebCodecsVideoEncoderBuffers",
status: "experimental",
},
{
name: "WebCryptoCurve25519",
status: "stable",
},
{
name: "WebCryptoEd25519",
status: "stable",
},
{
name: "WebFontResizeLCP",
status: "experimental",
},
{
name: "WebGLDeveloperExtensions",
public: true,
status: "experimental",
base_feature: "none",
},
{
// Draft WebGL extensions are deliberately not enabled by experimental web
// platform features.
name: "WebGLDraftExtensions",
base_feature: "none",
public: true,
},
{
name: "WebGLDrawingBufferStorage",
status: "stable",
},
{
name: "WebGLImageChromium",
base_feature: "none",
public: true,
},
{
// Switch WebGL to use an experimental implementation where WebGL calls
// are translated in Blink, via ANGLE, to WebGPU calls. Note that this
// is not marked as "experimental" because it is not an incremental
// addition like other experimental features but a code switch, so we
// don't want to enable it when testing all "experimental Web platform
// features".
name: "WebGLOnWebGPU",
},
{
name: "WebGPUAdapterInfoIsFallbackAdapter",
status: "stable",
},
{
// Launch feature flag for WebGPU Compatibility Mode
// https://chromestatus.com/feature/6436406437871616
name: "WebGPUCompatibilityMode",
origin_trial_feature_name: "WebGPUCompatibilityMode",
status: "experimental",
// Also enabled as part of all experimental WebGPU features.
implied_by: ["WebGPUExperimentalFeatures"],
},
{
name: "WebGPUCopyBufferToBufferOverload",
status: "stable",
},
{
// WebGPU developer features are deliberately not enabled by experimental
// web platform features.
name: "WebGPUDeveloperFeatures",
base_feature: "none",
public: true,
},
{
// WebGPU experimental features are meant for features that would
// eventually land in the WebGPU spec.
name: "WebGPUExperimentalFeatures",
status: "experimental",
public: true,
},
{
name: "WebHID",
status: {"Android": "", "default": "stable"},
},
{
// It is only enabled in extension environment for now.
name: "WebHIDOnServiceWorkers",
depends_on: ["WebHID"],
base_feature: "none",
public: true,
},
{
name: "WebIdentityDigitalCredentials",
origin_trial_feature_name: "WebIdentityDigitalCredentials",
origin_trial_os: ["android", "win", "mac", "linux", "chromeos"],
origin_trial_allows_third_party: true,
implied_by: ["WebIdentityDigitalCredentialsCreation"],
public: true,
status: "experimental",
base_feature: "none",
},
{
name: "WebIdentityDigitalCredentialsCreation",
public: true,
status: "test",
base_feature: "none",
},
{
// When enabled, the legacy format of the Digital Credentials request isn't
// supported anymore, and only the modern format is supported.
name: "WebIdentityDigitalCredentialsStopSupportingLegacyRequestFormat",
},
// Kill switch for making BigInt handling in WebIDL use ToBigInt.
{
name: "WebIDLBigIntUsesToBigInt",
status: "stable",
},
{
name: "WebNFC",
public: true,
status: {"Android": "stable", "iOS": "stable", "default": "test"},
base_feature: "none",
},
{
name: "WebOTP",
public: true,
status: "stable",
base_feature: "none",
},
{
name: "WebOTPAssertionFeaturePolicy",
depends_on: ["WebOTP"],
public: true,
status: "stable",
base_feature: "none",
},
{
// https://wicg.github.io/web-preferences-api/
name: "WebPreferences",
status: "experimental",
},
{
name: "WebPrinting",
status: {"Android": "", "default": "test"},
},
// WebShare is enabled by default on Android (non-WebView), Win, ChromeOS, and Mac.
// This is done in chrome/renderer/chrome_content_renderer_client.cc to prevent
// making the API available to Linux and WebView. Ideally we would set the status
// below to "stable" once we can do so without significant test expectation duplication.
{
name: "WebShare",
public: true,
status: "test",
},
{
name: "WebSocketStream",
status: "stable",
},
{
name: "WebSpeechRecognitionContext",
status: "experimental",
},
{
name: "WebTransportCustomCertificates",
origin_trial_feature_name: "WebTransportCustomCertificates",
status: "stable",
base_feature: "none",
},
{
// Note: enabling this without setting WebTransportCongestionControl to
// either BBRv1 or BBRv2 will produce poor bandwidth estimates.
name: "WebTransportStats",
status: "experimental",
base_feature: "none",
},
{
// Fetches the WebUI code cache from the resource bundle asynchronously
// on a worker thread.
name: "WebUIBundledCodeCacheAsyncFetch",
status: "experimental",
},
{
name: "WebUSB",
public: true,
status: "stable",
base_feature: "none",
},
{
name: "WebUSBOnDedicatedWorkers",
status: "stable",
depends_on: ["WebUSB"],
},
{
// It is only enabled in extension environment for now.
name: "WebUSBOnServiceWorkers",
depends_on: ["WebUSB"],
base_feature: "none",
public: true,
},
{
name: "WebViewXRequestedWithDeprecation",
origin_trial_feature_name: "WebViewXRequestedWithDeprecation",
origin_trial_allows_insecure: true,
origin_trial_allows_third_party: true,
origin_trial_os: ["android"],
origin_trial_type: "deprecation",
status: "experimental",
base_feature: "none",
},
{
name: "WebVTTRegions",
status: "experimental",
},
{
name: "WebXR",
public: true,
status: "stable",
base_feature: "none",
},
{
name: "WebXRDepthPerformance",
depends_on: ["WebXR"],
public: true,
status: "stable",
},
{
name: "WebXREnabledFeatures",
depends_on: ["WebXR"],
status: "stable",
},
{
name: "WebXRFrameRate",
depends_on: ["WebXR"],
public: true,
status: "experimental",
base_feature: "none",
},
{
name: "WebXRFrontFacing",
depends_on: ["WebXR"],
public: true,
status: "experimental",
base_feature: "none",
},
{
name: "WebXRGPUBinding",
depends_on: ["WebXR"],
public: true,
status: "experimental",
base_feature: "none",
},
{
name: "WebXRHandInput",
depends_on: ["WebXR"],
public: true,
status: "stable",
base_feature: "none",
},
{
name: "WebXRHitTestEntityTypes",
depends_on: ["WebXR"],
status: "experimental",
},
{
name: "WebXRImageTracking",
depends_on: ["WebXR"],
origin_trial_feature_name: "WebXRImageTracking",
public: true,
status: "experimental",
base_feature: "none",
},
{
name: "WebXRLayers",
depends_on: ["WebXR"],
public: true,
status: "experimental",
base_feature: "none",
},
{
name: "WebXRLayersCommon",
implied_by: ["WebXRLayers", "WebXRGPUBinding"],
public: true,
status: "experimental",
base_feature: "none",
},
{
name: "WebXRPlaneDetection",
depends_on: ["WebXR"],
origin_trial_feature_name: "WebXRPlaneDetection",
public: true,
status: "experimental",
base_feature: "none",
},
{
name: "WebXRPoseMotionData",
depends_on: ["WebXR"],
public: true,
status: "experimental",
base_feature: "none",
},
{
name: "WebXRSpecParity",
depends_on: ["WebXR"],
public: true,
status: "experimental",
},
{
name: "WidthAndHeightAsPresentationAttributesOnNestedSvg",
status: "experimental",
},
// 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",
},
{
name: "WindowOnMoveEvent",
status: "experimental",
implied_by: ["DesktopPWAsAdditionalWindowingControls"],
},
{
name: "XMLSerializerConsistentDefaultNsDeclMatching",
status: "test",
},
{
// 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",
}
],
}
|