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
|
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Contact: https://lists.webkit.org/mailman/listinfo/webkit-wpe
Upstream-Name: wpewebkit
Source: https://wpewebkit.org/releases/
Files: *
Copyright: 1999 Antti Koivisto <koivisto@kde.org>
1999-2000 Lars Knoll <knoll@kde.org>
1999-2001 Harri Porten <porten@kde.org>
2001 Dirk Mueller <mueller@kde.org>
2003-2023 Apple Inc
2004-2006 Rob Buis <buis@kde.org>
2004-2008 Nikolas Zimmermann <zimmermann@kde.org>
2005 Frerich Raabe <raabe@kde.org>
2005 Maksim Orlovich <maksim@kde.org>
2005, 2007-2022 Google Inc
2005, 2008-2013 Nokia
2005-2006 Alexey Proskuryakov
2005-2006 Kimmo Kinnunen <kimmo.t.kinnunen@nokia.com>
2005-2008 Eric Seidel <eric@webkit.org>
2006 Alexander Kellett <lypanov@kde.org>
2006 Graham Dennis <graham.dennis@gmail.com>
2006 Michael Emmel mike.emmel@gmail.com
2006 Samuel Weinig <sam.weinig@gmail.com>
2006-2007 Alexey Proskuryakov <ap@nypop.com>
2006-2007 Alexey Proskuryakov <ap@webkit.org>
2007 Henry Mason <hmason@mac.com>
2007 Holger Hans Peter Freyther <zecke@selfish.org>
2007 Justin Haygood <jhaygood@reaktix.com>
2007 Samuel Weinig <sam@webkit.org>
2007-2008 Alp Toker <alp@atoker.com>
2007-2009 Torch Mobile Inc
2008 Alex Mathews <possessedpenguinbob@gmail.com>
2008 Collin Jackson <collinj@webkit.org>
2008 Dirk Schulze <vbs85@gmx.de>
2008 Kelvin W Sherlock <ksherlock@gmail.com>
2008 Nuanti Ltd
2008, 2010 The Android Open Source Project
2008, 2010-2011 Julien Chaffraix <jchaffraix@webkit.org>
2008, 2014 Collabora Ltd
2008-2009 Dirk Schulze <krit@webkit.org>
2009 Antonio Gomes <tonikitoo@webkit.org>
2009 Jeff Schiller <codedread@gmail.com>
2009 Joseph Pecoraro
2009, 2011 Brent Fulgham <bfulgham@webkit.org>
2009-2010 Alex Milowski <alex@milowski.com>
2009-2010 Holger Hans Peter Freyther
2009-2015 University of Szeged
2009-2022 Igalia S.L.
2010 Adam Barth
2010 Andras Becsi <abecsi@inf.u-szeged.hu>, University of Szeged
2010 Mozilla Corporation
2010 Peter Varga <pvarga@inf.u-szeged.hu>, University of Szeged
2010 Renata Hodovan <hodovan@inf.u-szeged.hu>
2010 Sencha Inc
2010 Torch Mobile (Beijing) Co
2010 Zoltan Herczeg <zherczeg@webkit.org>
2010, 2012 MIPS Technologies Inc
2010, 2012-2014 Patrick Gansterer <paroga@paroga.com>
2010-2011 Zoltan Herczeg
2010-2012 Research In Motion Limited
2010-2013 Motorola Mobility
2011 Adam Barth <abarth@webkit.org>
2011 Andreas Kling <kling@webkit.org>
2011 Benjamin Poulain <benjamin@webkit.org>
2011 Felician Marton
2011 Gabor Loki <loki@webkit.org>
2011 Peter Varga <pvarga@webkit.org>, University of Szeged
2011 ProFUSION embedded systems
2011 Renata Hodovan <reni@webkit.org>
2011, 2014-2017, 2022 The Chromium Authors
2011-2012, 2014-2015 Ericsson AB
2011-2013 Intel Corporation
2011-2013 Samsung Electronics
2011-2014 Adobe Systems Inc
2012 David Barton <dbarton@mathscribe.com>
2012 Gabor Rapcsanyi
2012 Gabor Rapcsanyi <rgabor@inf.u-szeged.hu>, University of Szeged
2012 Intel Inc
2012 Koji Ishii <kojiishi@gmail.com>
2012 Mathias Bynens <mathias@qiwi.be>
2012 Rik Cabanier <cabanier@adobe.com>
2012 Sony Network Entertainment
2012 Victor Carbune <victor@rosedu.org>
2012, 2016 SoftAtHome
2012-2013 ChangSeok Oh <shivamidow@gmail.com>
2012-2013 Company 100 Inc
2012-2013 Digia Plc
2012-2013 Michael Pruett <michael@68k.org>
2012-2015 University of Washington
2012-2016 Yann Collet
2013 Adenilson Cavalcanti <cavalcantii@gmail.com>
2013 Andrew Bortz
2013 The MathJax Consortium
2013 Xidorn Quan <quanxunzhen@gmail.com>
2013-2014 Cable Television Labs Inc
2014 Antoine Quint
2014 Dhi Aurrahman <diorahman@rockybars.com>
2014 Gurpreet Kaur <k.gurpreet@samsung.com>
2014 Raspberry Pi Foundation
2014 Saam Barati. <saambarati1@gmail.com>
2014-2015 Frederic Wang <fred.wang@free.fr>
2014-2015 Saam Barati <saambarati1@gmail.com>
2014-2018 Yusuke Suzuki <utatane.tea@gmail.com>
2015 Dominic Szablewski <dominic@phoboslab.org>
2015 Electronic Arts Inc
2015 Jordan Harband
2015 Tobias Reiss <tobi+webkit@basecode.de>
2015, 2018 Andy VanWagoner <andy@vanwagoner.family>
2015-2016 Sukolsak Sakshuwong <sukolsak@gmail.com>
2015-2017 Canon Inc
2015-2020 Devin Rousso <webkit@devinrousso.com>
2016 Caitlin Potter <caitp@igalia.com>
2016 Konstantin Tokavev <annulen@yandex.ru>
2016 Yusuke Suzuki <yusuke.suzuki@sslab.ics.keio.ac.jp>
2016-2018 Akamai Technologies Inc
2016-2019 Oleksandr Skachkov <gskachkov@gmail.com>
2016-2022 Metrological Group B.V
2016-2022 Sony Interactive Entertainment
2017 Caio Lima <ticaiolima@gmail.com>
2017 Endless Mobile Inc
2017 Oleksandr Skachkov <gskackhov@gmail.com>
2018 Google LLC
2018 Yusuke Suzuki <yusukesuzuki@slowstart.org>
2018 mce sys Ltd
2019 Carlos Eduardo Ramalho <cadubentzen@gmail.com>
2019 the V8 project authors
2019-2021 Alexey Shvayka <shvaikalesh@gmail.com>
2020 Cloudinary Inc
2020 Darryl Pogue <darryl@dpogue.ca>
2020 Jan-Michael Brummer <jan.brummer@tabos.org>
2020 RDK Management
2020 WikiMedia Foundation. All Rights Reserve
2021 7-2022 Apple Inc
2021 Red Hat Inc
2021 Tyler Wilcock <twilco.o@protonmail.com>
2022 Jarred Sumner
2022 Leaning Technologies Inc
2022 Leonardo Taccari <leot@NetBSD.org>
License: BSD-2-clause
Comment:
The default license of WebKit is BSD 2-clause. The exceptions are
listed in the sections that follow.
Files: Source/ThirdParty/xdgmime/src/*
Copyright: 2003-2004 Jonathan Blandford <jrb@alum.mit.edu>
2003-2004, 2008 Red Hat Inc
2004-2005 Matthias Clasen <mclasen@redhat.com>
License: AFL-2.0 or LGPL-2+
Files: Source/ThirdParty/ANGLE/include/CL/*
Source/ThirdParty/ANGLE/include/GLES/*
Source/ThirdParty/ANGLE/src/android_system_settings/src/com/android/angle/*
Source/ThirdParty/ANGLE/src/common/vulkan/vk_google_filtering_precision.h
Source/ThirdParty/ANGLE/src/tests/deqp_support/*
Source/ThirdParty/ANGLE/src/tests/test_utils/third_party/*
Source/ThirdParty/ANGLE/util/android/third_party/*
Source/ThirdParty/pdfjs/build/*
Source/ThirdParty/pdfjs/web/*
Source/WTF/wtf/*
Source/WebGPU/WebGPU/metal-cpp/Foundation/*
Source/WebGPU/WebGPU/metal-cpp/Metal/*
Source/WebGPU/WebGPU/metal-cpp/QuartzCore/*
Source/WebGPU/WebGPU/metal-cpp/SingleHeader/MakeSingleHeader.py
Tools/TestWebKitAPI/Tests/WTF/Int128.cpp
Copyright: 2008-2021 The Khronos Group Inc
2010, 2014, 2018-2019 The Android Open Source Project
2012, 2014, 2022 Mozilla Foundation
2015-2016 LunarG Inc
2015-2016 Valve Corporation
2015-2018 Google Inc
2017 The Abseil Authors
2020 The SwiftShader Authors
2020-2022 Apple Inc
License: Apache-2.0
Files: Source/WTF/wtf/Markable.h
Copyright: 2016-2017 Apple Inc
2018 Yusuke Suzuki <yusukesuzuki@slowstart.org>
License: BSD-2-clause or BSL-1.0
Files: Source/JavaScriptCore/runtime/JSGenericTypedArrayViewPrototypeFunctions.h
Source/WTF/wtf/RobinHoodHashTable.h
Copyright: 2015-2022 Apple Inc
License: BSD-2-clause or Expat
Files: Source/JavaScriptCore/runtime/JSDateMath.cpp
Source/WTF/wtf/DateMath.cpp
Copyright: 1999-2000 Harri Porten <porten@kde.org>
2006-2021 Apple Inc
2007-2009 Torch Mobile Inc
2009 Google Inc
License: LGPL-2.1+ or MPL-1.1
Files: Source/WebCore/loader/DocumentWriter.h
Copyright: 2010 Adam Barth
License: BSD-3-clause-adam-barth
Files: Source/JavaScriptCore/API/*
Source/JavaScriptCore/Scripts/UpdateContents.py
Source/JavaScriptCore/bindings/ScriptValue.cpp
Source/JavaScriptCore/bytecode/*
Source/JavaScriptCore/bytecompiler/*
Source/JavaScriptCore/debugger/*
Source/JavaScriptCore/heap/*
Source/JavaScriptCore/inspector/*
Source/JavaScriptCore/interpreter/*
Source/JavaScriptCore/jit/IntrinsicEmitter.cpp
Source/JavaScriptCore/parser/*
Source/JavaScriptCore/runtime/CallData.h
Source/JavaScriptCore/runtime/ConstructData.h
Source/JavaScriptCore/runtime/ExceptionHelpers.cpp
Source/JavaScriptCore/runtime/ExceptionHelpers.h
Source/JavaScriptCore/runtime/InitializeThreading.cpp
Source/JavaScriptCore/runtime/InitializeThreading.h
Source/JavaScriptCore/runtime/JSGlobalObject.cpp
Source/JavaScriptCore/runtime/JSLexicalEnvironment.cpp
Source/JavaScriptCore/runtime/JSLexicalEnvironment.h
Source/JavaScriptCore/runtime/JSModuleEnvironment.cpp
Source/JavaScriptCore/runtime/JSModuleEnvironment.h
Source/JavaScriptCore/runtime/JSSegmentedVariableObject.cpp
Source/JavaScriptCore/runtime/JSSegmentedVariableObject.h
Source/JavaScriptCore/runtime/JSSymbolTableObject.cpp
Source/JavaScriptCore/runtime/JSSymbolTableObject.h
Source/JavaScriptCore/runtime/SamplingCounter.cpp
Source/JavaScriptCore/runtime/SamplingCounter.h
Source/JavaScriptCore/runtime/SymbolTable.cpp
Source/JavaScriptCore/runtime/SymbolTable.h
Source/JavaScriptCore/runtime/TypeProfilerLog.cpp
Source/JavaScriptCore/runtime/TypeProfilerLog.h
Source/JavaScriptCore/runtime/VM.cpp
Source/JavaScriptCore/runtime/VM.h
Source/JavaScriptCore/shell/playstation/Initializer.cpp
Source/WTF/wtf/AutodrainedPool.h
Source/WTF/wtf/ConcurrentVector.h
Source/WTF/wtf/Deque.h
Source/WTF/wtf/DisallowCType.h
Source/WTF/wtf/FileSystem.h
Source/WTF/wtf/Locker.h
Source/WTF/wtf/MainThread.cpp
Source/WTF/wtf/MainThread.h
Source/WTF/wtf/MediaTime.cpp
Source/WTF/wtf/MediaTime.h
Source/WTF/wtf/MessageQueue.h
Source/WTF/wtf/MetaAllocator.cpp
Source/WTF/wtf/MetaAllocator.h
Source/WTF/wtf/MetaAllocatorHandle.h
Source/WTF/wtf/RedBlackTree.h
Source/WTF/wtf/SchedulePair.h
Source/WTF/wtf/SegmentedVector.h
Source/WTF/wtf/ThreadSpecific.h
Source/WTF/wtf/Threading.h
Source/WTF/wtf/ThreadingPrimitives.h
Source/WTF/wtf/URLHelpers.cpp
Source/WTF/wtf/URLHelpers.h
Source/WTF/wtf/generic/MainThreadGeneric.cpp
Source/WTF/wtf/playstation/FileSystemPlayStation.cpp
Source/WTF/wtf/posix/*
Source/WTF/wtf/text/*
Source/WTF/wtf/unicode/*
Source/WebCore/Modules/fetch/*
Source/WebCore/Modules/mediastream/*
Source/WebCore/Modules/webaudio/*
Source/WebCore/Modules/webdatabase/*
Source/WebCore/Scripts/extract-localizable-strings.pl
Source/WebCore/accessibility/*
Source/WebCore/animation/*
Source/WebCore/bindings/js/*
Source/WebCore/css/*
Source/WebCore/dom/*
Source/WebCore/editing/*
Source/WebCore/history/CachedFramePlatformData.h
Source/WebCore/html/*
Source/WebCore/inspector/*
Source/WebCore/loader/DocumentLoader.cpp
Source/WebCore/loader/DocumentLoader.h
Source/WebCore/loader/DocumentWriter.cpp
Source/WebCore/loader/FormState.cpp
Source/WebCore/loader/FormState.h
Source/WebCore/loader/FrameLoader.cpp
Source/WebCore/loader/FrameLoader.h
Source/WebCore/loader/FrameLoaderClient.h
Source/WebCore/loader/FrameLoaderTypes.h
Source/WebCore/loader/HistoryController.cpp
Source/WebCore/loader/HistoryController.h
Source/WebCore/loader/MixedContentChecker.cpp
Source/WebCore/loader/NavigationAction.cpp
Source/WebCore/loader/NavigationAction.h
Source/WebCore/loader/NavigationScheduler.cpp
Source/WebCore/loader/NavigationScheduler.h
Source/WebCore/loader/NetscapePlugInStreamLoader.cpp
Source/WebCore/loader/NetscapePlugInStreamLoader.h
Source/WebCore/loader/PolicyChecker.cpp
Source/WebCore/loader/PolicyChecker.h
Source/WebCore/loader/ResourceLoadNotifier.cpp
Source/WebCore/loader/ResourceLoadNotifier.h
Source/WebCore/loader/ResourceLoader.cpp
Source/WebCore/loader/ResourceLoader.h
Source/WebCore/loader/SubframeLoader.cpp
Source/WebCore/loader/SubframeLoader.h
Source/WebCore/loader/SubresourceLoader.cpp
Source/WebCore/loader/SubresourceLoader.h
Source/WebCore/loader/archive/*
Source/WebCore/loader/soup/ResourceLoaderSoup.cpp
Source/WebCore/page/*
Source/WebCore/platform/*
Source/WebCore/rendering/*
Source/WebCore/storage/StorageEventDispatcher.h
Source/WebCore/svg/graphics/SVGImageClients.h
Source/WebCore/xml/*
Source/WebInspectorUI/UserInterface/Base/DOMUtilities.js
Source/WebInspectorUI/UserInterface/Models/*
Source/WebInspectorUI/UserInterface/Views/*
Source/WebKit/UIProcess/Launcher/playstation/ProcessLauncherPlayStation.cpp
Source/bmalloc/libpas/src/libpas/*
Source/bmalloc/libpas/src/test/*
Tools/TestWebKitAPI/Tests/WTF/MediaTime.cpp
Tools/TestWebKitAPI/Tests/WTF/MetaAllocator.cpp
Tools/TestWebKitAPI/Tests/WTF/RedBlackTree.cpp
Tools/TestWebKitAPI/Tests/WTF/SafeStrerror.cpp
Copyright: 2003, 2005-2022 Apple Inc
2006 Alexey Proskuryakov
2006 Alexey Proskuryakov <ap@webkit.org>
2006 Michael Emmel mike.emmel@gmail.com
2007 Alp Toker <alp.toker@collabora.co.uk>
2007 David Smith <catfish.man@gmail.com>
2007 Graham Dennis <graham.dennis@gmail.com>
2007 Holger Hans Peter Freyther
2007 Justin Haygood <jhaygood@reaktix.com>
2007 Nicholas Shanks <contact@nickshanks.com>
2007 Nicholas Shanks <webkit@nickshanks.com>
2007-2008 Alp Toker <alp@atoker.com>
2007-2009 Torch Mobile Inc
2008 Cameron Zwarich <cwzwarich@uwaterloo.ca>
2008 Collabora Ltd
2008 Matt Lilek <webkit@mattlilek.com>
2008 Nuanti Ltd
2008 Tony Chang <idealisms@gmail.com>
2008, 2012 Nokia
2009 Adam Barth
2009 Jian Li <jianli@chromium.org>
2009 Joseph Pecoraro
2009 Julien Chaffraix <jchaffraix@webkit.org>
2009-2013 Google Inc
2011 Ericsson AB
2011 Kris Jordan <krisjordan@gmail.com>
2011-2012 Research In Motion Limited
2012 Intel Inc
2012 Patrick Gansterer <paroga@paroga.com>
2012, 2018 Igalia S.L.
2012-2014 Adobe Systems Inc
2013 Samsung Electronics
2013 Xidorn Quan <quanxunzhen@gmail.com>
2015 Canon Inc
2016 Konstantin Tokavev <annulen@yandex.ru>
2016-2017 Yusuke Suzuki <utatane.tea@gmail.com>
2019 Oracle
2019-2021 Sony Interactive Entertainment
2021 Red Hat Inc
License: BSD-3-clause-apple
Files: Source/WebCore/Modules/fetch/FetchBody.cpp
Source/WebCore/Modules/fetch/FetchBody.h
Source/WebCore/Modules/fetch/FetchBodyOwner.cpp
Source/WebCore/Modules/fetch/FetchBodyOwner.h
Source/WebCore/Modules/fetch/FetchHeaders.cpp
Source/WebCore/Modules/fetch/FetchHeaders.h
Source/WebCore/Modules/fetch/FetchLoader.cpp
Source/WebCore/Modules/fetch/FetchLoader.h
Source/WebCore/Modules/fetch/FetchLoaderClient.h
Source/WebCore/Modules/fetch/FetchRequest.cpp
Source/WebCore/Modules/fetch/FetchRequest.h
Source/WebCore/Modules/fetch/FetchResponse.cpp
Source/WebCore/Modules/fetch/FetchResponse.h
Source/WebCore/Modules/streams/ReadableStreamSource.h
Source/WebCore/bindings/js/JSReadableStreamSourceCustom.cpp
Source/WebCore/bindings/js/ReadableStreamDefaultController.cpp
Source/WebCore/bindings/js/ReadableStreamDefaultController.h
Source/WebCore/bindings/js/WebCoreBuiltinNames.h
Source/WebCore/loader/CrossOriginPreflightChecker.cpp
Source/WebCore/loader/CrossOriginPreflightChecker.h
Source/WebCore/loader/FetchOptions.h
Copyright: 2015-2016 Canon Inc
2016-2021 Apple Inc
License: BSD-3-clause-canon
Files: Source/WebCore/html/HTMLUnknownElement.h
Copyright: 2011 Code Aurora Forum
License: BSD-3-clause-code-aurora
Files: Source/WebGPU/WebGPU/WebGPU.h
Copyright: 2019 WebGPU native developers
License: BSD-3-clause-copyright-holder
Files: Source/WebCore/Modules/mediastream/MediaDevices.cpp
Source/WebCore/Modules/mediastream/MediaDevices.h
Source/WebCore/Modules/mediastream/MediaTrackSupportedConstraints.h
Source/WebCore/Modules/mediastream/NavigatorMediaDevices.cpp
Source/WebCore/Modules/mediastream/NavigatorMediaDevices.h
Source/WebCore/Modules/mediastream/PeerConnectionBackend.cpp
Source/WebCore/Modules/mediastream/PeerConnectionBackend.h
Source/WebCore/Modules/mediastream/RTCIceTransport.h
Source/WebCore/Modules/mediastream/RTCRtpReceiver.cpp
Source/WebCore/Modules/mediastream/RTCRtpReceiver.h
Source/WebCore/Modules/mediastream/RTCRtpSender.cpp
Source/WebCore/Modules/mediastream/RTCRtpSender.h
Source/WebCore/Modules/mediastream/RTCRtpTransceiver.cpp
Source/WebCore/Modules/mediastream/RTCRtpTransceiver.h
Source/WebCore/Modules/mediastream/RTCTrackEvent.cpp
Source/WebCore/Modules/mediastream/RTCTrackEvent.h
Source/WebCore/Modules/mediastream/UserMediaClient.h
Source/WebCore/Modules/mediastream/UserMediaRequest.cpp
Source/WebCore/Modules/mediastream/UserMediaRequest.h
Source/WebCore/page/EventSource.cpp
Source/WebCore/page/EventSource.h
Source/WebCore/page/UserMediaRequestIdentifier.h
Source/WebCore/platform/mediastream/IceCandidate.h
Source/WebCore/platform/mediastream/MediaEndpointConfiguration.cpp
Source/WebCore/platform/mediastream/MediaEndpointConfiguration.h
Source/WebCore/platform/mediastream/MediaPayload.h
Source/WebCore/platform/mediastream/MediaStreamPrivate.h
Source/WebCore/platform/mediastream/PeerConnectionStates.h
Source/WebCore/platform/mediastream/PeerMediaDescription.h
Source/WebCore/platform/mediastream/RealtimeIncomingAudioSource.h
Source/WebCore/platform/mediastream/RealtimeIncomingVideoSource.h
Source/WebCore/platform/mediastream/RealtimeMediaSource.h
Source/WebCore/platform/mediastream/RealtimeMediaSourceCenter.cpp
Source/WebCore/platform/mediastream/RealtimeMediaSourceCenter.h
Source/WebCore/platform/mock/*
Copyright: 2009, 2011-2012, 2015-2016 Ericsson AB
2010, 2013-2022 Apple Inc
2011 Code Aurora Forum
2012 Google Inc
2013 Nokia
License: BSD-3-clause-ericsson
Files: Source/JavaScriptCore/Scripts/xxd.pl
Source/JavaScriptCore/bindings/ScriptFunctionCall.cpp
Source/JavaScriptCore/bindings/ScriptFunctionCall.h
Source/JavaScriptCore/bindings/ScriptObject.cpp
Source/JavaScriptCore/bindings/ScriptObject.h
Source/JavaScriptCore/bindings/ScriptValue.h
Source/JavaScriptCore/inspector/InjectedScript.cpp
Source/JavaScriptCore/inspector/InjectedScript.h
Source/JavaScriptCore/inspector/InjectedScriptBase.cpp
Source/JavaScriptCore/inspector/InjectedScriptBase.h
Source/JavaScriptCore/inspector/InjectedScriptModule.cpp
Source/JavaScriptCore/inspector/InjectedScriptModule.h
Source/JavaScriptCore/inspector/ScriptArguments.cpp
Source/JavaScriptCore/inspector/ScriptArguments.h
Source/JavaScriptCore/inspector/ScriptCallFrame.cpp
Source/JavaScriptCore/inspector/ScriptCallFrame.h
Source/JavaScriptCore/inspector/ScriptCallStack.cpp
Source/JavaScriptCore/inspector/ScriptCallStack.h
Source/JavaScriptCore/inspector/ScriptCallStackFactory.cpp
Source/JavaScriptCore/inspector/ScriptCallStackFactory.h
Source/JavaScriptCore/inspector/agents/InspectorRuntimeAgent.cpp
Source/JavaScriptCore/inspector/agents/InspectorRuntimeAgent.h
Source/ThirdParty/gtest/include/gtest/*
Source/ThirdParty/gtest/samples/*
Source/ThirdParty/gtest/scripts/*
Source/ThirdParty/gtest/src/*
Source/ThirdParty/gtest/test/*
Source/ThirdParty/gtest/xcode/Samples/FrameworkSample/*
Source/ThirdParty/gtest/xcode/Scripts/runtests.sh
Source/ThirdParty/pdfjs/web/standard_fonts/LICENSE_FOXIT
Source/WTF/wtf/ByteOrder.h
Source/WTF/wtf/CrossThreadCopier.cpp
Source/WTF/wtf/CrossThreadCopier.h
Source/WTF/wtf/CurrentTime.cpp
Source/WTF/wtf/JSONValues.cpp
Source/WTF/wtf/JSONValues.h
Source/WTF/wtf/SHA1.cpp
Source/WTF/wtf/SHA1.h
Source/WTF/wtf/SaturatedArithmetic.h
Source/WTF/wtf/SizeLimits.cpp
Source/WTF/wtf/StreamBuffer.h
Source/WTF/wtf/UUID.cpp
Source/WTF/wtf/UUID.h
Source/WTF/wtf/dtoa/*
Source/WTF/wtf/text/LineEnding.cpp
Source/WTF/wtf/text/LineEnding.h
Source/WebCore/Modules/mediasource/*
Source/WebCore/Modules/mediastream/RTCConfiguration.h
Source/WebCore/Modules/mediastream/RTCIceCandidate.cpp
Source/WebCore/Modules/mediastream/RTCIceCandidate.h
Source/WebCore/Modules/mediastream/RTCIceCandidateInit.h
Source/WebCore/Modules/mediastream/RTCPeerConnection.cpp
Source/WebCore/Modules/mediastream/RTCPeerConnection.h
Source/WebCore/Modules/mediastream/RTCSessionDescription.cpp
Source/WebCore/Modules/mediastream/RTCSessionDescription.h
Source/WebCore/Modules/mediastream/RTCSessionDescriptionInit.h
Source/WebCore/Modules/notifications/*
Source/WebCore/Modules/speech/DOMWindowSpeechSynthesis.cpp
Source/WebCore/Modules/webauthn/apdu/*
Source/WebCore/Modules/webauthn/cbor/*
Source/WebCore/Modules/webauthn/fido/*
Source/WebCore/Modules/webdatabase/DatabaseCallback.h
Source/WebCore/Modules/webdatabase/SQLTransactionCoordinator.cpp
Source/WebCore/Modules/webdatabase/SQLTransactionCoordinator.h
Source/WebCore/Modules/websockets/*
Source/WebCore/PAL/pal/text/*
Source/WebCore/bindings/js/JSBlobCustom.cpp
Source/WebCore/bindings/js/JSErrorHandler.cpp
Source/WebCore/bindings/js/JSErrorHandler.h
Source/WebCore/bindings/js/JSHTMLTemplateElementCustom.cpp
Source/WebCore/bindings/js/JSMessageEventCustom.cpp
Source/WebCore/bindings/js/JSMutationObserverCustom.cpp
Source/WebCore/bindings/js/JSPerformanceEntryCustom.cpp
Source/WebCore/bindings/js/JSPopStateEventCustom.cpp
Source/WebCore/bindings/js/ScriptCachedFrameData.cpp
Source/WebCore/bindings/js/ScriptCachedFrameData.h
Source/WebCore/bindings/js/ScriptSourceCode.h
Source/WebCore/bindings/js/ScriptWrappable.h
Source/WebCore/bindings/js/ScriptWrappableInlines.h
Source/WebCore/css/CSSGridAutoRepeatValue.cpp
Source/WebCore/css/CSSGridAutoRepeatValue.h
Source/WebCore/css/CSSGridIntegerRepeatValue.cpp
Source/WebCore/css/CSSGridIntegerRepeatValue.h
Source/WebCore/css/CSSGridLineNamesValue.cpp
Source/WebCore/css/CSSGridLineNamesValue.h
Source/WebCore/css/CSSGridTemplateAreasValue.cpp
Source/WebCore/css/CSSGridTemplateAreasValue.h
Source/WebCore/css/CSSPendingSubstitutionValue.h
Source/WebCore/css/CSSPropertySourceData.cpp
Source/WebCore/css/CSSPropertySourceData.h
Source/WebCore/css/CSSSubgridValue.cpp
Source/WebCore/css/CSSSubgridValue.h
Source/WebCore/css/CSSToLengthConversionData.cpp
Source/WebCore/css/CSSToLengthConversionData.h
Source/WebCore/css/CSSVariableData.cpp
Source/WebCore/css/CSSVariableData.h
Source/WebCore/css/CSSVariableReferenceValue.cpp
Source/WebCore/css/CSSVariableReferenceValue.h
Source/WebCore/css/StyleColor.cpp
Source/WebCore/css/StyleColor.h
Source/WebCore/css/calc/*
Source/WebCore/css/parser/*
Source/WebCore/css/themeWin.css
Source/WebCore/css/themeWinQuirks.css
Source/WebCore/dom/ActiveDOMCallback.cpp
Source/WebCore/dom/ActiveDOMCallback.h
Source/WebCore/dom/ChildListMutationScope.cpp
Source/WebCore/dom/ChildListMutationScope.h
Source/WebCore/dom/DataTransferItem.cpp
Source/WebCore/dom/DataTransferItem.h
Source/WebCore/dom/DataTransferItemList.h
Source/WebCore/dom/ElementRareData.cpp
Source/WebCore/dom/EpochTimeStamp.h
Source/WebCore/dom/ErrorEvent.cpp
Source/WebCore/dom/ErrorEvent.h
Source/WebCore/dom/MutationCallback.h
Source/WebCore/dom/MutationObserver.cpp
Source/WebCore/dom/MutationObserver.h
Source/WebCore/dom/MutationObserverInterestGroup.cpp
Source/WebCore/dom/MutationObserverInterestGroup.h
Source/WebCore/dom/MutationObserverRegistration.cpp
Source/WebCore/dom/MutationObserverRegistration.h
Source/WebCore/dom/MutationRecord.cpp
Source/WebCore/dom/MutationRecord.h
Source/WebCore/dom/NodeRareData.cpp
Source/WebCore/dom/RequestAnimationFrameCallback.h
Source/WebCore/dom/ScopedEventQueue.cpp
Source/WebCore/dom/ScopedEventQueue.h
Source/WebCore/dom/StringCallback.cpp
Source/WebCore/dom/StringCallback.h
Source/WebCore/dom/TreeDepthLimit.h
Source/WebCore/dom/TreeScopeOrderedMap.cpp
Source/WebCore/dom/TreeScopeOrderedMap.h
Source/WebCore/dom/VisibilityState.h
Source/WebCore/editing/ApplyBlockElementCommand.h
Source/WebCore/editing/EditingStyle.h
Source/WebCore/editing/RenderedPosition.cpp
Source/WebCore/editing/RenderedPosition.h
Source/WebCore/editing/ReplaceNodeWithSpanCommand.cpp
Source/WebCore/editing/ReplaceNodeWithSpanCommand.h
Source/WebCore/editing/SurroundingText.h
Source/WebCore/editing/UndoStep.h
Source/WebCore/fileapi/*
Source/WebCore/html/BaseButtonInputType.cpp
Source/WebCore/html/BaseButtonInputType.h
Source/WebCore/html/BaseCheckableInputType.cpp
Source/WebCore/html/BaseCheckableInputType.h
Source/WebCore/html/BaseClickableWithKeyInputType.cpp
Source/WebCore/html/BaseClickableWithKeyInputType.h
Source/WebCore/html/BaseDateAndTimeInputType.cpp
Source/WebCore/html/BaseDateAndTimeInputType.h
Source/WebCore/html/BaseTextInputType.h
Source/WebCore/html/ButtonInputType.cpp
Source/WebCore/html/ButtonInputType.h
Source/WebCore/html/CheckboxInputType.cpp
Source/WebCore/html/CheckboxInputType.h
Source/WebCore/html/ColorInputType.cpp
Source/WebCore/html/ColorInputType.h
Source/WebCore/html/DOMFormData.cpp
Source/WebCore/html/DOMFormData.h
Source/WebCore/html/DateInputType.cpp
Source/WebCore/html/DateInputType.h
Source/WebCore/html/DateTimeLocalInputType.cpp
Source/WebCore/html/DateTimeLocalInputType.h
Source/WebCore/html/EmailInputType.h
Source/WebCore/html/FileInputType.h
Source/WebCore/html/HTMLDataListElement.cpp
Source/WebCore/html/HTMLDataListElement.h
Source/WebCore/html/HTMLOutputElement.cpp
Source/WebCore/html/HTMLOutputElement.h
Source/WebCore/html/HTMLTemplateElement.cpp
Source/WebCore/html/HTMLTemplateElement.h
Source/WebCore/html/HiddenInputType.cpp
Source/WebCore/html/HiddenInputType.h
Source/WebCore/html/ImageInputType.h
Source/WebCore/html/InputType.h
Source/WebCore/html/LabelableElement.h
Source/WebCore/html/LinkRelAttribute.cpp
Source/WebCore/html/LinkRelAttribute.h
Source/WebCore/html/MonthInputType.cpp
Source/WebCore/html/MonthInputType.h
Source/WebCore/html/NumberInputType.cpp
Source/WebCore/html/NumberInputType.h
Source/WebCore/html/PasswordInputType.cpp
Source/WebCore/html/PasswordInputType.h
Source/WebCore/html/RadioInputType.h
Source/WebCore/html/RangeInputType.cpp
Source/WebCore/html/RangeInputType.h
Source/WebCore/html/ResetInputType.cpp
Source/WebCore/html/ResetInputType.h
Source/WebCore/html/SearchInputType.cpp
Source/WebCore/html/SearchInputType.h
Source/WebCore/html/SubmitInputType.cpp
Source/WebCore/html/SubmitInputType.h
Source/WebCore/html/TelephoneInputType.cpp
Source/WebCore/html/TelephoneInputType.h
Source/WebCore/html/TextFieldInputType.cpp
Source/WebCore/html/TextFieldInputType.h
Source/WebCore/html/TextInputType.cpp
Source/WebCore/html/TextInputType.h
Source/WebCore/html/TimeInputType.cpp
Source/WebCore/html/TimeInputType.h
Source/WebCore/html/URLInputType.cpp
Source/WebCore/html/URLInputType.h
Source/WebCore/html/URLRegistry.h
Source/WebCore/html/ValidationMessage.cpp
Source/WebCore/html/ValidationMessage.h
Source/WebCore/html/WeekInputType.cpp
Source/WebCore/html/WeekInputType.h
Source/WebCore/html/parser/*
Source/WebCore/html/shadow/DetailsMarkerControl.cpp
Source/WebCore/html/shadow/DetailsMarkerControl.h
Source/WebCore/html/shadow/ProgressShadowElement.cpp
Source/WebCore/html/shadow/ProgressShadowElement.h
Source/WebCore/html/shadow/SliderThumbElement.cpp
Source/WebCore/html/shadow/SliderThumbElement.h
Source/WebCore/html/track/*
Source/WebCore/inspector/DOMEditor.cpp
Source/WebCore/inspector/DOMEditor.h
Source/WebCore/inspector/DOMPatchSupport.cpp
Source/WebCore/inspector/DOMPatchSupport.h
Source/WebCore/inspector/InspectorController.cpp
Source/WebCore/inspector/InspectorController.h
Source/WebCore/inspector/InspectorFrontendClient.h
Source/WebCore/inspector/InspectorFrontendClientLocal.cpp
Source/WebCore/inspector/InspectorFrontendClientLocal.h
Source/WebCore/inspector/InspectorHistory.cpp
Source/WebCore/inspector/InspectorHistory.h
Source/WebCore/inspector/InspectorInstrumentation.cpp
Source/WebCore/inspector/InspectorInstrumentation.h
Source/WebCore/inspector/InstrumentingAgents.cpp
Source/WebCore/inspector/InstrumentingAgents.h
Source/WebCore/inspector/TimelineRecordFactory.cpp
Source/WebCore/inspector/TimelineRecordFactory.h
Source/WebCore/inspector/UserGestureEmulationScope.cpp
Source/WebCore/inspector/UserGestureEmulationScope.h
Source/WebCore/inspector/WorkerDebugger.cpp
Source/WebCore/inspector/WorkerDebugger.h
Source/WebCore/inspector/agents/InspectorDOMDebuggerAgent.cpp
Source/WebCore/inspector/agents/InspectorDOMDebuggerAgent.h
Source/WebCore/inspector/agents/InspectorIndexedDBAgent.cpp
Source/WebCore/inspector/agents/InspectorIndexedDBAgent.h
Source/WebCore/inspector/agents/InspectorLayerTreeAgent.cpp
Source/WebCore/inspector/agents/InspectorNetworkAgent.cpp
Source/WebCore/inspector/agents/InspectorNetworkAgent.h
Source/WebCore/inspector/agents/InspectorPageAgent.cpp
Source/WebCore/inspector/agents/InspectorPageAgent.h
Source/WebCore/inspector/agents/InspectorTimelineAgent.cpp
Source/WebCore/inspector/agents/InspectorTimelineAgent.h
Source/WebCore/inspector/agents/page/*
Source/WebCore/inspector/agents/worker/*
Source/WebCore/loader/DocumentThreadableLoader.cpp
Source/WebCore/loader/DocumentThreadableLoader.h
Source/WebCore/loader/FormSubmission.cpp
Source/WebCore/loader/FormSubmission.h
Source/WebCore/loader/FrameLoadRequest.cpp
Source/WebCore/loader/FrameLoaderStateMachine.cpp
Source/WebCore/loader/FrameLoaderStateMachine.h
Source/WebCore/loader/LinkLoader.cpp
Source/WebCore/loader/LinkLoader.h
Source/WebCore/loader/LinkLoaderClient.h
Source/WebCore/loader/MixedContentChecker.h
Source/WebCore/loader/PingLoader.cpp
Source/WebCore/loader/PingLoader.h
Source/WebCore/loader/ResourceLoaderOptions.h
Source/WebCore/loader/ThreadableLoader.cpp
Source/WebCore/loader/ThreadableLoader.h
Source/WebCore/loader/ThreadableLoaderClient.h
Source/WebCore/loader/ThreadableLoaderClientWrapper.h
Source/WebCore/loader/WorkerThreadableLoader.cpp
Source/WebCore/loader/WorkerThreadableLoader.h
Source/WebCore/loader/appcache/ApplicationCacheHost.h
Source/WebCore/loader/archive/mhtml/*
Source/WebCore/page/ContextMenuProvider.h
Source/WebCore/page/Crypto.cpp
Source/WebCore/page/Crypto.h
Source/WebCore/page/OriginAccessEntry.cpp
Source/WebCore/page/OriginAccessEntry.h
Source/WebCore/page/PageSerializer.cpp
Source/WebCore/page/Performance.cpp
Source/WebCore/page/Performance.h
Source/WebCore/page/PerformanceEntry.cpp
Source/WebCore/page/PerformanceEntry.h
Source/WebCore/page/PerformanceNavigation.cpp
Source/WebCore/page/PerformanceNavigation.h
Source/WebCore/page/PerformanceResourceTiming.cpp
Source/WebCore/page/PerformanceResourceTiming.h
Source/WebCore/page/PerformanceTiming.cpp
Source/WebCore/page/PerformanceTiming.h
Source/WebCore/page/SecurityPolicy.cpp
Source/WebCore/page/SecurityPolicy.h
Source/WebCore/platform/DateComponents.cpp
Source/WebCore/platform/DateComponents.h
Source/WebCore/platform/DateTimeChooser.h
Source/WebCore/platform/DateTimeChooserClient.h
Source/WebCore/platform/Decimal.cpp
Source/WebCore/platform/Decimal.h
Source/WebCore/platform/FileStream.cpp
Source/WebCore/platform/FileStream.h
Source/WebCore/platform/FileStreamClient.h
Source/WebCore/platform/LayoutUnit.h
Source/WebCore/platform/ReferrerPolicy.h
Source/WebCore/platform/ScrollAnimator.cpp
Source/WebCore/platform/ScrollAnimator.h
Source/WebCore/platform/ScrollableArea.cpp
Source/WebCore/platform/SharedBufferChunkReader.cpp
Source/WebCore/platform/SharedBufferChunkReader.h
Source/WebCore/platform/WebCoreCrossThreadCopier.cpp
Source/WebCore/platform/WebCoreCrossThreadCopier.h
Source/WebCore/platform/audio/AudioDSPKernel.h
Source/WebCore/platform/audio/AudioDSPKernelProcessor.cpp
Source/WebCore/platform/audio/AudioDSPKernelProcessor.h
Source/WebCore/platform/audio/AudioProcessor.h
Source/WebCore/platform/calc/*
Source/WebCore/platform/generic/*
Source/WebCore/platform/graphics/GeneratedImage.cpp
Source/WebCore/platform/graphics/LayoutPoint.h
Source/WebCore/platform/graphics/LayoutRect.cpp
Source/WebCore/platform/graphics/LayoutRect.h
Source/WebCore/platform/graphics/LayoutSize.h
Source/WebCore/platform/graphics/MediaSourcePrivate.h
Source/WebCore/platform/graphics/SourceBufferPrivate.h
Source/WebCore/platform/graphics/TabSize.h
Source/WebCore/platform/graphics/gstreamer/mse/*
Source/WebCore/platform/image-decoders/bmp/*
Source/WebCore/platform/image-decoders/ico/*
Source/WebCore/platform/mediastream/MediaConstraints.cpp
Source/WebCore/platform/mediastream/MediaConstraints.h
Source/WebCore/platform/mediastream/MediaStreamPrivate.cpp
Source/WebCore/platform/mediastream/RTCIceCandidateDescriptor.cpp
Source/WebCore/platform/mediastream/RTCIceCandidateDescriptor.h
Source/WebCore/platform/mediastream/RTCPeerConnectionHandlerClient.h
Source/WebCore/platform/mediastream/RTCSessionDescriptionDescriptor.cpp
Source/WebCore/platform/mediastream/RTCSessionDescriptionDescriptor.h
Source/WebCore/platform/mediastream/RTCSessionDescriptionRequest.h
Source/WebCore/platform/mediastream/RTCVoidRequest.h
Source/WebCore/platform/mediastream/RealtimeIncomingAudioSource.cpp
Source/WebCore/platform/mediastream/RealtimeIncomingVideoSource.cpp
Source/WebCore/platform/mediastream/RealtimeMediaSource.cpp
Source/WebCore/platform/mediastream/RealtimeMediaSourceSettings.cpp
Source/WebCore/platform/mediastream/RealtimeMediaSourceSupportedConstraints.h
Source/WebCore/platform/mock/GeolocationClientMock.cpp
Source/WebCore/platform/mock/GeolocationClientMock.h
Source/WebCore/platform/mock/MockRealtimeAudioSource.cpp
Source/WebCore/platform/mock/MockRealtimeVideoSource.cpp
Source/WebCore/platform/mock/ScrollbarsControllerMock.cpp
Source/WebCore/platform/mock/ScrollbarsControllerMock.h
Source/WebCore/platform/network/BlobData.cpp
Source/WebCore/platform/network/BlobData.h
Source/WebCore/platform/network/BlobRegistry.h
Source/WebCore/platform/network/BlobRegistryImpl.cpp
Source/WebCore/platform/network/BlobRegistryImpl.h
Source/WebCore/platform/network/BlobResourceHandle.cpp
Source/WebCore/platform/network/BlobResourceHandle.h
Source/WebCore/platform/network/HTTPHeaderMap.cpp
Source/WebCore/platform/network/MIMEHeader.cpp
Source/WebCore/platform/network/MIMEHeader.h
Source/WebCore/platform/network/ParsedContentType.cpp
Source/WebCore/platform/network/ParsedContentType.h
Source/WebCore/platform/network/SocketStreamError.h
Source/WebCore/platform/network/SocketStreamHandle.cpp
Source/WebCore/platform/network/SocketStreamHandle.h
Source/WebCore/platform/network/SocketStreamHandleClient.h
Source/WebCore/platform/network/create-http-header-name-table
Source/WebCore/platform/network/soup/SocketStreamHandleImpl.h
Source/WebCore/platform/sql/SQLiteFileSystem.cpp
Source/WebCore/platform/sql/SQLiteFileSystem.h
Source/WebCore/platform/text/*
Source/WebCore/rendering/FlexibleBoxAlgorithm.cpp
Source/WebCore/rendering/FlexibleBoxAlgorithm.h
Source/WebCore/rendering/GridBaselineAlignment.cpp
Source/WebCore/rendering/OrderIterator.cpp
Source/WebCore/rendering/OrderIterator.h
Source/WebCore/rendering/RenderFlexibleBox.cpp
Source/WebCore/rendering/RenderFlexibleBox.h
Source/WebCore/rendering/RenderRuby.cpp
Source/WebCore/rendering/RenderRuby.h
Source/WebCore/rendering/RenderRubyBase.cpp
Source/WebCore/rendering/RenderRubyBase.h
Source/WebCore/rendering/RenderRubyRun.cpp
Source/WebCore/rendering/RenderRubyRun.h
Source/WebCore/rendering/RenderRubyText.cpp
Source/WebCore/rendering/RenderRubyText.h
Source/WebCore/rendering/style/*
Source/WebCore/rendering/svg/*
Source/WebCore/testing/MemoryInfo.h
Source/WebCore/workers/*
Source/WebInspectorUI/UserInterface/Base/Setting.js
Source/WebInspectorUI/UserInterface/Controllers/DOMManager.js
Source/WebInspectorUI/UserInterface/Models/CSSCompletions.js
Source/WebInspectorUI/UserInterface/Models/CSSKeywordCompletions.js
Source/WebInspectorUI/UserInterface/Models/DOMNode.js
Source/WebInspectorUI/UserInterface/Protocol/*
Source/WebInspectorUI/UserInterface/Views/ContextMenu.js
Source/WebInspectorUI/UserInterface/Workers/HeapSnapshot/HeapSnapshot.js
Source/WebKit/NetworkProcess/*
Source/WebKit/WebProcess/Network/WebSocketProvider.cpp
Tools/TestWebKitAPI/Tests/WTF/SHA1.cpp
Tools/TestWebKitAPI/Tests/WTF/SaturatedArithmeticOperations.cpp
Tools/TestWebKitAPI/Tests/WTF/StringBuilder.cpp
Tools/TestWebKitAPI/Tests/WTF/StringCommon.cpp
Tools/TestWebKitAPI/Tests/WebCore/*
Tools/TestWebKitAPI/WTFStringUtilities.h
Copyright: 2004-2022 Apple Inc
2005-2021 Google Inc
2006-2008, 2010, 2012 the V8 project authors
2007-2009 Torch Mobile Inc
2008 Cameron Zwarich <cwzwarich@uwaterloo.ca>
2009-2010 Joseph Pecoraro
2010 Nikita Vasilyev
2011 Daniel Bates <dbates@intudata.com>
2011, 2015-2016 Ericsson AB
2012 Google AB
2012 Intel Corporation
2012 Intel Inc
2012 Research In Motion Limited
2012 Samsung Electronics
2013 Cable Television Labs Inc
2013 Nokia
2013 Opera Software ASA
2013-2022 Igalia S.L.
2014 PDFium Authors
2014 University of Washington
2014-2019 The Chromium Authors
2015 Roopesh Chander <roop@roopc.net>
2018-2019 Google LLC
2019 Microsoft Corporation
2020-2021 Metrological Group B.V
License: BSD-3-clause-google
Files: Source/ThirdParty/ANGLE/util/windows/third_party/StackWalker/src/StackWalker.h
Copyright: 2005-2009 Jochen Kalmbach
License: BSD-3-clause-jochen-kalmbach
Files: Source/JavaScriptCore/inspector/InspectorTarget.cpp
Copyright: 2019 Microsoft Corporation
License: BSD-3-clause-microsoft
Files: Source/WebCore/css/CSSSupportsRule.cpp
Source/WebCore/css/CSSSupportsRule.h
Source/WebCore/css/DOMCSSNamespace.cpp
Source/WebCore/css/DOMCSSNamespace.h
Source/WebKit/Shared/API/APIObject.cpp
Source/WebKit/UIProcess/API/glib/WebKitSettings.cpp
Source/WebKit/UIProcess/API/wpe/WebKitSettings.h
Tools/TestWebKitAPI/Tests/WebKitGLib/TestWebKitSettings.cpp
Copyright: 2011-2012 Motorola Mobility
2020 Apple Inc
License: BSD-3-clause-motorola
Files: Source/WebCore/html/track/VTTScanner.cpp
Source/WebCore/html/track/VTTScanner.h
Source/WebCore/rendering/RenderMultiColumnSpannerPlaceholder.cpp
Source/WebCore/rendering/RenderMultiColumnSpannerPlaceholder.h
Copyright: 2013-2014 Opera Software ASA
License: BSD-3-clause-opera
Files: Source/WTF/wtf/Brigand.h
Copyright: 2015 Edouard Alligand and Joel Falcou
License: BSL-1.0
Files: Source/JavaScriptCore/Scripts/jsmin.py
Source/JavaScriptCore/disassembler/zydis/Zydis/*
Source/ThirdParty/ANGLE/src/libANGLE/renderer/vulkan/shaders/src/third_party/ffx_spd/*
Source/ThirdParty/ANGLE/src/third_party/volk/*
Source/ThirdParty/ANGLE/third_party/renderdoc/src/renderdoc_app.h
Source/WebCore/xml/XSLTExtensions.cpp
Copyright: 2001-2002 Thomas Broyer, Charlie Bozeman and Daniel Veillard
2007 Alexey Proskuryakov <ap@webkit.org>
2013 Dave St.Germain
2015-2018 Baldur Karlsson
2017-2020 Advanced Micro Devices Inc
2018-2019 Arseny Kapoulkine <arseny.kapoulkine@gmail.com>
License: Expat
Files: Source/JavaScriptCore/runtime/JSDateMath.h
Source/WTF/wtf/DateMath.h
Copyright: 1999-2000 Harri Porten <porten@kde.org>
2006-2020 Apple Inc
2009 Google Inc
2010 Research In Motion Limited
License: GPL-2+ or LGPL-2.1+ or MPL-1.1
Files: Source/bmalloc/bmalloc/valgrind.h
Copyright: 2000-2017 Julian Seward
License: BSD-4-clause-valgrind
Files: Source/WebCore/platform/image-decoders/gif/*
Copyright: 1998 Netscape Communications Corporation
License: GPL-2+ or LGPL-2.1+ or MPL-1.1
Files: Source/WebCore/xml/XPathGrammar.cpp
Source/WebCore/xml/XPathGrammar.h
Copyright: 1984, 1989-1990, 2000-2006 Free Software Foundation Inc
License: GPL-2+ with Bison exception
Files: Source/ThirdParty/ANGLE/tools/flex-bison/third_party/skeletons/yacc.c
Copyright: 1984, 1989-1990, 2000-2015, 2018-2019 Free Software
License: GPL-3+
Files: Source/ThirdParty/ANGLE/src/compiler/preprocessor/preprocessor_tab_autogen.cpp
Source/ThirdParty/ANGLE/src/compiler/translator/*
Copyright: 1984, 1989-1990, 2000-2015, 2018-2019 Free Software Foundation,
License: GPL-3+ with Bison exception
Files: Source/WTF/wtf/CryptographicallyRandomNumber.cpp
Source/bmalloc/bmalloc/CryptoRandom.cpp
Copyright: 1996 David Mazieres <dm@uun.org>
2008 Damien Miller <djm@openbsd.org>
2017 Apple Inc
License: ISC
Files: Source/ThirdParty/ANGLE/include/GLES/gl.h
Source/ThirdParty/ANGLE/include/GLES/glext.h
Source/ThirdParty/ANGLE/include/KHR/khrplatform.h
Source/ThirdParty/ANGLE/include/WGL/wgl.h
Source/ThirdParty/ANGLE/src/third_party/khronos/GL/wglext.h
Copyright: 2008-2018 The Khronos Group Inc
License: Expat
Files: Source/WTF/wtf/text/Base64.cpp
Source/WebCore/rendering/AutoTableLayout.cpp
Source/WebCore/rendering/AutoTableLayout.h
Source/WebCore/rendering/FixedTableLayout.cpp
Source/WebCore/rendering/FixedTableLayout.h
Source/WebCore/rendering/TableLayout.h
Copyright: 2000-2001 Dawit Alemayehu <adawit@kde.org>
2002 Dirk Mueller <mueller@kde.org>
2002 Lars Knoll <knoll@kde.org>
2003-2021 Apple Inc
2006 Alexey Proskuryakov <ap@webkit.org>
2010 Patrick Gansterer <paroga@paroga.com>
License: LGPL-2
Files: Source/JavaScriptCore/API/JSAPIValueWrapper.cpp
Source/JavaScriptCore/API/JSAPIValueWrapper.h
Source/JavaScriptCore/API/glib/*
Source/JavaScriptCore/bytecompiler/NodesCodegen.cpp
Source/JavaScriptCore/config.h
Source/JavaScriptCore/create_hash_table
Source/JavaScriptCore/debugger/Debugger.cpp
Source/JavaScriptCore/debugger/Debugger.h
Source/JavaScriptCore/heap/Heap.cpp
Source/JavaScriptCore/heap/Heap.h
Source/JavaScriptCore/heap/MachineStackMarker.cpp
Source/JavaScriptCore/heap/MachineStackMarker.h
Source/JavaScriptCore/heap/MarkedBlock.h
Source/JavaScriptCore/heap/MarkedSpace.cpp
Source/JavaScriptCore/heap/MarkedSpace.h
Source/JavaScriptCore/inspector/scripts/codegen/preprocess.pl
Source/JavaScriptCore/interpreter/CallFrame.h
Source/JavaScriptCore/jsc.cpp
Source/JavaScriptCore/parser/Lexer.cpp
Source/JavaScriptCore/parser/Lexer.h
Source/JavaScriptCore/parser/NodeConstructors.h
Source/JavaScriptCore/parser/Nodes.cpp
Source/JavaScriptCore/parser/Nodes.h
Source/JavaScriptCore/parser/Parser.cpp
Source/JavaScriptCore/parser/Parser.h
Source/JavaScriptCore/runtime/ArgList.cpp
Source/JavaScriptCore/runtime/ArgList.h
Source/JavaScriptCore/runtime/ArrayConstructor.cpp
Source/JavaScriptCore/runtime/ArrayConstructor.h
Source/JavaScriptCore/runtime/ArrayConventions.h
Source/JavaScriptCore/runtime/ArrayPrototype.cpp
Source/JavaScriptCore/runtime/ArrayPrototype.h
Source/JavaScriptCore/runtime/BooleanConstructor.cpp
Source/JavaScriptCore/runtime/BooleanConstructor.h
Source/JavaScriptCore/runtime/BooleanObject.cpp
Source/JavaScriptCore/runtime/BooleanObject.h
Source/JavaScriptCore/runtime/BooleanPrototype.cpp
Source/JavaScriptCore/runtime/BooleanPrototype.h
Source/JavaScriptCore/runtime/ClassInfo.h
Source/JavaScriptCore/runtime/CommonIdentifiers.cpp
Source/JavaScriptCore/runtime/CommonIdentifiers.h
Source/JavaScriptCore/runtime/Completion.cpp
Source/JavaScriptCore/runtime/Completion.h
Source/JavaScriptCore/runtime/DateConstructor.cpp
Source/JavaScriptCore/runtime/DateConstructor.h
Source/JavaScriptCore/runtime/DateInstance.cpp
Source/JavaScriptCore/runtime/DateInstance.h
Source/JavaScriptCore/runtime/DatePrototype.cpp
Source/JavaScriptCore/runtime/DatePrototype.h
Source/JavaScriptCore/runtime/Error.cpp
Source/JavaScriptCore/runtime/Error.h
Source/JavaScriptCore/runtime/ErrorConstructor.cpp
Source/JavaScriptCore/runtime/ErrorConstructor.h
Source/JavaScriptCore/runtime/ErrorInstance.cpp
Source/JavaScriptCore/runtime/ErrorInstance.h
Source/JavaScriptCore/runtime/ErrorPrototype.cpp
Source/JavaScriptCore/runtime/ErrorPrototype.h
Source/JavaScriptCore/runtime/FunctionConstructor.cpp
Source/JavaScriptCore/runtime/FunctionConstructor.h
Source/JavaScriptCore/runtime/FunctionPrototype.cpp
Source/JavaScriptCore/runtime/FunctionPrototype.h
Source/JavaScriptCore/runtime/GetterSetter.cpp
Source/JavaScriptCore/runtime/GetterSetter.h
Source/JavaScriptCore/runtime/Identifier.cpp
Source/JavaScriptCore/runtime/Identifier.h
Source/JavaScriptCore/runtime/InternalFunction.cpp
Source/JavaScriptCore/runtime/InternalFunction.h
Source/JavaScriptCore/runtime/JSArray.cpp
Source/JavaScriptCore/runtime/JSArray.h
Source/JavaScriptCore/runtime/JSArrayInlines.h
Source/JavaScriptCore/runtime/JSCJSValue.cpp
Source/JavaScriptCore/runtime/JSCJSValue.h
Source/JavaScriptCore/runtime/JSCell.cpp
Source/JavaScriptCore/runtime/JSCell.h
Source/JavaScriptCore/runtime/JSFunction.cpp
Source/JavaScriptCore/runtime/JSFunction.h
Source/JavaScriptCore/runtime/JSGlobalObject.h
Source/JavaScriptCore/runtime/JSGlobalObjectFunctions.cpp
Source/JavaScriptCore/runtime/JSGlobalObjectFunctions.h
Source/JavaScriptCore/runtime/JSLock.cpp
Source/JavaScriptCore/runtime/JSLock.h
Source/JavaScriptCore/runtime/JSObject.cpp
Source/JavaScriptCore/runtime/JSObject.h
Source/JavaScriptCore/runtime/JSObjectInlines.h
Source/JavaScriptCore/runtime/JSString.cpp
Source/JavaScriptCore/runtime/JSString.h
Source/JavaScriptCore/runtime/JSType.h
Source/JavaScriptCore/runtime/JSWrapperObject.cpp
Source/JavaScriptCore/runtime/JSWrapperObject.h
Source/JavaScriptCore/runtime/Lookup.cpp
Source/JavaScriptCore/runtime/Lookup.h
Source/JavaScriptCore/runtime/MathObject.cpp
Source/JavaScriptCore/runtime/MathObject.h
Source/JavaScriptCore/runtime/NativeErrorConstructor.cpp
Source/JavaScriptCore/runtime/NativeErrorConstructor.h
Source/JavaScriptCore/runtime/NativeErrorPrototype.cpp
Source/JavaScriptCore/runtime/NativeErrorPrototype.h
Source/JavaScriptCore/runtime/NumberConstructor.cpp
Source/JavaScriptCore/runtime/NumberConstructor.h
Source/JavaScriptCore/runtime/NumberObject.cpp
Source/JavaScriptCore/runtime/NumberObject.h
Source/JavaScriptCore/runtime/NumberPrototype.cpp
Source/JavaScriptCore/runtime/NumberPrototype.h
Source/JavaScriptCore/runtime/ObjectConstructor.cpp
Source/JavaScriptCore/runtime/ObjectConstructor.h
Source/JavaScriptCore/runtime/ObjectPrototype.cpp
Source/JavaScriptCore/runtime/ObjectPrototype.h
Source/JavaScriptCore/runtime/Operations.cpp
Source/JavaScriptCore/runtime/Operations.h
Source/JavaScriptCore/runtime/PropertyNameArray.h
Source/JavaScriptCore/runtime/PropertySlot.cpp
Source/JavaScriptCore/runtime/PropertySlot.h
Source/JavaScriptCore/runtime/PropertyTable.h
Source/JavaScriptCore/runtime/Protect.h
Source/JavaScriptCore/runtime/RegExp.cpp
Source/JavaScriptCore/runtime/RegExp.h
Source/JavaScriptCore/runtime/RegExpConstructor.cpp
Source/JavaScriptCore/runtime/RegExpConstructor.h
Source/JavaScriptCore/runtime/RegExpInlines.h
Source/JavaScriptCore/runtime/RegExpMatchesArray.h
Source/JavaScriptCore/runtime/RegExpObject.cpp
Source/JavaScriptCore/runtime/RegExpObject.h
Source/JavaScriptCore/runtime/RegExpObjectInlines.h
Source/JavaScriptCore/runtime/RegExpPrototype.cpp
Source/JavaScriptCore/runtime/RegExpPrototype.h
Source/JavaScriptCore/runtime/StringConstructor.cpp
Source/JavaScriptCore/runtime/StringConstructor.h
Source/JavaScriptCore/runtime/StringObject.cpp
Source/JavaScriptCore/runtime/StringObject.h
Source/JavaScriptCore/runtime/StringPrototype.cpp
Source/JavaScriptCore/runtime/StringPrototype.h
Source/JavaScriptCore/runtime/StringRecursionChecker.cpp
Source/JavaScriptCore/runtime/StringRecursionChecker.h
Source/JavaScriptCore/runtime/SymbolObject.h
Source/JavaScriptCore/runtime/TemporalNow.cpp
Source/JavaScriptCore/runtime/TemporalNow.h
Source/JavaScriptCore/runtime/TemporalObject.cpp
Source/JavaScriptCore/runtime/TemporalObject.h
Source/JavaScriptCore/testRegExp.cpp
Source/JavaScriptCore/yarr/hasher.py
Source/WTF/config.h
Source/WTF/wtf/Bitmap.h
Source/WTF/wtf/DataMutex.h
Source/WTF/wtf/DataRef.h
Source/WTF/wtf/FastMalloc.h
Source/WTF/wtf/Forward.h
Source/WTF/wtf/GetPtr.h
Source/WTF/wtf/HashCountedSet.h
Source/WTF/wtf/HashFunctions.h
Source/WTF/wtf/HashMap.h
Source/WTF/wtf/HashSet.h
Source/WTF/wtf/HashTable.cpp
Source/WTF/wtf/HashTable.h
Source/WTF/wtf/HashTraits.h
Source/WTF/wtf/Hasher.h
Source/WTF/wtf/HexNumber.cpp
Source/WTF/wtf/HexNumber.h
Source/WTF/wtf/ListHashSet.h
Source/WTF/wtf/MainThreadData.h
Source/WTF/wtf/Noncopyable.h
Source/WTF/wtf/NumberOfCores.h
Source/WTF/wtf/RefCounted.cpp
Source/WTF/wtf/RefCounted.h
Source/WTF/wtf/RefCountedLeakCounter.cpp
Source/WTF/wtf/RefCountedLeakCounter.h
Source/WTF/wtf/RefPtr.h
Source/WTF/wtf/RetainPtr.h
Source/WTF/wtf/StackBounds.cpp
Source/WTF/wtf/Vector.h
Source/WTF/wtf/VectorTraits.h
Source/WTF/wtf/dtoa.cpp
Source/WTF/wtf/dtoa.h
Source/WTF/wtf/glib/*
Source/WTF/wtf/linux/RealTimeThreads.h
Source/WTF/wtf/text/ASCIIFastPath.h
Source/WTF/wtf/text/AtomString.cpp
Source/WTF/wtf/text/AtomString.h
Source/WTF/wtf/text/AtomStringImpl.cpp
Source/WTF/wtf/text/AtomStringImpl.h
Source/WTF/wtf/text/AtomStringTable.cpp
Source/WTF/wtf/text/AtomStringTable.h
Source/WTF/wtf/text/IntegerToStringConversion.h
Source/WTF/wtf/text/NullTextBreakIterator.h
Source/WTF/wtf/text/StringHash.h
Source/WTF/wtf/text/StringHasher.h
Source/WTF/wtf/text/StringImpl.cpp
Source/WTF/wtf/text/StringImpl.h
Source/WTF/wtf/text/StringOperators.h
Source/WTF/wtf/text/TextBreakIterator.cpp
Source/WTF/wtf/text/TextBreakIterator.h
Source/WTF/wtf/text/TextBreakIteratorInternalICU.h
Source/WTF/wtf/text/WTFString.cpp
Source/WTF/wtf/text/WTFString.h
Source/WTF/wtf/text/icu/TextBreakIteratorICU.h
Source/WTF/wtf/text/unix/TextBreakIteratorInternalICUUnix.cpp
Source/WTF/wtf/unix/*
Source/WebCore/Modules/geolocation/*
Source/WebCore/Modules/mediastream/gstreamer/*
Source/WebCore/Modules/webaudio/MediaStreamAudioSourceGStreamer.cpp
Source/WebCore/Modules/websockets/WebSocketFrame.cpp
Source/WebCore/PAL/config.h
Source/WebCore/WebCorePrefix.h
Source/WebCore/accessibility/AccessibilityProgressIndicator.cpp
Source/WebCore/accessibility/AccessibilityProgressIndicator.h
Source/WebCore/accessibility/atspi/*
Source/WebCore/bindings/js/DOMWrapperWorld.cpp
Source/WebCore/bindings/js/DOMWrapperWorld.h
Source/WebCore/bindings/js/JSCanvasRenderingContext2DCustom.cpp
Source/WebCore/bindings/js/JSDOMAttribute.h
Source/WebCore/bindings/js/JSDOMBinding.h
Source/WebCore/bindings/js/JSDOMBindingSecurity.cpp
Source/WebCore/bindings/js/JSDOMBindingSecurity.h
Source/WebCore/bindings/js/JSDOMBuiltinConstructor.h
Source/WebCore/bindings/js/JSDOMBuiltinConstructorBase.cpp
Source/WebCore/bindings/js/JSDOMBuiltinConstructorBase.h
Source/WebCore/bindings/js/JSDOMConstructor.h
Source/WebCore/bindings/js/JSDOMConstructorBase.cpp
Source/WebCore/bindings/js/JSDOMConstructorBase.h
Source/WebCore/bindings/js/JSDOMConstructorNotConstructable.h
Source/WebCore/bindings/js/JSDOMConstructorWithDocument.cpp
Source/WebCore/bindings/js/JSDOMConstructorWithDocument.h
Source/WebCore/bindings/js/JSDOMConvertDate.cpp
Source/WebCore/bindings/js/JSDOMConvertNumbers.cpp
Source/WebCore/bindings/js/JSDOMConvertStrings.cpp
Source/WebCore/bindings/js/JSDOMExceptionHandling.cpp
Source/WebCore/bindings/js/JSDOMExceptionHandling.h
Source/WebCore/bindings/js/JSDOMLegacyFactoryFunction.h
Source/WebCore/bindings/js/JSDOMOperation.h
Source/WebCore/bindings/js/JSDOMOperationReturningPromise.h
Source/WebCore/bindings/js/JSDOMWindowBase.cpp
Source/WebCore/bindings/js/JSDOMWindowBase.h
Source/WebCore/bindings/js/JSDOMWindowCustom.cpp
Source/WebCore/bindings/js/JSDOMWindowCustom.h
Source/WebCore/bindings/js/JSDOMWrapper.h
Source/WebCore/bindings/js/JSDOMWrapperCache.cpp
Source/WebCore/bindings/js/JSDOMWrapperCache.h
Source/WebCore/bindings/js/JSDocumentCustom.cpp
Source/WebCore/bindings/js/JSEventListener.cpp
Source/WebCore/bindings/js/JSEventListener.h
Source/WebCore/bindings/js/JSHTMLCollectionCustom.cpp
Source/WebCore/bindings/js/JSLazyEventListener.cpp
Source/WebCore/bindings/js/JSLazyEventListener.h
Source/WebCore/bindings/js/JSLocationCustom.cpp
Source/WebCore/bindings/js/JSNodeIteratorCustom.cpp
Source/WebCore/bindings/js/JSOffscreenCanvasRenderingContext2DCustom.cpp
Source/WebCore/bindings/js/JSPluginElementFunctions.cpp
Source/WebCore/bindings/js/JSPluginElementFunctions.h
Source/WebCore/bindings/js/JSSVGPathSegCustom.cpp
Source/WebCore/bindings/js/JSTreeWalkerCustom.cpp
Source/WebCore/bindings/js/ScheduledAction.cpp
Source/WebCore/bindings/js/ScheduledAction.h
Source/WebCore/bindings/js/ScriptController.cpp
Source/WebCore/bindings/js/ScriptController.h
Source/WebCore/bindings/js/WebCoreJSClientData.h
Source/WebCore/bindings/js/WindowProxy.cpp
Source/WebCore/bindings/js/WindowProxy.h
Source/WebCore/bindings/scripts/*
Source/WebCore/bridge/testbindings.cpp
Source/WebCore/config.h
Source/WebCore/css/CSSBorderImage.cpp
Source/WebCore/css/CSSBorderImage.h
Source/WebCore/css/CSSComputedStyleDeclaration.cpp
Source/WebCore/css/CSSComputedStyleDeclaration.h
Source/WebCore/css/CSSCursorImageValue.cpp
Source/WebCore/css/CSSCursorImageValue.h
Source/WebCore/css/CSSFontFaceRule.cpp
Source/WebCore/css/CSSFontFaceRule.h
Source/WebCore/css/CSSFontValue.cpp
Source/WebCore/css/CSSFontValue.h
Source/WebCore/css/CSSGroupingRule.h
Source/WebCore/css/CSSHelper.h
Source/WebCore/css/CSSImageValue.cpp
Source/WebCore/css/CSSImageValue.h
Source/WebCore/css/CSSImportRule.cpp
Source/WebCore/css/CSSImportRule.h
Source/WebCore/css/CSSMarkup.cpp
Source/WebCore/css/CSSMarkup.h
Source/WebCore/css/CSSMediaRule.cpp
Source/WebCore/css/CSSMediaRule.h
Source/WebCore/css/CSSPageRule.cpp
Source/WebCore/css/CSSPageRule.h
Source/WebCore/css/CSSPrimitiveValue.cpp
Source/WebCore/css/CSSPrimitiveValue.h
Source/WebCore/css/CSSProperty.cpp
Source/WebCore/css/CSSProperty.h
Source/WebCore/css/CSSRule.cpp
Source/WebCore/css/CSSRule.h
Source/WebCore/css/CSSRuleList.cpp
Source/WebCore/css/CSSRuleList.h
Source/WebCore/css/CSSSelector.cpp
Source/WebCore/css/CSSSelector.h
Source/WebCore/css/CSSShadowValue.cpp
Source/WebCore/css/CSSShadowValue.h
Source/WebCore/css/CSSStyleDeclaration.h
Source/WebCore/css/CSSStyleRule.cpp
Source/WebCore/css/CSSStyleRule.h
Source/WebCore/css/CSSStyleSheet.cpp
Source/WebCore/css/CSSStyleSheet.h
Source/WebCore/css/CSSToStyleMap.cpp
Source/WebCore/css/CSSToStyleMap.h
Source/WebCore/css/CSSUnits.cpp
Source/WebCore/css/CSSUnits.h
Source/WebCore/css/CSSUnknownRule.h
Source/WebCore/css/CSSValue.h
Source/WebCore/css/CSSValueList.cpp
Source/WebCore/css/CSSValueList.h
Source/WebCore/css/Counter.h
Source/WebCore/css/DeprecatedCSSOMRGBColor.h
Source/WebCore/css/LengthFunctions.cpp
Source/WebCore/css/LengthFunctions.h
Source/WebCore/css/MediaFeatureNames.cpp
Source/WebCore/css/MediaFeatureNames.h
Source/WebCore/css/MediaList.cpp
Source/WebCore/css/MediaList.h
Source/WebCore/css/MediaQueryList.cpp
Source/WebCore/css/MediaQueryList.h
Source/WebCore/css/MediaQueryMatcher.cpp
Source/WebCore/css/MediaQueryMatcher.h
Source/WebCore/css/Pair.h
Source/WebCore/css/PropertySetCSSStyleDeclaration.cpp
Source/WebCore/css/Rect.h
Source/WebCore/css/SVGCSSComputedStyleDeclaration.cpp
Source/WebCore/css/SelectorChecker.cpp
Source/WebCore/css/SelectorChecker.h
Source/WebCore/css/SelectorFilter.cpp
Source/WebCore/css/SelectorFilter.h
Source/WebCore/css/StyleProperties.cpp
Source/WebCore/css/StyleProperties.h
Source/WebCore/css/StylePropertyShorthand.cpp
Source/WebCore/css/StylePropertyShorthand.h
Source/WebCore/css/StyleRule.cpp
Source/WebCore/css/StyleRule.h
Source/WebCore/css/StyleRuleImport.cpp
Source/WebCore/css/StyleRuleImport.h
Source/WebCore/css/StyleSheet.cpp
Source/WebCore/css/StyleSheet.h
Source/WebCore/css/StyleSheetContents.cpp
Source/WebCore/css/StyleSheetContents.h
Source/WebCore/css/StyleSheetList.cpp
Source/WebCore/css/StyleSheetList.h
Source/WebCore/css/html.css
Source/WebCore/css/make-css-file-arrays.pl
Source/WebCore/css/makeprop.pl
Source/WebCore/css/makevalues.pl
Source/WebCore/css/parser/CSSParser.cpp
Source/WebCore/css/parser/CSSParser.h
Source/WebCore/css/parser/CSSParserObserver.h
Source/WebCore/css/parser/CSSParserSelector.cpp
Source/WebCore/css/parser/CSSParserSelector.h
Source/WebCore/css/parser/CSSPropertyParser.h
Source/WebCore/css/quirks.css
Source/WebCore/css/themeAdwaita.css
Source/WebCore/dom/Attr.cpp
Source/WebCore/dom/Attr.h
Source/WebCore/dom/Attribute.h
Source/WebCore/dom/BeforeUnloadEvent.cpp
Source/WebCore/dom/BeforeUnloadEvent.h
Source/WebCore/dom/CDATASection.cpp
Source/WebCore/dom/CDATASection.h
Source/WebCore/dom/CharacterData.cpp
Source/WebCore/dom/CharacterData.h
Source/WebCore/dom/ChildNodeList.cpp
Source/WebCore/dom/ChildNodeList.h
Source/WebCore/dom/ClipboardEvent.cpp
Source/WebCore/dom/ClipboardEvent.h
Source/WebCore/dom/Comment.cpp
Source/WebCore/dom/Comment.h
Source/WebCore/dom/ContainerNode.cpp
Source/WebCore/dom/ContainerNode.h
Source/WebCore/dom/ContainerNodeAlgorithms.cpp
Source/WebCore/dom/ContainerNodeAlgorithms.h
Source/WebCore/dom/DOMImplementation.cpp
Source/WebCore/dom/DOMImplementation.h
Source/WebCore/dom/DataTransfer.h
Source/WebCore/dom/Document.cpp
Source/WebCore/dom/Document.h
Source/WebCore/dom/DocumentFragment.cpp
Source/WebCore/dom/DocumentFragment.h
Source/WebCore/dom/DocumentMarker.h
Source/WebCore/dom/DocumentMarkerController.cpp
Source/WebCore/dom/DocumentMarkerController.h
Source/WebCore/dom/DocumentParser.h
Source/WebCore/dom/DocumentType.cpp
Source/WebCore/dom/DocumentType.h
Source/WebCore/dom/Element.cpp
Source/WebCore/dom/Element.h
Source/WebCore/dom/ElementRareData.h
Source/WebCore/dom/ElementTraversal.h
Source/WebCore/dom/Event.cpp
Source/WebCore/dom/Event.h
Source/WebCore/dom/EventDispatcher.cpp
Source/WebCore/dom/EventDispatcher.h
Source/WebCore/dom/EventListener.h
Source/WebCore/dom/EventNames.cpp
Source/WebCore/dom/EventNames.h
Source/WebCore/dom/EventPath.cpp
Source/WebCore/dom/EventPath.h
Source/WebCore/dom/ExceptionCode.h
Source/WebCore/dom/ExtensionStyleSheets.cpp
Source/WebCore/dom/ExtensionStyleSheets.h
Source/WebCore/dom/HashChangeEvent.h
Source/WebCore/dom/InlineStyleSheetOwner.cpp
Source/WebCore/dom/InlineStyleSheetOwner.h
Source/WebCore/dom/KeyboardEvent.cpp
Source/WebCore/dom/KeyboardEvent.h
Source/WebCore/dom/LiveNodeList.cpp
Source/WebCore/dom/LiveNodeList.h
Source/WebCore/dom/Microtasks.cpp
Source/WebCore/dom/Microtasks.h
Source/WebCore/dom/MouseEvent.cpp
Source/WebCore/dom/MouseEvent.h
Source/WebCore/dom/MouseRelatedEvent.cpp
Source/WebCore/dom/MouseRelatedEvent.h
Source/WebCore/dom/MutationEvent.cpp
Source/WebCore/dom/MutationEvent.h
Source/WebCore/dom/NameNodeList.cpp
Source/WebCore/dom/NameNodeList.h
Source/WebCore/dom/NamedNodeMap.cpp
Source/WebCore/dom/NamedNodeMap.h
Source/WebCore/dom/Node.cpp
Source/WebCore/dom/Node.h
Source/WebCore/dom/NodeFilter.h
Source/WebCore/dom/NodeFilterCondition.cpp
Source/WebCore/dom/NodeFilterCondition.h
Source/WebCore/dom/NodeIterator.cpp
Source/WebCore/dom/NodeIterator.h
Source/WebCore/dom/NodeList.h
Source/WebCore/dom/NodeRareData.h
Source/WebCore/dom/NodeRenderStyle.h
Source/WebCore/dom/NodeTraversal.cpp
Source/WebCore/dom/NodeTraversal.h
Source/WebCore/dom/ProcessingInstruction.cpp
Source/WebCore/dom/ProcessingInstruction.h
Source/WebCore/dom/QualifiedName.cpp
Source/WebCore/dom/QualifiedName.h
Source/WebCore/dom/RadioButtonGroups.cpp
Source/WebCore/dom/RadioButtonGroups.h
Source/WebCore/dom/Range.cpp
Source/WebCore/dom/Range.h
Source/WebCore/dom/RegisteredEventListener.h
Source/WebCore/dom/ScriptDisallowedScope.h
Source/WebCore/dom/ScriptElement.cpp
Source/WebCore/dom/ScriptElement.h
Source/WebCore/dom/SimulatedClickOptions.h
Source/WebCore/dom/SpaceSplitString.cpp
Source/WebCore/dom/SpaceSplitString.h
Source/WebCore/dom/StyledElement.cpp
Source/WebCore/dom/StyledElement.h
Source/WebCore/dom/TagCollection.cpp
Source/WebCore/dom/TagCollection.h
Source/WebCore/dom/Text.cpp
Source/WebCore/dom/Text.h
Source/WebCore/dom/TransformSource.h
Source/WebCore/dom/Traversal.cpp
Source/WebCore/dom/Traversal.h
Source/WebCore/dom/TreeWalker.cpp
Source/WebCore/dom/TreeWalker.h
Source/WebCore/dom/UIEvent.cpp
Source/WebCore/dom/UIEvent.h
Source/WebCore/dom/UIEventWithKeyState.cpp
Source/WebCore/dom/UIEventWithKeyState.h
Source/WebCore/dom/ViewportArguments.cpp
Source/WebCore/dom/ViewportArguments.h
Source/WebCore/dom/VisitedLinkState.cpp
Source/WebCore/dom/VisitedLinkState.h
Source/WebCore/dom/WheelEvent.cpp
Source/WebCore/dom/WheelEvent.h
Source/WebCore/editing/EditingBehavior.h
Source/WebCore/editing/EditingBehaviorType.h
Source/WebCore/editing/TextCheckingHelper.h
Source/WebCore/editing/atspi/FrameSelectionAtspi.cpp
Source/WebCore/html/BaseTextInputType.cpp
Source/WebCore/html/CollectionType.h
Source/WebCore/html/DOMURL.cpp
Source/WebCore/html/EmailInputType.cpp
Source/WebCore/html/FileInputType.cpp
Source/WebCore/html/FormAssociatedElement.cpp
Source/WebCore/html/FormAssociatedElement.h
Source/WebCore/html/FormController.cpp
Source/WebCore/html/FormController.h
Source/WebCore/html/FormNamedItem.h
Source/WebCore/html/HTMLAnchorElement.cpp
Source/WebCore/html/HTMLAnchorElement.h
Source/WebCore/html/HTMLAreaElement.cpp
Source/WebCore/html/HTMLAreaElement.h
Source/WebCore/html/HTMLBDIElement.h
Source/WebCore/html/HTMLBRElement.cpp
Source/WebCore/html/HTMLBRElement.h
Source/WebCore/html/HTMLBaseElement.cpp
Source/WebCore/html/HTMLBaseElement.h
Source/WebCore/html/HTMLBodyElement.cpp
Source/WebCore/html/HTMLBodyElement.h
Source/WebCore/html/HTMLButtonElement.cpp
Source/WebCore/html/HTMLButtonElement.h
Source/WebCore/html/HTMLCollection.cpp
Source/WebCore/html/HTMLCollection.h
Source/WebCore/html/HTMLDListElement.cpp
Source/WebCore/html/HTMLDListElement.h
Source/WebCore/html/HTMLDetailsElement.cpp
Source/WebCore/html/HTMLDetailsElement.h
Source/WebCore/html/HTMLDirectoryElement.cpp
Source/WebCore/html/HTMLDirectoryElement.h
Source/WebCore/html/HTMLDivElement.cpp
Source/WebCore/html/HTMLDivElement.h
Source/WebCore/html/HTMLDocument.h
Source/WebCore/html/HTMLElement.cpp
Source/WebCore/html/HTMLElement.h
Source/WebCore/html/HTMLEmbedElement.cpp
Source/WebCore/html/HTMLEmbedElement.h
Source/WebCore/html/HTMLFieldSetElement.cpp
Source/WebCore/html/HTMLFieldSetElement.h
Source/WebCore/html/HTMLFontElement.cpp
Source/WebCore/html/HTMLFontElement.h
Source/WebCore/html/HTMLFormControlElement.cpp
Source/WebCore/html/HTMLFormControlElement.h
Source/WebCore/html/HTMLFormControlElementWithState.cpp
Source/WebCore/html/HTMLFormControlElementWithState.h
Source/WebCore/html/HTMLFormControlsCollection.cpp
Source/WebCore/html/HTMLFormControlsCollection.h
Source/WebCore/html/HTMLFormElement.cpp
Source/WebCore/html/HTMLFormElement.h
Source/WebCore/html/HTMLFrameElement.cpp
Source/WebCore/html/HTMLFrameElement.h
Source/WebCore/html/HTMLFrameElementBase.cpp
Source/WebCore/html/HTMLFrameElementBase.h
Source/WebCore/html/HTMLFrameOwnerElement.cpp
Source/WebCore/html/HTMLFrameOwnerElement.h
Source/WebCore/html/HTMLFrameSetElement.cpp
Source/WebCore/html/HTMLFrameSetElement.h
Source/WebCore/html/HTMLHRElement.cpp
Source/WebCore/html/HTMLHRElement.h
Source/WebCore/html/HTMLHeadElement.cpp
Source/WebCore/html/HTMLHeadElement.h
Source/WebCore/html/HTMLHeadingElement.cpp
Source/WebCore/html/HTMLHeadingElement.h
Source/WebCore/html/HTMLHtmlElement.cpp
Source/WebCore/html/HTMLHtmlElement.h
Source/WebCore/html/HTMLIFrameElement.cpp
Source/WebCore/html/HTMLIFrameElement.h
Source/WebCore/html/HTMLImageElement.cpp
Source/WebCore/html/HTMLImageElement.h
Source/WebCore/html/HTMLImageLoader.cpp
Source/WebCore/html/HTMLImageLoader.h
Source/WebCore/html/HTMLInputElement.cpp
Source/WebCore/html/HTMLInputElement.h
Source/WebCore/html/HTMLLIElement.cpp
Source/WebCore/html/HTMLLIElement.h
Source/WebCore/html/HTMLLabelElement.cpp
Source/WebCore/html/HTMLLabelElement.h
Source/WebCore/html/HTMLLegendElement.cpp
Source/WebCore/html/HTMLLegendElement.h
Source/WebCore/html/HTMLLinkElement.cpp
Source/WebCore/html/HTMLLinkElement.h
Source/WebCore/html/HTMLMapElement.cpp
Source/WebCore/html/HTMLMapElement.h
Source/WebCore/html/HTMLMarqueeElement.cpp
Source/WebCore/html/HTMLMarqueeElement.h
Source/WebCore/html/HTMLMenuElement.cpp
Source/WebCore/html/HTMLMenuElement.h
Source/WebCore/html/HTMLMetaElement.cpp
Source/WebCore/html/HTMLMetaElement.h
Source/WebCore/html/HTMLMeterElement.cpp
Source/WebCore/html/HTMLMeterElement.h
Source/WebCore/html/HTMLModElement.cpp
Source/WebCore/html/HTMLModElement.h
Source/WebCore/html/HTMLNameCollection.cpp
Source/WebCore/html/HTMLNameCollection.h
Source/WebCore/html/HTMLOListElement.cpp
Source/WebCore/html/HTMLOListElement.h
Source/WebCore/html/HTMLObjectElement.cpp
Source/WebCore/html/HTMLObjectElement.h
Source/WebCore/html/HTMLOptGroupElement.cpp
Source/WebCore/html/HTMLOptGroupElement.h
Source/WebCore/html/HTMLOptionElement.cpp
Source/WebCore/html/HTMLOptionElement.h
Source/WebCore/html/HTMLOptionsCollection.cpp
Source/WebCore/html/HTMLOptionsCollection.h
Source/WebCore/html/HTMLParagraphElement.cpp
Source/WebCore/html/HTMLParagraphElement.h
Source/WebCore/html/HTMLParamElement.cpp
Source/WebCore/html/HTMLParamElement.h
Source/WebCore/html/HTMLPlugInElement.cpp
Source/WebCore/html/HTMLPlugInElement.h
Source/WebCore/html/HTMLPlugInImageElement.cpp
Source/WebCore/html/HTMLPlugInImageElement.h
Source/WebCore/html/HTMLPreElement.cpp
Source/WebCore/html/HTMLPreElement.h
Source/WebCore/html/HTMLProgressElement.cpp
Source/WebCore/html/HTMLProgressElement.h
Source/WebCore/html/HTMLQuoteElement.cpp
Source/WebCore/html/HTMLQuoteElement.h
Source/WebCore/html/HTMLScriptElement.cpp
Source/WebCore/html/HTMLScriptElement.h
Source/WebCore/html/HTMLSelectElement.cpp
Source/WebCore/html/HTMLSelectElement.h
Source/WebCore/html/HTMLStyleElement.cpp
Source/WebCore/html/HTMLStyleElement.h
Source/WebCore/html/HTMLSummaryElement.cpp
Source/WebCore/html/HTMLSummaryElement.h
Source/WebCore/html/HTMLTableCaptionElement.cpp
Source/WebCore/html/HTMLTableCaptionElement.h
Source/WebCore/html/HTMLTableCellElement.cpp
Source/WebCore/html/HTMLTableCellElement.h
Source/WebCore/html/HTMLTableColElement.cpp
Source/WebCore/html/HTMLTableColElement.h
Source/WebCore/html/HTMLTableElement.cpp
Source/WebCore/html/HTMLTableElement.h
Source/WebCore/html/HTMLTablePartElement.cpp
Source/WebCore/html/HTMLTablePartElement.h
Source/WebCore/html/HTMLTableRowElement.cpp
Source/WebCore/html/HTMLTableRowElement.h
Source/WebCore/html/HTMLTableSectionElement.cpp
Source/WebCore/html/HTMLTableSectionElement.h
Source/WebCore/html/HTMLTextAreaElement.cpp
Source/WebCore/html/HTMLTextAreaElement.h
Source/WebCore/html/HTMLTextFormControlElement.cpp
Source/WebCore/html/HTMLTextFormControlElement.h
Source/WebCore/html/HTMLTitleElement.cpp
Source/WebCore/html/HTMLTitleElement.h
Source/WebCore/html/HTMLUListElement.cpp
Source/WebCore/html/HTMLUListElement.h
Source/WebCore/html/ImageInputType.cpp
Source/WebCore/html/InputType.cpp
Source/WebCore/html/InputTypeNames.cpp
Source/WebCore/html/InputTypeNames.h
Source/WebCore/html/LabelableElement.cpp
Source/WebCore/html/LabelsNodeList.cpp
Source/WebCore/html/LabelsNodeList.h
Source/WebCore/html/RadioInputType.cpp
Source/WebCore/html/StepRange.cpp
Source/WebCore/html/StepRange.h
Source/WebCore/html/TypeAhead.cpp
Source/WebCore/html/ValidityState.h
Source/WebCore/loader/FrameNetworkingContext.h
Source/WebCore/loader/ImageLoader.cpp
Source/WebCore/loader/ImageLoader.h
Source/WebCore/loader/TextResourceDecoder.cpp
Source/WebCore/loader/TextResourceDecoder.h
Source/WebCore/loader/cache/*
Source/WebCore/make-hash-tools.pl
Source/WebCore/page/Chrome.cpp
Source/WebCore/page/Chrome.h
Source/WebCore/page/ChromeClient.h
Source/WebCore/page/Frame.cpp
Source/WebCore/page/Frame.h
Source/WebCore/page/FrameTree.cpp
Source/WebCore/page/FrameTree.h
Source/WebCore/page/FrameView.cpp
Source/WebCore/page/FrameView.h
Source/WebCore/page/MouseEventWithHitTestResults.cpp
Source/WebCore/page/MouseEventWithHitTestResults.h
Source/WebCore/page/Navigator.cpp
Source/WebCore/page/Navigator.h
Source/WebCore/page/Page.cpp
Source/WebCore/page/Page.h
Source/WebCore/page/PageGroupLoadDeferrer.cpp
Source/WebCore/page/PageGroupLoadDeferrer.h
Source/WebCore/page/PrintContext.cpp
Source/WebCore/page/PrintContext.h
Source/WebCore/page/ScrollIntoViewOptions.h
Source/WebCore/page/ScrollLogicalPosition.h
Source/WebCore/page/SpatialNavigation.h
Source/WebCore/page/WindowFeatures.cpp
Source/WebCore/platform/AbortableTaskQueue.h
Source/WebCore/platform/HashTools.h
Source/WebCore/platform/Length.cpp
Source/WebCore/platform/Length.h
Source/WebCore/platform/LengthBox.h
Source/WebCore/platform/LengthSize.h
Source/WebCore/platform/PlatformTouchEvent.h
Source/WebCore/platform/PlatformTouchPoint.h
Source/WebCore/platform/PopupMenu.h
Source/WebCore/platform/PopupMenuClient.h
Source/WebCore/platform/SearchPopupMenu.h
Source/WebCore/platform/SharedStringHash.cpp
Source/WebCore/platform/animation/*
Source/WebCore/platform/audio/glib/*
Source/WebCore/platform/audio/gstreamer/*
Source/WebCore/platform/gamepad/manette/GUniquePtrManette.h
Source/WebCore/platform/glib/*
Source/WebCore/platform/graphics/FloatPoint3D.cpp
Source/WebCore/platform/graphics/FloatPoint3D.h
Source/WebCore/platform/graphics/Font.h
Source/WebCore/platform/graphics/FontCascade.cpp
Source/WebCore/platform/graphics/FontCascade.h
Source/WebCore/platform/graphics/FontCascadeDescription.h
Source/WebCore/platform/graphics/FontCascadeFonts.h
Source/WebCore/platform/graphics/FontDescription.h
Source/WebCore/platform/graphics/FontMetrics.h
Source/WebCore/platform/graphics/FontPlatformData.cpp
Source/WebCore/platform/graphics/FontPlatformData.h
Source/WebCore/platform/graphics/GLContext.cpp
Source/WebCore/platform/graphics/GLContext.h
Source/WebCore/platform/graphics/GraphicsLayerTransform.cpp
Source/WebCore/platform/graphics/GraphicsLayerTransform.h
Source/WebCore/platform/graphics/Icon.h
Source/WebCore/platform/graphics/IntPointHash.h
Source/WebCore/platform/graphics/IntSizeHash.h
Source/WebCore/platform/graphics/Latin1TextIterator.h
Source/WebCore/platform/graphics/PathTraversalState.cpp
Source/WebCore/platform/graphics/SurrogatePairAwareTextIterator.h
Source/WebCore/platform/graphics/TextRun.h
Source/WebCore/platform/graphics/WidthIterator.cpp
Source/WebCore/platform/graphics/WidthIterator.h
Source/WebCore/platform/graphics/cairo/*
Source/WebCore/platform/graphics/coretext/FontCascadeCoreText.cpp
Source/WebCore/platform/graphics/coretext/FontPlatformDataCoreText.cpp
Source/WebCore/platform/graphics/egl/*
Source/WebCore/platform/graphics/filters/*
Source/WebCore/platform/graphics/freetype/FontCacheFreeType.cpp
Source/WebCore/platform/graphics/freetype/FontCacheFreeType.h
Source/WebCore/platform/graphics/freetype/FontCustomPlatformDataFreeType.cpp
Source/WebCore/platform/graphics/freetype/FontPlatformDataFreeType.cpp
Source/WebCore/platform/graphics/freetype/FontSetCache.cpp
Source/WebCore/platform/graphics/freetype/FontSetCache.h
Source/WebCore/platform/graphics/freetype/RefPtrFontconfig.cpp
Source/WebCore/platform/graphics/freetype/RefPtrFontconfig.h
Source/WebCore/platform/graphics/glx/*
Source/WebCore/platform/graphics/gstreamer/AppSinkWorkaround.cpp
Source/WebCore/platform/graphics/gstreamer/AppSinkWorkaround.h
Source/WebCore/platform/graphics/gstreamer/DMABufVideoSinkGStreamer.cpp
Source/WebCore/platform/graphics/gstreamer/DMABufVideoSinkGStreamer.h
Source/WebCore/platform/graphics/gstreamer/GLVideoSinkGStreamer.cpp
Source/WebCore/platform/graphics/gstreamer/GLVideoSinkGStreamer.h
Source/WebCore/platform/graphics/gstreamer/GRefPtrGStreamer.cpp
Source/WebCore/platform/graphics/gstreamer/GRefPtrGStreamer.h
Source/WebCore/platform/graphics/gstreamer/GStreamerAudioMixer.cpp
Source/WebCore/platform/graphics/gstreamer/GStreamerAudioMixer.h
Source/WebCore/platform/graphics/gstreamer/GStreamerCommon.cpp
Source/WebCore/platform/graphics/gstreamer/GStreamerCommon.h
Source/WebCore/platform/graphics/gstreamer/GStreamerRegistryScanner.cpp
Source/WebCore/platform/graphics/gstreamer/GStreamerRegistryScanner.h
Source/WebCore/platform/graphics/gstreamer/GStreamerVideoFrameHolder.cpp
Source/WebCore/platform/graphics/gstreamer/GStreamerVideoFrameHolder.h
Source/WebCore/platform/graphics/gstreamer/GStreamerVideoSinkCommon.cpp
Source/WebCore/platform/graphics/gstreamer/GStreamerVideoSinkCommon.h
Source/WebCore/platform/graphics/gstreamer/GUniquePtrGStreamer.h
Source/WebCore/platform/graphics/gstreamer/GstAllocatorFastMalloc.cpp
Source/WebCore/platform/graphics/gstreamer/GstAllocatorFastMalloc.h
Source/WebCore/platform/graphics/gstreamer/ImageDecoderGStreamer.cpp
Source/WebCore/platform/graphics/gstreamer/ImageDecoderGStreamer.h
Source/WebCore/platform/graphics/gstreamer/ImageGStreamer.h
Source/WebCore/platform/graphics/gstreamer/ImageGStreamerCairo.cpp
Source/WebCore/platform/graphics/gstreamer/MainThreadNotifier.h
Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp
Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.h
Source/WebCore/platform/graphics/gstreamer/MediaPlayerRequestInstallMissingPluginsCallback.h
Source/WebCore/platform/graphics/gstreamer/MediaSampleGStreamer.cpp
Source/WebCore/platform/graphics/gstreamer/MediaSampleGStreamer.h
Source/WebCore/platform/graphics/gstreamer/PlatformDisplayGStreamer.cpp
Source/WebCore/platform/graphics/gstreamer/VideoFrameGStreamer.cpp
Source/WebCore/platform/graphics/gstreamer/VideoFrameGStreamer.h
Source/WebCore/platform/graphics/gstreamer/VideoFrameMetadataGStreamer.cpp
Source/WebCore/platform/graphics/gstreamer/VideoFrameMetadataGStreamer.h
Source/WebCore/platform/graphics/gstreamer/VideoSinkGStreamer.cpp
Source/WebCore/platform/graphics/gstreamer/VideoSinkGStreamer.h
Source/WebCore/platform/graphics/gstreamer/VideoTextureCopierGStreamer.cpp
Source/WebCore/platform/graphics/gstreamer/VideoTextureCopierGStreamer.h
Source/WebCore/platform/graphics/gstreamer/WebKitAudioSinkGStreamer.cpp
Source/WebCore/platform/graphics/gstreamer/WebKitAudioSinkGStreamer.h
Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp
Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.h
Source/WebCore/platform/graphics/gstreamer/eme/*
Source/WebCore/platform/graphics/gstreamer/mse/AppendPipeline.cpp
Source/WebCore/platform/graphics/gstreamer/mse/AppendPipeline.h
Source/WebCore/platform/graphics/gstreamer/mse/GStreamerMediaDescription.cpp
Source/WebCore/platform/graphics/gstreamer/mse/GStreamerMediaDescription.h
Source/WebCore/platform/graphics/gstreamer/mse/GStreamerRegistryScannerMSE.cpp
Source/WebCore/platform/graphics/gstreamer/mse/GStreamerRegistryScannerMSE.h
Source/WebCore/platform/graphics/gstreamer/mse/MediaPlayerPrivateGStreamerMSE.cpp
Source/WebCore/platform/graphics/gstreamer/mse/MediaPlayerPrivateGStreamerMSE.h
Source/WebCore/platform/graphics/gstreamer/mse/WebKitMediaSourceGStreamer.cpp
Source/WebCore/platform/graphics/gstreamer/mse/WebKitMediaSourceGStreamer.h
Source/WebCore/platform/graphics/holepunch/*
Source/WebCore/platform/graphics/nicosia/*
Source/WebCore/platform/graphics/texmap/*
Source/WebCore/platform/graphics/transforms/*
Source/WebCore/platform/gstreamer/*
Source/WebCore/platform/image-decoders/ScalableImageDecoder.cpp
Source/WebCore/platform/mediarecorder/*
Source/WebCore/platform/mediastream/gstreamer/*
Source/WebCore/platform/mediastream/libwebrtc/gstreamer/*
Source/WebCore/platform/network/FormData.cpp
Source/WebCore/platform/network/FormData.h
Source/WebCore/platform/network/FormDataBuilder.cpp
Source/WebCore/platform/network/FormDataBuilder.h
Source/WebCore/platform/network/NetworkingContext.h
Source/WebCore/platform/network/glib/NetworkStateNotifierGLib.cpp
Source/WebCore/platform/network/soup/CookieStorageSoup.cpp
Source/WebCore/platform/network/soup/GUniquePtrSoup.h
Source/WebCore/platform/network/soup/ResourceHandleSoup.cpp
Source/WebCore/platform/network/soup/ResourceRequestSoup.cpp
Source/WebCore/platform/network/soup/ResourceResponseSoup.cpp
Source/WebCore/platform/network/soup/SoupVersioning.h
Source/WebCore/platform/text/BidiContext.cpp
Source/WebCore/platform/text/BidiContext.h
Source/WebCore/platform/text/BidiResolver.h
Source/WebCore/platform/text/BidiRunList.h
Source/WebCore/platform/text/SegmentedString.cpp
Source/WebCore/platform/text/SegmentedString.h
Source/WebCore/platform/text/enchant/*
Source/WebCore/platform/unix/LoggingUnix.cpp
Source/WebCore/platform/xr/PlatformXR.h
Source/WebCore/platform/xr/openxr/*
Source/WebCore/plugins/*
Source/WebCore/preprocess-localizable-strings.pl
Source/WebCore/rendering/BidiRun.cpp
Source/WebCore/rendering/BidiRun.h
Source/WebCore/rendering/BreakLines.h
Source/WebCore/rendering/ContentfulPaintChecker.cpp
Source/WebCore/rendering/ContentfulPaintChecker.h
Source/WebCore/rendering/CounterNode.cpp
Source/WebCore/rendering/CounterNode.h
Source/WebCore/rendering/FloatingObjects.cpp
Source/WebCore/rendering/FloatingObjects.h
Source/WebCore/rendering/GapRects.h
Source/WebCore/rendering/HitTestLocation.cpp
Source/WebCore/rendering/HitTestLocation.h
Source/WebCore/rendering/HitTestRequest.h
Source/WebCore/rendering/HitTestResult.cpp
Source/WebCore/rendering/HitTestResult.h
Source/WebCore/rendering/LayoutRepainter.cpp
Source/WebCore/rendering/LayoutRepainter.h
Source/WebCore/rendering/LegacyEllipsisBox.cpp
Source/WebCore/rendering/LegacyEllipsisBox.h
Source/WebCore/rendering/LegacyInlineBox.cpp
Source/WebCore/rendering/LegacyInlineBox.h
Source/WebCore/rendering/LegacyInlineFlowBox.cpp
Source/WebCore/rendering/LegacyInlineFlowBox.h
Source/WebCore/rendering/LegacyInlineIterator.h
Source/WebCore/rendering/LegacyInlineTextBox.cpp
Source/WebCore/rendering/LegacyInlineTextBox.h
Source/WebCore/rendering/LegacyLineLayout.cpp
Source/WebCore/rendering/LegacyRootInlineBox.cpp
Source/WebCore/rendering/LegacyRootInlineBox.h
Source/WebCore/rendering/LogicalSelectionOffsetCaches.h
Source/WebCore/rendering/PaintInfo.h
Source/WebCore/rendering/PaintPhase.h
Source/WebCore/rendering/PointerEventsHitRules.cpp
Source/WebCore/rendering/PointerEventsHitRules.h
Source/WebCore/rendering/RenderBlock.cpp
Source/WebCore/rendering/RenderBlock.h
Source/WebCore/rendering/RenderBlockFlow.cpp
Source/WebCore/rendering/RenderBlockFlow.h
Source/WebCore/rendering/RenderBox.cpp
Source/WebCore/rendering/RenderBox.h
Source/WebCore/rendering/RenderBoxModelObject.cpp
Source/WebCore/rendering/RenderBoxModelObject.h
Source/WebCore/rendering/RenderButton.cpp
Source/WebCore/rendering/RenderButton.h
Source/WebCore/rendering/RenderCombineText.cpp
Source/WebCore/rendering/RenderCombineText.h
Source/WebCore/rendering/RenderCounter.cpp
Source/WebCore/rendering/RenderCounter.h
Source/WebCore/rendering/RenderDeprecatedFlexibleBox.cpp
Source/WebCore/rendering/RenderDeprecatedFlexibleBox.h
Source/WebCore/rendering/RenderDetailsMarker.cpp
Source/WebCore/rendering/RenderDetailsMarker.h
Source/WebCore/rendering/RenderElement.cpp
Source/WebCore/rendering/RenderElement.h
Source/WebCore/rendering/RenderEmbeddedObject.cpp
Source/WebCore/rendering/RenderEmbeddedObject.h
Source/WebCore/rendering/RenderFileUploadControl.cpp
Source/WebCore/rendering/RenderFileUploadControl.h
Source/WebCore/rendering/RenderFrame.cpp
Source/WebCore/rendering/RenderFrame.h
Source/WebCore/rendering/RenderFrameSet.cpp
Source/WebCore/rendering/RenderFrameSet.h
Source/WebCore/rendering/RenderImage.cpp
Source/WebCore/rendering/RenderImage.h
Source/WebCore/rendering/RenderImageResource.cpp
Source/WebCore/rendering/RenderImageResource.h
Source/WebCore/rendering/RenderImageResourceStyleImage.cpp
Source/WebCore/rendering/RenderImageResourceStyleImage.h
Source/WebCore/rendering/RenderInline.cpp
Source/WebCore/rendering/RenderInline.h
Source/WebCore/rendering/RenderLayerModelObject.cpp
Source/WebCore/rendering/RenderLayerModelObject.h
Source/WebCore/rendering/RenderLineBreak.cpp
Source/WebCore/rendering/RenderLineBreak.h
Source/WebCore/rendering/RenderListItem.cpp
Source/WebCore/rendering/RenderListItem.h
Source/WebCore/rendering/RenderListMarker.cpp
Source/WebCore/rendering/RenderListMarker.h
Source/WebCore/rendering/RenderMenuList.cpp
Source/WebCore/rendering/RenderMenuList.h
Source/WebCore/rendering/RenderMeter.cpp
Source/WebCore/rendering/RenderMeter.h
Source/WebCore/rendering/RenderObject.cpp
Source/WebCore/rendering/RenderObject.h
Source/WebCore/rendering/RenderObjectEnums.h
Source/WebCore/rendering/RenderOverflow.h
Source/WebCore/rendering/RenderProgress.cpp
Source/WebCore/rendering/RenderProgress.h
Source/WebCore/rendering/RenderQuote.cpp
Source/WebCore/rendering/RenderQuote.h
Source/WebCore/rendering/RenderReplaced.cpp
Source/WebCore/rendering/RenderReplaced.h
Source/WebCore/rendering/RenderSearchField.cpp
Source/WebCore/rendering/RenderSearchField.h
Source/WebCore/rendering/RenderSelectionInfo.h
Source/WebCore/rendering/RenderSlider.cpp
Source/WebCore/rendering/RenderSlider.h
Source/WebCore/rendering/RenderTable.cpp
Source/WebCore/rendering/RenderTable.h
Source/WebCore/rendering/RenderTableCaption.cpp
Source/WebCore/rendering/RenderTableCaption.h
Source/WebCore/rendering/RenderTableCell.cpp
Source/WebCore/rendering/RenderTableCell.h
Source/WebCore/rendering/RenderTableCol.cpp
Source/WebCore/rendering/RenderTableCol.h
Source/WebCore/rendering/RenderTableRow.cpp
Source/WebCore/rendering/RenderTableRow.h
Source/WebCore/rendering/RenderTableSection.cpp
Source/WebCore/rendering/RenderTableSection.h
Source/WebCore/rendering/RenderText.cpp
Source/WebCore/rendering/RenderText.h
Source/WebCore/rendering/RenderTextControl.cpp
Source/WebCore/rendering/RenderTextControl.h
Source/WebCore/rendering/RenderTextControlMultiLine.cpp
Source/WebCore/rendering/RenderTextControlMultiLine.h
Source/WebCore/rendering/RenderTextControlSingleLine.cpp
Source/WebCore/rendering/RenderTextControlSingleLine.h
Source/WebCore/rendering/RenderTextFragment.cpp
Source/WebCore/rendering/RenderTextFragment.h
Source/WebCore/rendering/RenderTextInlines.h
Source/WebCore/rendering/RenderTheme.cpp
Source/WebCore/rendering/RenderTheme.h
Source/WebCore/rendering/RenderThemeGtk.cpp
Source/WebCore/rendering/RenderThemeGtk.h
Source/WebCore/rendering/RenderThemeMac.h
Source/WebCore/rendering/RenderThemeWin.cpp
Source/WebCore/rendering/RenderThemeWin.h
Source/WebCore/rendering/RenderView.cpp
Source/WebCore/rendering/RenderView.h
Source/WebCore/rendering/RenderWidget.cpp
Source/WebCore/rendering/RenderWidget.h
Source/WebCore/rendering/TextDecorationPainter.cpp
Source/WebCore/rendering/TextDecorationPainter.h
Source/WebCore/rendering/TextPainter.cpp
Source/WebCore/rendering/TextPainter.h
Source/WebCore/rendering/line/*
Source/WebCore/rendering/style/BorderData.h
Source/WebCore/rendering/style/BorderValue.h
Source/WebCore/rendering/style/CollapsedBorderValue.h
Source/WebCore/rendering/style/ContentData.cpp
Source/WebCore/rendering/style/ContentData.h
Source/WebCore/rendering/style/CounterContent.h
Source/WebCore/rendering/style/CounterDirectives.h
Source/WebCore/rendering/style/CursorData.h
Source/WebCore/rendering/style/CursorList.h
Source/WebCore/rendering/style/FillLayer.cpp
Source/WebCore/rendering/style/FillLayer.h
Source/WebCore/rendering/style/KeyframeList.cpp
Source/WebCore/rendering/style/KeyframeList.h
Source/WebCore/rendering/style/NinePieceImage.cpp
Source/WebCore/rendering/style/NinePieceImage.h
Source/WebCore/rendering/style/OutlineValue.h
Source/WebCore/rendering/style/QuotesData.cpp
Source/WebCore/rendering/style/QuotesData.h
Source/WebCore/rendering/style/RenderStyle.cpp
Source/WebCore/rendering/style/RenderStyle.h
Source/WebCore/rendering/style/RenderStyleConstants.h
Source/WebCore/rendering/style/SVGRenderStyle.cpp
Source/WebCore/rendering/style/SVGRenderStyle.h
Source/WebCore/rendering/style/SVGRenderStyleDefs.cpp
Source/WebCore/rendering/style/SVGRenderStyleDefs.h
Source/WebCore/rendering/style/ShadowData.cpp
Source/WebCore/rendering/style/ShadowData.h
Source/WebCore/rendering/style/StyleBackgroundData.cpp
Source/WebCore/rendering/style/StyleBackgroundData.h
Source/WebCore/rendering/style/StyleBoxData.cpp
Source/WebCore/rendering/style/StyleBoxData.h
Source/WebCore/rendering/style/StyleCachedImage.cpp
Source/WebCore/rendering/style/StyleCachedImage.h
Source/WebCore/rendering/style/StyleCursorImage.cpp
Source/WebCore/rendering/style/StyleCursorImage.h
Source/WebCore/rendering/style/StyleCustomPropertyData.h
Source/WebCore/rendering/style/StyleDeprecatedFlexibleBoxData.cpp
Source/WebCore/rendering/style/StyleDeprecatedFlexibleBoxData.h
Source/WebCore/rendering/style/StyleGeneratedImage.cpp
Source/WebCore/rendering/style/StyleGeneratedImage.h
Source/WebCore/rendering/style/StyleImage.h
Source/WebCore/rendering/style/StyleImageSet.cpp
Source/WebCore/rendering/style/StyleImageSet.h
Source/WebCore/rendering/style/StyleInheritedData.cpp
Source/WebCore/rendering/style/StyleInheritedData.h
Source/WebCore/rendering/style/StyleMarqueeData.cpp
Source/WebCore/rendering/style/StyleMarqueeData.h
Source/WebCore/rendering/style/StyleMultiColData.cpp
Source/WebCore/rendering/style/StyleMultiColData.h
Source/WebCore/rendering/style/StyleMultiImage.cpp
Source/WebCore/rendering/style/StyleMultiImage.h
Source/WebCore/rendering/style/StyleRareInheritedData.cpp
Source/WebCore/rendering/style/StyleRareInheritedData.h
Source/WebCore/rendering/style/StyleRareNonInheritedData.cpp
Source/WebCore/rendering/style/StyleRareNonInheritedData.h
Source/WebCore/rendering/style/StyleReflection.h
Source/WebCore/rendering/style/StyleSurroundData.cpp
Source/WebCore/rendering/style/StyleSurroundData.h
Source/WebCore/rendering/style/StyleTransformData.cpp
Source/WebCore/rendering/style/StyleTransformData.h
Source/WebCore/rendering/style/StyleVisualData.cpp
Source/WebCore/rendering/style/StyleVisualData.h
Source/WebCore/rendering/style/TextSizeAdjustment.h
Source/WebCore/rendering/svg/LegacyRenderSVGContainer.cpp
Source/WebCore/rendering/svg/LegacyRenderSVGContainer.h
Source/WebCore/rendering/svg/LegacyRenderSVGPath.cpp
Source/WebCore/rendering/svg/LegacyRenderSVGPath.h
Source/WebCore/rendering/svg/LegacyRenderSVGRoot.cpp
Source/WebCore/rendering/svg/LegacyRenderSVGRoot.h
Source/WebCore/rendering/svg/LegacyRenderSVGShape.cpp
Source/WebCore/rendering/svg/LegacyRenderSVGShape.h
Source/WebCore/rendering/svg/LegacyRenderSVGTransformableContainer.cpp
Source/WebCore/rendering/svg/LegacyRenderSVGTransformableContainer.h
Source/WebCore/rendering/svg/LegacyRenderSVGViewportContainer.cpp
Source/WebCore/rendering/svg/LegacyRenderSVGViewportContainer.h
Source/WebCore/rendering/svg/RenderSVGBlock.cpp
Source/WebCore/rendering/svg/RenderSVGBlock.h
Source/WebCore/rendering/svg/RenderSVGContainer.cpp
Source/WebCore/rendering/svg/RenderSVGContainer.h
Source/WebCore/rendering/svg/RenderSVGForeignObject.cpp
Source/WebCore/rendering/svg/RenderSVGForeignObject.h
Source/WebCore/rendering/svg/RenderSVGGradientStop.cpp
Source/WebCore/rendering/svg/RenderSVGGradientStop.h
Source/WebCore/rendering/svg/RenderSVGHiddenContainer.cpp
Source/WebCore/rendering/svg/RenderSVGHiddenContainer.h
Source/WebCore/rendering/svg/RenderSVGImage.cpp
Source/WebCore/rendering/svg/RenderSVGImage.h
Source/WebCore/rendering/svg/RenderSVGInline.cpp
Source/WebCore/rendering/svg/RenderSVGInline.h
Source/WebCore/rendering/svg/RenderSVGInlineText.cpp
Source/WebCore/rendering/svg/RenderSVGInlineText.h
Source/WebCore/rendering/svg/RenderSVGPath.cpp
Source/WebCore/rendering/svg/RenderSVGPath.h
Source/WebCore/rendering/svg/RenderSVGResource.cpp
Source/WebCore/rendering/svg/RenderSVGResource.h
Source/WebCore/rendering/svg/RenderSVGResourceClipper.cpp
Source/WebCore/rendering/svg/RenderSVGResourceClipper.h
Source/WebCore/rendering/svg/RenderSVGResourceContainer.cpp
Source/WebCore/rendering/svg/RenderSVGResourceContainer.h
Source/WebCore/rendering/svg/RenderSVGResourceFilter.cpp
Source/WebCore/rendering/svg/RenderSVGResourceFilter.h
Source/WebCore/rendering/svg/RenderSVGResourceGradient.cpp
Source/WebCore/rendering/svg/RenderSVGResourceGradient.h
Source/WebCore/rendering/svg/RenderSVGResourceLinearGradient.cpp
Source/WebCore/rendering/svg/RenderSVGResourceLinearGradient.h
Source/WebCore/rendering/svg/RenderSVGResourceMarker.cpp
Source/WebCore/rendering/svg/RenderSVGResourceMarker.h
Source/WebCore/rendering/svg/RenderSVGResourceMasker.cpp
Source/WebCore/rendering/svg/RenderSVGResourceMasker.h
Source/WebCore/rendering/svg/RenderSVGResourcePattern.cpp
Source/WebCore/rendering/svg/RenderSVGResourcePattern.h
Source/WebCore/rendering/svg/RenderSVGResourceRadialGradient.cpp
Source/WebCore/rendering/svg/RenderSVGResourceRadialGradient.h
Source/WebCore/rendering/svg/RenderSVGResourceSolidColor.cpp
Source/WebCore/rendering/svg/RenderSVGResourceSolidColor.h
Source/WebCore/rendering/svg/RenderSVGRoot.cpp
Source/WebCore/rendering/svg/RenderSVGRoot.h
Source/WebCore/rendering/svg/RenderSVGShape.cpp
Source/WebCore/rendering/svg/RenderSVGShape.h
Source/WebCore/rendering/svg/RenderSVGTSpan.h
Source/WebCore/rendering/svg/RenderSVGText.cpp
Source/WebCore/rendering/svg/RenderSVGText.h
Source/WebCore/rendering/svg/RenderSVGTextPath.cpp
Source/WebCore/rendering/svg/RenderSVGTextPath.h
Source/WebCore/rendering/svg/RenderSVGTransformableContainer.cpp
Source/WebCore/rendering/svg/RenderSVGTransformableContainer.h
Source/WebCore/rendering/svg/RenderSVGViewportContainer.cpp
Source/WebCore/rendering/svg/RenderSVGViewportContainer.h
Source/WebCore/rendering/svg/SVGBoundingBoxComputation.cpp
Source/WebCore/rendering/svg/SVGBoundingBoxComputation.h
Source/WebCore/rendering/svg/SVGContainerLayout.cpp
Source/WebCore/rendering/svg/SVGContainerLayout.h
Source/WebCore/rendering/svg/SVGInlineFlowBox.cpp
Source/WebCore/rendering/svg/SVGInlineFlowBox.h
Source/WebCore/rendering/svg/SVGInlineTextBox.cpp
Source/WebCore/rendering/svg/SVGInlineTextBox.h
Source/WebCore/rendering/svg/SVGLayerTransformUpdater.h
Source/WebCore/rendering/svg/SVGMarkerData.h
Source/WebCore/rendering/svg/SVGPathData.cpp
Source/WebCore/rendering/svg/SVGPathData.h
Source/WebCore/rendering/svg/SVGRenderSupport.cpp
Source/WebCore/rendering/svg/SVGRenderSupport.h
Source/WebCore/rendering/svg/SVGRenderingContext.cpp
Source/WebCore/rendering/svg/SVGRenderingContext.h
Source/WebCore/rendering/svg/SVGResources.cpp
Source/WebCore/rendering/svg/SVGResources.h
Source/WebCore/rendering/svg/SVGResourcesCache.cpp
Source/WebCore/rendering/svg/SVGResourcesCache.h
Source/WebCore/rendering/svg/SVGResourcesCycleSolver.cpp
Source/WebCore/rendering/svg/SVGResourcesCycleSolver.h
Source/WebCore/rendering/svg/SVGRootInlineBox.cpp
Source/WebCore/rendering/svg/SVGRootInlineBox.h
Source/WebCore/rendering/svg/SVGSubpathData.h
Source/WebCore/rendering/svg/SVGTextChunk.cpp
Source/WebCore/rendering/svg/SVGTextChunk.h
Source/WebCore/rendering/svg/SVGTextChunkBuilder.cpp
Source/WebCore/rendering/svg/SVGTextChunkBuilder.h
Source/WebCore/rendering/svg/SVGTextFragment.h
Source/WebCore/rendering/svg/SVGTextLayoutAttributes.cpp
Source/WebCore/rendering/svg/SVGTextLayoutAttributes.h
Source/WebCore/rendering/svg/SVGTextLayoutAttributesBuilder.cpp
Source/WebCore/rendering/svg/SVGTextLayoutAttributesBuilder.h
Source/WebCore/rendering/svg/SVGTextLayoutEngine.cpp
Source/WebCore/rendering/svg/SVGTextLayoutEngine.h
Source/WebCore/rendering/svg/SVGTextLayoutEngineBaseline.cpp
Source/WebCore/rendering/svg/SVGTextLayoutEngineBaseline.h
Source/WebCore/rendering/svg/SVGTextLayoutEngineSpacing.cpp
Source/WebCore/rendering/svg/SVGTextLayoutEngineSpacing.h
Source/WebCore/rendering/svg/SVGTextMetrics.cpp
Source/WebCore/rendering/svg/SVGTextMetrics.h
Source/WebCore/rendering/svg/SVGTextMetricsBuilder.cpp
Source/WebCore/rendering/svg/SVGTextMetricsBuilder.h
Source/WebCore/rendering/svg/SVGTextQuery.cpp
Source/WebCore/rendering/svg/SVGTextQuery.h
Source/WebCore/rendering/updating/*
Source/WebCore/style/*
Source/WebCore/svg/GradientAttributes.h
Source/WebCore/svg/LinearGradientAttributes.h
Source/WebCore/svg/PatternAttributes.h
Source/WebCore/svg/RadialGradientAttributes.h
Source/WebCore/svg/SVGAElement.cpp
Source/WebCore/svg/SVGAElement.h
Source/WebCore/svg/SVGAltGlyphDefElement.cpp
Source/WebCore/svg/SVGAltGlyphDefElement.h
Source/WebCore/svg/SVGAltGlyphElement.cpp
Source/WebCore/svg/SVGAltGlyphElement.h
Source/WebCore/svg/SVGAltGlyphItemElement.cpp
Source/WebCore/svg/SVGAltGlyphItemElement.h
Source/WebCore/svg/SVGAngleValue.cpp
Source/WebCore/svg/SVGAngleValue.h
Source/WebCore/svg/SVGAnimateColorElement.cpp
Source/WebCore/svg/SVGAnimateColorElement.h
Source/WebCore/svg/SVGAnimateElementBase.cpp
Source/WebCore/svg/SVGAnimateElementBase.h
Source/WebCore/svg/SVGAnimateMotionElement.cpp
Source/WebCore/svg/SVGAnimateMotionElement.h
Source/WebCore/svg/SVGAnimateTransformElement.cpp
Source/WebCore/svg/SVGAnimateTransformElement.h
Source/WebCore/svg/SVGAnimatedBoolean.cpp
Source/WebCore/svg/SVGAnimatedBoolean.h
Source/WebCore/svg/SVGAnimationElement.cpp
Source/WebCore/svg/SVGAnimationElement.h
Source/WebCore/svg/SVGCircleElement.cpp
Source/WebCore/svg/SVGCircleElement.h
Source/WebCore/svg/SVGClipPathElement.cpp
Source/WebCore/svg/SVGClipPathElement.h
Source/WebCore/svg/SVGComponentTransferFunctionElement.cpp
Source/WebCore/svg/SVGComponentTransferFunctionElement.h
Source/WebCore/svg/SVGCursorElement.cpp
Source/WebCore/svg/SVGCursorElement.h
Source/WebCore/svg/SVGDefsElement.cpp
Source/WebCore/svg/SVGDefsElement.h
Source/WebCore/svg/SVGDescElement.cpp
Source/WebCore/svg/SVGDescElement.h
Source/WebCore/svg/SVGDocument.cpp
Source/WebCore/svg/SVGDocument.h
Source/WebCore/svg/SVGDocumentExtensions.cpp
Source/WebCore/svg/SVGDocumentExtensions.h
Source/WebCore/svg/SVGElement.cpp
Source/WebCore/svg/SVGElement.h
Source/WebCore/svg/SVGElementRareData.h
Source/WebCore/svg/SVGEllipseElement.cpp
Source/WebCore/svg/SVGEllipseElement.h
Source/WebCore/svg/SVGFEBlendElement.cpp
Source/WebCore/svg/SVGFEBlendElement.h
Source/WebCore/svg/SVGFEColorMatrixElement.cpp
Source/WebCore/svg/SVGFEColorMatrixElement.h
Source/WebCore/svg/SVGFEComponentTransferElement.cpp
Source/WebCore/svg/SVGFEComponentTransferElement.h
Source/WebCore/svg/SVGFECompositeElement.cpp
Source/WebCore/svg/SVGFECompositeElement.h
Source/WebCore/svg/SVGFEConvolveMatrixElement.cpp
Source/WebCore/svg/SVGFEConvolveMatrixElement.h
Source/WebCore/svg/SVGFEDiffuseLightingElement.cpp
Source/WebCore/svg/SVGFEDiffuseLightingElement.h
Source/WebCore/svg/SVGFEDisplacementMapElement.cpp
Source/WebCore/svg/SVGFEDisplacementMapElement.h
Source/WebCore/svg/SVGFEDistantLightElement.cpp
Source/WebCore/svg/SVGFEDistantLightElement.h
Source/WebCore/svg/SVGFEDropShadowElement.cpp
Source/WebCore/svg/SVGFEDropShadowElement.h
Source/WebCore/svg/SVGFEFloodElement.cpp
Source/WebCore/svg/SVGFEFloodElement.h
Source/WebCore/svg/SVGFEFuncAElement.cpp
Source/WebCore/svg/SVGFEFuncAElement.h
Source/WebCore/svg/SVGFEFuncBElement.cpp
Source/WebCore/svg/SVGFEFuncBElement.h
Source/WebCore/svg/SVGFEFuncGElement.cpp
Source/WebCore/svg/SVGFEFuncGElement.h
Source/WebCore/svg/SVGFEFuncRElement.cpp
Source/WebCore/svg/SVGFEFuncRElement.h
Source/WebCore/svg/SVGFEGaussianBlurElement.cpp
Source/WebCore/svg/SVGFEGaussianBlurElement.h
Source/WebCore/svg/SVGFEImageElement.cpp
Source/WebCore/svg/SVGFEImageElement.h
Source/WebCore/svg/SVGFELightElement.cpp
Source/WebCore/svg/SVGFELightElement.h
Source/WebCore/svg/SVGFEMergeElement.cpp
Source/WebCore/svg/SVGFEMergeElement.h
Source/WebCore/svg/SVGFEMergeNodeElement.cpp
Source/WebCore/svg/SVGFEMergeNodeElement.h
Source/WebCore/svg/SVGFEMorphologyElement.cpp
Source/WebCore/svg/SVGFEMorphologyElement.h
Source/WebCore/svg/SVGFEOffsetElement.cpp
Source/WebCore/svg/SVGFEOffsetElement.h
Source/WebCore/svg/SVGFEPointLightElement.cpp
Source/WebCore/svg/SVGFEPointLightElement.h
Source/WebCore/svg/SVGFESpecularLightingElement.cpp
Source/WebCore/svg/SVGFESpecularLightingElement.h
Source/WebCore/svg/SVGFESpotLightElement.cpp
Source/WebCore/svg/SVGFESpotLightElement.h
Source/WebCore/svg/SVGFETileElement.cpp
Source/WebCore/svg/SVGFETileElement.h
Source/WebCore/svg/SVGFETurbulenceElement.cpp
Source/WebCore/svg/SVGFETurbulenceElement.h
Source/WebCore/svg/SVGFilterElement.cpp
Source/WebCore/svg/SVGFilterElement.h
Source/WebCore/svg/SVGFilterPrimitiveStandardAttributes.cpp
Source/WebCore/svg/SVGFilterPrimitiveStandardAttributes.h
Source/WebCore/svg/SVGFitToViewBox.cpp
Source/WebCore/svg/SVGFitToViewBox.h
Source/WebCore/svg/SVGFontElement.cpp
Source/WebCore/svg/SVGFontElement.h
Source/WebCore/svg/SVGFontFaceElement.cpp
Source/WebCore/svg/SVGFontFaceElement.h
Source/WebCore/svg/SVGFontFaceFormatElement.cpp
Source/WebCore/svg/SVGFontFaceFormatElement.h
Source/WebCore/svg/SVGFontFaceNameElement.cpp
Source/WebCore/svg/SVGFontFaceNameElement.h
Source/WebCore/svg/SVGFontFaceSrcElement.cpp
Source/WebCore/svg/SVGFontFaceSrcElement.h
Source/WebCore/svg/SVGFontFaceUriElement.cpp
Source/WebCore/svg/SVGFontFaceUriElement.h
Source/WebCore/svg/SVGForeignObjectElement.cpp
Source/WebCore/svg/SVGForeignObjectElement.h
Source/WebCore/svg/SVGGElement.cpp
Source/WebCore/svg/SVGGElement.h
Source/WebCore/svg/SVGGeometryElement.cpp
Source/WebCore/svg/SVGGeometryElement.h
Source/WebCore/svg/SVGGlyphElement.cpp
Source/WebCore/svg/SVGGlyphElement.h
Source/WebCore/svg/SVGGlyphRefElement.cpp
Source/WebCore/svg/SVGGlyphRefElement.h
Source/WebCore/svg/SVGGradientElement.cpp
Source/WebCore/svg/SVGGradientElement.h
Source/WebCore/svg/SVGGraphicsElement.cpp
Source/WebCore/svg/SVGGraphicsElement.h
Source/WebCore/svg/SVGHKernElement.cpp
Source/WebCore/svg/SVGHKernElement.h
Source/WebCore/svg/SVGImageElement.cpp
Source/WebCore/svg/SVGImageElement.h
Source/WebCore/svg/SVGImageLoader.cpp
Source/WebCore/svg/SVGImageLoader.h
Source/WebCore/svg/SVGLengthContext.cpp
Source/WebCore/svg/SVGLengthContext.h
Source/WebCore/svg/SVGLengthValue.cpp
Source/WebCore/svg/SVGLengthValue.h
Source/WebCore/svg/SVGLineElement.cpp
Source/WebCore/svg/SVGLineElement.h
Source/WebCore/svg/SVGLinearGradientElement.cpp
Source/WebCore/svg/SVGLinearGradientElement.h
Source/WebCore/svg/SVGLocatable.cpp
Source/WebCore/svg/SVGLocatable.h
Source/WebCore/svg/SVGMPathElement.cpp
Source/WebCore/svg/SVGMPathElement.h
Source/WebCore/svg/SVGMarkerElement.cpp
Source/WebCore/svg/SVGMarkerElement.h
Source/WebCore/svg/SVGMaskElement.cpp
Source/WebCore/svg/SVGMaskElement.h
Source/WebCore/svg/SVGMetadataElement.cpp
Source/WebCore/svg/SVGMetadataElement.h
Source/WebCore/svg/SVGMissingGlyphElement.cpp
Source/WebCore/svg/SVGMissingGlyphElement.h
Source/WebCore/svg/SVGParserUtilities.cpp
Source/WebCore/svg/SVGParserUtilities.h
Source/WebCore/svg/SVGPathBlender.cpp
Source/WebCore/svg/SVGPathBlender.h
Source/WebCore/svg/SVGPathBuilder.cpp
Source/WebCore/svg/SVGPathBuilder.h
Source/WebCore/svg/SVGPathByteStream.h
Source/WebCore/svg/SVGPathByteStreamBuilder.cpp
Source/WebCore/svg/SVGPathByteStreamBuilder.h
Source/WebCore/svg/SVGPathByteStreamSource.cpp
Source/WebCore/svg/SVGPathByteStreamSource.h
Source/WebCore/svg/SVGPathConsumer.h
Source/WebCore/svg/SVGPathElement.cpp
Source/WebCore/svg/SVGPathElement.h
Source/WebCore/svg/SVGPathParser.cpp
Source/WebCore/svg/SVGPathParser.h
Source/WebCore/svg/SVGPathSeg.h
Source/WebCore/svg/SVGPathSegList.h
Source/WebCore/svg/SVGPathSegListBuilder.cpp
Source/WebCore/svg/SVGPathSegListBuilder.h
Source/WebCore/svg/SVGPathSegListSource.cpp
Source/WebCore/svg/SVGPathSegListSource.h
Source/WebCore/svg/SVGPathSource.h
Source/WebCore/svg/SVGPathStringBuilder.cpp
Source/WebCore/svg/SVGPathStringBuilder.h
Source/WebCore/svg/SVGPathStringSource.cpp
Source/WebCore/svg/SVGPathStringSource.h
Source/WebCore/svg/SVGPathTraversalStateBuilder.cpp
Source/WebCore/svg/SVGPathTraversalStateBuilder.h
Source/WebCore/svg/SVGPathUtilities.cpp
Source/WebCore/svg/SVGPathUtilities.h
Source/WebCore/svg/SVGPatternElement.cpp
Source/WebCore/svg/SVGPatternElement.h
Source/WebCore/svg/SVGPolyElement.cpp
Source/WebCore/svg/SVGPolyElement.h
Source/WebCore/svg/SVGPolygonElement.cpp
Source/WebCore/svg/SVGPolygonElement.h
Source/WebCore/svg/SVGPolylineElement.cpp
Source/WebCore/svg/SVGPolylineElement.h
Source/WebCore/svg/SVGPreserveAspectRatioValue.cpp
Source/WebCore/svg/SVGPreserveAspectRatioValue.h
Source/WebCore/svg/SVGRadialGradientElement.cpp
Source/WebCore/svg/SVGRadialGradientElement.h
Source/WebCore/svg/SVGRect.h
Source/WebCore/svg/SVGRectElement.cpp
Source/WebCore/svg/SVGRectElement.h
Source/WebCore/svg/SVGRenderingIntent.h
Source/WebCore/svg/SVGSVGElement.cpp
Source/WebCore/svg/SVGSVGElement.h
Source/WebCore/svg/SVGScriptElement.cpp
Source/WebCore/svg/SVGScriptElement.h
Source/WebCore/svg/SVGSetElement.cpp
Source/WebCore/svg/SVGSetElement.h
Source/WebCore/svg/SVGStopElement.cpp
Source/WebCore/svg/SVGStopElement.h
Source/WebCore/svg/SVGStyleElement.cpp
Source/WebCore/svg/SVGStyleElement.h
Source/WebCore/svg/SVGSwitchElement.cpp
Source/WebCore/svg/SVGSwitchElement.h
Source/WebCore/svg/SVGSymbolElement.cpp
Source/WebCore/svg/SVGSymbolElement.h
Source/WebCore/svg/SVGTRefElement.cpp
Source/WebCore/svg/SVGTRefElement.h
Source/WebCore/svg/SVGTSpanElement.cpp
Source/WebCore/svg/SVGTSpanElement.h
Source/WebCore/svg/SVGTests.cpp
Source/WebCore/svg/SVGTests.h
Source/WebCore/svg/SVGTextContentElement.cpp
Source/WebCore/svg/SVGTextContentElement.h
Source/WebCore/svg/SVGTextElement.cpp
Source/WebCore/svg/SVGTextElement.h
Source/WebCore/svg/SVGTextPathElement.cpp
Source/WebCore/svg/SVGTextPathElement.h
Source/WebCore/svg/SVGTextPositioningElement.cpp
Source/WebCore/svg/SVGTextPositioningElement.h
Source/WebCore/svg/SVGTitleElement.cpp
Source/WebCore/svg/SVGTitleElement.h
Source/WebCore/svg/SVGTransformDistance.cpp
Source/WebCore/svg/SVGTransformDistance.h
Source/WebCore/svg/SVGTransformList.h
Source/WebCore/svg/SVGTransformValue.h
Source/WebCore/svg/SVGTransformable.cpp
Source/WebCore/svg/SVGTransformable.h
Source/WebCore/svg/SVGURIReference.cpp
Source/WebCore/svg/SVGURIReference.h
Source/WebCore/svg/SVGUnitTypes.h
Source/WebCore/svg/SVGUseElement.cpp
Source/WebCore/svg/SVGUseElement.h
Source/WebCore/svg/SVGVKernElement.cpp
Source/WebCore/svg/SVGVKernElement.h
Source/WebCore/svg/SVGViewElement.cpp
Source/WebCore/svg/SVGViewElement.h
Source/WebCore/svg/SVGViewSpec.cpp
Source/WebCore/svg/SVGViewSpec.h
Source/WebCore/svg/SVGZoomAndPan.cpp
Source/WebCore/svg/SVGZoomAndPan.h
Source/WebCore/svg/SVGZoomEvent.cpp
Source/WebCore/svg/SVGZoomEvent.h
Source/WebCore/svg/graphics/SVGImageCache.cpp
Source/WebCore/svg/graphics/SVGImageCache.h
Source/WebCore/svg/graphics/SVGImageForContainer.cpp
Source/WebCore/svg/graphics/filters/*
Source/WebCore/svg/properties/*
Source/WebCore/testing/js/WebCoreTestSupportPrefix.h
Source/WebCore/xml/DOMParser.cpp
Source/WebCore/xml/DOMParser.h
Source/WebCore/xml/XMLHttpRequest.cpp
Source/WebCore/xml/XMLHttpRequest.h
Source/WebCore/xml/XMLSerializer.cpp
Source/WebCore/xml/XMLSerializer.h
Source/WebCore/xml/XSLImportRule.cpp
Source/WebCore/xml/XSLImportRule.h
Source/WebCore/xml/XSLStyleSheet.h
Source/WebCore/xml/XSLStyleSheetLibxslt.cpp
Source/WebCore/xml/XSLTProcessor.cpp
Source/WebCore/xml/XSLTProcessor.h
Source/WebCore/xml/XSLTProcessorLibxslt.cpp
Source/WebCore/xml/parser/*
Source/WebGPU/WGSL/config.h
Source/WebGPU/WebGPU/config.h
Source/WebKit/Shared/API/glib/*
Source/WebKit/Shared/CoordinatedGraphics/*
Source/WebKit/Shared/WebHitTestResultData.cpp
Source/WebKit/Shared/WebHitTestResultData.h
Source/WebKit/UIProcess/API/APIHitTestResult.cpp
Source/WebKit/UIProcess/API/APIHitTestResult.h
Source/WebKit/UIProcess/API/C/*
Source/WebKit/UIProcess/API/glib/IconDatabase.cpp
Source/WebKit/UIProcess/API/glib/IconDatabase.h
Source/WebKit/UIProcess/API/glib/InputMethodFilter.cpp
Source/WebKit/UIProcess/API/glib/InputMethodFilter.h
Source/WebKit/UIProcess/API/glib/WebKitApplicationInfo.cpp
Source/WebKit/UIProcess/API/glib/WebKitAuthenticationRequest.cpp
Source/WebKit/UIProcess/API/glib/WebKitAuthenticationRequestPrivate.h
Source/WebKit/UIProcess/API/glib/WebKitAutomationSession.cpp
Source/WebKit/UIProcess/API/glib/WebKitAutomationSessionPrivate.h
Source/WebKit/UIProcess/API/glib/WebKitBackForwardList.cpp
Source/WebKit/UIProcess/API/glib/WebKitBackForwardListItem.cpp
Source/WebKit/UIProcess/API/glib/WebKitContextMenuClient.cpp
Source/WebKit/UIProcess/API/glib/WebKitContextMenuClient.h
Source/WebKit/UIProcess/API/glib/WebKitCookieManagerPrivate.h
Source/WebKit/UIProcess/API/glib/WebKitCredential.cpp
Source/WebKit/UIProcess/API/glib/WebKitCredentialPrivate.h
Source/WebKit/UIProcess/API/glib/WebKitDeviceInfoPermissionRequest.cpp
Source/WebKit/UIProcess/API/glib/WebKitDeviceInfoPermissionRequestPrivate.h
Source/WebKit/UIProcess/API/glib/WebKitDownload.cpp
Source/WebKit/UIProcess/API/glib/WebKitDownloadClient.cpp
Source/WebKit/UIProcess/API/glib/WebKitDownloadClient.h
Source/WebKit/UIProcess/API/glib/WebKitDownloadPrivate.h
Source/WebKit/UIProcess/API/glib/WebKitEditorState.cpp
Source/WebKit/UIProcess/API/glib/WebKitEditorStatePrivate.h
Source/WebKit/UIProcess/API/glib/WebKitError.cpp
Source/WebKit/UIProcess/API/glib/WebKitFaviconDatabasePrivate.h
Source/WebKit/UIProcess/API/glib/WebKitFileChooserRequest.cpp
Source/WebKit/UIProcess/API/glib/WebKitFileChooserRequestPrivate.h
Source/WebKit/UIProcess/API/glib/WebKitFormClient.cpp
Source/WebKit/UIProcess/API/glib/WebKitFormClient.h
Source/WebKit/UIProcess/API/glib/WebKitFormSubmissionRequest.cpp
Source/WebKit/UIProcess/API/glib/WebKitFormSubmissionRequestPrivate.h
Source/WebKit/UIProcess/API/glib/WebKitGeolocationManager.cpp
Source/WebKit/UIProcess/API/glib/WebKitGeolocationManagerPrivate.h
Source/WebKit/UIProcess/API/glib/WebKitGeolocationPermissionRequest.cpp
Source/WebKit/UIProcess/API/glib/WebKitGeolocationPermissionRequestPrivate.h
Source/WebKit/UIProcess/API/glib/WebKitIconLoadingClient.cpp
Source/WebKit/UIProcess/API/glib/WebKitIconLoadingClient.h
Source/WebKit/UIProcess/API/glib/WebKitInjectedBundleClient.cpp
Source/WebKit/UIProcess/API/glib/WebKitInjectedBundleClient.h
Source/WebKit/UIProcess/API/glib/WebKitInputMethodContext.cpp
Source/WebKit/UIProcess/API/glib/WebKitInputMethodContextPrivate.h
Source/WebKit/UIProcess/API/glib/WebKitInstallMissingMediaPluginsPermissionRequest.cpp
Source/WebKit/UIProcess/API/glib/WebKitInstallMissingMediaPluginsPermissionRequestPrivate.h
Source/WebKit/UIProcess/API/glib/WebKitJavascriptResult.cpp
Source/WebKit/UIProcess/API/glib/WebKitJavascriptResultPrivate.h
Source/WebKit/UIProcess/API/glib/WebKitMediaKeySystemPermissionRequest.cpp
Source/WebKit/UIProcess/API/glib/WebKitMediaKeySystemPermissionRequestPrivate.h
Source/WebKit/UIProcess/API/glib/WebKitMemoryPressureSettings.cpp
Source/WebKit/UIProcess/API/glib/WebKitMemoryPressureSettingsPrivate.h
Source/WebKit/UIProcess/API/glib/WebKitMimeInfo.cpp
Source/WebKit/UIProcess/API/glib/WebKitNavigationAction.cpp
Source/WebKit/UIProcess/API/glib/WebKitNavigationActionPrivate.h
Source/WebKit/UIProcess/API/glib/WebKitNavigationClient.cpp
Source/WebKit/UIProcess/API/glib/WebKitNavigationClient.h
Source/WebKit/UIProcess/API/glib/WebKitNavigationPolicyDecision.cpp
Source/WebKit/UIProcess/API/glib/WebKitNavigationPolicyDecisionPrivate.h
Source/WebKit/UIProcess/API/glib/WebKitNetworkProxySettings.cpp
Source/WebKit/UIProcess/API/glib/WebKitNetworkProxySettingsPrivate.h
Source/WebKit/UIProcess/API/glib/WebKitNotification.cpp
Source/WebKit/UIProcess/API/glib/WebKitNotificationPermissionRequest.cpp
Source/WebKit/UIProcess/API/glib/WebKitNotificationPermissionRequestPrivate.h
Source/WebKit/UIProcess/API/glib/WebKitNotificationPrivate.h
Source/WebKit/UIProcess/API/glib/WebKitNotificationProvider.h
Source/WebKit/UIProcess/API/glib/WebKitOptionMenu.cpp
Source/WebKit/UIProcess/API/glib/WebKitOptionMenuItem.cpp
Source/WebKit/UIProcess/API/glib/WebKitOptionMenuItemPrivate.h
Source/WebKit/UIProcess/API/glib/WebKitOptionMenuPrivate.h
Source/WebKit/UIProcess/API/glib/WebKitPermissionRequest.cpp
Source/WebKit/UIProcess/API/glib/WebKitPlugin.cpp
Source/WebKit/UIProcess/API/glib/WebKitPointerLockPermissionRequest.cpp
Source/WebKit/UIProcess/API/glib/WebKitPointerLockPermissionRequestPrivate.h
Source/WebKit/UIProcess/API/glib/WebKitPolicyDecision.cpp
Source/WebKit/UIProcess/API/glib/WebKitPolicyDecisionPrivate.h
Source/WebKit/UIProcess/API/glib/WebKitPrivate.cpp
Source/WebKit/UIProcess/API/glib/WebKitResponsePolicyDecision.cpp
Source/WebKit/UIProcess/API/glib/WebKitResponsePolicyDecisionPrivate.h
Source/WebKit/UIProcess/API/glib/WebKitScriptDialog.cpp
Source/WebKit/UIProcess/API/glib/WebKitScriptDialogPrivate.h
Source/WebKit/UIProcess/API/glib/WebKitSecurityManagerPrivate.h
Source/WebKit/UIProcess/API/glib/WebKitSecurityOrigin.cpp
Source/WebKit/UIProcess/API/glib/WebKitSecurityOriginPrivate.h
Source/WebKit/UIProcess/API/glib/WebKitUIClient.cpp
Source/WebKit/UIProcess/API/glib/WebKitUIClient.h
Source/WebKit/UIProcess/API/glib/WebKitURISchemeRequest.cpp
Source/WebKit/UIProcess/API/glib/WebKitURISchemeRequestPrivate.h
Source/WebKit/UIProcess/API/glib/WebKitURISchemeResponse.cpp
Source/WebKit/UIProcess/API/glib/WebKitURISchemeResponsePrivate.h
Source/WebKit/UIProcess/API/glib/WebKitURIUtilities.cpp
Source/WebKit/UIProcess/API/glib/WebKitUserContent.cpp
Source/WebKit/UIProcess/API/glib/WebKitUserContentManager.cpp
Source/WebKit/UIProcess/API/glib/WebKitUserContentManagerPrivate.h
Source/WebKit/UIProcess/API/glib/WebKitUserContentPrivate.h
Source/WebKit/UIProcess/API/glib/WebKitUserMediaPermissionRequest.cpp
Source/WebKit/UIProcess/API/glib/WebKitUserMediaPermissionRequestPrivate.h
Source/WebKit/UIProcess/API/glib/WebKitVersion.cpp
Source/WebKit/UIProcess/API/glib/WebKitWebContext.cpp
Source/WebKit/UIProcess/API/glib/WebKitWebResource.cpp
Source/WebKit/UIProcess/API/glib/WebKitWebResourcePrivate.h
Source/WebKit/UIProcess/API/glib/WebKitWebView.cpp
Source/WebKit/UIProcess/API/glib/WebKitWebViewAccessible.cpp
Source/WebKit/UIProcess/API/glib/WebKitWebViewAccessible.h
Source/WebKit/UIProcess/API/glib/WebKitWebViewInternal.h
Source/WebKit/UIProcess/API/glib/WebKitWebViewSessionState.cpp
Source/WebKit/UIProcess/API/glib/WebKitWebViewSessionStatePrivate.h
Source/WebKit/UIProcess/API/glib/WebKitWebsiteData.cpp
Source/WebKit/UIProcess/API/glib/WebKitWebsiteDataAccessPermissionRequest.cpp
Source/WebKit/UIProcess/API/glib/WebKitWebsiteDataAccessPermissionRequestPrivate.h
Source/WebKit/UIProcess/API/glib/WebKitWebsiteDataManagerPrivate.h
Source/WebKit/UIProcess/API/glib/WebKitWebsiteDataPrivate.h
Source/WebKit/UIProcess/API/glib/WebKitWebsitePoliciesPrivate.h
Source/WebKit/UIProcess/API/glib/WebKitWindowProperties.cpp
Source/WebKit/UIProcess/API/gtk3/*
Source/WebKit/UIProcess/API/gtk4/*
Source/WebKit/UIProcess/API/wpe/InputMethodFilterWPE.cpp
Source/WebKit/UIProcess/API/wpe/WebKitApplicationInfo.h
Source/WebKit/UIProcess/API/wpe/WebKitAuthenticationRequest.h
Source/WebKit/UIProcess/API/wpe/WebKitAutocleanups.h
Source/WebKit/UIProcess/API/wpe/WebKitAutomationSession.h
Source/WebKit/UIProcess/API/wpe/WebKitBackForwardList.h
Source/WebKit/UIProcess/API/wpe/WebKitBackForwardListItem.h
Source/WebKit/UIProcess/API/wpe/WebKitColor.cpp
Source/WebKit/UIProcess/API/wpe/WebKitColor.h
Source/WebKit/UIProcess/API/wpe/WebKitColorPrivate.h
Source/WebKit/UIProcess/API/wpe/WebKitContextMenu.h
Source/WebKit/UIProcess/API/wpe/WebKitContextMenuActions.h
Source/WebKit/UIProcess/API/wpe/WebKitContextMenuItem.h
Source/WebKit/UIProcess/API/wpe/WebKitCredential.h
Source/WebKit/UIProcess/API/wpe/WebKitDeviceInfoPermissionRequest.h
Source/WebKit/UIProcess/API/wpe/WebKitDownload.h
Source/WebKit/UIProcess/API/wpe/WebKitEditingCommands.h
Source/WebKit/UIProcess/API/wpe/WebKitEditorState.h
Source/WebKit/UIProcess/API/wpe/WebKitError.h
Source/WebKit/UIProcess/API/wpe/WebKitFileChooserRequest.h
Source/WebKit/UIProcess/API/wpe/WebKitFormSubmissionRequest.h
Source/WebKit/UIProcess/API/wpe/WebKitGeolocationManager.h
Source/WebKit/UIProcess/API/wpe/WebKitGeolocationPermissionRequest.h
Source/WebKit/UIProcess/API/wpe/WebKitHitTestResult.h
Source/WebKit/UIProcess/API/wpe/WebKitInputMethodContext.h
Source/WebKit/UIProcess/API/wpe/WebKitInputMethodContextWPE.cpp
Source/WebKit/UIProcess/API/wpe/WebKitInstallMissingMediaPluginsPermissionRequest.h
Source/WebKit/UIProcess/API/wpe/WebKitJavascriptResult.h
Source/WebKit/UIProcess/API/wpe/WebKitMediaKeySystemPermissionRequest.h
Source/WebKit/UIProcess/API/wpe/WebKitMemoryPressureSettings.h
Source/WebKit/UIProcess/API/wpe/WebKitMimeInfo.h
Source/WebKit/UIProcess/API/wpe/WebKitNavigationAction.h
Source/WebKit/UIProcess/API/wpe/WebKitNavigationPolicyDecision.h
Source/WebKit/UIProcess/API/wpe/WebKitNetworkProxySettings.h
Source/WebKit/UIProcess/API/wpe/WebKitNotification.h
Source/WebKit/UIProcess/API/wpe/WebKitNotificationPermissionRequest.h
Source/WebKit/UIProcess/API/wpe/WebKitOptionMenu.h
Source/WebKit/UIProcess/API/wpe/WebKitOptionMenuItem.h
Source/WebKit/UIProcess/API/wpe/WebKitPermissionRequest.h
Source/WebKit/UIProcess/API/wpe/WebKitPlugin.h
Source/WebKit/UIProcess/API/wpe/WebKitPolicyDecision.h
Source/WebKit/UIProcess/API/wpe/WebKitPopupMenu.cpp
Source/WebKit/UIProcess/API/wpe/WebKitPopupMenu.h
Source/WebKit/UIProcess/API/wpe/WebKitRectangle.cpp
Source/WebKit/UIProcess/API/wpe/WebKitRectangle.h
Source/WebKit/UIProcess/API/wpe/WebKitResponsePolicyDecision.h
Source/WebKit/UIProcess/API/wpe/WebKitScriptDialog.h
Source/WebKit/UIProcess/API/wpe/WebKitScriptDialogWPE.cpp
Source/WebKit/UIProcess/API/wpe/WebKitSecurityOrigin.h
Source/WebKit/UIProcess/API/wpe/WebKitURIRequest.h
Source/WebKit/UIProcess/API/wpe/WebKitURIResponse.h
Source/WebKit/UIProcess/API/wpe/WebKitURISchemeRequest.h
Source/WebKit/UIProcess/API/wpe/WebKitURISchemeResponse.h
Source/WebKit/UIProcess/API/wpe/WebKitURIUtilities.h
Source/WebKit/UIProcess/API/wpe/WebKitUserContent.h
Source/WebKit/UIProcess/API/wpe/WebKitUserContentManager.h
Source/WebKit/UIProcess/API/wpe/WebKitUserMediaPermissionRequest.h
Source/WebKit/UIProcess/API/wpe/WebKitUserMessage.h
Source/WebKit/UIProcess/API/wpe/WebKitWebContext.h
Source/WebKit/UIProcess/API/wpe/WebKitWebResource.h
Source/WebKit/UIProcess/API/wpe/WebKitWebView.h
Source/WebKit/UIProcess/API/wpe/WebKitWebViewBackend.cpp
Source/WebKit/UIProcess/API/wpe/WebKitWebViewBackend.h
Source/WebKit/UIProcess/API/wpe/WebKitWebViewBackendPrivate.h
Source/WebKit/UIProcess/API/wpe/WebKitWebViewClient.h
Source/WebKit/UIProcess/API/wpe/WebKitWebViewSessionState.h
Source/WebKit/UIProcess/API/wpe/WebKitWebViewWPE.cpp
Source/WebKit/UIProcess/API/wpe/WebKitWebsiteData.h
Source/WebKit/UIProcess/API/wpe/WebKitWebsiteDataAccessPermissionRequest.h
Source/WebKit/UIProcess/API/wpe/WebKitWindowProperties.h
Source/WebKit/UIProcess/API/wpe/qt/*
Source/WebKit/UIProcess/API/wpe/webkit.h
Source/WebKit/UIProcess/DefaultUndoController.cpp
Source/WebKit/UIProcess/DefaultUndoController.h
Source/WebKit/UIProcess/Network/CustomProtocols/LegacyCustomProtocolManagerProxy.cpp
Source/WebKit/UIProcess/UserMediaPermissionRequestManagerProxy.cpp
Source/WebKit/UIProcess/UserMediaPermissionRequestManagerProxy.h
Source/WebKit/UIProcess/UserMediaPermissionRequestProxy.cpp
Source/WebKit/UIProcess/UserMediaPermissionRequestProxy.h
Source/WebKit/UIProcess/UserMediaProcessManager.cpp
Source/WebKit/UIProcess/UserMediaProcessManager.h
Source/WebKit/UIProcess/glib/UserMediaPermissionRequestManagerProxyGLib.cpp
Source/WebKit/WebProcess/InjectedBundle/API/glib/*
Source/WebKit/WebProcess/InjectedBundle/API/wpe/*
Source/WebKit/WebProcess/MediaStream/*
Source/WebKit/WebProcess/WebCoreSupport/*
Source/WebKit/WebProcess/WebPage/*
Tools/MiniBrowser/wpe/qt/main.cpp
Tools/TestWebKitAPI/Tests/WebKit/*
Tools/TestWebKitAPI/Tests/WebKitGLib/DOMElementTest.cpp
Tools/TestWebKitAPI/Tests/WebKitGLib/EditorTest.cpp
Tools/TestWebKitAPI/Tests/WebKitGLib/FrameTest.cpp
Tools/TestWebKitAPI/Tests/WebKitGLib/TestBackForwardList.cpp
Tools/TestWebKitAPI/Tests/WebKitGLib/TestCookieManager.cpp
Tools/TestWebKitAPI/Tests/WebKitGLib/TestDownloads.cpp
Tools/TestWebKitAPI/Tests/WebKitGLib/TestLoaderClient.cpp
Tools/TestWebKitAPI/Tests/WebKitGLib/TestResources.cpp
Tools/TestWebKitAPI/Tests/WebKitGLib/TestSSL.cpp
Tools/TestWebKitAPI/Tests/WebKitGLib/TestWebKitPolicyClient.cpp
Tools/TestWebKitAPI/Tests/WebKitGLib/WebExtensionTest.cpp
Tools/TestWebKitAPI/Tests/WebKitGLib/WebProcessTest.cpp
Tools/TestWebKitAPI/Tests/WebKitGLib/WebProcessTest.h
Tools/TestWebKitAPI/Tests/WebKitGtk/*
Tools/TestWebKitAPI/glib/WebKitGLib/*
Tools/glib/*
Copyright: 1997 Martin Jones <mjones@kde.org>
1997-1999 Torben Weis <weis@kde.org>
1998-1999 Lars Knoll <knoll@mpi-hd.mpg.de>
1998-1999, 2002 Waldo Bastian <bastian@kde.org>
1999-2000 Antti Koivisto <koivisto@kde.org>
1999-2003 Lars Knoll <knoll@kde.org>
1999-2004 Harri Porten <porten@kde.org>
2000 Daniel Molkentin <molkentin@kde.org>
2000 Frederik Holljen <frederik.holljen@hig.no>
2000 Gunnstein Lye <gunnstein@netcom.no>
2000 Simon Hausmann <hausmann@kde.org>
2000 Stefan Schimanski (1Stein@gmx.de)
2000 Stefan Schimanski <schimmi@kde.org>
2000-2001, 2003 Peter Kelly <pmk@post.com>
2000-2003 Dirk Mueller <mueller@kde.org>
2001 Tobias Anton <anton@stud.fbi.fh-darmstadt.de>
2002-2003 The Karbon Developers
2002-2023 Apple Inc
2003-2017 Inc
2004 Zack Rusin <zack@kde.org>
2004, 2015, 2022 Red Hat Inc
2004-2006 Allan Sandfeld Jensen <kde@carewolf.com>
2004-2006 Nikolas Zimmermann <wildfox@kde.org>
2004-2009, 2019 Nikolas Zimmermann <zimmermann@kde.org>
2004-2010 Rob Buis <buis@kde.org>
2005-2006 Alexander Kellett <lypanov@kde.org>
2005-2006 Oliver Hunt <ojh16@student.canterbury.ac.nz>
2005-2006 Oliver Hunt <oliver@nerget.com>
2005-2006 Samuel Weinig <sam.weinig@gmail.com>
2005-2007 Alexey Proskuryakov <ap@nypop.com>
2005-2007 Alexey Proskuryakov <ap@webkit.org>
2005-2008 Eric Seidel <eric@webkit.org>
2006 Anders Carlsson <andersca@mac.com>
2006 Andrew Wellington <proton@wiretapped.net>
2006 Bjoern Graf <bjoern.graf@gmail.com>
2006 Graham Dennis <graham.dennis@gmail.com>
2006 Jon Shier <jshier@iastate.edu>
2006 Lars Knoll <lars@trolltech.com>
2006 Michael Emmel mike.emmel@gmail.com
2006-2007 Maks Orlovich
2006-2007 Nicholas Shanks <webkit@nickshanks.com>
2006-2007 Rob Buis
2006-2007 Samuel Weinig <sam@webkit.org>
2007 Cameron Zwarich <cwzwarich@uwaterloo.ca>
2007 Krzysztof Kowalczyk <kkowalczyk@gmail.com>
2007 OpenedHand
2007 Pioneer Research Center USA Inc
2007 Staikos Computing Services Inc
2007-2008 Alp Toker <alp@atoker.com>
2007-2008 David Smith <catfish.man@gmail.com>
2007-2008 Julien Chaffraix <jchaffraix@webkit.org>
2007-2009 Holger Hans Peter Freyther
2007-2009 Torch Mobile Inc
2007-2011, 2013-2014, 2017 Collabora Ltd
2007-2021 Google Inc
2008 Alex Mathews <possessedpenguinbob@gmail.com>
2008 David Levin <levin@chromium.org>
2008 Luca Bruno <lethalman88@gmail.com>
2008 Luke Kenneth Casson Leighton <lkcl@lkcl.net>
2008 Martin Soto <soto@freedesktop.org>
2008 Xan Lopez <xan@gnome.org>
2008-2009 Cameron McCormack <cam@mcc.id.au>
2008-2011 Dirk Schulze <krit@webkit.org>
2008-2013 Nokia
2009 Acision BV
2009 Antonio Gomes <tonikitoo@webkit.org>
2009 Christian Dywan <christian@imendio.com>
2009 Jakub Wieczorek <faw217@gmail.com>
2009 Jeff Schiller <codedread@gmail.com>
2009 John Kjellberg <john.kjellberg@power.alstom.com>
2009 Kenneth Rohde Christiansen
2009 Martin Robinson
2009 Michelangelo De Simone <micdesim@gmail.com>
2009, 2012 Ericsson AB
2009, 2013 Gustavo Noronha Silva <gns@gnome.org>
2009-2010 Gustavo Noronha Silva
2009-2010 Rob Buis <rwlbuis@gmail.com>
2009-2011 Torch Mobile (Beijing) Co
2009-2022 Igalia S.L.
2010 Andras Becsi <abecsi@inf.u-szeged.hu>, University of Szeged
2010 Daniel Bates <dbates@intudata.com>
2010 Peter Varga <pvarga@inf.u-szeged.hu>, University of Szeged
2010 Renata Hodovan <reni@inf.u-szeged.hu>
2010 Zoltan Herczeg <zherczeg@inf.u-szeged.hu>
2010, 2012 Patrick Gansterer <paroga@paroga.com>
2010, 2012 Zoltan Herczeg <zherczeg@webkit.org>
2010-2011 Brent Fulgham <bfulgham@webkit.org>
2010-2012 Motorola Mobility
2011 Andreas Kling <kling@webkit.org>
2011 Benjamin Poulain <benjamin@webkit.org>
2011 Benjamin Poulain <ikipou@gmail.com>
2011 Brent Fulgham
2011 Code Aurora Forum
2011 Cosmin Truta <ctruta@gmail.com>
2011 Gabor Loki <loki@webkit.org>
2011 Leo Yang <leoyang@webkit.org>
2011 Patrick Gansterer <paroga@webkit.org>
2011 Research In Motion Limited
2011 Rik Cabanier <cabanier@adobe.com>
2011 Robert Hogan <robert@roberthogan.net>
2011 Sencha Inc
2011 Zan Dobersek <zandobersek@gmail.com>
2011-2012 Renata Hodovan <reni@webkit.org>
2011-2012 University of Szeged
2011-2013 Samsung Electronics
2011-2014, 2018 Adobe Systems Inc
2012 Digia Plc
2012 Mathias Bynens <mathias@qiwi.be>
2012-2013 Company 100 Inc
2012-2013 Intel Corporation
2012-2013 basysKom GmbH
2013 ChangSeok Oh <shivamidow@gmail.com>
2013 Michael Pruett <michael@68k.org>
2013 YouView TV Ltd. <alex.ashley@youview.com>
2014 Cable Television Labs Inc
2014 Yoav Weiss <yoav@yoav.ws>
2014-2015 Yusuke Suzuki <utatane.tea@gmail.com>
2015 Akamai Technologies Inc
2015 Jordan Harband <ljharb@gmail.com>
2015 Yusuke Suzuki<utatane.tea@gmail.com>
2015-2016 Canon Inc
2015-2022 Metrological Group B.V
2017 Aidan Holm <aidanholm@gmail.com>
2017 Endless Mobile Inc
2017, 2020-2022 Sony Interactive Entertainment
2018-2019 Zodiac Inflight Innovations
2020 Jan-Michael Brummer <jan.brummer@tabos.org>
2020 Noam Rosenthal <noam@webkit.org>
2020 WikiMedia Inc
2021 Zixing Liu
License: LGPL-2+
Files: Source/WebCore/html/HTMLDocument.cpp
Copyright: 1999 Antti Koivisto <koivisto@kde.org>
1999 Lars Knoll <knoll@kde.org>
2003-2008 Apple Inc
License: LGPL-2+ or MPL-1.1
Files: Source/WebCore/loader/FTPDirectoryParser.cpp
Source/WebCore/loader/FTPDirectoryParser.h
Copyright: 2002 Cyrus Patel <cyp@fb14.uni-mainz.de>
2007, 2013 Apple Inc
License: LGPL-2.1
Files: Source/WebCore/platform/graphics/OpenGLShims.cpp
Source/WebCore/platform/graphics/OpenGLShims.h
Source/WebKit/UIProcess/API/glib/WebKitCookieManager.cpp
Source/WebKit/UIProcess/API/glib/WebKitFaviconDatabase.cpp
Source/WebKit/UIProcess/API/glib/WebKitFindController.cpp
Source/WebKit/UIProcess/API/glib/WebKitProtocolHandler.cpp
Source/WebKit/UIProcess/API/glib/WebKitProtocolHandler.h
Source/WebKit/UIProcess/API/glib/WebKitSecurityManager.cpp
Source/WebKit/UIProcess/API/glib/WebKitWebsiteDataManager.cpp
Source/WebKit/UIProcess/API/glib/WebKitWebsitePolicies.cpp
Source/WebKit/UIProcess/API/wpe/WebKitCookieManager.h
Source/WebKit/UIProcess/API/wpe/WebKitFaviconDatabase.h
Source/WebKit/UIProcess/API/wpe/WebKitFindController.h
Source/WebKit/UIProcess/API/wpe/WebKitSecurityManager.h
Source/WebKit/UIProcess/API/wpe/WebKitWebsiteDataManager.h
Source/WebKit/UIProcess/API/wpe/WebKitWebsitePolicies.h
Source/WebKit/UIProcess/Launcher/glib/*
Source/WebKit/WebProcess/InjectedBundle/API/glib/WebKitFrame.cpp
Source/WebKit/WebProcess/InjectedBundle/API/glib/WebKitScriptWorld.cpp
Source/WebKit/WebProcess/InjectedBundle/API/glib/WebKitWebEditor.cpp
Source/WebKit/WebProcess/InjectedBundle/API/glib/WebKitWebExtension.cpp
Source/WebKit/WebProcess/InjectedBundle/API/glib/WebKitWebHitTestResult.cpp
Source/WebKit/WebProcess/InjectedBundle/API/glib/WebKitWebPage.cpp
Source/WebKit/WebProcess/InjectedBundle/API/wpe/WebKitFrame.h
Source/WebKit/WebProcess/InjectedBundle/API/wpe/WebKitScriptWorld.h
Source/WebKit/WebProcess/InjectedBundle/API/wpe/WebKitWebEditor.h
Source/WebKit/WebProcess/InjectedBundle/API/wpe/WebKitWebExtension.h
Source/WebKit/WebProcess/InjectedBundle/API/wpe/WebKitWebHitTestResult.h
Source/WebKit/WebProcess/InjectedBundle/API/wpe/WebKitWebPage.h
Source/WebKit/WebProcess/InjectedBundle/API/wpe/webkit-web-extension.h
Tools/TestWebKitAPI/Tests/JavaScriptCore/glib/TestJSC.cpp
Tools/TestWebKitAPI/Tests/WPEQt/*
Tools/TestWebKitAPI/Tests/WebKitGLib/TestAuthentication.cpp
Tools/TestWebKitAPI/Tests/WebKitGLib/TestAutomationSession.cpp
Tools/TestWebKitAPI/Tests/WebKitGLib/TestConsoleMessage.cpp
Tools/TestWebKitAPI/Tests/WebKitGLib/TestDOMElement.cpp
Tools/TestWebKitAPI/Tests/WebKitGLib/TestEditor.cpp
Tools/TestWebKitAPI/Tests/WebKitGLib/TestFrame.cpp
Tools/TestWebKitAPI/Tests/WebKitGLib/TestGeolocationManager.cpp
Tools/TestWebKitAPI/Tests/WebKitGLib/TestInputMethodContext.cpp
Tools/TestWebKitAPI/Tests/WebKitGLib/TestMultiprocess.cpp
Tools/TestWebKitAPI/Tests/WebKitGLib/TestOptionMenu.cpp
Tools/TestWebKitAPI/Tests/WebKitGLib/TestUIClient.cpp
Tools/TestWebKitAPI/Tests/WebKitGLib/TestWebExtensions.cpp
Tools/TestWebKitAPI/Tests/WebKitGLib/TestWebKitFaviconDatabase.cpp
Tools/TestWebKitAPI/Tests/WebKitGLib/TestWebKitFindController.cpp
Tools/TestWebKitAPI/Tests/WebKitGLib/TestWebKitSecurityOrigin.cpp
Tools/TestWebKitAPI/Tests/WebKitGLib/TestWebKitUserContentFilterStore.cpp
Tools/TestWebKitAPI/Tests/WebKitGLib/TestWebKitUserContentManager.cpp
Tools/TestWebKitAPI/Tests/WebKitGLib/TestWebKitWebContext.cpp
Tools/TestWebKitAPI/Tests/WebKitGLib/TestWebKitWebView.cpp
Tools/TestWebKitAPI/Tests/WebKitGLib/TestWebsiteData.cpp
Tools/TestWebKitAPI/Tests/WebKitGtk/TestContextMenu.cpp
Tools/TestWebKitAPI/Tests/WebKitGtk/TestDOMClientRect.cpp
Tools/TestWebKitAPI/Tests/WebKitGtk/TestDOMDOMWindow.cpp
Tools/TestWebKitAPI/Tests/WebKitGtk/TestDOMNode.cpp
Tools/TestWebKitAPI/Tests/WebKitGtk/TestDOMNodeFilter.cpp
Tools/TestWebKitAPI/Tests/WebKitGtk/TestDOMXPathNSResolver.cpp
Tools/TestWebKitAPI/Tests/WebKitGtk/TestPrinting.cpp
Tools/TestWebKitAPI/Tests/WebKitGtk/TestWebKitAccessibility.cpp
Tools/TestWebKitAPI/Tests/WebKitGtk/TestWebKitVersion.cpp
Tools/TestWebKitAPI/Tests/WebKitGtk/TestWebViewEditor.cpp
Copyright: 2010 Tieto Corporation
2011-2015, 2017-2020 Igalia S.L.
2014, 2021 Collabora Ltd
2015 Red Hat Inc
2017 Aidan Holm <aidanholm@gmail.com>
2017 Endless Mobile Inc
License: LGPL-2.1+
Files: Source/WebCore/platform/ScrollAlignment.cpp
Source/WebCore/platform/ScrollAlignment.h
Source/WebCore/platform/image-decoders/jpeg/JPEGImageDecoder.cpp
Source/WebCore/platform/image-decoders/png/PNGImageDecoder.cpp
Source/WebCore/rendering/RenderLayer.cpp
Source/WebCore/rendering/RenderLayer.h
Source/WebCore/rendering/RenderLayerScrollableArea.cpp
Source/WebCore/rendering/RenderLayerScrollableArea.h
Source/WebCore/rendering/RenderMarquee.cpp
Source/WebCore/rendering/RenderMarquee.h
Copyright: 1998 Netscape Communications Corporation
2001-2006 mozilla.org
2003, 2006-2020 Apple Inc
2007-2009 Torch Mobile Inc
2019 Adobe
2020-2022 Igalia S.L.
License: LGPL-2.1+ or MPL-1.1
Files: Source/WTF/wtf/text/EscapedFormsForJSON.h
Source/WTF/wtf/text/StringBuilderJSON.cpp
Copyright: 2010-2018 Apple Inc
2012 Google Inc
2017 Mozilla Foundation
2017 Yusuke Suzuki <utatane.tea@gmail.com>
License: MPL-2.0
Files: Source/ThirdParty/ANGLE/src/common/third_party/smhasher/src/*
Copyright: public domain
License: public-domain
All MurmurHash versions are public domain software, and the author
disclaims all copyright to their code.
Files: debian/*
Copyright: 2019-2023 Alberto Garcia <berto@igalia.com>
License: BSD-2-clause
License: AFL-2.0
The Academic Free License v. 2.0
.
This Academic Free License (the "License") applies to any original
work of authorship (the "Original Work") whose owner (the "Licensor")
has placed the following notice immediately following the copyright
notice for the Original Work:
.
Licensed under the Academic Free License version 2.0
.
1) Grant of Copyright License. Licensor hereby grants You a
world-wide, royalty-free, non-exclusive, perpetual,
sublicenseable license to do the following:
a) to reproduce the Original Work in copies;
b) to prepare derivative works ("Derivative Works") based upon
the Original Work;
c) to distribute copies of the Original Work and Derivative Works
to the public;
d) to perform the Original Work publicly; and
e) to display the Original Work publicly.
.
2) Grant of Patent License. Licensor hereby grants You a world-wide,
royalty-free, non-exclusive, perpetual, sublicenseable license,
under patent claims owned or controlled by the Licensor that are
embodied in the Original Work as furnished by the Licensor, to
make, use, sell and offer for sale the Original Work and
Derivative Works.
.
3) Grant of Source Code License. The term "Source Code" means the
preferred form of the Original Work for making modifications to
it and all available documentation describing how to modify the
Original Work. Licensor hereby agrees to provide a
machine-readable copy of the Source Code of the Original Work
along with each copy of the Original Work that Licensor
distributes. Licensor reserves the right to satisfy this
obligation by placing a machine-readable copy of the Source Code
in an information repository reasonably calculated to permit
inexpensive and convenient access by You for as long as Licensor
continues to distribute the Original Work, and by publishing the
address of that information repository in a notice immediately
following the copyright notice that applies to the Original Work.
.
4) Exclusions From License Grant. Neither the names of Licensor, nor
the names of any contributors to the Original Work, nor any of
their trademarks or service marks, may be used to endorse or
promote products derived from this Original Work without express
prior written permission of the Licensor. Nothing in this License
shall be deemed to grant any rights to trademarks, copyrights,
patents, trade secrets or any other intellectual property of
Licensor except as expressly stated herein. No patent license is
granted to make, use, sell or offer to sell embodiments of any
patent claims other than the licensed claims defined in Section
2. No right is granted to the trademarks of Licensor even if such
marks are included in the Original Work. Nothing in this License
shall be interpreted to prohibit Licensor from licensing under
different terms from this License any Original Work that Licensor
otherwise would have a right to license.
.
5) This section intentionally omitted.
.
6) Attribution Rights. You must retain, in the Source Code of any
Derivative Works that You create, all copyright, patent or
trademark notices from the Source Code of the Original Work, as
well as any notices of licensing and any descriptive text
identified therein as an "Attribution Notice." You must cause the
Source Code for any Derivative Works that You create to carry a
prominent Attribution Notice reasonably calculated to inform
recipients that You have modified the Original Work.
.
7) Warranty of Provenance and Disclaimer of Warranty. Licensor
warrants that the copyright in and to the Original Work and the
patent rights granted herein by Licensor are owned by the
Licensor or are sublicensed to You under the terms of this
License with the permission of the contributor(s) of those
copyrights and patent rights. Except as expressly stated in the
immediately proceeding sentence, the Original Work is provided
under this License on an "AS IS" BASIS and WITHOUT WARRANTY,
either express or implied, including, without limitation, the
warranties of NON-INFRINGEMENT, MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY OF THE
ORIGINAL WORK IS WITH YOU. This DISCLAIMER OF WARRANTY
constitutes an essential part of this License. No license to
Original Work is granted hereunder except under this disclaimer.
.
8) Limitation of Liability. Under no circumstances and under no
legal theory, whether in tort (including negligence), contract,
or otherwise, shall the Licensor be liable to any person for any
direct, indirect, special, incidental, or consequential damages
of any character arising as a result of this License or the use
of the Original Work including, without limitation, damages for
loss of goodwill, work stoppage, computer failure or malfunction,
or any and all other commercial damages or losses. This
limitation of liability shall not apply to liability for death or
personal injury resulting from Licensor's negligence to the
extent applicable law prohibits such limitation. Some
jurisdictions do not allow the exclusion or limitation of
incidental or consequential damages, so this exclusion and
limitation may not apply to You.
.
9) Acceptance and Termination. If You distribute copies of the
Original Work or a Derivative Work, You must make a reasonable
effort under the circumstances to obtain the express assent of
recipients to the terms of this License. Nothing else but this
License (or another written agreement between Licensor and You)
grants You permission to create Derivative Works based upon the
Original Work or to exercise any of the rights granted in Section
1 herein, and any attempt to do so except under the terms of this
License (or another written agreement between Licensor and You)
is expressly prohibited by U.S. copyright law, the equivalent
laws of other countries, and by international treaty. Therefore,
by exercising any of the rights granted to You in Section 1
herein, You indicate Your acceptance of this License and all of
its terms and conditions.
.
10) Termination for Patent Action. This License shall terminate
automatically and You may no longer exercise any of the rights
granted to You by this License as of the date You commence an
action, including a cross-claim or counterclaim, for patent
infringement (i) against Licensor with respect to a patent
applicable to software or (ii) against any entity with respect
to a patent applicable to the Original Work (but excluding
combinations of the Original Work with other software or
hardware).
.
11) Jurisdiction, Venue and Governing Law. Any action or suit
relating to this License may be brought only in the courts of a
jurisdiction wherein the Licensor resides or in which Licensor
conducts its primary business, and under the laws of that
jurisdiction excluding its conflict-of-law provisions. The
application of the United Nations Convention on Contracts for
the International Sale of Goods is expressly excluded. Any use
of the Original Work outside the scope of this License or after
its termination shall be subject to the requirements and
penalties of the U.S. Copyright Act, 17 U.S.C. ¤ 101 et seq.,
the equivalent laws of other countries, and international
treaty. This section shall survive the termination of this
License.
.
12) Attorneys Fees. In any action to enforce the terms of this
License or seeking damages relating thereto, the prevailing
party shall be entitled to recover its costs and expenses,
including, without limitation, reasonable attorneys' fees and
costs incurred in connection with such action, including any
appeal of such action. This section shall survive the
termination of this License.
.
13) Miscellaneous. This License represents the complete agreement
concerning the subject matter hereof. If any provision of this
License is held to be unenforceable, such provision shall be
reformed only to the extent necessary to make it enforceable.
.
14) Definition of "You" in This License. "You" throughout this
License, whether in upper or lower case, means an individual or
a legal entity exercising rights under, and complying with all
of the terms of, this License. For legal entities, "You"
includes any entity that controls, is controlled by, or is under
common control with you. For purposes of this definition,
"control" means (i) the power, direct or indirect, to cause the
direction or management of such entity, whether by contract or
otherwise, or (ii) ownership of fifty percent (50%) or more of
the outstanding shares, or (iii) beneficial ownership of such
entity.
.
15) Right to Use. You may use the Original Work in all ways not
otherwise restricted or conditioned by this License or by law,
and Licensor promises not to interfere with or be responsible
for such uses by You.
.
This license is Copyright (C) 2003 Lawrence E. Rosen. All rights
reserved.
.
Permission is hereby granted to copy and distribute this license
without modification. This license may not be modified without the
express written permission of its copyright owner.
License: Apache-2.0
On Debian systems, the full text of the Apache license version 2 can
be found in the file `/usr/share/common-licenses/Apache-2.0'.
License: BSD-2-clause
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
.
THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
License: BSD-3-clause-adam-barth
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
.
1. Redistributions of source code must retain the copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. Neither the name of Adam Barth. ("Adam Barth") nor the names of
its contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
License: BSD-3-clause-apple
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
.
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. Neither the name of Apple Inc. ("Apple") nor the names of
its contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
.
THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
License: BSD-3-clause-canon
Redistribution and use in source and binary forms, with or without
modification, are permitted, provided that the following conditions
are required to be met:
.
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. Neither the name of Canon Inc. nor the names of
its contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
.
THIS SOFTWARE IS PROVIDED BY CANON INC. AND ITS CONTRIBUTORS "AS IS" AND ANY
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL CANON INC. AND ITS CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
License: BSD-3-clause-code-aurora
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following
disclaimer in the documentation and/or other materials provided
with the distribution.
* Neither the name of Code Aurora Forum, Inc. nor the names of its
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
.
THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
License: BSD-3-clause-ericsson
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
.
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer
in the documentation and/or other materials provided with the
distribution.
3. Neither the name of Ericsson nor the names of its contributors
may be used to endorse or promote products derived from this
software without specific prior written permission.
.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
License: BSD-3-clause-google
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
.
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following disclaimer
in the documentation and/or other materials provided with the
distribution.
* Neither the name of Google Inc. nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
License: BSD-3-clause-copyright-holder
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
.
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
.
3. Neither the name of the copyright holder nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY
WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
License: BSD-3-clause-jochen-kalmbach
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
.
Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
.
Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
.
Neither the name of Jochen Kalmbach nor the names of its contributors
may be used to endorse or promote products derived from this software
without specific prior written permission.
.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
License: BSD-3-clause-microsoft
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
.
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following
disclaimer in the documentation and/or other materials provided with
the distribution.
* Neither the name of Microsoft Corporation nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
License: BSD-3-clause-motorola
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
.
Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
.
Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
.
Neither the name of Motorola Mobility, Inc. nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY
WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
License: BSD-3-clause-opera
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. Neither the name of Opera Software ASA nor the names of its
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
OF THE POSSIBILITY OF SUCH DAMAGE.
License: BSD-4-clause-valgrind
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. The origin of this software must not be misrepresented; you must
not claim that you wrote the original software. If you use this
software in a product, an acknowledgment in the product
documentation would be appreciated but is not required.
3. Altered source versions must be plainly marked as such, and must
not be misrepresented as being the original software.
4. The name of the author may not be used to endorse or promote
products derived from this software without specific prior written
permission.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
License: BSL-1.0
Boost Software License - Version 1.0 - August 17th, 2003
.
Permission is hereby granted, free of charge, to any person or
organization obtaining a copy of the software and accompanying
documentation covered by this license (the "Software") to use,
reproduce, display, distribute, execute, and transmit the Software,
and to prepare derivative works of the Software, and to permit
third-parties to whom the Software is furnished to do so, all subject
to the following:
.
The copyright notices in the Software and this entire statement,
including the above license grant, this restriction and the following
disclaimer, must be included in all copies of the Software, in whole
or in part, and all derivative works of the Software, unless such
copies or derivative works are solely in the form of
machine-executable object code generated by a source language
processor.
.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE
DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR OTHER
LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT
OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
License: Expat
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
.
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
License: GPL-2+
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or (at
your option) any later version.
.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
.
On Debian systems, the complete text of the license can be found in
the file /usr/share/common-licenses/GPL-2
License: GPL-2+ with Bison exception
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or (at
your option) any later version.
.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
.
On Debian systems, the complete text of the license can be found in
the file /usr/share/common-licenses/GPL-2
.
As a special exception, you may create a larger work that contains
part or all of the Bison parser skeleton and distribute that work
under terms of your choice, so long as that work isn't itself a
parser generator using the skeleton or a modified version thereof as
a parser skeleton. Alternatively, if you modify or redistribute the
parser skeleton itself, you may (at your option) remove this special
exception, which will cause the skeleton and the resulting Bison
output files to be licensed under the GNU General Public License
without this special exception.
License: GPL-3+
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or (at
your option) any later version.
.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
.
On Debian systems, the complete text of the license can be found in
the file /usr/share/common-licenses/GPL-3
License: GPL-3+ with Bison exception
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or (at
your option) any later version.
.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
.
On Debian systems, the complete text of the license can be found in
the file /usr/share/common-licenses/GPL-3
.
As a special exception, you may create a larger work that contains
part or all of the Bison parser skeleton and distribute that work
under terms of your choice, so long as that work isn't itself a
parser generator using the skeleton or a modified version thereof as
a parser skeleton. Alternatively, if you modify or redistribute the
parser skeleton itself, you may (at your option) remove this special
exception, which will cause the skeleton and the resulting Bison
output files to be licensed under the GNU General Public License
without this special exception.
License: ISC
Permission to use, copy, modify, and distribute this software for any
purpose with or without fee is hereby granted, provided that the
above copyright notice and this permission notice appear in all
copies.
.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE.
License: LGPL-2
This module is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License version 2
as published by the Free Software Foundation.
.
This module is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
.
On Debian systems, the complete text of the license can be found in
the file /usr/share/common-licenses/LGPL-2
License: LGPL-2+
This module is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as
published by the Free Software Foundation; either version 2 of the
License, or (at your option) any later version.
.
This module is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
.
On Debian systems, the complete text of the license can be found in
the file /usr/share/common-licenses/LGPL-2
License: LGPL-2.1
This module is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License version
2.1 as published by the Free Software Foundation.
.
This module is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
.
On Debian systems, the complete text of the license can be found in
the file /usr/share/common-licenses/LGPL-2.1
License: LGPL-2.1+
This module is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as
published by the Free Software Foundation; either version 2.1 of the
License, or (at your option) any later version.
.
This module is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
.
On Debian systems, the complete text of the license can be found in
the file /usr/share/common-licenses/LGPL-2.1
License: MPL-1.1
On Debian systems, the full text of the Mozilla Public License v1.1
can be found in the file `/usr/share/common-licenses/MPL-1.1`.
License: MPL-2.0
On Debian systems, the full text of the Mozilla Public License v2.0
can be found in the file `/usr/share/common-licenses/MPL-2.0`.
|