1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef mozilla_dom_Document_h___
#define mozilla_dom_Document_h___
#include <bitset>
#include <cstddef>
#include <cstdint>
#include <new>
#include <utility>
#include "ErrorList.h"
#include "MainThreadUtils.h"
#include "Units.h"
#include "imgIRequest.h"
#include "js/RootingAPI.h"
#include "js/friend/DOMProxy.h"
#include "mozilla/AlreadyAddRefed.h"
#include "mozilla/Assertions.h"
#include "mozilla/Attributes.h"
#include "mozilla/BasicEvents.h"
#include "mozilla/BitSet.h"
#include "mozilla/CORSMode.h"
#include "mozilla/CallState.h"
#include "mozilla/ContentBlockingNotifier.h"
#include "mozilla/FlushType.h"
#include "mozilla/FunctionRef.h"
#include "mozilla/HashTable.h"
#include "mozilla/LinkedList.h"
#include "mozilla/Maybe.h"
#include "mozilla/MozPromise.h"
#include "mozilla/NotNull.h"
#include "mozilla/OriginTrials.h"
#include "mozilla/PageloadEvent.h"
#include "mozilla/PointerLockManager.h"
#include "mozilla/PreloadService.h"
#include "mozilla/RefPtr.h"
#include "mozilla/RenderingPhase.h"
#include "mozilla/Result.h"
#include "mozilla/SegmentedVector.h"
#include "mozilla/ServoStyleSet.h"
#include "mozilla/StorageAccessAPIHelper.h"
#include "mozilla/TimeStamp.h"
#include "mozilla/UniquePtr.h"
#include "mozilla/UseCounter.h"
#include "mozilla/WeakPtr.h"
#include "mozilla/css/StylePreloadKind.h"
#include "mozilla/dom/AnimationFrameProvider.h"
#include "mozilla/dom/DocumentOrShadowRoot.h"
#include "mozilla/dom/Element.h"
#include "mozilla/dom/EventTarget.h"
#include "mozilla/dom/LargestContentfulPaint.h"
#include "mozilla/dom/Nullable.h"
#include "mozilla/dom/RadioGroupContainer.h"
#include "mozilla/dom/TreeOrderedArray.h"
#include "mozilla/dom/UserActivation.h"
#include "mozilla/dom/ViewportMetaData.h"
#include "mozilla/dom/WakeLockBinding.h"
#include "nsAtom.h"
#include "nsCOMArray.h"
#include "nsCOMPtr.h"
#include "nsClassHashtable.h"
#include "nsCompatibility.h"
#include "nsContentListDeclarations.h"
#include "nsCycleCollectionParticipant.h"
#include "nsDebug.h"
#include "nsGkAtoms.h"
#include "nsHashKeys.h"
#include "nsIChannel.h"
#include "nsIChannelEventSink.h"
#include "nsIClassifiedChannel.h"
#include "nsID.h"
#include "nsIDocumentViewer.h"
#include "nsIInterfaceRequestor.h"
#include "nsILoadContext.h"
#include "nsILoadGroup.h"
#include "nsILoadInfo.h"
#include "nsINode.h"
#include "nsIObserver.h"
#include "nsIParser.h"
#include "nsIPrincipal.h"
#include "nsIProgressEventSink.h"
#include "nsIReferrerInfo.h"
#include "nsIRequestObserver.h"
#include "nsIScriptObjectPrincipal.h"
#include "nsIStreamListener.h"
#include "nsISupports.h"
#include "nsISupportsUtils.h"
#include "nsITransportSecurityInfo.h"
#include "nsIURI.h"
#include "nsIWeakReferenceUtils.h"
#include "nsLiteralString.h"
#include "nsPIDOMWindow.h"
#include "nsPropertyTable.h"
#include "nsRefPtrHashtable.h"
#include "nsString.h"
#include "nsTArray.h"
#include "nsTHashMap.h"
#include "nsTHashSet.h"
#include "nsTLiteralString.h"
#include "nsTObserverArray.h"
#include "nsThreadUtils.h"
#include "nsURIHashKey.h"
#include "nsWeakReference.h"
#include "nsWindowSizes.h"
#include "nsXULElement.h"
#include "nscore.h"
// XXX We need to include this here to ensure that DefaultDeleter for Servo
// types is specialized before the template is instantiated. Probably, this
// should be included at some other place already that's generated by cbindgen.
#include "mozilla/ServoBindingTypes.h"
// windows.h #defines CreateEvent
#ifdef CreateEvent
# undef CreateEvent
#endif
#ifdef MOZILLA_INTERNAL_API
# include "mozilla/dom/DocumentBinding.h"
#else
namespace mozilla {
namespace dom {
class ElementCreationOptionsOrString;
} // namespace dom
} // namespace mozilla
#endif // MOZILLA_INTERNAL_API
class InfallibleAllocPolicy;
class JSObject;
class JSTracer;
class PLDHashTable;
class PolicyContainer;
class gfxUserFontSet;
class mozIDOMWindowProxy;
class nsCachableElementsByNameNodeList;
class nsCommandManager;
class nsContentList;
class nsCycleCollectionTraversalCallback;
class nsDOMCaretPosition;
class nsDOMNavigationTiming;
class nsDocShell;
class nsFrameLoader;
class nsFrameLoaderOwner;
class nsGenericHTMLElement;
class nsGlobalWindowInner;
class nsHTMLDocument;
class nsHtml5TreeOpExecutor;
class nsIAppWindow;
class nsIAsyncVerifyRedirectCallback;
class nsIBFCacheEntry;
class nsIContent;
class nsIContentSecurityPolicy;
class nsIContentSink;
class nsICookieJarSettings;
class nsIDOMXULCommandDispatcher;
class nsIDocShell;
class nsIDocShellTreeItem;
class nsIDocumentEncoder;
class nsIDocumentObserver;
class nsIEventTarget;
class nsIFrame;
class nsIGlobalObject;
class nsIHTMLCollection;
class nsIInputStream;
class nsILayoutHistoryState;
class nsIObjectLoadingContent;
class nsIPermissionDelegateHandler;
class nsIPolicyContainer;
class nsIRequest;
class nsIRunnable;
class nsIScriptGlobalObject;
class nsISecurityConsoleMessage;
class nsISerialEventTarget;
class nsIStructuredCloneContainer;
class nsIVariant;
class nsNodeInfoManager;
class nsPIWindowRoot;
class nsPresContext;
class nsRange;
class nsSimpleContentList;
class nsTextNode;
class nsViewManager;
class nsViewportInfo;
class nsXULPrototypeDocument;
struct JSContext;
struct nsFont;
namespace mozilla {
class AbstractThread;
class AttributeStyles;
class CanvasUsage;
class StyleSheet;
class EditorBase;
class EditorCommand;
class Encoding;
class ErrorResult;
class EventListenerManager;
class FullscreenExit;
class FullscreenRequest;
class HTMLEditor;
struct LangGroupFontPrefs;
class PendingFullscreenEvent;
class PermissionDelegateHandler;
class PresShell;
class ScrollTimelineAnimationTracker;
class ServoStyleSet;
enum class StyleOrigin : uint8_t;
class SMILAnimationController;
enum class StyleCursorKind : uint8_t;
class SVGContextPaint;
enum class ColorScheme : uint8_t;
enum class StyleRuleChangeKind : uint32_t;
struct StyleUseCounters;
template <typename>
class OwningNonNull;
struct URLExtraData;
namespace css {
class Loader;
class ImageLoader;
class Rule;
} // namespace css
namespace dom {
class AnonymousContent;
class Attr;
class XULBroadcastManager;
class XULPersist;
class BrowserBridgeChild;
class ChromeObserver;
class ClientInfo;
class ClientState;
class CDATASection;
class Comment;
class CSSImportRule;
class DocumentL10n;
class DocumentFragment;
class DocumentTimeline;
class DocumentType;
class DOMImplementation;
class DOMIntersectionObserver;
class DOMStringList;
class Event;
class EventListener;
struct FailedCertSecurityInfo;
class FeaturePolicy;
class FontFaceSet;
class FragmentDirective;
class FrameRequestCallback;
class HighlightRegistry;
class HTMLAllCollection;
class HTMLBodyElement;
class HTMLInputElement;
class HTMLMetaElement;
class HTMLDialogElement;
class HTMLSharedElement;
class HTMLVideoElement;
class HTMLImageElement;
class IntegrityPolicy;
enum class InteractiveWidget : uint8_t;
struct LifecycleCallbackArgs;
class Link;
class Location;
class MediaQueryList;
struct NetErrorInfo;
class NodeFilter;
class NodeInfo;
class NodeIterator;
enum class OrientationType : uint8_t;
class ProcessingInstruction;
class Promise;
class ScriptLoader;
class Selection;
class ServiceWorkerDescriptor;
class ShadowRoot;
class SVGDocument;
class SVGElement;
class SVGSVGElement;
class SVGUseElement;
class ImageDocument;
class Touch;
class TouchList;
class TreeWalker;
class TrustedHTMLOrString;
class OwningTrustedHTMLOrString;
enum class ViewportFitType : uint8_t;
class ViewTransition;
class ViewTransitionUpdateCallback;
class WakeLockSentinel;
class WindowContext;
class WindowGlobalChild;
class WindowProxyHolder;
struct Wireframe;
class WorkerDocumentListener;
class XPathEvaluator;
class XPathExpression;
class XPathNSResolver;
class XPathResult;
class BrowsingContext;
class nsUnblockOnloadEvent;
template <typename, typename>
class CallbackObjectHolder;
enum class CallerType : uint32_t;
enum BFCacheStatus {
NOT_ALLOWED = 1 << 0, // Status 0
EVENT_HANDLING_SUPPRESSED = 1 << 1, // Status 1
SUSPENDED = 1 << 2, // Status 2
UNLOAD_LISTENER = 1 << 3, // Status 3
REQUEST = 1 << 4, // Status 4
ACTIVE_GET_USER_MEDIA = 1 << 5, // Status 5
ACTIVE_PEER_CONNECTION = 1 << 6, // Status 6
CONTAINS_EME_CONTENT = 1 << 7, // Status 7
CONTAINS_MSE_CONTENT = 1 << 8, // Status 8
HAS_ACTIVE_SPEECH_SYNTHESIS = 1 << 9, // Status 9
HAS_USED_VR = 1 << 10, // Status 10
CONTAINS_REMOTE_SUBFRAMES = 1 << 11, // Status 11
NOT_ONLY_TOPLEVEL_IN_BCG = 1 << 12, // Status 12
ABOUT_PAGE = 1 << 13, // Status 13
RESTORING = 1 << 14, // Status 14
BEFOREUNLOAD_LISTENER = 1 << 15, // Status 15
ACTIVE_LOCK = 1 << 16, // Status 16
ACTIVE_WEBTRANSPORT = 1 << 17, // Status 17
PAGE_LOADING = 1 << 18, // Status 18
};
} // namespace dom
} // namespace mozilla
namespace mozilla::net {
class ChannelEventQueue;
class EarlyHintConnectArgs;
} // namespace mozilla::net
// Must be kept in sync with xpcom/rust/xpcom/src/interfaces/nonidl.rs
#define NS_IDOCUMENT_IID \
{0xce1f7627, 0x7109, 0x4977, {0xba, 0x77, 0x49, 0x0f, 0xfd, 0xe0, 0x7a, 0xaa}}
using mozilla::performance::pageload_event::PageloadEventData;
namespace mozilla::dom {
class Document;
class DOMStyleSheetSetList;
class ResizeObserver;
class ResizeObserverController;
class PostMessageEvent;
#define DEPRECATED_OPERATION(_op) e##_op,
enum class DeprecatedOperations : uint16_t {
#include "nsDeprecatedOperationList.h"
eDeprecatedOperationCount
};
#undef DEPRECATED_OPERATION
class ExternalResourceMap {
public:
using SubDocEnumFunc = FunctionRef<CallState(Document&)>;
using SubDocTestFunc = FunctionRef<bool(const Document* aDocument)>;
/**
* A class that represents an external resource load that has begun but
* doesn't have a document yet. Observers can be registered on this object,
* and will be notified after the document is created. Observers registered
* after the document has been created will NOT be notified. When observers
* are notified, the subject will be the newly-created document, the topic
* will be "external-resource-document-created", and the data will be null.
* If document creation fails for some reason, observers will still be
* notified, with a null document pointer.
*/
class ExternalResourceLoad : public nsISupports {
public:
virtual ~ExternalResourceLoad() = default;
void AddObserver(nsIObserver* aObserver) {
MOZ_ASSERT(aObserver, "Must have observer");
mObservers.AppendElement(aObserver);
}
const nsTArray<nsCOMPtr<nsIObserver>>& Observers() { return mObservers; }
protected:
AutoTArray<nsCOMPtr<nsIObserver>, 8> mObservers;
};
ExternalResourceMap();
/**
* Request an external resource document. This does exactly what
* Document::RequestExternalResource is documented to do.
*/
Document* RequestResource(nsIURI* aURI, nsIReferrerInfo* aReferrerInfo,
nsINode* aRequestingNode,
Document* aDisplayDocument,
ExternalResourceLoad** aPendingLoad);
/**
* Enumerate the resource documents. See
* Document::EnumerateExternalResources.
*/
void EnumerateResources(SubDocEnumFunc aCallback) const;
/** Recursively collect subresources and their subdocuments too */
void CollectDescendantDocuments(nsTArray<RefPtr<Document>>& aDocs,
SubDocTestFunc) const;
/**
* Traverse ourselves for cycle-collection
*/
void Traverse(nsCycleCollectionTraversalCallback* aCallback) const;
/**
* Shut ourselves down (used for cycle-collection unlink), as well
* as for document destruction.
*/
void Shutdown() {
mPendingLoads.Clear();
mMap.Clear();
mHaveShutDown = true;
}
bool HaveShutDown() const { return mHaveShutDown; }
// Needs to be public so we can traverse them sanely
struct ExternalResource {
~ExternalResource();
RefPtr<Document> mDocument;
nsCOMPtr<nsIDocumentViewer> mViewer;
nsCOMPtr<nsILoadGroup> mLoadGroup;
};
// Hide all our viewers
void HideViewers();
// Show all our viewers
void ShowViewers();
protected:
class PendingLoad : public ExternalResourceLoad, public nsIStreamListener {
~PendingLoad() = default;
public:
explicit PendingLoad(Document* aDisplayDocument)
: mDisplayDocument(aDisplayDocument) {}
NS_DECL_ISUPPORTS
NS_DECL_NSISTREAMLISTENER
NS_DECL_NSIREQUESTOBSERVER
/**
* Start aURI loading. This will perform the necessary security checks and
* so forth.
*/
nsresult StartLoad(nsIURI* aURI, nsIReferrerInfo* aReferrerInfo,
nsINode* aRequestingNode);
/**
* Set up an nsIDocumentViewer based on aRequest. This is guaranteed to
* put null in *aViewer and *aLoadGroup on all failures.
*/
nsresult SetupViewer(nsIRequest* aRequest, nsIDocumentViewer** aViewer,
nsILoadGroup** aLoadGroup);
private:
RefPtr<Document> mDisplayDocument;
nsCOMPtr<nsIStreamListener> mTargetListener;
nsCOMPtr<nsIURI> mURI;
};
friend class PendingLoad;
class LoadgroupCallbacks final : public nsIInterfaceRequestor {
~LoadgroupCallbacks() = default;
public:
explicit LoadgroupCallbacks(nsIInterfaceRequestor* aOtherCallbacks)
: mCallbacks(aOtherCallbacks) {}
NS_DECL_ISUPPORTS
NS_DECL_NSIINTERFACEREQUESTOR
private:
// The only reason it's safe to hold a strong ref here without leaking is
// that the notificationCallbacks on a loadgroup aren't the docshell itself
// but a shim that holds a weak reference to the docshell.
nsCOMPtr<nsIInterfaceRequestor> mCallbacks;
// Use shims for interfaces that docshell implements directly so that we
// don't hand out references to the docshell. The shims should all allow
// getInterface back on us, but other than that each one should only
// implement one interface.
// XXXbz I wish we could just derive the _allcaps thing from _i
#define DECL_SHIM(_i, _allcaps) \
class _i##Shim final : public nsIInterfaceRequestor, public _i { \
~_i##Shim() {} \
\
public: \
_i##Shim(nsIInterfaceRequestor* aIfreq, _i* aRealPtr) \
: mIfReq(aIfreq), mRealPtr(aRealPtr) { \
NS_ASSERTION(mIfReq, "Expected non-null here"); \
NS_ASSERTION(mRealPtr, "Expected non-null here"); \
} \
NS_DECL_ISUPPORTS \
NS_FORWARD_NSIINTERFACEREQUESTOR(mIfReq->) \
NS_FORWARD_##_allcaps(mRealPtr->) private \
: nsCOMPtr<nsIInterfaceRequestor> mIfReq; \
nsCOMPtr<_i> mRealPtr; \
};
DECL_SHIM(nsILoadContext, NSILOADCONTEXT)
DECL_SHIM(nsIProgressEventSink, NSIPROGRESSEVENTSINK)
DECL_SHIM(nsIChannelEventSink, NSICHANNELEVENTSINK)
#undef DECL_SHIM
};
/**
* Add an ExternalResource for aURI. aViewer and aLoadGroup might be null
* when this is called if the URI didn't result in an XML document. This
* function makes sure to remove the pending load for aURI, if any, from our
* hashtable, and to notify its observers, if any.
*/
nsresult AddExternalResource(nsIURI* aURI, nsIDocumentViewer* aViewer,
nsILoadGroup* aLoadGroup,
Document* aDisplayDocument);
nsClassHashtable<nsURIHashKey, ExternalResource> mMap;
nsRefPtrHashtable<nsURIHashKey, PendingLoad> mPendingLoads;
bool mHaveShutDown;
};
// The current status for a preload.
enum class SheetPreloadStatus : uint8_t {
// There's no need to preload anything, the sheet is already in-memory.
AlreadyComplete,
// The load is in-progress. There's no guarantee that a load was started, it
// could be coalesced with other redundant loads.
InProgress,
// Something went wrong, and we errored out.
Errored,
};
//----------------------------------------------------------------------
// Document interface. This is implemented by all document objects in
// Gecko.
class Document : public nsINode,
public DocumentOrShadowRoot,
public nsSupportsWeakReference,
public nsIScriptObjectPrincipal,
public SupportsWeakPtr,
private LinkedListElement<Document> {
friend class DocumentOrShadowRoot;
friend class LinkedList<Document>;
friend class LinkedListElement<Document>;
protected:
explicit Document(const char* aContentType);
virtual ~Document();
Document(const Document&) = delete;
Document& operator=(const Document&) = delete;
public:
using ExternalResourceLoad = dom::ExternalResourceMap::ExternalResourceLoad;
using ReferrerPolicyEnum = dom::ReferrerPolicy;
using AdoptedStyleSheetCloneCache =
nsRefPtrHashtable<nsPtrHashKey<const StyleSheet>, StyleSheet>;
// nsINode overrides the new operator for DOM Arena allocation.
// to use the default one, we need to bring it back again
void* operator new(size_t aSize) { return ::operator new(aSize); }
/**
* Called when XPCOM shutdown.
*/
static void Shutdown();
NS_INLINE_DECL_STATIC_IID(NS_IDOCUMENT_IID)
NS_DECL_ISUPPORTS_INHERITED
NS_IMETHOD_(void) DeleteCycleCollectable() override;
NS_DECL_ADDSIZEOFEXCLUDINGTHIS
NS_DECL_CYCLE_COLLECTION_SKIPPABLE_SCRIPT_HOLDER_CLASS_AMBIGUOUS(Document,
nsINode)
#define NS_DOCUMENT_NOTIFY_OBSERVERS(func_, params_) \
do { \
for (RefPtr obs : mObservers.ForwardRange()) { \
if (obs->IsCallbackEnabled(nsIMutationObserver::k##func_)) { \
obs->func_ params_; \
} \
} \
/* FIXME(emilio): Apparently we can keep observing from the BFCache? That \
looks bogus. */ \
if (PresShell* presShell = GetObservingPresShell()) { \
presShell->func_ params_; \
} \
} while (0)
nsIPrincipal* EffectiveCookiePrincipal() const;
nsIPrincipal* EffectiveStoragePrincipal() const;
// nsIScriptObjectPrincipal
nsIPrincipal* GetPrincipal() final { return NodePrincipal(); }
nsIPrincipal* GetEffectiveCookiePrincipal() final {
return EffectiveCookiePrincipal();
}
nsIPrincipal* GetEffectiveStoragePrincipal() final {
return EffectiveStoragePrincipal();
}
// You should probably not be using this function, since it performs no checks
// to ensure that the partitioned principal should really be used here. It is
// only designed to be used in very specific circumstances, such as when
// inheriting the document/storage principal.
nsIPrincipal* PartitionedPrincipal() final { return mPartitionedPrincipal; }
// Gets the appropriate principal to check the URI against a blocklist /
// allowlist.
nsIPrincipal* GetPrincipalForPrefBasedHacks() const;
void ClearActiveCookieAndStoragePrincipals() {
mActiveStoragePrincipal = nullptr;
mActiveCookiePrincipal = nullptr;
}
// EventTarget
void GetEventTargetParent(EventChainPreVisitor& aVisitor) override;
EventListenerManager* GetOrCreateListenerManager() override;
EventListenerManager* GetExistingListenerManager() const override;
// This helper class must be set when we dispatch beforeunload and unload
// events in order to avoid unterminate sync XHRs.
class MOZ_RAII PageUnloadingEventTimeStamp {
RefPtr<Document> mDocument;
bool mSet;
public:
explicit PageUnloadingEventTimeStamp(Document* aDocument)
: mDocument(aDocument), mSet(false) {
MOZ_ASSERT(aDocument);
if (mDocument->mPageUnloadingEventTimeStamp.IsNull()) {
mDocument->SetPageUnloadingEventTimeStamp();
mSet = true;
}
}
~PageUnloadingEventTimeStamp() {
if (mSet) {
mDocument->CleanUnloadEventsTimeStamp();
}
}
};
/**
* Let the document know that we're starting to load data into it.
* @param aCommand The parser command. Must not be null.
* XXXbz It's odd to have that here.
* @param aChannel The channel the data will come from. The channel must be
* able to report its Content-Type.
* @param aLoadGroup The loadgroup this document should use from now on.
* Note that the document might not be the only thing using
* this loadgroup.
* @param aContainer The container this document is in. This may be null.
* XXXbz maybe we should make it more explicit (eg make the
* container an nsIWebNavigation or nsIDocShell or
* something)?
* @param [out] aDocListener the listener to pump data from the channel into.
* Generally this will be the parser this document
* sets up, or some sort of data-handler for media
* documents.
* @param aReset whether the document should call Reset() on itself. If this
* is false, the document will NOT set its principal to the
* channel's owner, will not clear any event listeners that are
* already set on it, etc.
*
* Once this has been called, the document will return false for
* MayStartLayout() until SetMayStartLayout(true) is called on it. Making
* sure this happens is the responsibility of the caller of
* StartDocumentLoad().
*
* This function has an implementation, and does some setup, but does NOT set
* *aDocListener; this is the job of subclasses.
*/
virtual nsresult StartDocumentLoad(const char* aCommand, nsIChannel* aChannel,
nsILoadGroup* aLoadGroup,
nsISupports* aContainer,
nsIStreamListener** aDocListener,
bool aReset) = 0;
void StopDocumentLoad();
virtual void SetSuppressParserErrorElement(bool aSuppress) {}
virtual bool SuppressParserErrorElement() { return false; }
virtual void SetSuppressParserErrorConsoleMessages(bool aSuppress) {}
virtual bool SuppressParserErrorConsoleMessages() { return false; }
// nsINode
void InsertChildBefore(nsIContent* aKid, nsIContent* aBeforeThis,
bool aNotify, ErrorResult& aRv,
nsINode* aOldParent = nullptr) override;
void RemoveChildNode(nsIContent* aKid, bool aNotify,
const BatchRemovalState* = nullptr,
nsINode* aNewParent = nullptr) final;
nsresult Clone(dom::NodeInfo* aNodeInfo, nsINode** aResult) const override {
return NS_ERROR_NOT_IMPLEMENTED;
}
nsresult CloneDocHelper(Document* clone) const;
Document* GetLatestStaticClone() const { return mLatestStaticClone; }
/**
* Signal that the document title may have changed
* (see Document::GetTitle).
* @param aBoundTitleElement true if an HTML or SVG <title> element
* has just been bound to the document.
*/
virtual void NotifyPossibleTitleChange(bool aBoundTitleElement);
/**
* Return the URI for the document. May return null. If it ever stops being
* able to return null, we can make sure nsINode::GetBaseURI/GetBaseURIObject
* also never return null.
*
* The value returned corresponds to the "document's address" in
* HTML5. As such, it may change over the lifetime of the document, for
* instance as a result of the user navigating to a fragment identifier on
* the page, or as a result to a call to pushState() or replaceState().
*
* https://html.spec.whatwg.org/multipage/dom.html#the-document%27s-address
*/
nsIURI* GetDocumentURI() const { return mDocumentURI; }
/**
* Return the original URI of the document. This is the same as the
* document's URI unless that has changed from its original value (for
* example, due to history.pushState() or replaceState() being invoked on the
* document).
*
* This method corresponds to the "creation URL" in HTML5 and, once set,
* doesn't change over the lifetime of the document.
*
* https://html.spec.whatwg.org/multipage/webappapis.html#creation-url
*/
nsIURI* GetOriginalURI() const { return mOriginalURI; }
/**
* Set the URI for the document. This also sets the document's original URI,
* if it's null.
*/
void SetDocumentURI(nsIURI* aURI);
/**
* Set the URI for the document loaded via XHR, when accessed from
* chrome privileged script.
*/
void SetChromeXHRDocURI(nsIURI* aURI) { mChromeXHRDocURI = aURI; }
/**
* Set the base URI for the document loaded via XHR, when accessed from
* chrome privileged script.
*/
void SetChromeXHRDocBaseURI(nsIURI* aURI) { mChromeXHRDocBaseURI = aURI; }
/**
* The CSP in general is stored in the ClientInfo, but we also cache
* the CSP on the document so subresources loaded within a document
* can query that cached CSP instead of having to deserialize the CSP
* from the Client.
*
* Please note that at the time of CSP parsing the Client is not
* available yet, hence we sync CSP of document and Client when the
* Client becomes available within nsGlobalWindowInner::EnsureClientSource().
*/
nsIContentSecurityPolicy* GetPreloadCsp() const;
void SetPreloadCsp(nsIContentSecurityPolicy* aPreloadCSP);
void GetCspJSON(nsString& aJSON);
/**
* Set referrer policy and upgrade-insecure-requests flags
*/
void ApplySettingsFromCSP(bool aSpeculative);
nsIPolicyContainer* GetPolicyContainer() const;
void SetPolicyContainer(nsIPolicyContainer* aPolicyContainer);
already_AddRefed<nsIParser> CreatorParserOrNull() {
nsCOMPtr<nsIParser> parser = mParser;
return parser.forget();
}
/**
* ReferrerInfo getter for Document.webidl.
*/
nsIReferrerInfo* ReferrerInfo() const { return GetReferrerInfo(); }
nsIReferrerInfo* GetReferrerInfo() const { return mReferrerInfo; }
nsIReferrerInfo* GetPreloadReferrerInfo() const {
return mPreloadReferrerInfo;
}
/**
* Return the referrer policy of the document. Return "default" if there's no
* valid meta referrer tag found in the document.
* Referrer policy should be inherited from parent if the iframe is srcdoc
*/
ReferrerPolicyEnum GetReferrerPolicy() const;
/**
* GetReferrerPolicy() for Document.webidl.
*/
ReferrerPolicyEnum ReferrerPolicy() const { return GetReferrerPolicy(); }
/**
* If true, this flag indicates that all mixed content subresource
* loads for this document (and also embeded browsing contexts) will
* be blocked.
*/
bool GetBlockAllMixedContent(bool aPreload) const {
if (aPreload) {
return mBlockAllMixedContentPreloads;
}
return mBlockAllMixedContent;
}
/**
* If true, this flag indicates that all subresource loads for this
* document need to be upgraded from http to https.
* This flag becomes true if the CSP of the document itself, or any
* of the document's ancestors up to the toplevel document makes use
* of the CSP directive 'upgrade-insecure-requests'.
*/
bool GetUpgradeInsecureRequests(bool aPreload) const {
if (aPreload) {
return mUpgradeInsecurePreloads;
}
return mUpgradeInsecureRequests;
}
void SetReferrerInfo(nsIReferrerInfo*);
/*
* Referrer policy from <meta name="referrer" content=`policy`>
* will have higher priority than referrer policy from Referrer-Policy
* header. So override the old ReferrerInfo if we get one from meta
*/
void UpdateReferrerInfoFromMeta(const nsAString& aMetaReferrer,
bool aPreload);
/**
* Set the principals responsible for this document. Chances are, you do not
* want to be using this.
*/
void SetPrincipals(nsIPrincipal* aPrincipal,
nsIPrincipal* aPartitionedPrincipal);
/**
* Returns true if exempt from HTTPS-Only Mode upgrade.
*/
uint32_t HttpsOnlyStatus() const { return mHttpsOnlyStatus; }
/**
* Return the LoadGroup for the document. May return null.
*/
already_AddRefed<nsILoadGroup> GetDocumentLoadGroup() const {
nsCOMPtr<nsILoadGroup> group = do_QueryReferent(mDocumentLoadGroup);
return group.forget();
}
/**
* Return the fallback base URL for this document, as defined in the HTML
* specification. Note that this can return null if there is no document URI.
*
* XXXbz: This doesn't implement the bits for about:blank yet.
*/
nsIURI* GetFallbackBaseURI() const {
if (mIsSrcdocDocument && mParentDocument) {
return mParentDocument->GetDocBaseURI();
}
return mDocumentURI;
}
/**
* Return the referrer from document URI as defined in the Referrer Policy
* specification.
* https://w3c.github.io/webappsec-referrer-policy/#determine-requests-referrer
* While document is an iframe srcdoc document, let document be document's
* browsing context's browsing context container's node document.
* Then referrer should be document's URL
*/
nsIURI* GetDocumentURIAsReferrer() const {
if (mIsSrcdocDocument && mParentDocument) {
return mParentDocument->GetDocumentURIAsReferrer();
}
return mDocumentURI;
}
/**
* Return the base URI for relative URIs in the document (the document uri
* unless it's overridden by SetBaseURI, HTML <base> tags, etc.). The
* returned URI could be null if there is no document URI. If the document is
* a srcdoc document and has no explicit base URL, return the parent
* document's base URL.
*/
nsIURI* GetDocBaseURI() const {
if (mDocumentBaseURI) {
return mDocumentBaseURI;
}
return GetFallbackBaseURI();
}
nsIURI* GetBaseURI(bool aTryUseXHRDocBaseURI = false) const final;
void SetBaseURI(nsIURI* aURI);
/**
* Resolves a URI based on the document's base URI.
*/
Result<OwningNonNull<nsIURI>, nsresult> ResolveWithBaseURI(
const nsAString& aURI);
/**
* Return the URL data which style system needs for resolving url value.
* This method attempts to use the cached object in mCachedURLData, but
* if the base URI, document URI, or principal has changed since last
* call to this function, or the function is called the first time for
* the document, a new one is created.
*/
URLExtraData* DefaultStyleAttrURLData();
nsIReferrerInfo* ReferrerInfoForInternalCSSAndSVGResources();
/**
* Get/Set the base target of a link in a document.
*/
void GetBaseTarget(nsAString& aBaseTarget) const {
aBaseTarget = mBaseTarget;
}
void SetBaseTarget(const nsString& aBaseTarget) { mBaseTarget = aBaseTarget; }
/**
* Return a standard name for the document's character set.
*/
NotNull<const Encoding*> GetDocumentCharacterSet() const {
return mCharacterSet;
}
/**
* Set the document's character encoding.
*/
void SetDocumentCharacterSet(NotNull<const Encoding*> aEncoding);
int32_t GetDocumentCharacterSetSource() const { return mCharacterSetSource; }
// This method MUST be called before SetDocumentCharacterSet if
// you're planning to call both.
void SetDocumentCharacterSetSource(int32_t aCharsetSource) {
mCharacterSetSource = aCharsetSource;
}
/**
* Get the Content-Type of this document.
*/
void GetContentType(nsAString& aContentType);
/**
* Set the Content-Type of this document.
*/
void SetContentType(const nsACString& aContentType);
/**
* Return the language of this document, or null if not set.
*/
nsAtom* GetContentLanguage() const { return mContentLanguage.get(); }
void GetContentLanguageForBindings(DOMString&) const;
// The states BidiEnabled and MathMLEnabled should persist across multiple
// views (screen, print) of the same document.
/**
* Check if the document contains bidi data.
* If so, we have to apply the Unicode Bidi Algorithm.
*/
bool GetBidiEnabled() const { return mBidiEnabled; }
/**
* Indicate the document contains bidi data.
* Currently, we cannot disable bidi, because once bidi is enabled,
* it affects a frame model irreversibly, and plays even though
* the document no longer contains bidi data.
*/
void SetBidiEnabled() { mBidiEnabled = true; }
/**
* Ask this document whether it's the initial document in its window.
*/
bool IsInitialDocument() const { return mIsInitialDocumentInWindow; }
/**
* Ask this document whether it has ever been a initial document in its
* window.
*/
bool IsEverInitialDocument() const { return mIsEverInitialDocumentInWindow; }
/**
* Tell this document that it's the initial document in its window. See
* comments on mIsInitialDocumentInWindow for when this should be called.
*/
void SetIsInitialDocument(bool aIsInitialDocument);
void SetLoadedAsData(bool aLoadedAsData, bool aConsiderForMemoryReporting);
TimeStamp GetLoadingOrRestoredFromBFCacheTimeStamp() const {
return mLoadingOrRestoredFromBFCacheTimeStamp;
}
void SetLoadingOrRestoredFromBFCacheTimeStampToNow() {
mLoadingOrRestoredFromBFCacheTimeStamp = TimeStamp::Now();
}
/**
* Normally we assert if a runnable labeled with one DocGroup touches data
* from another DocGroup. Calling IgnoreDocGroupMismatches() on a document
* means that we can touch that document from any DocGroup without asserting.
*/
void IgnoreDocGroupMismatches() { mIgnoreDocGroupMismatches = true; }
/**
* Get the bidi options for this document.
* @see nsBidiUtils.h
*/
uint32_t GetBidiOptions() const { return mBidiOptions; }
/**
* Set the bidi options for this document. This just sets the bits;
* callers are expected to take action as needed if they want this
* change to actually change anything immediately.
* @see nsBidiUtils.h
*/
void SetBidiOptions(uint32_t aBidiOptions) { mBidiOptions = aBidiOptions; }
/**
* Returns true if the document holds a CSP
* delivered through an HTTP Header.
*/
bool GetHasCSPDeliveredThroughHeader() {
return mHasCSPDeliveredThroughHeader;
}
/**
* Return a promise which resolves to the content blocking events.
*/
using GetContentBlockingEventsPromise = MozPromise<uint32_t, bool, true>;
[[nodiscard]] RefPtr<GetContentBlockingEventsPromise>
GetContentBlockingEvents();
/**
* Get the sandbox flags for this document.
* @see nsSandboxFlags.h for the possible flags
*/
uint32_t GetSandboxFlags() const { return mSandboxFlags; }
Maybe<nsILoadInfo::CrossOriginEmbedderPolicy> GetEmbedderPolicy() const {
return mEmbedderPolicy;
}
void SetEmbedderPolicy(
const Maybe<nsILoadInfo::CrossOriginEmbedderPolicy>& aCOEP) {
mEmbedderPolicy = aCOEP;
}
/**
* Get string representation of sandbox flags (null if no flags are set)
*/
void GetSandboxFlagsAsString(nsAString& aFlags);
/**
* Set the sandbox flags for this document.
* @see nsSandboxFlags.h for the possible flags
*/
void SetSandboxFlags(uint32_t sandboxFlags) { mSandboxFlags = sandboxFlags; }
/**
* Called when the document was decoded as UTF-8 and decoder encountered no
* errors.
*/
void EnableEncodingMenu() { mEncodingMenuDisabled = false; }
/**
* Called to disable client access to cookies through the document.cookie API
* from user JavaScript code.
*/
void DisableCookieAccess() { mDisableCookieAccess = true; }
bool CookieAccessDisabled() const { return mDisableCookieAccess; }
void SetLinkHandlingEnabled(bool aValue) { mLinksEnabled = aValue; }
bool LinkHandlingEnabled() { return mLinksEnabled; }
/**
* Set compatibility mode for this document
*/
void SetCompatibilityMode(nsCompatibility aMode);
/**
* Called to disable client access to document.write() API from user
* JavaScript code.
*/
void SetDocWriteDisabled(bool aDisabled) { mDisableDocWrite = aDisabled; }
/**
* Whether a document.write() call is in progress.
*/
bool IsWriting() const { return mWriteLevel != uint32_t(0); }
/**
* Access HTTP header data (this may also get set from other
* sources, like HTML META tags).
*/
void GetHeaderData(nsAtom* aHeaderField, nsAString& aData) const;
void SetHeaderData(nsAtom* aheaderField, const nsAString& aData);
/**
* Set Early Hint data, moves the arrays into the function, leaving the
* passed variables empty
*/
void SetEarlyHints(nsTArray<net::EarlyHintConnectArgs>&& aEarlyHints);
const nsTArray<net::EarlyHintConnectArgs>& GetEarlyHints() const {
return mEarlyHints;
}
/**
* Create a new presentation shell that will use aContext for its
* presentation context (presentation contexts <b>must not</b> be
* shared among multiple presentation shells). The caller of this
* method is responsible for calling BeginObservingDocument() on the
* presshell if the presshell should observe document mutations.
*/
MOZ_CAN_RUN_SCRIPT already_AddRefed<PresShell> CreatePresShell(
nsPresContext* aContext, nsViewManager* aViewManager);
void DeletePresShell();
PresShell* GetPresShell() const {
return GetBFCacheEntry() ? nullptr : mPresShell;
}
inline PresShell* GetObservingPresShell() const;
// Return whether the presshell for this document is safe to flush.
bool IsSafeToFlush() const;
inline nsPresContext* GetPresContext() const;
bool HasShellOrBFCacheEntry() const { return mPresShell || mBFCacheEntry; }
// Instead using this method, what you probably want is
// RemoveFromBFCacheSync() as we do in MessagePort and BroadcastChannel.
void DisallowBFCaching(uint32_t aStatus = BFCacheStatus::NOT_ALLOWED);
bool IsBFCachingAllowed() const { return !mBFCacheDisallowed; }
// Accepts null to clear the BFCache entry too.
void SetBFCacheEntry(nsIBFCacheEntry* aEntry);
nsIBFCacheEntry* GetBFCacheEntry() const { return mBFCacheEntry; }
// Removes this document from the BFCache, if it is cached, and returns
// true if it was.
bool RemoveFromBFCacheSync();
/**
* Return the parent document of this document. Will return null
* unless this document is within a compound document and has a
* parent. Note that this parent chain may cross chrome boundaries.
*/
Document* GetInProcessParentDocument() const { return mParentDocument; }
/**
* Set the parent document of this document.
*/
void SetParentDocument(Document* aParent) {
mParentDocument = aParent;
if (aParent) {
RecomputeResistFingerprinting();
mIgnoreDocGroupMismatches = aParent->mIgnoreDocGroupMismatches;
}
}
void SetCurrentContextPaint(const SVGContextPaint* aContextPaint) {
mCurrentContextPaint = aContextPaint;
}
const SVGContextPaint* GetCurrentContextPaint() const {
return mCurrentContextPaint;
}
/**
* Set the sub document for aContent to aSubDoc.
*/
nsresult SetSubDocumentFor(Element* aContent, Document* aSubDoc);
/**
* Get the sub document for aContent
*/
Document* GetSubDocumentFor(nsIContent* aContent) const;
/**
* Get the content node for which this document is a sub document.
*/
Element* GetEmbedderElement() const;
/**
* Return the doctype for this document.
*/
DocumentType* GetDoctype() const;
/**
* Return the root element for this document.
*/
Element* GetRootElement() const;
Selection* GetSelection(ErrorResult& aRv);
void MakeBrowsingContextNonSynthetic();
nsresult HasStorageAccessSync(bool& aHasStorageAccess);
already_AddRefed<Promise> HasStorageAccess(ErrorResult& aRv);
StorageAccessAPIHelper::PerformPermissionGrant CreatePermissionGrantPromise(
nsPIDOMWindowInner* aInnerWindow, nsIPrincipal* aPrincipal,
bool aHasUserInteraction, bool aRequireUserInteraction,
const Maybe<nsCString>& aTopLevelBaseDomain, bool aFrameOnly);
already_AddRefed<Promise> RequestStorageAccess(ErrorResult& aRv);
already_AddRefed<Promise> RequestStorageAccessForOrigin(
const nsAString& aThirdPartyOrigin, const bool aRequireUserInteraction,
ErrorResult& aRv);
already_AddRefed<Promise> RequestStorageAccessUnderSite(
const nsAString& aSerializedSite, ErrorResult& aRv);
already_AddRefed<Promise> CompleteStorageAccessRequestFromSite(
const nsAString& aSerializedOrigin, ErrorResult& aRv);
bool UseRegularPrincipal() const;
/**
* Gets the event target to dispatch key events to if there is no focused
* content in the document.
*/
virtual Element* GetUnfocusedKeyEventTarget();
/**
* Retrieve information about the viewport as a data structure.
* This will return information in the viewport META data section
* of the document. This can be used in lieu of ProcessViewportInfo(),
* which places the viewport information in the document header instead
* of returning it directly.
*
* @param aDisplaySize size of the on-screen display area for this
* document, in device pixels.
*
* NOTE: If the site is optimized for mobile (via the doctype), this
* will return viewport information that specifies default information.
*/
nsViewportInfo GetViewportInfo(const ScreenIntSize& aDisplaySize);
void SetMetaViewportData(UniquePtr<ViewportMetaData> aData);
// Returns a ViewportMetaData for this document.
ViewportMetaData GetViewportMetaData() const;
/**
* True iff this doc will ignore manual character encoding overrides.
*/
virtual bool WillIgnoreCharsetOverride() { return true; }
/**
* Return whether the document was created by a srcdoc iframe.
*/
bool IsSrcdocDocument() const { return mIsSrcdocDocument; }
/**
* Sets whether the document was created by a srcdoc iframe.
*/
void SetIsSrcdocDocument(bool aIsSrcdocDocument) {
mIsSrcdocDocument = aIsSrcdocDocument;
}
/*
* Gets the srcdoc string from within the channel (assuming both exist).
* Returns a void string if this isn't a srcdoc document or if
* the channel has not been set.
*/
nsresult GetSrcdocData(nsAString& aSrcdocData);
already_AddRefed<AnonymousContent> InsertAnonymousContent(ErrorResult&);
void RemoveAnonymousContent(AnonymousContent&);
nsTArray<RefPtr<AnonymousContent>>& GetAnonymousContents() {
return mAnonymousContents;
}
Element* GetCustomContentContainer() const { return mCustomContentContainer; }
private:
void CreateCustomContentContainerIfNeeded();
void RemoveCustomContentContainer();
public:
TimeStamp GetPageUnloadingEventTimeStamp() const {
if (!mParentDocument) {
return mPageUnloadingEventTimeStamp;
}
TimeStamp parentTimeStamp(
mParentDocument->GetPageUnloadingEventTimeStamp());
if (parentTimeStamp.IsNull()) {
return mPageUnloadingEventTimeStamp;
}
if (!mPageUnloadingEventTimeStamp ||
parentTimeStamp < mPageUnloadingEventTimeStamp) {
return parentTimeStamp;
}
return mPageUnloadingEventTimeStamp;
}
void NotifyLayerManagerRecreated();
// Add an element to the list of elements that need their mapped attributes
// resolved to a declaration block.
//
// These are weak pointers, manually unschedule them when an element is
// removed from the tree.
void ScheduleForPresAttrEvaluation(Element* aElement);
// Un-schedule an element scheduled by ScheduleForPresAttrEvaluation,
// generally when it's unbound from the tree.
void UnscheduleForPresAttrEvaluation(Element* aElement);
// Resolve all presentational attributes scheduled in
// ScheduleForPresAttrEvaluation
void ResolveScheduledPresAttrs() {
if (mLazyPresElements.IsEmpty()) {
return;
}
DoResolveScheduledPresAttrs();
}
Maybe<ClientInfo> GetClientInfo() const;
Maybe<ClientState> GetClientState() const;
Maybe<ServiceWorkerDescriptor> GetController() const;
// Given a node, get a weak reference to it and append that reference to
// mBlockedNodesByClassifier. Can be used later on to look up a node in it.
// (e.g., by the UI)
// /
void AddBlockedNodeByClassifier(nsINode* aNode) {
if (aNode) {
mBlockedNodesByClassifier.AppendElement(do_GetWeakReference(aNode));
}
}
// Returns the size of the mBlockedNodesByClassifier array.
//
// This array contains nodes that have been blocked to prevent user tracking,
// fingerprinting, cryptomining, etc. They most likely have had their
// nsIChannel canceled by the URL classifier (Safebrowsing).
//
// A script can subsequently use GetBlockedNodesByClassifier()
// to get a list of references to these nodes.
//
// Note:
// This expresses how many tracking nodes have been blocked for this document
// since its beginning, not how many of them are still around in the DOM tree.
// Weak references to blocked nodes are added in the mBlockedNodesByClassifier
// array but they are not removed when those nodes are removed from the tree
// or even garbage collected.
size_t BlockedNodeByClassifierCount() const {
return mBlockedNodesByClassifier.Length();
}
// Returns strong references to mBlockedNodesByClassifier. (Document.h)
// This array contains nodes that have been blocked to prevent
// user tracking. They most likely have had their nsIChannel
// canceled by the URL classifier (Safebrowsing).
already_AddRefed<nsSimpleContentList> BlockedNodesByClassifier() const;
// Helper method that returns true if the document has storage-access sandbox
// flag.
bool StorageAccessSandboxed() const;
// Helper method that returns true if storage access API is enabled and
// the passed flag has storage-access sandbox flag.
static bool StorageAccessSandboxed(uint32_t aSandboxFlags);
// Returns the cookie jar settings for this and sub contexts.
nsICookieJarSettings* CookieJarSettings();
// Set the cookieJarSettings to the document.
void SetCookieJarSettings(nsICookieJarSettings* aCookieJarSettings) {
MOZ_ASSERT(aCookieJarSettings);
mCookieJarSettings = aCookieJarSettings;
}
// Returns whether this document is using unpartitioned cookies
bool UsingStorageAccess();
// Returns whether the document is on the 3PCB exception list.
bool IsOn3PCBExceptionList() const;
// Returns whether the storage access permission of the document is granted by
// the allow list.
bool HasStorageAccessPermissionGrantedByAllowList();
// Increments the document generation.
inline void Changed() { ++mGeneration; }
// Returns the current generation.
inline int32_t GetGeneration() const { return mGeneration; }
// Adds cached sizes values to aSizes if there's any
// cached value and if the document generation hasn't
// changed since the cache was created.
// Returns true if sizes were added.
bool GetCachedSizes(nsTabSizes* aSizes);
// Sets the cache sizes for the current generation.
void SetCachedSizes(nsTabSizes* aSizes);
/**
* Should be called when an element's editable changes as a result of
* changing its contentEditable attribute/property.
*
* The change should be +1 if the contentEditable attribute/property was
* changed to true, -1 if it was changed to false.
*/
void ChangeContentEditableCount(Element*, int32_t aChange);
MOZ_CAN_RUN_SCRIPT void DeferredContentEditableCountChange(Element*);
enum class EditingState : int8_t {
eTearingDown = -2,
eSettingUp = -1,
eOff = 0,
eDesignMode,
eContentEditable
};
/**
* Returns the editing state of the document (not editable, contentEditable or
* designMode).
*/
EditingState GetEditingState() const { return mEditingState; }
/**
* Returns whether the document is editable.
*/
bool IsEditingOn() const {
return GetEditingState() == EditingState::eDesignMode ||
GetEditingState() == EditingState::eContentEditable;
}
class MOZ_STACK_CLASS nsAutoEditingState {
public:
nsAutoEditingState(Document* aDoc, EditingState aState)
: mDoc(aDoc), mSavedState(aDoc->mEditingState) {
aDoc->mEditingState = aState;
}
~nsAutoEditingState() { mDoc->mEditingState = mSavedState; }
private:
RefPtr<Document> mDoc;
EditingState mSavedState;
};
friend class nsAutoEditingState;
/**
* Set the editing state of the document. Don't use this if you want
* to enable/disable editing, call EditingStateChanged() or
* SetDesignMode().
*/
void SetEditingState(EditingState aState) { mEditingState = aState; }
/**
* Called when this Document's editor is destroyed.
*/
void TearingDownEditor();
void SetKeyPressEventModel(uint16_t aKeyPressEventModel);
// Gets the next form number.
//
// Used by nsContentUtils::GenerateStateKey to get a unique number for each
// parser inserted form element.
int32_t GetNextFormNumber() { return mNextFormNumber++; }
// Gets the next form control number.
//
// Used by nsContentUtils::GenerateStateKey to get a unique number for each
// parser inserted form control element.
int32_t GetNextControlNumber() { return mNextControlNumber++; }
PreloadService& Preloads() { return mPreloadService; }
bool HasThirdPartyChannel();
bool ShouldIncludeInTelemetry() const;
void AddMediaElementWithMSE();
void RemoveMediaElementWithMSE();
void DoNotifyPossibleTitleChange();
void InitFeaturePolicy(const Variant<Nothing, FeaturePolicyInfo, Element*>&
aContainerFeaturePolicy);
nsresult InitFeaturePolicy(nsIChannel* aChannel);
void EnsureNotEnteringAndExitFullscreen();
protected:
friend class nsUnblockOnloadEvent;
nsresult InitPolicyContainer(nsIChannel* aChannel);
nsresult InitCSP(nsIChannel* aChannel);
nsresult InitIntegrityPolicy(nsIChannel* aChannel);
nsresult InitCOEP(nsIChannel* aChannel);
nsresult InitDocPolicy(nsIChannel* aChannel);
nsresult InitReferrerInfo(nsIChannel* aChannel);
void PostUnblockOnloadEvent();
void DoUnblockOnload();
void DoResolveScheduledPresAttrs();
void RetrieveRelevantHeaders(nsIChannel* aChannel);
void TryChannelCharset(nsIChannel* aChannel, int32_t& aCharsetSource,
NotNull<const Encoding*>& aEncoding,
nsHtml5TreeOpExecutor* aExecutor);
MOZ_CAN_RUN_SCRIPT void DispatchContentLoadedEvents();
// TODO: Convert this to MOZ_CAN_RUN_SCRIPT (bug 1415230)
MOZ_CAN_RUN_SCRIPT_BOUNDARY void DispatchPageTransition(
EventTarget* aDispatchTarget, const nsAString& aType, bool aInFrameSwap,
bool aPersisted, bool aOnlySystemGroup);
// Call this before the document does something that will unbind all content.
// That will stop us from doing a lot of work as each element is removed.
void WillRemoveRoot();
Element* GetRootElementInternal() const;
void SetPageUnloadingEventTimeStamp() {
MOZ_ASSERT(!mPageUnloadingEventTimeStamp);
mPageUnloadingEventTimeStamp = TimeStamp::NowLoRes();
}
void CleanUnloadEventsTimeStamp() {
MOZ_ASSERT(mPageUnloadingEventTimeStamp);
mPageUnloadingEventTimeStamp = TimeStamp();
}
/**
* Clears any Servo element data stored on Elements in the document.
*/
void ClearStaleServoData();
/**
* Do the tree-disconnection that ResetToURI and document.open need to do.
*/
void DisconnectNodeTree();
/**
* MaybeDispatchCheckKeyPressEventModelEvent() dispatches
* "CheckKeyPressEventModel" event to check whether we should dispatch
* keypress events in confluent model or split model. This should be
* called only when mEditingState is changed to eDesignMode or
* eConentEditable at first time.
*/
void MaybeDispatchCheckKeyPressEventModelEvent();
/* Midas implementation */
nsCommandManager* GetMidasCommandManager();
MOZ_CAN_RUN_SCRIPT_BOUNDARY nsresult TurnEditingOff();
// MOZ_CAN_RUN_SCRIPT_BOUNDARY because this is called from all sorts
// of places, and I'm pretty sure the exact ExecCommand call it
// makes cannot actually run script.
MOZ_CAN_RUN_SCRIPT_BOUNDARY nsresult EditingStateChanged();
void MaybeEditingStateChanged();
public:
// Get the root <html> element, or return null if there isn't one (e.g.
// if the root isn't <html>)
Element* GetHtmlElement() const;
// Returns the first child of GetHtmlContent which has the given tag and is
// not aContentToIgnore, or nullptr if that doesn't exist.
Element* GetHtmlChildElement(
nsAtom* aTag, const nsIContent* aContentToIgnore = nullptr) const;
// Get the canonical <body> element, or return null if there isn't one (e.g.
// if the root isn't <html> or if the <body> isn't there)
HTMLBodyElement* GetBodyElement(
const nsIContent* aContentToIgnore = nullptr) const;
// Get the canonical <head> element, or return null if there isn't one (e.g.
// if the root isn't <html> or if the <head> isn't there)
Element* GetHeadElement() const {
return GetHtmlChildElement(nsGkAtoms::head);
}
// Get the "body" in the sense of document.body: The first <body> or
// <frameset> that's a child of a root <html>
nsGenericHTMLElement* GetBody() const;
// Set the "body" in the sense of document.body.
void SetBody(nsGenericHTMLElement* aBody, ErrorResult& rv);
// Get the "head" element in the sense of document.head.
HTMLSharedElement* GetHead() const;
ServoStyleSet* StyleSetForPresShell() const {
MOZ_ASSERT(!!mStyleSet.get());
return mStyleSet.get();
}
inline ServoStyleSet& EnsureStyleSet() const;
// ShadowRoot has APIs that can change styles. This notifies the shell that
// stlyes applicable in the shadow tree have potentially changed.
void RecordShadowStyleChange(ShadowRoot&);
// Needs to be called any time the applicable style can has changed, in order
// to schedule a style flush and setup all the relevant state.
//
// If we know the stylesheet change applies only to a shadow tree we can avoid
// some work (like updating the font-face-set / counter-styles / etc, as those
// are global).
void ApplicableStylesChanged(bool aKnownInShadowTree = false);
// Whether we filled the style set with any style sheet. Only meant to be used
// from DocumentOrShadowRoot::Traverse.
bool StyleSetFilled() const { return mStyleSetFilled; }
/**
* Accessors to the collection of stylesheets owned by this document.
* Style sheets are ordered, most significant last.
*/
void InsertSheetAt(size_t aIndex, StyleSheet&);
/**
* Add a stylesheet to the document
*
* TODO(emilio): This is only used by parts of editor that are no longer in
* use by m-c or c-c, so remove.
*/
void AddStyleSheet(StyleSheet* aSheet) {
MOZ_ASSERT(aSheet);
InsertSheetAt(SheetCount(), *aSheet);
}
/**
* Notify the document that the applicable state of the sheet changed
* and that observers should be notified and style sets updated
*/
void StyleSheetApplicableStateChanged(StyleSheet&);
void PostStyleSheetApplicableStateChangeEvent(StyleSheet&);
void PostStyleSheetRemovedEvent(StyleSheet&);
void PostCustomPropertyRegistered(const dom::PropertyDefinition&);
enum additionalSheetType {
eAgentSheet,
eUserSheet,
eAuthorSheet,
AdditionalSheetTypeCount
};
nsresult LoadAdditionalStyleSheet(additionalSheetType aType,
nsIURI* aSheetURI);
nsresult AddAdditionalStyleSheet(additionalSheetType aType,
StyleSheet* aSheet);
void RemoveAdditionalStyleSheet(additionalSheetType aType, nsIURI* sheetURI);
StyleSheet* GetFirstAdditionalAuthorSheet() {
return mAdditionalSheets[eAuthorSheet].SafeElementAt(0);
}
/**
* Returns the index that aSheet should be inserted at to maintain document
* ordering.
*/
size_t FindDocStyleSheetInsertionPoint(const StyleSheet& aSheet);
/**
* Get this document's CSSLoader. This is guaranteed to not return null.
*/
css::Loader* CSSLoader() const { return mCSSLoader; }
/**
* Get this document's StyleImageLoader. This is guaranteed to not return
* null.
*/
css::ImageLoader* StyleImageLoader() const { return mStyleImageLoader; }
/**
* Get the channel that was passed to StartDocumentLoad or Reset for this
* document. Note that this may be null in some cases (eg if
* StartDocumentLoad or Reset were never called)
*/
nsIChannel* GetChannel() const { return mChannel; }
/**
* Get this document's attribute stylesheet. May return null if
* there isn't one.
*/
AttributeStyles* GetAttributeStyles() const { return mAttributeStyles.get(); }
virtual void SetScriptGlobalObject(nsIScriptGlobalObject* aGlobalObject);
/**
* Get/set the object from which the context for the event/script handling can
* be got. Normally GetScriptHandlingObject() returns the same object as
* GetScriptGlobalObject(), but if the document is loaded as data,
* non-null may be returned, even if GetScriptGlobalObject() returns null.
* aHasHadScriptHandlingObject is set true if document has had the object
* for event/script handling. Do not process any events/script if the method
* returns null, but aHasHadScriptHandlingObject is true.
*/
nsIScriptGlobalObject* GetScriptHandlingObject(
bool& aHasHadScriptHandlingObject) const {
aHasHadScriptHandlingObject = mHasHadScriptHandlingObject;
return mScriptGlobalObject ? mScriptGlobalObject.get()
: GetScriptHandlingObjectInternal();
}
void SetScriptHandlingObject(nsIScriptGlobalObject* aScriptObject);
/**
* Get the object that is used as the scope for all of the content
* wrappers whose owner document is this document. Unlike the script global
* object, this will only return null when the global object for this
* document is truly gone. Use this object when you're trying to find a
* content wrapper in XPConnect.
*/
nsIGlobalObject* GetScopeObject() const;
void SetScopeObject(nsIGlobalObject* aGlobal);
/**
* Return the window containing the document (the outer window).
*/
nsPIDOMWindowOuter* GetWindow() const {
return mWindow ? mWindow->GetOuterWindow() : GetWindowInternal();
}
bool IsInBackgroundWindow() const {
auto* outer = mWindow ? mWindow->GetOuterWindow() : nullptr;
return outer && outer->IsBackground();
}
/**
* Return the inner window used as the script compilation scope for
* this document. If you're not absolutely sure you need this, use
* GetWindow().
*/
nsPIDOMWindowInner* GetInnerWindow() const {
return mRemovedFromDocShell ? nullptr : mWindow;
}
/**
* Return the outer window ID.
*/
uint64_t OuterWindowID() const {
nsPIDOMWindowOuter* window = GetWindow();
return window ? window->WindowID() : 0;
}
/**
* Return the inner window ID.
*/
uint64_t InnerWindowID() const {
nsPIDOMWindowInner* window = GetInnerWindow();
return window ? window->WindowID() : 0;
}
/**
* Return WindowGlobalChild that is associated with the inner window.
*/
WindowGlobalChild* GetWindowGlobalChild() {
return GetInnerWindow() ? GetInnerWindow()->GetWindowGlobalChild()
: nullptr;
}
/**
* Return WindowContext associated with the inner window.
*/
WindowContext* GetWindowContext() const {
return GetInnerWindow() ? GetInnerWindow()->GetWindowContext() : nullptr;
}
bool IsTopLevelWindowInactive() const {
return mState.HasState(DocumentState::WINDOW_INACTIVE);
}
/**
* Get the script loader for this document
*/
dom::ScriptLoader* ScriptLoader() { return mScriptLoader; }
/**
* Add/Remove an element to the document's id and name hashes
*/
void AddToIdTable(Element* aElement, nsAtom* aId);
void RemoveFromIdTable(Element* aElement, nsAtom* aId);
void AddToNameTable(Element* aElement, nsAtom* aName);
void RemoveFromNameTable(Element* aElement, nsAtom* aName);
void AddToDocumentNameTable(nsGenericHTMLElement* aElement, nsAtom* aName);
void RemoveFromDocumentNameTable(nsGenericHTMLElement* aElement,
nsAtom* aName);
/**
* Returns all elements in the top layer in the insertion order.
*/
nsTArray<Element*> GetTopLayer() const;
bool TopLayerContains(Element&) const;
// Do the "fullscreen element ready check" from the fullscreen spec.
// It returns true if the given element is allowed to go into fullscreen.
// It is responsive to dispatch "fullscreenerror" event when necessary.
bool FullscreenElementReadyCheck(FullscreenRequest&);
/**
* When this is called on content process, this asynchronously requests that
* the document make aElement the fullscreen element, and move into fullscreen
* mode. The current fullscreen element (if any) is pushed onto the top layer,
* and it can be returned to fullscreen status by calling
* RestorePreviousFullscreenState().
* If on chrome process, this is synchronously.
*
* Note that requesting fullscreen in a document also makes the element which
* contains this document in this document's parent document fullscreen. i.e.
* the <iframe> or <browser> that contains this document is also mode
* fullscreen. This happens recursively in all ancestor documents.
*/
void RequestFullscreen(UniquePtr<FullscreenRequest> aRequest,
bool aApplyFullscreenDirectly = false);
private:
void RequestFullscreenInContentProcess(UniquePtr<FullscreenRequest> aRequest,
bool aApplyFullscreenDirectly);
void RequestFullscreenInParentProcess(UniquePtr<FullscreenRequest> aRequest,
bool aApplyFullscreenDirectly);
// Pushes aElement onto the top layer
void TopLayerPush(Element&);
// Removes the topmost element for which aPredicate returns true from the top
// layer. The removed element, if any, is returned.
Element* TopLayerPop(FunctionRef<bool(Element*)> aPredicate);
// Removes the given element from the top layer. The removed element, if any,
// is returned.
Element* TopLayerPop(Element&);
MOZ_CAN_RUN_SCRIPT bool TryAutoFocusCandidate(Element& aElement);
public:
// Removes all the elements with fullscreen flag set from the top layer, and
// clears their fullscreen flag.
void CleanupFullscreenState();
// Pops the fullscreen element from the top layer and clears its
// fullscreen flag. Returns whether there was any fullscreen element.
enum class UpdateViewport : bool { No, Yes };
bool PopFullscreenElement(UpdateViewport = UpdateViewport::Yes);
// Pushes the given element into the top of top layer and set fullscreen
// flag.
void SetFullscreenElement(Element&);
// Whether we has pending fullscreen request.
bool HasPendingFullscreenRequests();
void AddPendingFullscreenEvent(UniquePtr<PendingFullscreenEvent>);
MOZ_CAN_RUN_SCRIPT void RunFullscreenSteps();
/**
* When Esc key is pressed, cancel the dialog element if the document is
* blocked by the dialog or hide popover if popover is shown.
*/
MOZ_CAN_RUN_SCRIPT void HandleEscKey();
/**
* Process any active CloseWatchers in the document, such
* as fullscreen elements, popovers, dialogs.
*/
MOZ_CAN_RUN_SCRIPT void ProcessCloseRequest();
/**
* When pointer events on the document occur, close the top-most
* light-dismiss dialog as mLastDialogPointerdownTarget.
*/
MOZ_CAN_RUN_SCRIPT void HandleLightDismissOpenDialogs(WidgetEvent*);
void AddModalDialog(HTMLDialogElement&);
void RemoveModalDialog(HTMLDialogElement&);
void AddOpenDialog(HTMLDialogElement&);
void RemoveOpenDialog(HTMLDialogElement&);
bool HasOpenDialogs() const;
HTMLDialogElement* GetTopMostOpenDialog();
bool DialogIsInOpenDialogsList(HTMLDialogElement&);
void SetLastDialogPointerdownTarget(HTMLDialogElement&);
void ClearLastDialogPointerdownTarget() {
mLastDialogPointerdownTarget = nullptr;
}
HTMLDialogElement* GetLastDialogPointerdownTarget();
/**
* Called when a frame in a child process has entered fullscreen or when a
* fullscreen frame in a child process changes to another origin.
* aFrameElement is the frame element which contains the child-process
* fullscreen document.
*/
void RemoteFrameFullscreenChanged(Element* aFrameElement);
/**
* Called when a frame in a remote child document has rolled back fullscreen
* so that all its top layer are empty; we must continue the
* rollback in this parent process' doc tree branch which is fullscreen.
* Note that only one branch of the document tree can have its documents in
* fullscreen state at one time. We're in inconsistent state if a
* fullscreen document has a parent and that parent isn't fullscreen. We
* preserve this property across process boundaries.
*/
void RemoteFrameFullscreenReverted();
/**
* Restores the previous fullscreen element to fullscreen status. If there
* is no former fullscreen element, this exits fullscreen, moving the
* top-level browser window out of fullscreen mode.
*/
void RestorePreviousFullscreenState(UniquePtr<FullscreenExit>);
/**
* Returns true if this document is a fullscreen leaf document, i.e. it
* is in fullscreen mode and has no fullscreen children.
*/
bool IsFullscreenLeaf();
/**
* Returns the document which is at the root of this document's branch
* in the in-process document tree. Returns nullptr if the document isn't
* fullscreen.
*/
Document* GetFullscreenRoot() const { return mFullscreenRoot; }
size_t CountFullscreenElements() const;
/**
* Sets the fullscreen root to aRoot. This stores a weak reference to aRoot
* in this document.
*/
void SetFullscreenRoot(Document* aRoot) { mFullscreenRoot = aRoot; }
/**
* Synchronously cleans up the fullscreen state on the given document.
*
* Calling this without performing fullscreen transition could lead
* to undesired effect (the transition happens after document state
* flips), hence it should only be called either by nsGlobalWindow
* when we have performed the transition, or when it is necessary to
* clean up the state immediately. Otherwise, AsyncExitFullscreen()
* should be called instead.
*
* aDocument must not be null.
*/
static void ExitFullscreenInDocTree(Document* aDocument);
/**
* Ask the document to exit fullscreen state asynchronously.
*
* Different from ExitFullscreenInDocTree(), this allows the window
* to perform fullscreen transition first if any.
*
* If aDocument is null, it will exit fullscreen from all documents
* in all windows.
*/
static void AsyncExitFullscreen(Document* aDocument);
/**
* Handles any pending fullscreen in aDocument or its subdocuments.
*
* Returns whether there is any fullscreen request handled.
*/
static bool HandlePendingFullscreenRequests(Document* aDocument);
/**
* Clear pending fullscreen in aDocument.
*/
static void ClearPendingFullscreenRequests(Document* aDocument);
// ScreenOrientation related APIs
void ClearOrientationPendingPromise();
bool SetOrientationPendingPromise(Promise* aPromise);
Promise* GetOrientationPendingPromise() const {
return mOrientationPendingPromise;
}
//----------------------------------------------------------------------
// Document notification API's
/**
* Add a new observer of document change notifications. Whenever
* content is changed, appended, inserted or removed the observers are
* informed. An observer that is already observing the document must
* not be added without being removed first.
*/
void AddObserver(nsIDocumentObserver* aObserver);
/**
* Remove an observer of document change notifications. This will
* return false if the observer cannot be found.
*/
bool RemoveObserver(nsIDocumentObserver* aObserver);
// Observation hooks used to propagate notifications to document observers.
// BeginUpdate must be called before any batch of modifications of the
// content model or of style data, EndUpdate must be called afterward.
// To make this easy and painless, use the mozAutoDocUpdate helper class.
void BeginUpdate();
void EndUpdate();
uint32_t UpdateNestingLevel() { return mUpdateNestLevel; }
void BeginLoad();
virtual void EndLoad();
enum ReadyState {
READYSTATE_UNINITIALIZED = 0,
READYSTATE_LOADING = 1,
READYSTATE_INTERACTIVE = 3,
READYSTATE_COMPLETE = 4
};
// Set the readystate of the document. If aUpdateTimingInformation is true,
// this will record relevant timestamps in the document's performance timing.
// Some consumers (document.open is the only one right now, actually) don't
// want to do that, though.
void SetReadyStateInternal(ReadyState, bool aUpdateTimingInformation = true);
ReadyState GetReadyStateEnum() { return mReadyState; }
void NotifyLoading(bool aNewParentIsLoading, const ReadyState& aCurrentState,
ReadyState aNewState);
void NotifyAbortedLoad();
// Notify that an element changed state. This must happen under a
// scriptblocker but NOT within a begin/end update.
void ElementStateChanged(Element*, ElementState);
// Update a set of document states that may have changed.
// This should only be called by callers whose state is also reflected in the
// implementation of Document::State.
//
// aNotify controls whether we notify our DocumentStatesChanged observers.
void UpdateDocumentStates(DocumentState aMaybeChangedStates, bool aNotify);
void ResetDocumentDirection();
// Observation hooks for style data to propagate notifications
// to document observers
void RuleChanged(StyleSheet&, css::Rule*, const StyleRuleChange&);
void RuleAdded(StyleSheet&, css::Rule&);
void RuleRemoved(StyleSheet&, css::Rule&);
void SheetCloned(StyleSheet&) {}
void ImportRuleLoaded(StyleSheet&);
/**
* Flush notifications for this document and its parent documents
* (since those may affect the layout of this one).
*/
void FlushPendingNotifications(FlushType aType);
/**
* Another variant of the above FlushPendingNotifications. This function
* takes a ChangesToFlush to specify whether throttled animations are flushed
* or not.
* If in doubt, use the above FlushPendingNotifications.
*/
MOZ_CAN_RUN_SCRIPT_BOUNDARY
void FlushPendingNotifications(ChangesToFlush aFlush);
/**
* Calls FlushPendingNotifications on any external resources this document
* has. If this document has no external resources or is an external resource
* itself this does nothing. This should only be called with
* aType >= FlushType::Style.
*/
void FlushExternalResources(FlushType aType);
void AddWorkerDocumentListener(WorkerDocumentListener* aListener);
void RemoveWorkerDocumentListener(WorkerDocumentListener* aListener);
// Triggers an update of <svg:use> element shadow trees.
void UpdateSVGUseElementShadowTrees() {
if (mSVGUseElementsNeedingShadowTreeUpdate.IsEmpty()) {
return;
}
DoUpdateSVGUseElementShadowTrees();
}
/**
* Only to be used inside Gecko, you can't really do anything with the
* pointer outside Gecko anyway.
*/
nsNodeInfoManager* NodeInfoManager() const { return mNodeInfoManager; }
/**
* Reset the document using the given channel and loadgroup. This works
* like ResetToURI, but also sets the document's channel to aChannel.
* The principal of the document will be set from the channel.
*/
virtual void Reset(nsIChannel* aChannel, nsILoadGroup* aLoadGroup);
/**
* Reset this document to aURI, aLoadGroup, aPrincipal and
* aPartitionedPrincipal. aURI must not be null. If aPrincipal is null, a
* content principal based on aURI will be used.
*/
virtual void ResetToURI(nsIURI* aURI, nsILoadGroup* aLoadGroup,
nsIPrincipal* aPrincipal,
nsIPrincipal* aPartitionedPrincipal);
/**
* Set the container (docshell) for this document. Virtual so that
* docshell can call it.
*/
virtual void SetContainer(nsDocShell* aContainer);
/**
* Get the container (docshell) for this document.
*/
nsISupports* GetContainer() const;
/**
* Get the container's load context for this document.
*/
nsILoadContext* GetLoadContext() const;
/**
* Get docshell the for this document.
*/
nsIDocShell* GetDocShell() const;
/**
* Set and get XML declaration. If aVersion is null there is no declaration.
* aStandalone takes values -1, 0 and 1 indicating respectively that there
* was no standalone parameter in the declaration, that it was given as no,
* or that it was given as yes.
*/
void SetXMLDeclaration(const char16_t* aVersion, const char16_t* aEncoding,
const int32_t aStandalone);
void GetXMLDeclaration(nsAString& aVersion, nsAString& aEncoding,
nsAString& Standalone);
/**
* Returns the bits for the color-scheme specified by the
* <meta name="color-scheme">.
*/
uint8_t GetColorSchemeBits() const { return mColorSchemeBits; }
/**
* Traverses the DOM and computes the supported color schemes as per
* https://html.spec.whatwg.org/#meta-color-scheme
*/
void RecomputeColorScheme();
void AddColorSchemeMeta(HTMLMetaElement&);
void RemoveColorSchemeMeta(HTMLMetaElement&);
/**
* Returns true if this is what HTML 5 calls an "HTML document" (for example
* regular HTML document with Content-Type "text/html", image documents and
* media documents). Returns false for XHTML and any other documents parsed
* by the XML parser.
*/
bool IsHTMLDocument() const { return mType == eHTML; }
bool IsHTMLOrXHTML() const { return mType == eHTML || mType == eXHTML; }
bool IsImageDocument() const {
return MediaDocumentKind() == MediaDocumentKind::Image;
}
bool IsXMLDocument() const { return !IsHTMLDocument(); }
bool IsSVGDocument() const { return mType == eSVG; }
bool LoadsFullXULStyleSheetUpFront() {
if (IsSVGDocument()) {
return false;
}
return AllowXULXBL();
}
bool IsScriptEnabled() const;
/**
* Returns true if this document was created from a nsXULPrototypeDocument.
*/
bool LoadedFromPrototype() const { return mPrototypeDocument; }
/* Returns true if we're currently in Android's PiP mode. */
bool InAndroidPipMode() const;
/**
* Returns the prototype the document was created from, or null if it was not
* created from a prototype.
*/
nsXULPrototypeDocument* GetPrototype() const { return mPrototypeDocument; }
bool IsTopLevelContentDocument() const { return mIsTopLevelContentDocument; }
void SetIsTopLevelContentDocument(bool aIsTopLevelContentDocument) {
mIsTopLevelContentDocument = aIsTopLevelContentDocument;
}
bool IsContentDocument() const { return mIsContentDocument; }
void SetIsContentDocument(bool aIsContentDocument) {
mIsContentDocument = aIsContentDocument;
}
void ProcessMETATag(HTMLMetaElement* aMetaElement);
/**
* Create an element with the specified name, prefix and namespace ID.
* Returns null if element name parsing failed.
*/
already_AddRefed<Element> CreateElem(const nsAString& aName, nsAtom* aPrefix,
int32_t aNamespaceID,
const nsAString* aIs = nullptr);
/**
* Get the security info (i.e. SSL state etc) that the document got
* from the channel/document that created the content of the
* document.
*
* @see nsIChannel
*/
nsITransportSecurityInfo* GetSecurityInfo() { return mSecurityInfo; }
/**
* Get the channel that failed to load and resulted in an error page, if it
* exists. This is only relevant to error pages.
*/
nsIChannel* GetFailedChannel() const { return mFailedChannel; }
/**
* This function checks if the document that is trying to access
* GetNetErrorInfo is a trusted about net error page or not.
*/
static bool CallerIsTrustedAboutNetError(JSContext* aCx, JSObject* aObject);
/**
* This function checks if the document that is trying to access
* ReloadWithHttpsOnlyException is a trusted HTTPS only error page.
*/
static bool CallerIsTrustedAboutHttpsOnlyError(JSContext* aCx,
JSObject* aObject);
/**
* Get security info like error code for a failed channel. This
* property is only exposed to about:neterror documents.
*/
void GetNetErrorInfo(mozilla::dom::NetErrorInfo& aInfo, ErrorResult& aRv);
/**
* This function checks if the document that is trying to access
* GetFailedCertSecurityInfo is a trusted cert error page or not.
*/
static bool CallerIsTrustedAboutCertError(JSContext* aCx, JSObject* aObject);
/**
* This function checks if the caller has access to privileged chrome APIs
* such as the storage access API and inAndroidPipMode. We only allow such
* APIs to be called by system principal and the built-in webcompat addon.
*/
static bool CallerIsSystemPrincipalOrWebCompatAddon(JSContext* aCx,
JSObject* aObject);
/**
* Get the security info (i.e. certificate validity, errorCode, etc) for a
* failed Channel. This property is only exposed for about:certerror
* documents.
*/
void GetFailedCertSecurityInfo(mozilla::dom::FailedCertSecurityInfo& aInfo,
ErrorResult& aRv);
/**
* Set the channel that failed to load and resulted in an error page.
* This is only relevant to error pages.
*/
void SetFailedChannel(nsIChannel* aChannel) { mFailedChannel = aChannel; }
/**
* Returns the default namespace ID used for elements created in this
* document.
*/
int32_t GetDefaultNamespaceID() const { return mDefaultElementType; }
void RemoveAllProperties();
void RemoveAllPropertiesFor(nsINode* aNode);
nsPropertyTable& PropertyTable() { return mPropertyTable; }
/**
* Sets the ID used to identify this part of the multipart document
*/
void SetPartID(uint32_t aID) { mPartID = aID; }
/**
* Return the ID used to identify this part of the multipart document
*/
uint32_t GetPartID() const { return mPartID; }
/**
* Sanitize the document by resetting all input elements and forms that have
* autocomplete=off to their default values.
* TODO: Convert this to MOZ_CAN_RUN_SCRIPT (bug 1415230)
*/
MOZ_CAN_RUN_SCRIPT_BOUNDARY void Sanitize();
/**
* Enumerate all subdocuments.
* The enumerator callback should return CallState::Continue to continue
* enumerating, or CallState::Stop to stop. This will never get passed a null
* aDocument.
*/
using SubDocEnumFunc = dom::ExternalResourceMap::SubDocEnumFunc;
void EnumerateSubDocuments(SubDocEnumFunc aCallback);
/**
* Collect all the descendant documents for which |aCalback| returns true.
* The callback function must not mutate any state for the given document.
* Note that, unlike EnumerateSubDocuments, this recurses into nested
* subdocuments.
*/
using SubDocTestFunc = dom::ExternalResourceMap::SubDocTestFunc;
enum class IncludeSubResources : bool { No, Yes };
void CollectDescendantDocuments(nsTArray<RefPtr<Document>>& aDescendants,
IncludeSubResources, SubDocTestFunc) const;
/**
* Check whether it is safe to cache the presentation of this document
* and all of its subdocuments (depending on the 3rd param). This method
* checks the following conditions recursively:
* - Some document types, such as plugin documents, cannot be safely cached.
* - If there are any pending requests, we don't allow the presentation
* to be cached. Ideally these requests would be suspended and resumed,
* but that is difficult in some cases, such as XMLHttpRequest.
* - If there are any beforeunload or unload listeners, we must fire them
* for correctness, but this likely puts the document into a state where
* it would not function correctly if restored.
*
* |aNewRequest| should be the request for a new document which will
* replace this document in the docshell. The new document's request
* will be ignored when checking for active requests. If there is no
* request associated with the new document, this parameter may be null.
*
* |aBFCacheCombo| is used as a bitmask to indicate what the status
* combination is when we try to BFCache aNewRequest
*/
virtual bool CanSavePresentation(nsIRequest* aNewRequest,
uint32_t& aBFCacheCombo,
bool aIncludeSubdocuments,
bool aAllowUnloadListeners = true);
/**
* Pass principals if the correct ones are known when calling Init. That way
* NodeInfoManager doesn't need to create a temporary null principal.
*/
virtual nsresult Init(nsIPrincipal* aPrincipal,
nsIPrincipal* aPartitionedPrincipal);
/**
* Notify the document that its associated DocumentViewer is being destroyed.
* This releases circular references so that the document can go away.
* Destroy() is only called on documents that have a content viewer.
*/
virtual void Destroy();
/**
* Notify the document that its associated DocumentViewer is no longer
* the current viewer for the docshell. The document might still
* be rendered in "zombie state" until the next document is ready.
* The document should save form control state.
*/
void RemovedFromDocShell();
/**
* Get the layout history state that should be used to save and restore state
* for nodes in this document. This may return null; if that happens state
* saving and restoration is not possible.
*/
already_AddRefed<nsILayoutHistoryState> GetLayoutHistoryState() const;
/**
* Methods that can be used to prevent onload firing while an event that
* should block onload is posted. onload is guaranteed to not fire until
* either all calls to BlockOnload() have been matched by calls to
* UnblockOnload() or the load has been stopped altogether (by the user
* pressing the Stop button, say).
*/
void BlockOnload();
/**
* @param aFireSync whether to fire onload synchronously. If false,
* onload will fire asynchronously after all onload blocks have been
* removed. It will NOT fire from inside UnblockOnload. If true,
* onload may fire from inside UnblockOnload.
*/
void UnblockOnload(bool aFireSync);
// Only BlockOnload should call this!
void AsyncBlockOnload();
void BlockDOMContentLoaded() { ++mBlockDOMContentLoaded; }
MOZ_CAN_RUN_SCRIPT_BOUNDARY void UnblockDOMContentLoaded();
/**
* Notification that the page has been shown, for documents which are loaded
* into a DOM window. This corresponds to the completion of document load,
* or to the page's presentation being restored into an existing DOM window.
* This notification fires applicable DOM events to the content window. See
* PageTransitionEvent.webidl for a description of the |aPersisted|
* parameter. If aDispatchStartTarget is null, the pageshow event is
* dispatched on the ScriptGlobalObject for this document, otherwise it's
* dispatched on aDispatchStartTarget. If |aOnlySystemGroup| is true, the
* event is only dispatched to listeners in the system group.
* Note: if aDispatchStartTarget isn't null, the showing state of the
* document won't be altered.
*/
virtual void OnPageShow(bool aPersisted, EventTarget* aDispatchStartTarget,
bool aOnlySystemGroup = false);
/**
* Notification that the page has been hidden, for documents which are loaded
* into a DOM window. This corresponds to the unloading of the document, or
* to the document's presentation being saved but removed from an existing
* DOM window. This notification fires applicable DOM events to the content
* window. See PageTransitionEvent.webidl for a description of the
* |aPersisted| parameter. If aDispatchStartTarget is null, the pagehide
* event is dispatched on the ScriptGlobalObject for this document,
* otherwise it's dispatched on aDispatchStartTarget. If |aOnlySystemGroup| is
* true, the event is only dispatched to listeners in the system group.
* Note: if aDispatchStartTarget isn't null, the showing state of the
* document won't be altered.
*/
void OnPageHide(bool aPersisted, EventTarget* aDispatchStartTarget,
bool aOnlySystemGroup = false);
/*
* We record the set of links in the document that are relevant to
* style.
*/
/**
* Notification that an element is a link that is relevant to style.
*/
void AddStyleRelevantLink(Link* aLink) {
NS_ASSERTION(aLink, "Passing in a null link. Expect crashes RSN!");
#ifdef DEBUG
NS_ASSERTION(!mStyledLinks.Contains(aLink),
"Document already knows about this Link!");
mStyledLinksCleared = false;
#endif
mStyledLinks.Insert(aLink);
}
/**
* Notification that an element is a link and its URI might have been
* changed or the element removed. If the element is still a link relevant
* to style, then someone must ensure that AddStyleRelevantLink is
* (eventually) called on it again.
*/
void ForgetLink(Link* aLink) {
MOZ_ASSERT(aLink, "Passing in a null link. Expect crashes RSN!");
MOZ_ASSERT(mStyledLinks.Contains(aLink) || mStyledLinksCleared,
"Document knows nothing about this Link!");
mStyledLinks.Remove(aLink);
}
// Refreshes the hrefs of all the links in the document.
void RefreshLinkHrefs();
/**
* Support for window.matchMedia()
*/
already_AddRefed<MediaQueryList> MatchMedia(const nsACString& aMediaQueryList,
CallerType aCallerType);
LinkedList<MediaQueryList>& MediaQueryLists() { return mDOMMediaQueryLists; }
using ContentIdentifiersForLCPType =
nsTHashMap<NoMemMoveKey<nsPtrHashKey<const Element>>,
AutoTArray<WeakPtr<PreloaderBase>, 1>>;
ContentIdentifiersForLCPType& ContentIdentifiersForLCP() {
return mContentIdentifiersForLCP;
}
/**
* Get the compatibility mode for this document
*/
nsCompatibility GetCompatibilityMode() const { return mCompatMode; }
/**
* Check whether we've ever fired a DOMTitleChanged event for this
* document.
*/
bool HaveFiredDOMTitleChange() const { return mHaveFiredTitleChange; }
/**
* To batch DOMSubtreeModified, document needs to be informed when
* a mutation event might be dispatched, even if the event isn't actually
* created because there are no listeners for it.
*
* @param aTarget is the target for the mutation event.
*/
void MayDispatchMutationEvent(nsINode* aTarget) {
if (mSubtreeModifiedDepth > 0) {
mSubtreeModifiedTargets.AppendObject(aTarget);
}
}
/**
* Marks as not-going-to-be-collected for the given generation of
* cycle collection.
*/
void MarkUncollectableForCCGeneration(uint32_t aGeneration) {
mMarkedCCGeneration = aGeneration;
}
/**
* Gets the cycle collector generation this document is marked for.
*/
uint32_t GetMarkedCCGeneration() { return mMarkedCCGeneration; }
/**
* Returns whether this document is cookie averse. See
* https://html.spec.whatwg.org/multipage/dom.html#cookie-averse-document-object
*/
bool IsCookieAverse() const {
// If we are a document that "has no browsing context."
if (!GetInnerWindow()) {
return true;
}
// If we are a document "whose URL's scheme is not a network scheme."
// NB: Explicitly allow file: URIs to store cookies.
return !NodePrincipal()->SchemeIs("http") &&
!NodePrincipal()->SchemeIs("https") &&
!NodePrincipal()->SchemeIs("file");
}
bool IsLoadedAsData() { return mLoadedAsData; }
void SetAddedToMemoryReportAsDataDocument() {
mAddedToMemoryReportingAsDataDocument = true;
}
void UnregisterFromMemoryReportingForDataDocument();
bool MayStartLayout() { return mMayStartLayout; }
void SetMayStartLayout(bool aMayStartLayout);
already_AddRefed<nsIDocumentEncoder> GetCachedEncoder();
void SetCachedEncoder(already_AddRefed<nsIDocumentEncoder> aEncoder);
// In case of failure, the document really can't initialize the frame loader.
nsresult InitializeFrameLoader(nsFrameLoader* aLoader);
// In case of failure, the caller must handle the error, for example by
// finalizing frame loader asynchronously.
nsresult FinalizeFrameLoader(nsFrameLoader* aLoader, nsIRunnable* aFinalizer);
// Removes the frame loader of aShell from the initialization list.
void TryCancelFrameLoaderInitialization(nsIDocShell* aShell);
/**
* Check whether this document is a root document that is not an
* external resource.
*/
bool IsRootDisplayDocument() const {
return !mParentDocument && !mDisplayDocument;
}
bool ChromeRulesEnabled() const { return mChromeRulesEnabled; }
bool IsInChromeDocShell() const {
const Document* root = this;
while (const Document* displayDoc = root->GetDisplayDocument()) {
root = displayDoc;
}
return root->mInChromeDocShell;
}
bool IsBeingUsedAsImage() const { return mIsBeingUsedAsImage; }
void SetIsBeingUsedAsImage() { mIsBeingUsedAsImage = true; }
bool IsSVGGlyphsDocument() const { return mIsSVGGlyphsDocument; }
void SetIsSVGGlyphsDocument() { mIsSVGGlyphsDocument = true; }
bool IsResourceDoc() const {
return IsBeingUsedAsImage() || // Are we a helper-doc for an SVG image?
mHasDisplayDocument; // Are we an external resource doc?
}
/**
* Get the document for which this document is an external resource. This
* will be null if this document is not an external resource. Otherwise,
* GetDisplayDocument() will return a non-null document, and
* GetDisplayDocument()->GetDisplayDocument() is guaranteed to be null.
*/
Document* GetDisplayDocument() const { return mDisplayDocument; }
/**
* Set the display document for this document. aDisplayDocument must not be
* null.
*/
void SetDisplayDocument(Document* aDisplayDocument) {
MOZ_ASSERT(!GetPresShell() && !GetContainer() && !GetWindow(),
"Shouldn't set mDisplayDocument on documents that already "
"have a presentation or a docshell or a window");
MOZ_ASSERT(aDisplayDocument, "Must not be null");
MOZ_ASSERT(aDisplayDocument != this, "Should be different document");
MOZ_ASSERT(!aDisplayDocument->GetDisplayDocument(),
"Display documents should not nest");
mDisplayDocument = aDisplayDocument;
mHasDisplayDocument = !!aDisplayDocument;
}
/**
* Request an external resource document for aURI. This will return the
* resource document if available. If one is not available yet, it will
* start loading as needed, and the pending load object will be returned in
* aPendingLoad so that the caller can register an observer to wait for the
* load. If this function returns null and doesn't return a pending load,
* that means that there is no resource document for this URI and won't be
* one in the future.
*
* @param aURI the URI to get
* @param aReferrerInfo the referrerInfo of the request
* @param aRequestingNode the node making the request
* @param aPendingLoad the pending load for this request, if any
*/
Document* RequestExternalResource(nsIURI* aURI,
nsIReferrerInfo* aReferrerInfo,
nsINode* aRequestingNode,
ExternalResourceLoad** aPendingLoad);
/**
* Enumerate the external resource documents associated with this document.
* The enumerator callback should return CallState::Continue to continue
* enumerating, or CallState::Stop to stop. This callback will never get
* passed a null aDocument.
*/
void EnumerateExternalResources(SubDocEnumFunc aCallback) const;
dom::ExternalResourceMap& ExternalResourceMap() {
return mExternalResourceMap;
}
/**
* Return whether the document is currently showing (in the sense of
* OnPageShow() having been called already and OnPageHide() not having been
* called yet.
*/
bool IsShowing() const { return mIsShowing; }
/**
* Return whether the document is currently visible (in the sense of
* OnPageHide having been called and OnPageShow not yet having been called)
*/
bool IsVisible() const { return mVisible; }
void SetSuppressedEventListener(EventListener* aListener);
EventListener* GetSuppressedEventListener() {
return mSuppressedEventListener;
}
/**
* Return true when this document is active, i.e., an active document
* in a content viewer and not in the bfcache.
* This does NOT match the "active document" concept in the WHATWG spec -
* see IsCurrentActiveDocument.
*/
bool IsActive() const;
/**
* Return true if this is the current active document for its
* docshell. Note that a docshell may have multiple active documents
* due to the bfcache -- this should be used when you need to
* differentiate the *current* active document from any active
* documents.
*/
bool IsCurrentActiveDocument() const {
nsPIDOMWindowInner* inner = GetInnerWindow();
return inner && inner->IsCurrentInnerWindow() && inner->GetDoc() == this;
}
/*
* Return true if the documents current url can be re-written to `aTargetURL`.
* This implements https://html.spec.whatwg.org/#can-have-its-url-rewritten.
*/
bool CanRewriteURL(nsIURI* aTargetURL) const;
/**
* Return true if this document is fully active as described by spec.
* https://html.spec.whatwg.org/multipage/document-sequences.html#fully-active
*/
bool IsFullyActive() const {
nsPIDOMWindowInner* inner = GetInnerWindow();
return inner && inner->IsFullyActive();
}
/*
* Return if this document ever has been scrolled.
* We'd like this to be
* https://html.spec.whatwg.org/#has-been-scrolled-by-the-user, but better to
* check for any scroll than no scroll.
*/
bool HasBeenScrolled() const;
/**
* Returns whether this document should perform image loads.
*/
bool ShouldLoadImages() const {
// We check IsBeingUsedAsImage() so that SVG documents loaded as
// images can themselves have data: URL image references.
return IsCurrentActiveDocument() || IsBeingUsedAsImage() ||
IsStaticDocument();
}
void SetHasPrintCallbacks() {
MOZ_DIAGNOSTIC_ASSERT(IsStaticDocument());
mHasPrintCallbacks = true;
}
bool HasPrintCallbacks() const { return mHasPrintCallbacks; }
/**
* Register/Unregister the ActivityObserver into mActivityObservers to listen
* the document's activity changes such as OnPageHide, visibility, activity.
* The ActivityObserver objects can be nsIObjectLoadingContent or
* nsIDocumentActivity or HTMLMEdiaElement.
*/
void RegisterActivityObserver(nsISupports* aSupports);
bool UnregisterActivityObserver(nsISupports* aSupports);
// Enumerate all the observers in mActivityObservers by the aEnumerator.
using ActivityObserverEnumerator = FunctionRef<void(nsISupports*)>;
void EnumerateActivityObservers(ActivityObserverEnumerator aEnumerator);
void NotifyActivityChanged();
// Indicates whether mAnimationController has been (lazily) initialized.
// If this returns true, we're promising that GetAnimationController()
// will have a non-null return value.
bool HasAnimationController() { return !!mAnimationController; }
// Getter for this document's SMIL Animation Controller. Performs lazy
// initialization, if this document supports animation and if
// mAnimationController isn't yet initialized.
//
// If HasAnimationController is true, this is guaranteed to return non-null.
SMILAnimationController* GetAnimationController();
// Gets the tracker for scroll-driven animations that are waiting to start.
// Returns nullptr if there is no scroll-driven animation tracker for this
// document which will be the case if there have never been any scroll-driven
// animations in the document.
ScrollTimelineAnimationTracker* GetScrollTimelineAnimationTracker() {
return mScrollTimelineAnimationTracker;
}
// Gets the tracker for scroll-driven animations that are waiting to start and
// creates it if it doesn't already exist. As a result, the return value
// will never be nullptr.
ScrollTimelineAnimationTracker* GetOrCreateScrollTimelineAnimationTracker();
/**
* Prevents user initiated events from being dispatched to the document and
* subdocuments.
*/
void SuppressEventHandling(uint32_t aIncrease = 1);
/**
* Unsuppress event handling.
* @param aFireEvents If true, delayed events (focus/blur) will be fired
* asynchronously.
*/
MOZ_CAN_RUN_SCRIPT_BOUNDARY void UnsuppressEventHandlingAndFireEvents(
bool aFireEvents);
uint32_t EventHandlingSuppressed() const { return mEventsSuppressed; }
bool IsEventHandlingEnabled() const {
return !EventHandlingSuppressed() && mScriptGlobalObject;
}
void MaybeScheduleRenderingPhases(RenderingPhases);
void MaybeScheduleRendering() {
MaybeScheduleRenderingPhases(AllRenderingPhases());
}
void MaybeScheduleFrameRequestCallbacks() {
if (HasFrameRequestCallbacks()) {
MaybeScheduleRenderingPhases({RenderingPhase::AnimationFrameCallbacks});
}
}
bool IsRenderingSuppressed() const;
void DecreaseEventSuppression() {
MOZ_ASSERT(mEventsSuppressed);
--mEventsSuppressed;
MaybeScheduleRendering();
}
/**
* Some clipboard commands are unconditionally enabled on some documents, so
* as to always dispatch copy / paste events even though you'd normally not be
* able to copy.
*/
bool AreClipboardCommandsUnconditionallyEnabled() const;
/**
* Note a ChannelEventQueue which has been suspended on the document's behalf
* to prevent XHRs from running content scripts while event handling is
* suppressed. The document is responsible for resuming the queue after
* event handling is unsuppressed.
*/
void AddSuspendedChannelEventQueue(net::ChannelEventQueue* aQueue);
/**
* Returns true if a postMessage event should be suspended instead of running.
* The document is responsible for running the event later, in the order they
* were received.
*/
bool SuspendPostMessageEvent(PostMessageEvent* aEvent);
/**
* Run any suspended postMessage events, or clear them.
*/
void FireOrClearPostMessageEvents(bool aFireEvents);
/**
* Flag whether we're about to fire the window's load event for this document.
*/
void SetLoadEventFiring(bool aFiring) { mLoadEventFiring = aFiring; }
/**
* Test whether we should be firing a load event for this document after a
* document.close(). This is public and on Document, instead of being private
* to Document, because we need to go through the normal docloader logic
* for the readystate change to READYSTATE_COMPLETE with the normal timing and
* semantics of firing the load event; we just don't want to fire the load
* event if this tests true. So we need the docloader to be able to access
* this state.
*
* This method should only be called at the point when the load event is about
* to be fired. It resets the "skip" flag, so it is not idempotent.
*/
bool SkipLoadEventAfterClose() {
bool skip = mSkipLoadEventAfterClose;
mSkipLoadEventAfterClose = false;
return skip;
}
/**
* Increment https://html.spec.whatwg.org/#ignore-destructive-writes-counter
*/
void IncrementIgnoreDestructiveWritesCounter() {
++mIgnoreDestructiveWritesCounter;
}
/**
* Decrement https://html.spec.whatwg.org/#ignore-destructive-writes-counter
*/
void DecrementIgnoreDestructiveWritesCounter() {
--mIgnoreDestructiveWritesCounter;
}
bool IsDNSPrefetchAllowed() const { return mAllowDNSPrefetch; }
/**
* Returns true if this document is allowed to contain XUL element and
* use non-builtin XBL bindings.
*/
bool AllowXULXBL() {
return mAllowXULXBL == eTriTrue ? true
: mAllowXULXBL == eTriFalse ? false
: InternalAllowXULXBL();
}
/**
* Returns true if this document is allowed to load DTDs from UI resources
* no matter what.
*/
bool SkipDTDSecurityChecks() { return mSkipDTDSecurityChecks; }
void ForceEnableXULXBL() { mAllowXULXBL = eTriTrue; }
void ForceSkipDTDSecurityChecks() { mSkipDTDSecurityChecks = true; }
/**
* Returns the template content owner document that owns the content of
* HTMLTemplateElement.
*/
Document* GetTemplateContentsOwner();
Document* GetTemplateContentsOwnerIfExists() const {
return mTemplateContentsOwner.get();
}
bool IsTemplateContentsOwner() const {
// Template contents owner documents are the template contents owner of
// themselves.
return mTemplateContentsOwner == this;
}
/**
* Returns true if this document is a static clone of a normal document.
*
* We create static clones for print preview and printing (possibly other
* things in future).
*
* Note that static documents are also "loaded as data" (if this method
* returns true, IsLoadedAsData() will also return true).
*/
bool IsStaticDocument() const { return mIsStaticDocument; }
/**
* Clones the document along with any subdocuments, stylesheet, etc.
*
* The resulting document and everything it contains (including any
* sub-documents) are created purely via cloning. The returned documents and
* any sub-documents are "loaded as data" documents to preserve the state as
* it was during the clone process (we don't want external resources to load
* and replace the cloned resources).
*
* @param aCloneContainer The container for the clone document.
* @param aDocumentViewer The viewer for the clone document. Must be the
* viewer of aCloneContainer, but callers must have a
* reference to it already and ensure it's not null.
* @param aPrintSettings The print settings for this clone.
* @param aOutHasInProcessPrintCallbacks Self-descriptive.
*/
already_AddRefed<Document> CreateStaticClone(
nsIDocShell* aCloneContainer, nsIDocumentViewer* aDocumentViewer,
nsIPrintSettings* aPrintSettings, bool* aOutHasInProcessPrintCallbacks);
/**
* If this document is a static clone, this returns the original
* document.
*/
Document* GetOriginalDocument() const {
MOZ_ASSERT(!mOriginalDocument || !mOriginalDocument->GetOriginalDocument());
return mOriginalDocument;
}
/**
* If this document is a static clone, let the original document know that
* we're going away and then release our reference to it.
*/
void UnlinkOriginalDocumentIfStatic();
/**
* These are called by the parser as it encounters <picture> tags, the end of
* said tags, and possible picture <source srcset> sources respectively. These
* are used to inform ResolvePreLoadImage() calls. Unset attributes are
* expected to be marked void.
*
* NOTE that the parser does not attempt to track the current picture nesting
* level or whether the given <source> tag is within a picture -- it is only
* guaranteed to order these calls properly with respect to
* ResolvePreLoadImage.
*/
void PreloadPictureOpened() { mPreloadPictureDepth++; }
void PreloadPictureClosed();
void PreloadPictureImageSource(const nsAString& aSrcsetAttr,
const nsAString& aSizesAttr,
const nsAString& aTypeAttr,
const nsAString& aMediaAttr);
/**
* Called by the parser to resolve an image for preloading. The parser will
* call the PreloadPicture* functions to inform us of possible <picture>
* nesting and possible sources, which are used to inform URL selection
* responsive <picture> or <img srcset> images. Unset attributes are expected
* to be marked void.
* If this image is for <picture> or <img srcset>, aIsImgSet will be set to
* true, false otherwise.
*/
already_AddRefed<nsIURI> ResolvePreloadImage(nsIURI* aBaseURI,
const nsAString& aSrcAttr,
const nsAString& aSrcsetAttr,
const nsAString& aSizesAttr,
bool* aIsImgSet);
/**
* Called by nsParser to preload images. Can be removed and code moved
* to nsPreloadURIs::PreloadURIs() in file nsParser.cpp whenever the
* parser-module is linked with gklayout-module. aCrossOriginAttr should
* be a void string if the attr is not present.
* aIsImgSet is the value got from calling ResolvePreloadImage, it is true
* when this image is for loading <picture> or <img srcset> images.
*/
void MaybePreLoadImage(nsIURI* uri, const nsAString& aCrossOriginAttr,
ReferrerPolicyEnum aReferrerPolicy, bool aIsImgSet,
bool aLinkPreload, const nsAString& aFetchPriority);
void PreLoadImage(nsIURI* uri, const nsAString& aCrossOriginAttr,
ReferrerPolicyEnum aReferrerPolicy, bool aIsImgSet,
bool aLinkPreload, uint64_t aEarlyHintPreloaderId,
const nsAString& aFetchPriority);
/**
* Called by images to forget an image preload when they start doing
* the real load.
*/
void ForgetImagePreload(nsIURI* aURI);
/**
* Called by the parser or the preload service to preload style sheets.
* aCrossOriginAttr should be a void string if the attr is not present.
*/
SheetPreloadStatus PreloadStyle(nsIURI* aURI, const Encoding* aEncoding,
const nsAString& aCrossOriginAttr,
ReferrerPolicyEnum aReferrerPolicy,
const nsAString& aNonce,
const nsAString& aIntegrity,
css::StylePreloadKind,
uint64_t aEarlyHintPreloaderId,
const nsAString& aFetchPriority);
/**
* Called by the chrome registry to load style sheets.
*
* This always does a synchronous load, and parses as a normal document sheet.
*/
RefPtr<StyleSheet> LoadChromeSheetSync(nsIURI* aURI);
/**
* Returns true if the locale used for the document specifies a direction of
* right to left. For chrome documents, this comes from the chrome registry.
* This is used to determine the current state for the :-moz-locale-dir
* pseudoclass so once can know whether a document is expected to be rendered
* left-to-right or right-to-left.
*/
bool IsDocumentRightToLeft();
/**
* Called by Parser for link rel=preconnect
*/
void MaybePreconnect(nsIURI* uri, CORSMode aCORSMode);
/**
* Set the document's pending state object (as serialized using structured
* clone).
*/
void SetStateObject(nsIStructuredCloneContainer* scContainer);
/**
* Set the document's pending state object to the same state object as
* aDocument.
*/
void SetStateObjectFrom(Document* aDocument) {
SetStateObject(aDocument->mStateObjectContainer);
}
// Whether we're a media document or not.
enum class MediaDocumentKind {
NotMedia,
Video,
Image,
};
virtual enum MediaDocumentKind MediaDocumentKind() const {
return MediaDocumentKind::NotMedia;
}
DocumentState State() const { return mState; }
nsISupports* GetCurrentContentSink();
void ElementWithAutoFocusInserted(Element* aAutoFocusCandidate);
MOZ_CAN_RUN_SCRIPT void FlushAutoFocusCandidates();
void ScheduleFlushAutoFocusCandidates();
bool HasAutoFocusCandidates() const {
return !mAutoFocusCandidates.IsEmpty();
}
void SetAutoFocusFired();
void SetScrollToRef(nsIURI* aDocumentURI);
MOZ_CAN_RUN_SCRIPT void ScrollToRef();
void ResetScrolledToRefAlready() { mScrolledToRefAlready = false; }
void SetChangeScrollPosWhenScrollingToRef(bool aValue) {
mChangeScrollPosWhenScrollingToRef = aValue;
}
using DocumentOrShadowRoot::GetElementById;
using DocumentOrShadowRoot::GetElementsByClassName;
using DocumentOrShadowRoot::GetElementsByTagName;
using DocumentOrShadowRoot::GetElementsByTagNameNS;
DocumentTimeline* Timeline();
LinkedList<DocumentTimeline>& Timelines() { return mTimelines; }
void UpdateHiddenByContentVisibilityForAnimations();
SVGSVGElement* GetSVGRootElement() const;
nsresult ScheduleFrameRequestCallback(FrameRequestCallback& aCallback,
uint32_t* aHandle);
void CancelFrameRequestCallback(uint32_t aHandle);
void ScheduleVideoFrameCallbacks(HTMLVideoElement* aElement);
void CancelVideoFrameCallbacks(HTMLVideoElement* aElement);
/**
* Put this document's video frame request callbacks into the provided
* list, and forget about them.
*/
void TakeVideoFrameRequestCallbacks(
nsTArray<RefPtr<HTMLVideoElement>>& aVideoCallbacks);
/** Whether we have any scheduled frame request */
bool HasFrameRequestCallbacks() const {
return !mFrameRequestManager.IsEmpty();
}
dom::FrameRequestManager& FrameRequestManager() {
return mFrameRequestManager;
}
/**
* @return true if this document's frame request callbacks should be
* throttled. We throttle requestAnimationFrame for documents which aren't
* visible (e.g. scrolled out of the viewport).
*/
bool ShouldThrottleFrameRequests() const;
// This returns true when the document tree is being teared down.
bool InUnlinkOrDeletion() { return mInUnlinkOrDeletion; }
void TrackImage(imgIRequest*);
enum class RequestDiscard : bool { No = false, Yes };
void UntrackImage(imgIRequest*, RequestDiscard = RequestDiscard::No);
// Makes the images on this document locked/unlocked. By default, the locking
// state is unlocked/false.
bool GetLockingImages() const { return mLockingImages; }
void SetLockingImages(bool);
// Makes the images on this document capable of having their animation
// active or suspended. An Image will animate as long as at least one of its
// owning Documents needs it to animate; otherwise it can suspend.
void SetImageAnimationState(bool);
void PropagateMediaFeatureChangeToTrackedImages(const MediaFeatureChange&);
// Adds an element to mResponsiveContent when the element is
// added to the tree.
void AddResponsiveContent(HTMLImageElement* aContent) {
MOZ_ASSERT(aContent);
mResponsiveContent.Insert(aContent);
}
// Removes an element from mResponsiveContent when the element is
// removed from the tree.
void RemoveResponsiveContent(HTMLImageElement* aContent) {
MOZ_ASSERT(aContent);
mResponsiveContent.Remove(aContent);
}
void ScheduleSVGUseElementShadowTreeUpdate(SVGUseElement&);
void UnscheduleSVGUseElementShadowTreeUpdate(SVGUseElement& aElement) {
mSVGUseElementsNeedingShadowTreeUpdate.Remove(&aElement);
}
bool SVGUseElementNeedsShadowTreeUpdate(SVGUseElement& aElement) const {
return mSVGUseElementsNeedingShadowTreeUpdate.Contains(&aElement);
}
using ShadowRootSet = nsTHashSet<ShadowRoot*>;
void AddComposedDocShadowRoot(ShadowRoot& aShadowRoot) {
mComposedShadowRoots.Insert(&aShadowRoot);
}
void RemoveComposedDocShadowRoot(ShadowRoot& aShadowRoot) {
mComposedShadowRoots.Remove(&aShadowRoot);
}
// If you're considering using this, you probably want to use
// ShadowRoot::IsComposedDocParticipant instead. This is just for
// sanity-checking.
bool IsComposedDocShadowRoot(ShadowRoot& aShadowRoot) {
return mComposedShadowRoots.Contains(&aShadowRoot);
}
const ShadowRootSet& ComposedShadowRoots() const {
return mComposedShadowRoots;
}
// WebIDL method for chrome code.
void GetConnectedShadowRoots(nsTArray<RefPtr<ShadowRoot>>&) const;
void SynchronouslyUpdateRemoteBrowserDimensions(
bool aIncludeInactive = false);
// Notifies any responsive content added by AddResponsiveContent upon media
// features values changing.
void NotifyMediaFeatureValuesChanged();
nsresult GetStateObject(JS::MutableHandle<JS::Value> aState);
nsDOMNavigationTiming* GetNavigationTiming() const { return mTiming; }
void SetNavigationTiming(nsDOMNavigationTiming* aTiming);
inline void SetPageloadEventFeature(
performance::pageload_event::DocumentFeature aFeature) {
mPageloadEventData.SetDocumentFeature(aFeature);
}
nsContentList* ImageMapList();
// Add aLink to the set of links that need their status resolved.
void RegisterPendingLinkUpdate(Link* aLink);
// Update state on links in mLinksToUpdate.
void FlushPendingLinkUpdates();
bool HasWarnedAbout(DeprecatedOperations aOperation) const;
void WarnOnceAbout(
DeprecatedOperations aOperation, bool asError = false,
const nsTArray<nsString>& aParams = nsTArray<nsString>()) const;
#define DOCUMENT_WARNING(_op) e##_op,
enum DocumentWarnings {
#include "nsDocumentWarningList.h"
eDocumentWarningCount
};
#undef DOCUMENT_WARNING
bool HasWarnedAbout(DocumentWarnings aWarning) const;
void WarnOnceAbout(
DocumentWarnings aWarning, bool asError = false,
const nsTArray<nsString>& aParams = nsTArray<nsString>()) const;
// This method may fire a DOM event; if it does so it will happen
// synchronously.
//
// Whether the event fires is controlled by the argument.
enum class DispatchVisibilityChange { No, Yes };
void UpdateVisibilityState(
DispatchVisibilityChange = DispatchVisibilityChange::Yes);
// Posts an event to call UpdateVisibilityState.
void PostVisibilityUpdateEvent();
bool IsSyntheticDocument() const { return mIsSyntheticDocument; }
// Adds the size of a given node, which must not be a document node, to the
// window sizes passed-in.
static void AddSizeOfNodeTree(nsINode&, nsWindowSizes&);
// Note: Document is a sub-class of nsINode, which has a
// SizeOfExcludingThis function. However, because Document objects can
// only appear at the top of the DOM tree, we have a specialized measurement
// function which returns multiple sizes.
virtual void DocAddSizeOfExcludingThis(nsWindowSizes& aWindowSizes) const;
// DocAddSizeOfIncludingThis doesn't need to be overridden by sub-classes
// because Document inherits from nsINode; see the comment above the
// declaration of nsINode::SizeOfIncludingThis.
virtual void DocAddSizeOfIncludingThis(nsWindowSizes& aWindowSizes) const;
void ConstructUbiNode(void* storage) override;
bool MayHaveDOMMutationObservers() { return mMayHaveDOMMutationObservers; }
void SetMayHaveDOMMutationObservers() { mMayHaveDOMMutationObservers = true; }
bool MayHaveAnimationObservers() { return mMayHaveAnimationObservers; }
void SetMayHaveAnimationObservers() { mMayHaveAnimationObservers = true; }
bool IsInSyncOperation() { return mInSyncOperationCount != 0; }
void SetIsInSyncOperation(bool aSync);
bool CreatingStaticClone() const { return mCreatingStaticClone; }
/**
* Creates a new element in the HTML namespace with a local name given by
* aTag.
*/
already_AddRefed<Element> CreateHTMLElement(nsAtom* aTag);
// WebIDL API
nsIGlobalObject* GetParentObject() const { return GetScopeObject(); }
static already_AddRefed<Document> Constructor(const GlobalObject& aGlobal,
ErrorResult& rv);
DOMImplementation* GetImplementation(ErrorResult& rv);
[[nodiscard]] nsresult GetURL(nsString& retval) const;
[[nodiscard]] nsresult GetDocumentURI(nsString& retval) const;
// Return the URI for the document.
// The returned value may differ if the document is loaded via XHR, and
// when accessed from chrome privileged script and
// from content privileged script for compatibility.
void GetDocumentURIFromJS(nsString& aDocumentURI, CallerType aCallerType,
ErrorResult& aRv) const;
void GetCompatMode(nsString& retval) const;
void GetCharacterSet(nsAString& retval) const;
// Skip GetContentType, because our NS_IMETHOD version above works fine here.
// GetDoctype defined above
Element* GetDocumentElement() const { return GetRootElement(); }
WindowContext* GetTopLevelWindowContext() const;
// If the top-level ancestor content document for this document is in the same
// process, returns it. Otherwise, returns null. This function is not
// Fission-compatible, and should not be used in new code.
Document* GetTopLevelContentDocumentIfSameProcess();
const Document* GetTopLevelContentDocumentIfSameProcess() const;
// Returns the associated app window if this is a top-level chrome document,
// null otherwise.
already_AddRefed<nsIAppWindow> GetAppWindowIfToplevelChrome() const;
already_AddRefed<Element> CreateElement(
const nsAString& aTagName, const ElementCreationOptionsOrString& aOptions,
ErrorResult& rv);
already_AddRefed<Element> CreateElementNS(
const nsAString& aNamespaceURI, const nsAString& aQualifiedName,
const ElementCreationOptionsOrString& aOptions, ErrorResult& rv);
already_AddRefed<Element> CreateXULElement(
const nsAString& aTagName, const ElementCreationOptionsOrString& aOptions,
ErrorResult& aRv);
already_AddRefed<DocumentFragment> CreateDocumentFragment() const;
already_AddRefed<nsTextNode> CreateTextNode(const nsAString& aData) const;
already_AddRefed<nsTextNode> CreateEmptyTextNode() const;
already_AddRefed<Comment> CreateComment(const nsAString& aData) const;
already_AddRefed<ProcessingInstruction> CreateProcessingInstruction(
const nsAString& target, const nsAString& data, ErrorResult& rv) const;
already_AddRefed<nsINode> ImportNode(nsINode& aNode, bool aDeep,
ErrorResult& rv) const;
// TODO: Convert this to MOZ_CAN_RUN_SCRIPT (bug 1415230)
MOZ_CAN_RUN_SCRIPT_BOUNDARY nsINode* AdoptNode(
nsINode& aAdoptedNode, ErrorResult& rv, bool aAcceptShadowRoot = false);
already_AddRefed<Event> CreateEvent(const nsAString& aEventType,
CallerType aCallerType,
ErrorResult& rv) const;
already_AddRefed<nsRange> CreateRange(ErrorResult& rv);
already_AddRefed<NodeIterator> CreateNodeIterator(nsINode& aRoot,
uint32_t aWhatToShow,
NodeFilter* aFilter,
ErrorResult& rv) const;
already_AddRefed<TreeWalker> CreateTreeWalker(nsINode& aRoot,
uint32_t aWhatToShow,
NodeFilter* aFilter,
ErrorResult& rv) const;
// Deprecated WebIDL bits
already_AddRefed<CDATASection> CreateCDATASection(const nsAString& aData,
ErrorResult& rv);
already_AddRefed<Attr> CreateAttribute(const nsAString& aName,
ErrorResult& rv);
already_AddRefed<Attr> CreateAttributeNS(const nsAString& aNamespaceURI,
const nsAString& aQualifiedName,
ErrorResult& rv);
void GetInputEncoding(nsAString& aInputEncoding) const;
already_AddRefed<Location> GetLocation() const;
void GetDomain(nsAString& aDomain);
void SetDomain(const nsAString& aDomain, mozilla::ErrorResult& rv);
void GetCookie(nsAString& aCookie, mozilla::ErrorResult& rv);
void SetCookie(const nsAString& aCookie, mozilla::ErrorResult& rv);
void GetReferrer(nsACString& aReferrer) const;
void GetLastModified(nsAString& aLastModified) const;
void GetReadyState(nsAString& aReadyState) const;
void GetTitle(nsAString& aTitle);
void SetTitle(const nsAString& aTitle, ErrorResult& rv);
void GetDir(nsAString& aDirection) const;
void SetDir(const nsAString& aDirection);
nsIHTMLCollection* Images();
nsIHTMLCollection* Embeds();
nsIHTMLCollection* Plugins() { return Embeds(); }
nsIHTMLCollection* Links();
nsIHTMLCollection* Forms();
nsIHTMLCollection* Scripts();
already_AddRefed<nsContentList> GetElementsByName(const nsAString& aName) {
return GetFuncStringContentList<nsCachableElementsByNameNodeList>(
this, MatchNameAttribute, nullptr, UseExistingNameString, aName);
}
Document* Open(const mozilla::dom::Optional<nsAString>& /* unused */,
const mozilla::dom::Optional<nsAString>& /* unused */,
mozilla::ErrorResult& aError);
mozilla::dom::Nullable<mozilla::dom::WindowProxyHolder> Open(
const nsACString& aURL, const nsAString& aName,
const nsAString& aFeatures, mozilla::ErrorResult& rv);
void Close(mozilla::ErrorResult& rv);
MOZ_CAN_RUN_SCRIPT void Write(
const mozilla::dom::Sequence<OwningTrustedHTMLOrString>& aText,
mozilla::ErrorResult& rv);
MOZ_CAN_RUN_SCRIPT void Writeln(
const mozilla::dom::Sequence<OwningTrustedHTMLOrString>& aText,
mozilla::ErrorResult& rv);
Nullable<WindowProxyHolder> GetDefaultView() const;
Element* GetActiveElement();
enum class IncludeChromeOnly : bool { No, Yes };
// TODO(emilio): Audit callers and remove the default argument, some seem like
// they could want the IncludeChromeOnly::Yes version.
nsIContent* GetUnretargetedFocusedContent(
IncludeChromeOnly = IncludeChromeOnly::No) const;
/**
* Return true if this document or a subdocument has focus.
*/
bool HasFocus(ErrorResult& rv) const;
/**
* Return true if this document itself has focus.
*/
bool ThisDocumentHasFocus() const;
void GetDesignMode(nsAString& aDesignMode);
void SetDesignMode(const nsAString& aDesignMode,
nsIPrincipal& aSubjectPrincipal, mozilla::ErrorResult& rv);
void SetDesignMode(const nsAString& aDesignMode,
const mozilla::Maybe<nsIPrincipal*>& aSubjectPrincipal,
mozilla::ErrorResult& rv);
void SetDocumentEditableFlag(bool);
MOZ_CAN_RUN_SCRIPT
bool ExecCommand(const nsAString& aHTMLCommandName, bool aShowUI,
const TrustedHTMLOrString& aValue,
nsIPrincipal& aSubjectPrincipal, mozilla::ErrorResult& aRv);
MOZ_CAN_RUN_SCRIPT bool QueryCommandEnabled(const nsAString& aHTMLCommandName,
nsIPrincipal& aSubjectPrincipal,
mozilla::ErrorResult& aRv);
MOZ_CAN_RUN_SCRIPT bool QueryCommandIndeterm(
const nsAString& aHTMLCommandName, mozilla::ErrorResult& aRv);
MOZ_CAN_RUN_SCRIPT bool QueryCommandState(const nsAString& aHTMLCommandName,
mozilla::ErrorResult& aRv);
MOZ_CAN_RUN_SCRIPT bool QueryCommandSupported(
const nsAString& aHTMLCommandName, mozilla::dom::CallerType aCallerType,
mozilla::ErrorResult& aRv);
MOZ_CAN_RUN_SCRIPT void QueryCommandValue(const nsAString& aHTMLCommandName,
nsAString& aValue,
mozilla::ErrorResult& aRv);
nsIHTMLCollection* Applets();
nsIHTMLCollection* Anchors();
TimeStamp LastFocusTime() const;
void SetLastFocusTime(const TimeStamp& aFocusTime);
// Event handlers are all on nsINode already
bool MozSyntheticDocument() const { return IsSyntheticDocument(); }
Element* GetCurrentScript();
void ReleaseCapture() const;
void MozSetImageElement(const nsAString& aImageElementId, Element* aElement);
nsIURI* GetDocumentURIObject() const;
// Not const because all the fullscreen goop is not const
const char* GetFullscreenError(CallerType);
bool FullscreenEnabled(CallerType aCallerType) {
return !GetFullscreenError(aCallerType);
}
void GetWireframeWithoutFlushing(bool aIncludeNodes, Nullable<Wireframe>&);
MOZ_CAN_RUN_SCRIPT void GetWireframe(bool aIncludeNodes,
Nullable<Wireframe>&);
// Hides all popovers until the given end point, see
// https://html.spec.whatwg.org/multipage/popover.html#hide-all-popovers-until
MOZ_CAN_RUN_SCRIPT void HideAllPopoversUntil(nsINode& aEndpoint,
bool aFocusPreviousElement,
bool aFireEvents);
// Hides the given popover element, see
// https://html.spec.whatwg.org/multipage/popover.html#hide-popover-algorithm
MOZ_CAN_RUN_SCRIPT void HidePopover(Element& popover,
bool aFocusPreviousElement,
bool aFireEvents, ErrorResult& aRv);
// Returns a list of all the elements in the Document's top layer whose
// popover attribute is in the auto state.
// See https://html.spec.whatwg.org/multipage/popover.html#auto-popover-list
nsTArray<Element*> AutoPopoverList() const;
// Return document's auto popover list's last element.
// See
// https://html.spec.whatwg.org/multipage/popover.html#topmost-auto-popover
Element* GetTopmostAutoPopover() const;
// Adds/removes an element to/from the auto popover list.
void AddToAutoPopoverList(Element&);
void RemoveFromAutoPopoverList(Element&);
void AddPopoverToTopLayer(Element&);
void RemovePopoverFromTopLayer(Element&);
Element* GetTopLayerTop();
// Return the fullscreen element in the top layer
Element* GetUnretargetedFullscreenElement() const;
bool Fullscreen() const { return !!GetUnretargetedFullscreenElement(); }
already_AddRefed<Promise> ExitFullscreen(ErrorResult&);
void ExitPointerLock() {
PointerLockManager::Unlock("Document::ExitPointerLock", this);
}
void GetFgColor(nsAString& aFgColor);
void SetFgColor(const nsAString& aFgColor);
void GetLinkColor(nsAString& aLinkColor);
void SetLinkColor(const nsAString& aLinkColor);
void GetVlinkColor(nsAString& aAvlinkColor);
void SetVlinkColor(const nsAString& aVlinkColor);
void GetAlinkColor(nsAString& aAlinkColor);
void SetAlinkColor(const nsAString& aAlinkColor);
void GetBgColor(nsAString& aBgColor);
void SetBgColor(const nsAString& aBgColor);
void Clear() const {
// Deprecated
}
void CaptureEvents();
void ReleaseEvents();
mozilla::dom::HTMLAllCollection* All();
static bool DocumentSupportsL10n(JSContext* aCx, JSObject* aObject);
// Checks that the caller is either chrome or some addon.
static bool IsCallerChromeOrAddon(JSContext* aCx, JSObject* aObject);
bool Hidden() const { return mVisibilityState != VisibilityState::Visible; }
dom::VisibilityState VisibilityState() const { return mVisibilityState; }
bool RenderingSuppressedForViewTransitions() const {
return mRenderingSuppressedForViewTransitions;
}
void SetRenderingSuppressedForViewTransitions(bool);
void GetSelectedStyleSheetSet(nsAString& aSheetSet);
void SetSelectedStyleSheetSet(const nsAString& aSheetSet);
void GetLastStyleSheetSet(nsAString& aSheetSet) {
aSheetSet = mLastStyleSheetSet;
}
const nsString& GetCurrentStyleSheetSet() const {
return mLastStyleSheetSet.IsEmpty() ? mPreferredStyleSheetSet
: mLastStyleSheetSet;
}
void SetPreferredStyleSheetSet(const nsAString&);
void GetPreferredStyleSheetSet(nsAString& aSheetSet) {
aSheetSet = mPreferredStyleSheetSet;
}
DOMStringList* StyleSheetSets();
void EnableStyleSheetsForSet(const nsAString& aSheetSet);
/**
* Retrieve the location of the caret position (DOM node and character
* offset within that node), given a point.
*
* @param aX Horizontal point at which to determine the caret position, in
* page coordinates.
* @param aY Vertical point at which to determine the caret position, in
* page coordinates.
*/
already_AddRefed<nsDOMCaretPosition> CaretPositionFromPoint(
float aX, float aY, const CaretPositionFromPointOptions& aOptions);
Element* GetScrollingElement();
// A way to check whether a given element is what would get returned from
// GetScrollingElement. It can be faster than comparing to the return value
// of GetScrollingElement() due to being able to avoid flushes in various
// cases. This method assumes that null is NOT passed.
bool IsScrollingElement(Element* aElement);
// QuerySelector and QuerySelectorAll already defined on nsINode
UniquePtr<XPathExpression> CreateExpression(const nsAString& aExpression,
XPathNSResolver* aResolver,
ErrorResult& rv);
nsINode* CreateNSResolver(nsINode& aNodeResolver);
already_AddRefed<XPathResult> Evaluate(
JSContext* aCx, const nsAString& aExpression, nsINode& aContextNode,
XPathNSResolver* aResolver, uint16_t aType, JS::Handle<JSObject*> aResult,
ErrorResult& rv);
// Touch event handlers already on nsINode
already_AddRefed<Touch> CreateTouch(nsGlobalWindowInner* aView,
EventTarget* aTarget, int32_t aIdentifier,
int32_t aPageX, int32_t aPageY,
int32_t aScreenX, int32_t aScreenY,
int32_t aClientX, int32_t aClientY,
int32_t aRadiusX, int32_t aRadiusY,
float aRotationAngle, float aForce);
already_AddRefed<TouchList> CreateTouchList();
already_AddRefed<TouchList> CreateTouchList(
Touch& aTouch, const Sequence<OwningNonNull<Touch>>& aTouches);
already_AddRefed<TouchList> CreateTouchList(
const Sequence<OwningNonNull<Touch>>& aTouches);
void SetStyleSheetChangeEventsEnabled(bool aValue) {
mStyleSheetChangeEventsEnabled = aValue;
}
bool StyleSheetChangeEventsEnabled() const {
return mStyleSheetChangeEventsEnabled;
}
void SetDevToolsAnonymousAndShadowEventsEnabled(bool aValue) {
mDevToolsAnonymousAndShadowEventsEnabled = aValue;
}
bool DevToolsAnonymousAndShadowEventsEnabled() const {
return mDevToolsAnonymousAndShadowEventsEnabled;
}
void SetPausedByDevTools(bool aValue) { mPausedByDevTools = aValue; }
bool PausedByDevTools() const { return mPausedByDevTools; }
already_AddRefed<Promise> BlockParsing(Promise& aPromise,
const BlockParsingOptions& aOptions,
ErrorResult& aRv);
already_AddRefed<nsIURI> GetMozDocumentURIIfNotForErrorPages();
Promise* GetDocumentReadyForIdle(ErrorResult& aRv);
void BlockUnblockOnloadForSystemOrPDFJS(bool aBlock) {
if (aBlock) {
BlockOnload();
} else {
UnblockOnload(/* aFireSync = */ false);
}
}
nsIDOMXULCommandDispatcher* GetCommandDispatcher();
bool HasXULBroadcastManager() const { return mXULBroadcastManager; };
void InitializeXULBroadcastManager();
XULBroadcastManager* GetXULBroadcastManager() const {
return mXULBroadcastManager;
}
nsINode* GetPopupRangeParent(ErrorResult& aRv);
int32_t GetPopupRangeOffset(ErrorResult& aRv);
bool DevToolsWatchingDOMMutations() const {
return mDevToolsWatchingDOMMutations;
}
void SetDevToolsWatchingDOMMutations(bool aValue);
// https://drafts.csswg.org/cssom-view/#evaluate-media-queries-and-report-changes
void EvaluateMediaQueriesAndReportChanges();
nsTHashSet<RefPtr<WakeLockSentinel>>& ActiveWakeLocks(WakeLockType aType);
void UnlockAllWakeLocks(WakeLockType aType);
// ParentNode
nsIHTMLCollection* Children();
uint32_t ChildElementCount();
/**
* Asserts IsHTMLOrXHTML, and can't return null.
* Defined inline in nsHTMLDocument.h
*/
inline nsHTMLDocument* AsHTMLDocument();
inline const nsHTMLDocument* AsHTMLDocument() const;
/**
* Asserts IsSVGDocument, and can't return null.
* Defined inline in SVGDocument.h
*/
inline SVGDocument* AsSVGDocument();
inline const SVGDocument* AsSVGDocument() const;
/**
* Asserts IsImageDocument, and can't return null.
* Defined inline in ImageDocument.h
*/
inline ImageDocument* AsImageDocument();
inline const ImageDocument* AsImageDocument() const;
gfxUserFontSet* GetUserFontSet();
void FlushUserFontSet();
void MarkUserFontSetDirty();
FontFaceSet* GetFonts() { return mFontFaceSet; }
// FontFaceSource
FontFaceSet* GetFonts(ErrorResult&) { return Fonts(); }
FontFaceSet* Fonts();
bool DidFireDOMContentLoaded() const { return mDidFireDOMContentLoaded; }
bool IsSynthesized();
// Records whether we will track use counters for this document, and if so,
// which top-level document that page counters will be accumulated to.
//
// Informs the parent process that page use counters will be sent once the
// document goes away.
void InitUseCounters();
// Reports document use counters via telemetry. This method only has an
// effect once per document, and so is called during document destruction.
void ReportDocumentUseCounters();
// Report the names of the HTMLDocument/HTMLFormElement properties that had
// been shadowed using ID/name, and which were subsequently accessed
// ("DOM clobbering"). This data is collected by the corresponding NamedGetter
// methods and limited to 10 unique entries.
void ReportShadowedProperties();
// Reports largest contentful paint via telemetry. We want the most up to
// date value for LCP and so this is called during document destruction.
void ReportLCP();
// Report how lazyload performs for this document.
void ReportDocumentLazyLoadCounters();
// Sends page use counters to the parent process to accumulate against the
// top-level document. Must be called while we still have access to our
// WindowContext. This method has an effect each time it is called, and we
// call it just before the document loses its window.
void SendPageUseCounters();
void SetUseCounter(UseCounter aUseCounter) {
mUseCounters[aUseCounter] = true;
}
bool HasUseCounter(UseCounter aUseCounter) const {
return mUseCounters[aUseCounter];
}
const StyleUseCounters* GetStyleUseCounters() {
return mStyleUseCounters.get();
}
// Propagate our use counters explicitly into the specified referencing
// document.
//
// This is used for SVG image documents, which cannot be enumerated in the
// referencing document's ReportUseCounters() like external resource documents
// can.
void PropagateImageUseCounters(Document* aReferencingDocument);
void CollectShadowedHTMLFormElementProperty(const nsAString& aName);
// Called to track whether this document has had any interaction.
// This is used to track whether we should permit "beforeunload".
// Note: These APIs are deprecated (bug 1766214), and should not be used in
// new code. Please use HasBeenUserGestureActivated() or
// HasValidTransientUserGestureActivation() APIs which align with the spec
// (https://html.spec.whatwg.org/multipage/interaction.html#tracking-user-activation)
// more and also support fission nicer.
void SetUserHasInteracted();
bool UserHasInteracted() { return mUserHasInteracted; }
void ResetUserInteractionTimer();
// Whether we're cloning the contents of an SVG use element.
bool CloningForSVGUse() const { return mCloningForSVGUse; }
// If this is true, we're ignoring scrolling to a fragment.
bool ForceLoadAtTop() const { return mForceLoadAtTop; }
// https://html.spec.whatwg.org/#concept-document-fire-mutation-events-flag
bool FireMutationEvents() const { return mFireMutationEvents; }
void SetFireMutationEvents(bool aFire) { mFireMutationEvents = aFire; }
// https://w3c.github.io/trusted-types/dist/spec/#require-trusted-types-for-csp-directive
bool HasPolicyWithRequireTrustedTypesForDirective() const {
return mHasPolicyWithRequireTrustedTypesForDirective;
}
void SetHasPolicyWithRequireTrustedTypesForDirective(
bool aHasPolicyWithRequireTrustedTypesForDirective) {
mHasPolicyWithRequireTrustedTypesForDirective =
aHasPolicyWithRequireTrustedTypesForDirective;
}
bool IsClipboardCopyTriggered() const { return mClipboardCopyTriggered; }
void ClearClipboardCopyTriggered() { mClipboardCopyTriggered = false; }
void SetClipboardCopyTriggered() { mClipboardCopyTriggered = true; }
// Even if mutation events are disabled by default,
// dom.mutation_events.forceEnable can be used to enable them per site.
bool MutationEventsEnabled();
// This should be called when this document receives events which are likely
// to be user interaction with the document, rather than the byproduct of
// interaction with the browser (i.e. a keypress to scroll the view port,
// keyboard shortcuts, etc). This is used to decide whether we should
// permit autoplay audible media. This also gesture activates all other
// content documents in this tab.
void NotifyUserGestureActivation(
UserActivation::Modifiers aModifiers = UserActivation::Modifiers::None());
// This function is used for mochitest only.
void ClearUserGestureActivation();
// Return true if NotifyUserGestureActivation() has been called on any
// document in the document tree.
bool HasBeenUserGestureActivated();
// Returns true if this document was loaded with an user interaction,
// allowing a text directive to be scrolled to if the document was loaded with
// a text fragment. This call consumes this flag, ie. a subsequent call will
// return false.
bool ConsumeTextDirectiveUserActivation();
// Reture timestamp of last user gesture in milliseconds relative to
// navigation start timestamp.
DOMHighResTimeStamp LastUserGestureTimeStamp();
// Return true if there is transient user gesture activation and it hasn't yet
// timed out or hasn't been consumed.
bool HasValidTransientUserGestureActivation() const;
// Return true if HasValidTransientUserGestureActivation() would return true,
// and consume the activation.
bool ConsumeTransientUserGestureActivation();
bool GetTransientUserGestureActivationModifiers(
UserActivation::Modifiers* aModifiers);
BrowsingContext* GetBrowsingContext() const;
// This document is a WebExtension page, it might be a background page, a
// popup, a visible tab, a visible iframe ...e.t.c.
bool IsExtensionPage() const;
bool HasScriptsBlockedBySandbox() const;
void ReportHasScrollLinkedEffect(const TimeStamp& aTimeStamp);
bool HasScrollLinkedEffect() const;
#ifdef DEBUG
void AssertDocGroupMatchesKey() const;
#endif
DocGroup* GetDocGroup() const {
#ifdef DEBUG
AssertDocGroupMatchesKey();
#endif
return mDocGroup;
}
DocGroup* GetDocGroupOrCreate();
/**
* If we're a sub-document, the parent document's layout can affect our style
* and layout (due to the viewport size, viewport units, media queries...).
*
* This function returns true if our parent document and our child document
* can observe each other. If they cannot, then we don't need to synchronously
* update the parent document layout every time the child document may need
* up-to-date layout information.
*/
bool StyleOrLayoutObservablyDependsOnParentDocumentLayout() const {
return GetInProcessParentDocument() &&
GetDocGroup() == GetInProcessParentDocument()->GetDocGroup();
}
void AddIntersectionObserver(DOMIntersectionObserver& aObserver) {
MOZ_ASSERT(!mIntersectionObservers.Contains(&aObserver),
"Intersection observer already in the list");
mIntersectionObservers.AppendElement(&aObserver);
}
void RemoveIntersectionObserver(DOMIntersectionObserver& aObserver) {
// TODO(emilio): This can fail during unlink because Document unlink clears
// the IntersectionObserver array, but it seems it wouldn't need to?
// MOZ_ASSERT(mIntersectionObservers.Contains(&aObserver));
mIntersectionObservers.RemoveElement(&aObserver);
}
bool HasIntersectionObservers() const {
return !mIntersectionObservers.IsEmpty();
}
// Update intersection observers in this document and all
// same-process subdocuments.
void UpdateIntersections(TimeStamp aNowTime);
// Update the EffectsInfo of remote browsers.
void UpdateRemoteFrameEffects(bool aIncludeInactive = false);
MOZ_CAN_RUN_SCRIPT void NotifyIntersectionObservers();
DOMIntersectionObserver* GetLazyLoadObserver() { return mLazyLoadObserver; }
DOMIntersectionObserver& EnsureLazyLoadObserver();
bool HasElementsWithLastRememberedSize() const {
return !mElementsObservedForLastRememberedSize.IsEmpty();
}
void ObserveForLastRememberedSize(Element&);
void UnobserveForLastRememberedSize(Element&);
void UpdateLastRememberedSizes();
// Dispatch a runnable related to the document.
nsresult Dispatch(already_AddRefed<nsIRunnable>&& aRunnable) const;
// The URLs passed to this function should match what
// JS::DescribeScriptedCaller() returns, since this API is used to
// determine whether some code is being called from a tracking script.
void NoteScriptTrackingStatus(const nsACString& aURL,
net::ClassificationFlags& aFlags);
// The JSContext passed to this method represents the context that we want to
// determine if it belongs to a tracker.
bool IsScriptTracking(JSContext* aCx) const;
// Acquires the script tracking flags for the currently executing script. If
// the currently executing script is not a tracker, it will return the
// classification flags of the document.
net::ClassificationFlags GetScriptTrackingFlags() const;
net::ClassificationFlags GetClassificationFlags() {
return mClassificationFlags;
}
void SetClassificationFlags(net::ClassificationFlags aFlags) {
mClassificationFlags = aFlags;
}
// ResizeObserver usage.
void AddResizeObserver(ResizeObserver& aObserver) {
MOZ_ASSERT(!mResizeObservers.Contains(&aObserver));
mResizeObservers.AppendElement(&aObserver);
}
void RemoveResizeObserver(ResizeObserver& aObserver) {
MOZ_ASSERT(mResizeObservers.Contains(&aObserver));
mResizeObservers.RemoveElement(&aObserver);
}
bool HasResizeObservers() const { return !mResizeObservers.IsEmpty(); }
void ScheduleResizeObserversNotification();
/**
* Calls GatherActiveObservations(aDepth) for all ResizeObservers.
* All observations in each ResizeObserver with element's depth more than
* aDepth will be gathered.
*/
void GatherAllActiveResizeObservations(uint32_t aDepth);
/**
* Calls BroadcastActiveObservations() for all ResizeObservers.
* It also returns the shallowest depth of observed target elements with
* active observations from all ResizeObservers or
* numeric_limits<uint32_t>::max() if there aren't any active observations
* at all.
*/
MOZ_CAN_RUN_SCRIPT uint32_t BroadcastAllActiveResizeObservations();
/**
* Returns whether there is any ResizeObserver that has active
* observations.
*/
bool HasAnyActiveResizeObservations() const;
/**
* Returns whether there is any ResizeObserver that has skipped observations.
*/
bool HasAnySkippedResizeObservations() const;
/**
* Determine proximity to viewport for content-visibility: auto elements and
* notify resize observers.
*/
MOZ_CAN_RUN_SCRIPT void
DetermineProximityToViewportAndNotifyResizeObservers();
already_AddRefed<ViewTransition> StartViewTransition(
const Optional<OwningNonNull<ViewTransitionUpdateCallback>>&);
ViewTransition* GetActiveViewTransition() const {
return mActiveViewTransition;
}
void ClearActiveViewTransition();
MOZ_CAN_RUN_SCRIPT void PerformPendingViewTransitionOperations();
void EnsureViewTransitionOperationsHappen();
void MaybeSkipTransitionAfterVisibilityChange();
void ScheduleViewTransitionUpdateCallback(ViewTransition* aVt);
MOZ_CAN_RUN_SCRIPT void FlushViewTransitionUpdateCallbackQueue();
// Getter for PermissionDelegateHandler. Performs lazy initialization.
PermissionDelegateHandler* GetPermissionDelegateHandler();
// Notify the document that a fetch or a XHR request has completed
// succesfully in this document. This is used by the password manager to infer
// whether a form is submitted.
void NotifyFetchOrXHRSuccess();
// Set whether NotifyFetchOrXHRSuccess should dispatch an event.
void SetNotifyFetchSuccess(bool aShouldNotify);
// When this is set, removing a form or a password field from DOM
// sends a Chrome-only event. This is now only used by the password manager
// and formautofill.
void SetNotifyFormOrPasswordRemoved(bool aShouldNotify);
// This function is used by HTMLFormElement and HTMLInputElement to determin
// whether to send an event when it is removed from DOM.
bool ShouldNotifyFormOrPasswordRemoved() const {
return mShouldNotifyFormOrPasswordRemoved;
}
HTMLEditor* GetHTMLEditor() const;
/**
* Localization
*
* For more information on DocumentL10n see
* intl/l10n/docs/fluent/tutorial.rst
*/
public:
/**
* This is a public method exposed on Document WebIDL
* to chrome only documents.
*/
DocumentL10n* GetL10n() const { return mDocumentL10n.get(); }
/**
* Whether there's any async l10n mutation work pending.
*
* When this turns false, we fire the L10nMutationsFinished event.
*/
bool HasPendingL10nMutations() const;
/**
* This method should be called when the container
* of l10n resources parsing is completed.
*
* It triggers initial async fetch of the resources
* as early as possible.
*
* In HTML case this is </head>.
* In XUL case this is </linkset>.
*/
void OnL10nResourceContainerParsed();
/**
* This method should be called when a link element
* with rel="localization" is being added to the
* l10n resource container element.
*/
void LocalizationLinkAdded(Element* aLinkElement);
/**
* This method should be called when a link element
* with rel="localization" is being removed.
*/
void LocalizationLinkRemoved(Element* aLinkElement);
/**
* This method should be called as soon as the
* parsing of the document is completed.
*
* In HTML/XHTML this happens when we finish parsing
* the document element.
* In XUL it happens at `DoneWalking`, during
* `MozBeforeInitialXULLayout`.
*/
void OnParsingCompleted();
/**
* This method is called when the initial translation
* of the document is completed.
*
* It unblocks the load event if translation was blocking it.
*
* If the `aL10nCached` is set to `true`, and the document has
* a prototype, it will set the `isL10nCached` flag on it.
*/
void InitialTranslationCompleted(bool aL10nCached);
/**
* Returns whether the document allows localization.
*/
bool AllowsL10n() const;
void SetAllowDeclarativeShadowRoots(bool aAllowDeclarativeShadowRoots);
bool AllowsDeclarativeShadowRoots() const;
void SuspendDOMNotifications() {
MOZ_ASSERT(IsHTMLDocument(),
"Currently suspending DOM notifications is supported only on "
"HTML documents.");
mSuspendDOMNotifications = true;
}
void ResumeDOMNotifications() { mSuspendDOMNotifications = false; }
bool DOMNotificationsSuspended() const { return mSuspendDOMNotifications; }
protected:
RefPtr<DocumentL10n> mDocumentL10n;
/**
* Return true when you want a document without explicitly specified viewport
* dimensions/scale to be treated as if "width=device-width" had in fact been
* specified.
*/
virtual bool UseWidthDeviceWidthFallbackViewport() const;
private:
bool IsErrorPage() const;
// Notifies the pres context that an image we track may have started or
// stopped animating.
void AnimatedImageStateMaybeChanged(bool aAnimating);
// Takes the bits from mStyleUseCounters if appropriate, and sets them in
// mUseCounters.
void SetCssUseCounterBits();
void ParseWidthAndHeightInMetaViewport(const nsAString& aWidthString,
const nsAString& aHeightString,
bool aIsAutoScale);
// Parse scale values in viewport meta tag for a given |aHeaderField| which
// represents the scale property and returns the scale value if it's valid.
Maybe<LayoutDeviceToScreenScale> ParseScaleInHeader(nsAtom* aHeaderField);
// Parse scale values in |aViewportMetaData| and set the values in
// mScaleMinFloat, mScaleMaxFloat and mScaleFloat respectively.
void ParseScalesInViewportMetaData(const ViewportMetaData& aViewportMetaData);
// Get parent FeaturePolicy from container. The parent FeaturePolicy is
// stored in parent iframe or container's browsingContext (cross process)
already_AddRefed<mozilla::dom::FeaturePolicy> GetParentFeaturePolicy();
public:
const OriginTrials& Trials() const { return mTrials; }
dom::InteractiveWidget InteractiveWidget() const {
return mInteractiveWidgetMode;
}
private:
void DoCacheAllKnownLangPrefs();
void RecomputeLanguageFromCharset();
bool GetSHEntryHasUserInteraction();
void AppendAutoFocusCandidateToTopDocument(Element* aAutoFocusCandidate);
public:
void SetMayNeedFontPrefsUpdate() { mMayNeedFontPrefsUpdate = true; }
bool MayNeedFontPrefsUpdate() { return mMayNeedFontPrefsUpdate; }
void SetSHEntryHasUserInteraction(bool aHasInteraction);
nsAtom* GetContentLanguageAsAtomForStyle() const;
nsAtom* GetLanguageForStyle() const;
/**
* Fetch the user's font preferences for the given aLanguage's
* language group.
*/
const LangGroupFontPrefs* GetFontPrefsForLang(
nsAtom* aLanguage, bool* aNeedsToCache = nullptr) const;
void ForceCacheLang(nsAtom* aLanguage) {
if (!mLanguagesUsed.EnsureInserted(aLanguage)) {
return;
}
GetFontPrefsForLang(aLanguage);
}
void CacheAllKnownLangPrefs() {
if (!mMayNeedFontPrefsUpdate) {
return;
}
DoCacheAllKnownLangPrefs();
}
nsINode* GetServoRestyleRoot() const { return mServoRestyleRoot; }
uint32_t GetServoRestyleRootDirtyBits() const {
MOZ_ASSERT(mServoRestyleRoot);
MOZ_ASSERT(mServoRestyleRootDirtyBits);
return mServoRestyleRootDirtyBits;
}
void ClearServoRestyleRoot() {
mServoRestyleRoot = nullptr;
mServoRestyleRootDirtyBits = 0;
}
inline void SetServoRestyleRoot(nsINode* aRoot, uint32_t aDirtyBits);
inline void SetServoRestyleRootDirtyBits(uint32_t aDirtyBits);
bool ShouldThrowOnDynamicMarkupInsertion() {
return mThrowOnDynamicMarkupInsertionCounter;
}
void IncrementThrowOnDynamicMarkupInsertionCounter() {
++mThrowOnDynamicMarkupInsertionCounter;
}
void DecrementThrowOnDynamicMarkupInsertionCounter() {
MOZ_ASSERT(mThrowOnDynamicMarkupInsertionCounter);
--mThrowOnDynamicMarkupInsertionCounter;
}
// https://html.spec.whatwg.org/#unload-counter
bool ShouldIgnoreOpens() const { return mIgnoreOpensDuringUnloadCounter; }
// https://html.spec.whatwg.org/#unload-counter
void IncrementIgnoreOpensDuringUnloadCounter() {
++mIgnoreOpensDuringUnloadCounter;
}
// https://html.spec.whatwg.org/#unload-counter
void DecrementIgnoreOpensDuringUnloadCounter() {
MOZ_ASSERT(mIgnoreOpensDuringUnloadCounter);
--mIgnoreOpensDuringUnloadCounter;
}
mozilla::dom::FeaturePolicy* FeaturePolicy() const;
/**
* Find the (non-anonymous) content in this document for aFrame. It will
* be aFrame's content node if that content is in this document and not
* anonymous. Otherwise, when aFrame is in a subdocument, we use the frame
* element containing the subdocument containing aFrame, and/or find the
* nearest non-anonymous ancestor in this document.
* Returns null if there is no such element.
*/
nsIContent* GetContentInThisDocument(nsIFrame* aFrame) const;
void ReportShadowDOMUsage();
// Sets flags for media telemetry.
void SetDocTreeHadMedia();
dom::XPathEvaluator* XPathEvaluator();
void MaybeInitializeFinalizeFrameLoaders();
void SetDelayFrameLoaderInitialization(bool aDelayFrameLoaderInitialization) {
mDelayFrameLoaderInitialization = aDelayFrameLoaderInitialization;
}
void SetPrototypeDocument(nsXULPrototypeDocument* aPrototype);
nsIPermissionDelegateHandler* PermDelegateHandler();
// Returns whether this is a top-level about:blank page without an opener (and
// thus likely not accessible by content). Likely because it shouldn't be used
// for security checks for example, see bug 1860098.
bool IsLikelyContentInaccessibleTopLevelAboutBlank() const;
// CSS prefers-color-scheme media feature for this document.
enum class IgnoreRFP { No, Yes };
ColorScheme PreferredColorScheme(IgnoreRFP = IgnoreRFP::No) const;
// Returns the initial color-scheme used for this document based on the
// color-scheme meta tag.
ColorScheme DefaultColorScheme() const;
static bool HasRecentlyStartedForegroundLoads();
static bool AutomaticStorageAccessPermissionCanBeGranted(
nsIPrincipal* aPrincipal);
already_AddRefed<Promise> AddCertException(bool aIsTemporary,
ErrorResult& aError);
void ReloadWithHttpsOnlyException();
// Subframes need to be static cloned after the main document has been
// embedded within a script global. A `PendingFrameStaticClone` is a static
// clone which has not yet been performed.
//
// The getter returns a direct reference to an internal array which is
// manipulated from within printing code.
struct PendingFrameStaticClone {
PendingFrameStaticClone() = default;
PendingFrameStaticClone(PendingFrameStaticClone&&) = default;
PendingFrameStaticClone& operator=(PendingFrameStaticClone&&) = default;
~PendingFrameStaticClone();
RefPtr<nsFrameLoaderOwner> mElement;
RefPtr<nsFrameLoader> mStaticCloneOf;
};
void AddPendingFrameStaticClone(nsFrameLoaderOwner* aElement,
nsFrameLoader* aStaticCloneOf);
bool ShouldAvoidNativeTheme() const;
static bool IsValidDomain(nsIURI* aOrigHost, nsIURI* aNewURI);
// Inform a parent document that a BrowserBridgeChild has been created for
// an OOP sub-document.
// (This is the OOP counterpart to nsDocLoader::ChildEnteringOnload)
void OOPChildLoadStarted(BrowserBridgeChild* aChild);
// Inform a parent document that the BrowserBridgeChild for one of its
// OOP sub-documents is done calling its onload handler.
// (This is the OOP counterpart to nsDocLoader::ChildDoneWithOnload)
void OOPChildLoadDone(BrowserBridgeChild* aChild);
void ClearOOPChildrenLoading();
bool HasOOPChildrenLoading() { return !mOOPChildrenLoading.IsEmpty(); }
void SetDidHitCompleteSheetCache() { mDidHitCompleteSheetCache = true; }
bool DidHitCompleteSheetCache() const { return mDidHitCompleteSheetCache; }
/**
* Get the `HighlightRegistry` which contains all highlights associated
* with this document.
*/
class HighlightRegistry& HighlightRegistry();
/**
* @brief Returns the `FragmentDirective` object which contains information
* and functionality to extract or create text directives.
* Guaranteed to be non-null.
*/
class FragmentDirective* FragmentDirective();
bool ShouldResistFingerprinting(RFPTarget aTarget) const;
bool IsInPrivateBrowsing() const;
const Maybe<RFPTargetSet>& GetOverriddenFingerprintingSettings() const {
return mOverriddenFingerprintingSettings;
}
// Recompute the current resist fingerprinting state. Returns true when
// the state was changed.
bool RecomputeResistFingerprinting(bool aForceRefreshRTPCallerType = false);
// Recompute the partitionKey for this document if needed. This is for
// handling the case where the principal of the document is changed during the
// loading, e.g. a sandboxed document. We only need to recompute for the
// top-level content document.
void MaybeRecomputePartitionKey();
void RecordCanvasUsage(CanvasUsage& aUsage);
void RecordFontFingerprinting();
bool MayHaveDOMActivateListeners() const;
void DropStyleSet();
// Get a list of all Document objects which are present in the current
// process. This should not be used in hot code paths.
//
// NOTE: This includes both primary and data documents, as well as documents
// which have not yet been fully initialized.
static void GetAllInProcessDocuments(
nsTArray<RefPtr<Document>>& aAllDocuments);
protected:
// Returns the WindowContext for the document that we will contribute
// page use counters to.
WindowContext* GetWindowContextForPageUseCounters() const;
void DoUpdateSVGUseElementShadowTrees();
already_AddRefed<nsIPrincipal> MaybeDowngradePrincipal(
nsIPrincipal* aPrincipal);
void EnsureOnloadBlocker();
void SendToConsole(nsCOMArray<nsISecurityConsoleMessage>& aMessages);
// Returns true if the scheme for the url for this document is "about".
bool IsAboutPage() const;
bool ContainsEMEContent();
bool ContainsMSEContent();
/**
* Returns the title element of the document as defined by the HTML
* specification, or null if there isn't one. For documents whose root
* element is an <svg:svg>, this is the first <svg:title> element that's a
* child of the root. For other documents, it's the first HTML title element
* in the document.
*/
Element* GetTitleElement();
void RecordNavigationTiming(ReadyState aReadyState);
// Recomputes the visibility state but doesn't set the new value.
dom::VisibilityState ComputeVisibilityState() const;
// Since we wouldn't automatically play media from non-visited page, we need
// to notify window when the page was first visited.
void MaybeActiveMediaComponents();
// Apply the fullscreen state to the document, and trigger related
// events. It returns false if the fullscreen element ready check
// fails and nothing gets changed.
MOZ_CAN_RUN_SCRIPT_BOUNDARY bool ApplyFullscreen(
UniquePtr<FullscreenRequest>);
void RemoveDocStyleSheetsFromStyleSets();
void ResetStylesheetsToURI(nsIURI* aURI);
void FillStyleSet();
void FillStyleSetUserAndUASheets();
void FillStyleSetDocumentSheets();
void CompatibilityModeChanged();
bool NeedsQuirksSheet() const {
// SVG documents never load quirk.css.
// FIXME(emilio): Can SVG documents be in quirks mode anyway?
return mCompatMode == eCompatibility_NavQuirks && !IsSVGDocument();
}
void AddStyleSheetToStyleSets(StyleSheet&);
void RemoveStyleSheetFromStyleSets(StyleSheet&);
void NotifyStyleSheetApplicableStateChanged();
// Just like EnableStyleSheetsForSet, but doesn't check whether
// aSheetSet is null and allows the caller to control whether to set
// aSheetSet as the preferred set in the CSSLoader.
void EnableStyleSheetsForSetInternal(const nsAString& aSheetSet,
bool aUpdateCSSLoader);
already_AddRefed<nsIURI> GetDomainURI();
already_AddRefed<nsIURI> CreateInheritingURIForHost(
const nsACString& aHostString);
already_AddRefed<nsIURI> RegistrableDomainSuffixOfInternal(
const nsAString& aHostSuffixString, nsIURI* aOrigHost);
MOZ_CAN_RUN_SCRIPT void WriteCommon(const nsAString& aText,
bool aNewlineTerminate, bool aIsTrusted,
mozilla::ErrorResult& aRv);
// A version of WriteCommon used by WebIDL bindings
MOZ_CAN_RUN_SCRIPT void WriteCommon(
const mozilla::dom::Sequence<OwningTrustedHTMLOrString>& aText,
bool aNewlineTerminate, mozilla::ErrorResult& rv);
void* GenerateParserKey(void);
private:
// ExecCommandParam indicates how HTMLDocument.execCommand() treats given the
// parameter.
enum class ExecCommandParam : uint8_t {
// Always ignore it.
Ignore,
// Treat the given parameter as-is. If the command requires it, use it.
// Otherwise, ignore it.
String,
// Always treat it as boolean parameter.
Boolean,
// Always treat it as boolean, but inverted.
InvertedBoolean,
};
using GetEditorCommandFunc = mozilla::EditorCommand*();
struct InternalCommandData {
const char* mXULCommandName;
mozilla::Command mCommand; // uint8_t
// How ConvertToInternalCommand() to treats aValue.
// Its callers don't need to check this.
ExecCommandParam mExecCommandParam; // uint8_t
GetEditorCommandFunc* mGetEditorCommandFunc;
enum class CommandOnTextEditor : uint8_t {
Disabled,
Enabled,
FallThrough, // Not disabled, but handled by HTMLEditor if there is one
};
CommandOnTextEditor mCommandOnTextEditor;
InternalCommandData()
: mXULCommandName(nullptr),
mCommand(mozilla::Command::DoNothing),
mExecCommandParam(ExecCommandParam::Ignore),
mGetEditorCommandFunc(nullptr),
mCommandOnTextEditor(CommandOnTextEditor::Disabled) {}
InternalCommandData(const char* aXULCommandName, mozilla::Command aCommand,
ExecCommandParam aExecCommandParam,
GetEditorCommandFunc aGetEditorCommandFunc,
CommandOnTextEditor aCommandOnTextEditor)
: mXULCommandName(aXULCommandName),
mCommand(aCommand),
mExecCommandParam(aExecCommandParam),
mGetEditorCommandFunc(aGetEditorCommandFunc),
mCommandOnTextEditor(aCommandOnTextEditor) {}
bool IsAvailableOnlyWhenEditable() const {
return mCommand != mozilla::Command::Cut &&
mCommand != mozilla::Command::Copy &&
mCommand != mozilla::Command::Paste &&
mCommand != mozilla::Command::SetDocumentReadOnly &&
mCommand != mozilla::Command::SelectAll;
}
bool IsCutOrCopyCommand() const {
return mCommand == mozilla::Command::Cut ||
mCommand == mozilla::Command::Copy;
}
bool IsPasteCommand() const { return mCommand == mozilla::Command::Paste; }
};
/**
* AutoEditorCommandTarget considers which editor or global command manager
* handles given command.
*/
class MOZ_RAII AutoEditorCommandTarget {
public:
MOZ_CAN_RUN_SCRIPT AutoEditorCommandTarget(
Document& aDocument, const InternalCommandData& aCommandData);
AutoEditorCommandTarget() = delete;
explicit AutoEditorCommandTarget(const AutoEditorCommandTarget& aOther) =
delete;
bool DoNothing() const { return mDoNothing; }
MOZ_CAN_RUN_SCRIPT bool IsEditable(Document* aDocument) const;
bool IsEditor() const {
MOZ_ASSERT_IF(mEditorCommand, mActiveEditor || mHTMLEditor);
return !!mEditorCommand;
}
MOZ_CAN_RUN_SCRIPT bool IsCommandEnabled() const;
MOZ_CAN_RUN_SCRIPT nsresult DoCommand(nsIPrincipal* aPrincipal) const;
template <typename ParamType>
MOZ_CAN_RUN_SCRIPT nsresult DoCommandParam(const ParamType& aParam,
nsIPrincipal* aPrincipal) const;
MOZ_CAN_RUN_SCRIPT nsresult
GetCommandStateParams(nsCommandParams& aParams) const;
// The returned editor's life is guaranteed while this instance is alive.
EditorBase* GetTargetEditor() const;
private:
RefPtr<EditorBase> mActiveEditor;
RefPtr<HTMLEditor> mHTMLEditor;
RefPtr<EditorCommand> mEditorCommand;
const InternalCommandData& mCommandData;
bool mDoNothing = false;
};
/**
* Helper method to initialize sInternalCommandDataHashtable.
*/
static void EnsureInitializeInternalCommandDataHashtable();
/**
* ConvertToInternalCommand() returns a copy of InternalCommandData instance.
* Note that if aAdjustedValue is non-nullptr, this method checks whether
* aValue is proper value or not unless InternalCommandData::mExecCommandParam
* is ExecCommandParam::Ignore. For example, if aHTMLCommandName is
* "defaultParagraphSeparator", the value has to be one of "div", "p" or
* "br". If aValue is invalid value for InternalCommandData::mCommand, this
* returns a copy of instance created with default constructor. I.e., its
* mCommand is set to Command::DoNothing. So, this treats aHTMLCommandName
* is unsupported in such case.
*
* @param aHTMLCommandName Command name in HTML, e.g., used by
* execCommand().
* @param aValue The value which is set to the 3rd parameter
* of execCommand().
* @param aSubjectPrincipal Principal used for execCommand().
* @param aRv ErrorResult used for Trusted Type conversion.
* @param aAdjustedValue [out] Must be empty string if set non-nullptr.
* Will be set to adjusted value for executing
* the internal command.
* @return Returns a copy of instance created with the
* default constructor if there is no
* corresponding internal command for
* aHTMLCommandName or aValue is invalid for
* found internal command when aAdjustedValue
* is not nullptr. Otherwise, returns a copy of
* instance registered in
* sInternalCommandDataHashtable.
*/
MOZ_CAN_RUN_SCRIPT InternalCommandData ConvertToInternalCommand(
const nsAString& aHTMLCommandName,
const TrustedHTMLOrString* aValue = nullptr,
nsIPrincipal* aSubjectPrincipal = nullptr, ErrorResult* aRv = nullptr,
nsAString* aAdjustedValue = nullptr);
/**
* AutoRunningExecCommandMarker is AutoRestorer for mIsRunningExecCommand.
* Since it's a bit field, not a bool member, therefore, we cannot use
* AutoRestorer for it.
*/
class MOZ_STACK_CLASS AutoRunningExecCommandMarker final {
public:
AutoRunningExecCommandMarker() = delete;
explicit AutoRunningExecCommandMarker(const AutoRunningExecCommandMarker&) =
delete;
// Guaranteeing the document's lifetime with `MOZ_CAN_RUN_SCRIPT`.
MOZ_CAN_RUN_SCRIPT AutoRunningExecCommandMarker(Document& aDocument,
nsIPrincipal* aPrincipal);
~AutoRunningExecCommandMarker() {
if (mTreatAsUserInput) {
mDocument.mIsRunningExecCommandByChromeOrAddon =
mHasBeenRunningByChromeOrAddon;
} else {
mDocument.mIsRunningExecCommandByContent = mHasBeenRunningByContent;
}
}
[[nodiscard]] bool IsSafeToRun() const {
// We don't allow nested calls of execCommand even if the caller is chrome
// script.
if (mTreatAsUserInput) {
return !mHasBeenRunningByChromeOrAddon && !mHasBeenRunningByContent;
}
// If current call is by content, we should ignore whether nested with a
// call by addon (or chrome script) because the caller wants to emulate
// user input for making it undoable. So, we should treat the first
// call as user input.
return !mHasBeenRunningByContent;
}
private:
Document& mDocument;
bool mTreatAsUserInput;
bool mHasBeenRunningByContent;
bool mHasBeenRunningByChromeOrAddon;
};
// Mapping table from HTML command name to internal command.
using InternalCommandDataHashtable =
nsTHashMap<nsStringCaseInsensitiveHashKey, InternalCommandData>;
static InternalCommandDataHashtable* sInternalCommandDataHashtable;
mutable std::bitset<static_cast<size_t>(
DeprecatedOperations::eDeprecatedOperationCount)>
mDeprecationWarnedAbout;
mutable std::bitset<eDocumentWarningCount> mDocWarningWarnedAbout;
// Lazy-initialization to have mDocGroup initialized in prior to the
UniquePtr<ServoStyleSet> mStyleSet;
protected:
// Never ever call this. Only call GetWindow!
nsPIDOMWindowOuter* GetWindowInternal() const;
// Never ever call this. Only call GetScriptHandlingObject!
nsIScriptGlobalObject* GetScriptHandlingObjectInternal() const;
// Never ever call this. Only call AllowXULXBL!
bool InternalAllowXULXBL();
/**
* These methods should be called before and after dispatching
* a mutation event.
* To make this easy and painless, use the mozAutoSubtreeModified helper
* class.
*/
void WillDispatchMutationEvent(nsINode* aTarget);
void MutationEventDispatched(nsINode* aTarget);
friend class mozAutoSubtreeModified;
virtual Element* GetNameSpaceElement() override { return GetRootElement(); }
nsCString GetContentTypeInternal() const { return mContentType; }
// Helper for GetScrollingElement/IsScrollingElement.
bool IsPotentiallyScrollable(HTMLBodyElement* aBody);
void MaybeAllowStorageForOpenerAfterUserInteraction();
void MaybeStoreUserInteractionAsPermission();
// Helpers for GetElementsByName.
static bool MatchNameAttribute(Element* aElement, int32_t aNamespaceID,
nsAtom* aAtom, void* aData);
static void* UseExistingNameString(nsINode* aRootNode, const nsString* aName);
void MaybeResolveReadyForIdle();
using AutomaticStorageAccessPermissionGrantPromise =
MozPromise<bool, bool, true>;
[[nodiscard]] RefPtr<AutomaticStorageAccessPermissionGrantPromise>
AutomaticStorageAccessPermissionCanBeGranted(bool hasUserActivation,
bool aIsThirdPartyTracker);
static void AddToplevelLoadingDocument(Document* aDoc);
static void RemoveToplevelLoadingDocument(Document* aDoc);
static AutoTArray<Document*, 8>* sLoadingForegroundTopLevelContentDocument;
friend class cycleCollection;
nsCOMPtr<nsIReferrerInfo> mPreloadReferrerInfo;
nsCOMPtr<nsIReferrerInfo> mReferrerInfo;
nsString mLastModified;
nsCOMPtr<nsIURI> mDocumentURI;
nsCOMPtr<nsIURI> mOriginalURI;
nsCOMPtr<nsIURI> mChromeXHRDocURI;
nsCOMPtr<nsIURI> mDocumentBaseURI;
nsCOMPtr<nsIURI> mChromeXHRDocBaseURI;
// A lazily-constructed URL data for style system to resolve URL values.
RefPtr<URLExtraData> mCachedURLData;
nsCOMPtr<nsIReferrerInfo> mCachedReferrerInfoForInternalCSSAndSVGResources;
nsWeakPtr mDocumentLoadGroup;
WeakPtr<nsDocShell> mDocumentContainer;
NotNull<const Encoding*> mCharacterSet;
int32_t mCharacterSetSource;
OriginTrials mTrials;
// This is just a weak pointer; the parent document owns its children.
Document* mParentDocument;
// A reference to the element last returned from GetRootElement().
Element* mCachedRootElement;
// This is maintained by AutoSetRestoreSVGContextPaint.
const SVGContextPaint* mCurrentContextPaint = nullptr;
// This is a weak reference, but we hold a strong reference to mNodeInfo,
// which in turn holds a strong reference to this mNodeInfoManager.
nsNodeInfoManager* mNodeInfoManager;
RefPtr<css::Loader> mCSSLoader;
RefPtr<css::ImageLoader> mStyleImageLoader;
// The object that contains link color declarations (from the <body> mapped
// attributes), mapped attribute caches, and inline style attribute caches.
RefPtr<AttributeStyles> mAttributeStyles;
// Tracking for images in the document.
nsTHashMap<nsPtrHashKey<imgIRequest>, uint32_t> mTrackedImages;
// A hashtable of ShadowRoots belonging to the composed doc.
//
// See ShadowRoot::Bind and ShadowRoot::Unbind.
ShadowRootSet mComposedShadowRoots;
using SVGUseElementSet = nsTHashSet<SVGUseElement*>;
// The set of <svg:use> elements that need a shadow tree reclone because the
// tree they map to has changed.
SVGUseElementSet mSVGUseElementsNeedingShadowTreeUpdate;
// The set of all object, embed, video/audio elements or
// nsIObjectLoadingContent or DocumentActivity for which this is
// the owner document. (They might not be in the document.)
//
// These are non-owning pointers, the elements are responsible for removing
// themselves when they go away.
UniquePtr<nsTHashSet<nsISupports*>> mActivityObservers;
// A hashtable of styled links keyed by address pointer.
nsTHashSet<Link*> mStyledLinks;
#ifdef DEBUG
// Indicates whether mStyledLinks was cleared or not. This is used to track
// state so we can provide useful assertions to consumers of ForgetLink and
// AddStyleRelevantLink.
bool mStyledLinksCleared;
#endif
// The array of all links that need their status resolved. Links must add
// themselves to this set by calling RegisterPendingLinkUpdate when added to a
// document.
static const size_t kSegmentSize = 128;
using LinksToUpdateList =
SegmentedVector<nsCOMPtr<Link>, kSegmentSize, InfallibleAllocPolicy>;
LinksToUpdateList mLinksToUpdate;
// SMIL Animation Controller, lazily-initialized in GetAnimationController
RefPtr<SMILAnimationController> mAnimationController;
// Table of element properties for this document.
nsPropertyTable mPropertyTable;
// Our cached .children collection
nsCOMPtr<nsIHTMLCollection> mChildrenCollection;
// Various DOM lists
RefPtr<nsContentList> mImages;
RefPtr<nsContentList> mEmbeds;
RefPtr<nsContentList> mLinks;
RefPtr<nsContentList> mForms;
RefPtr<nsContentList> mScripts;
nsCOMPtr<nsIHTMLCollection> mApplets;
RefPtr<nsContentList> mAnchors;
// container for per-context fonts (downloadable, SVG, etc.)
RefPtr<FontFaceSet> mFontFaceSet;
// Last time this document or a one of its sub-documents was focused. If
// focus has never occurred then mLastFocusTime.IsNull() will be true.
TimeStamp mLastFocusTime;
// Last time we found any scroll linked effect in this document.
TimeStamp mLastScrollLinkedEffectDetectionTime;
DocumentState mState{DocumentState::LTR_LOCALE};
RefPtr<Promise> mReadyForIdle;
RefPtr<mozilla::dom::FeaturePolicy> mFeaturePolicy;
// Permission Delegate Handler, lazily-initialized in
// GetPermissionDelegateHandler
RefPtr<PermissionDelegateHandler> mPermissionDelegateHandler;
bool mCachedStateObjectValid : 1;
bool mBlockAllMixedContent : 1;
bool mBlockAllMixedContentPreloads : 1;
bool mUpgradeInsecureRequests : 1;
bool mUpgradeInsecurePreloads : 1;
bool mDevToolsWatchingDOMMutations : 1;
// https://drafts.csswg.org/css-view-transitions-1/#document-rendering-suppression-for-view-transitions
bool mRenderingSuppressedForViewTransitions : 1;
// True if BIDI is enabled.
bool mBidiEnabled : 1;
// True if we may need to recompute the language prefs for this document.
bool mMayNeedFontPrefsUpdate : 1;
// True if this document is the initial document for a window. This should
// basically be true only for documents that exist in newly-opened windows or
// documents created to satisfy a GetDocument() on a window when there's no
// document in it.
bool mIsInitialDocumentInWindow : 1;
// True if this document has ever been the initial document for a window. This
// is useful to determine if a document that was the initial document at one
// point, and became non-initial later.
bool mIsEverInitialDocumentInWindow : 1;
bool mIgnoreDocGroupMismatches : 1;
// True if we're loaded as data and therefor has any dangerous stuff, such
// as scripts and plugins, disabled.
bool mLoadedAsData : 1;
// True if the document is considered for memory reporting as a
// data document
bool mAddedToMemoryReportingAsDataDocument : 1;
// If true, whoever is creating the document has gotten it to the
// point where it's safe to start layout on it.
bool mMayStartLayout : 1;
// True iff we've ever fired a DOMTitleChanged event for this document
bool mHaveFiredTitleChange : 1;
// State for IsShowing(). mIsShowing starts off false. It becomes true when
// OnPageShow happens and becomes false when OnPageHide happens. So it's false
// before the initial load completes and when we're in bfcache or unloaded,
// true otherwise.
bool mIsShowing : 1;
// State for IsVisible(). mVisible starts off true. It becomes false when
// OnPageHide happens, and becomes true again when OnPageShow happens. So
// it's false only when we're in bfcache or unloaded.
bool mVisible : 1;
// True if our content viewer has been removed from the docshell
// (it may still be displayed, but in zombie state). Form control data
// has been saved.
bool mRemovedFromDocShell : 1;
// True iff DNS prefetch is allowed for this document. Note that if the
// document has no window, DNS prefetch won't be performed no matter what.
bool mAllowDNSPrefetch : 1;
// True when this document is a static clone of a normal document
bool mIsStaticDocument : 1;
// True while this document is being cloned to a static document.
bool mCreatingStaticClone : 1;
// True if this static document has any <canvas> element with a
// mozPrintCallback property at the time of the clone.
bool mHasPrintCallbacks : 1;
// True iff the document is being unlinked or deleted.
bool mInUnlinkOrDeletion : 1;
// True if document has ever had script handling object.
bool mHasHadScriptHandlingObject : 1;
// True if we're an SVG document being used as an image.
bool mIsBeingUsedAsImage : 1;
// True if our current document URI's scheme enables privileged CSS rules.
bool mChromeRulesEnabled : 1;
// True if we're loaded in a chrome docshell.
bool mInChromeDocShell : 1;
// True is this document is synthetic : stand alone image, video, audio
// file, etc.
bool mIsSyntheticDocument : 1;
// True is there is a pending runnable which will call
// FlushPendingLinkUpdates().
bool mHasLinksToUpdateRunnable : 1;
// True if we're flushing pending link updates.
bool mFlushingPendingLinkUpdates : 1;
// True if a DOMMutationObserver is perhaps attached to a node in the
// document.
bool mMayHaveDOMMutationObservers : 1;
// True if an nsIAnimationObserver is perhaps attached to a node in the
// document.
bool mMayHaveAnimationObservers : 1;
// True if the document has a CSP delivered throuh a header
bool mHasCSPDeliveredThroughHeader : 1;
// True if DisallowBFCaching has been called on this document.
bool mBFCacheDisallowed : 1;
bool mHasHadDefaultView : 1;
// Whether style sheet change events will be dispatched for this document
bool mStyleSheetChangeEventsEnabled : 1;
// Whether shadowrootattached/anonymousnodecreated/anonymousnoderemoved events
// will be dispatched for this document.
bool mDevToolsAnonymousAndShadowEventsEnabled : 1;
// Whether DevTools is pausing the page (in which case we don't really want to
// stop rendering).
bool mPausedByDevTools : 1;
// Whether the document was created by a srcdoc iframe.
bool mIsSrcdocDocument : 1;
// Whether this document has a display document and thus is considered to
// be a resource document. Normally this is the same as !!mDisplayDocument,
// but mDisplayDocument is cleared during Unlink. mHasDisplayDocument is
// valid in the document's destructor.
bool mHasDisplayDocument : 1;
// Is the current mFontFaceSet valid?
bool mFontFaceSetDirty : 1;
// True if we have fired the DOMContentLoaded event, or don't plan to fire one
// (e.g. we're not being parsed at all).
bool mDidFireDOMContentLoaded : 1;
bool mIsTopLevelContentDocument : 1;
bool mIsContentDocument : 1;
// True if we have called BeginLoad and are expecting a paired EndLoad call.
bool mDidCallBeginLoad : 1;
// True if the encoding menu should be disabled.
bool mEncodingMenuDisabled : 1;
// False if we've disabled link handling for elements inside this document,
// true otherwise.
bool mLinksEnabled : 1;
// True if this document is for an SVG-in-OpenType font.
bool mIsSVGGlyphsDocument : 1;
// True if the document is being destroyed.
bool mInDestructor : 1;
// True if the document has been detached from its content viewer.
bool mIsGoingAway : 1;
// Whether we have filled our style set with all the stylesheets.
bool mStyleSetFilled : 1;
// Whether we have a quirks mode stylesheet in the style set.
bool mQuirkSheetAdded : 1;
// True if this document has ever had an HTML or SVG <title> element
// bound to it
bool mMayHaveTitleElement : 1;
bool mDOMLoadingSet : 1;
bool mDOMInteractiveSet : 1;
bool mDOMCompleteSet : 1;
bool mAutoFocusFired : 1;
bool mScrolledToRefAlready : 1;
bool mChangeScrollPosWhenScrollingToRef : 1;
bool mDelayFrameLoaderInitialization : 1;
bool mSynchronousDOMContentLoaded : 1;
// Set to true when the document is possibly controlled by the ServiceWorker.
// Used to prevent multiple requests to ServiceWorkerManager.
bool mMaybeServiceWorkerControlled : 1;
// These member variables cache information about the viewport so we don't
// have to recalculate it each time.
bool mAllowZoom : 1;
bool mValidScaleFloat : 1;
bool mValidMinScale : 1;
bool mValidMaxScale : 1;
bool mWidthStrEmpty : 1;
bool mLockingImages : 1;
bool mAnimatingImages : 1;
// Parser aborted. True if the parser of this document was forcibly
// terminated instead of letting it finish at its own pace.
bool mParserAborted : 1;
// Whether we have reported document use counters for this document with
// Telemetry yet. Normally this is only done at document destruction time,
// but for image documents (SVG documents) that are not guaranteed to be
// destroyed, we report use counters when the image cache no longer has any
// imgRequestProxys pointing to them. We track whether we ever reported use
// counters so that we only report them once for the document.
bool mReportedDocumentUseCounters : 1;
bool mHasReportedShadowDOMUsage : 1;
// The HTML spec has a "iframe load in progress" flag, but that doesn't seem
// to have the right semantics. See
// <https://github.com/whatwg/html/issues/4292>. What we have instead is a
// flag that is set while the window's 'load' event is firing if this document
// is the window's document.
bool mLoadEventFiring : 1;
// The HTML spec has a "mute iframe load" flag, but that doesn't seem to have
// the right semantics. See <https://github.com/whatwg/html/issues/4292>.
// What we have instead is a flag that is set if completion of our document
// via document.close() should skip firing the load event. Note that this
// flag is only relevant for HTML documents, but lives here for reasons that
// are documented above on SkipLoadEventAfterClose().
bool mSkipLoadEventAfterClose : 1;
// When false, the .cookies property is completely disabled
bool mDisableCookieAccess : 1;
// When false, the document.write() API is disabled.
bool mDisableDocWrite : 1;
// Has document.write() been called with a recursion depth higher than
// allowed?
bool mTooDeepWriteRecursion : 1;
/**
* Temporary flag that is set in EndUpdate() to ignore
* MaybeEditingStateChanged() script runners from a nested scope.
*/
bool mPendingMaybeEditingStateChanged : 1;
// mHasBeenEditable is set to true when mEditingState is firstly set to
// eDesignMode or eContentEditable.
bool mHasBeenEditable : 1;
// While we're handling an execCommand call by web app, set
// to true.
bool mIsRunningExecCommandByContent : 1;
// While we're handling an execCommand call by an addon (or chrome script),
// set to true.
bool mIsRunningExecCommandByChromeOrAddon : 1;
// True if we should change the readystate to complete after we fire
// DOMContentLoaded. This happens when we abort a load and
// nsDocumentViewer::EndLoad runs while we still have things blocking
// DOMContentLoaded. We wait for those to complete, and then update the
// readystate when they finish.
bool mSetCompleteAfterDOMContentLoaded : 1;
// Set the true if a completed cached stylesheet was created for the document.
bool mDidHitCompleteSheetCache : 1;
// Whether we have initialized mShouldReportUseCounters and
// mShouldSendPageUseCounters, and sent any needed message to the parent
// process to indicate that use counter data will be sent at some later point.
bool mUseCountersInitialized : 1;
// Whether this document should report use counters.
bool mShouldReportUseCounters : 1;
// Whether this document should send page use counters. Set to true after
// we've called SendExpectPageUseCounters on the top-level WindowGlobal.
bool mShouldSendPageUseCounters : 1;
// Whether the user has interacted with the document or not:
bool mUserHasInteracted : 1;
// We constantly update the user-interaction anti-tracking permission at any
// user-interaction using a timer. This boolean value is set to true when this
// timer is scheduled.
bool mHasUserInteractionTimerScheduled : 1;
// Whether we should resist fingerprinting.
bool mShouldResistFingerprinting : 1;
// Whether we are in private browsing mode.
bool mIsInPrivateBrowsing : 1;
// Whether we're cloning the contents of an SVG use element.
bool mCloningForSVGUse : 1;
bool mAllowDeclarativeShadowRoots : 1;
bool mSuspendDOMNotifications : 1;
bool mForceLoadAtTop : 1;
bool mFireMutationEvents : 1;
// Whether the document's CSP contains a require-trusted-types-for directive.
bool mHasPolicyWithRequireTrustedTypesForDirective : 1;
// Whether a copy event happened. Used to detect when this happens
// while a paste event is being handled in JS.
bool mClipboardCopyTriggered : 1;
Maybe<bool> mMutationEventsEnabled;
// The fingerprinting protections overrides for this document. The value will
// override the default enabled fingerprinting protections for this document.
// This will only get populated if these is one that comes from the local
// fingerprinting protection override pref or WebCompat. Otherwise, a value of
// Nothing() indicates no overrides are present for this document.
Maybe<RFPTargetSet> mOverriddenFingerprintingSettings;
uint8_t mXMLDeclarationBits;
// NOTE(emilio): Technically, this should be a StyleColorSchemeFlags, but we
// use uint8_t to avoid having to include a bunch of style system headers
// everywhere.
uint8_t mColorSchemeBits = 0;
// Currently active onload blockers.
uint32_t mOnloadBlockCount;
// Tracks if we are currently processing any document.write calls (either
// implicit or explicit). Note that if a write call writes out something which
// would block the parser, then mWriteLevel will be incorrect until the parser
// finishes processing that script.
uint32_t mWriteLevel;
uint32_t mContentEditableCount;
EditingState mEditingState;
// Compatibility mode
nsCompatibility mCompatMode;
// Our readyState
ReadyState mReadyState;
// Ancestor's loading state
bool mAncestorIsLoading;
// Our visibility state
dom::VisibilityState mVisibilityState;
enum Type {
eUnknown, // should never be used
eHTML,
eXHTML,
eGenericXML,
eSVG
};
Type mType;
uint8_t mDefaultElementType;
enum Tri { eTriUnset = 0, eTriFalse, eTriTrue };
Tri mAllowXULXBL;
bool mSkipDTDSecurityChecks;
// The document's script global object, the object from which the
// document can get its script context and scope. This is the
// *inner* window object.
nsCOMPtr<nsIScriptGlobalObject> mScriptGlobalObject;
// If mIsStaticDocument is true, mOriginalDocument points to the original
// document.
RefPtr<Document> mOriginalDocument;
// The bidi options for this document. What this bitfield means is
// defined in nsBidiUtils.h
uint32_t mBidiOptions;
// The sandbox flags on the document. These reflect the value of the sandbox
// attribute of the associated IFRAME or CSP-protectable content, if existent.
// These are set at load time and are immutable - see nsSandboxFlags.h for the
// possible flags.
uint32_t mSandboxFlags;
// The embedder policy obtained from parsing the HTTP response header or from
// our opener if this is the initial about:blank document.
Maybe<nsILoadInfo::CrossOriginEmbedderPolicy> mEmbedderPolicy;
RefPtr<nsAtom> mContentLanguage;
// The channel that got passed to Document::StartDocumentLoad(), if any.
nsCOMPtr<nsIChannel> mChannel;
nsCOMPtr<nsIContentSecurityPolicy> mPreloadCSP;
RefPtr<PolicyContainer> mPolicyContainer;
private:
nsCString mContentType;
protected:
// The document's security info
nsCOMPtr<nsITransportSecurityInfo> mSecurityInfo;
// The channel that failed to load and resulted in an error page.
// This only applies to error pages. Might be null.
nsCOMPtr<nsIChannel> mFailedChannel;
// if this document is part of a multipart document,
// the ID can be used to distinguish it from the other parts.
uint32_t mPartID;
// Cycle collector generation in which we're certain that this document
// won't be collected
uint32_t mMarkedCCGeneration;
PresShell* mPresShell;
nsCOMArray<nsINode> mSubtreeModifiedTargets;
uint32_t mSubtreeModifiedDepth;
// All images in process of being preloaded. This is a hashtable so
// we can remove them as the real image loads start; that way we
// make sure to not keep the image load going when no one cares
// about it anymore.
nsRefPtrHashtable<nsURIHashKey, imgIRequest> mPreloadingImages;
// A list of preconnects initiated by the preloader. This prevents
// the same uri from being used more than once, and allows the dom
// builder to not repeat the work of the preloader.
nsTHashMap<nsURIHashKey, bool> mPreloadedPreconnects;
// Current depth of picture elements from parser
uint32_t mPreloadPictureDepth;
// Set if we've found a URL for the current picture
nsString mPreloadPictureFoundSource;
// If we're an external resource document, this will be non-null and will
// point to our "display document": the one that all resource lookups should
// go to.
RefPtr<Document> mDisplayDocument;
uint32_t mEventsSuppressed;
// Any XHR ChannelEventQueues that were suspended on this document while
// events were suppressed.
nsTArray<RefPtr<net::ChannelEventQueue>> mSuspendedQueues;
// Any postMessage events that were suspended on this document while events
// were suppressed.
nsTArray<RefPtr<PostMessageEvent>> mSuspendedPostMessageEvents;
RefPtr<EventListener> mSuppressedEventListener;
/**
* https://html.spec.whatwg.org/#ignore-destructive-writes-counter
*/
uint32_t mIgnoreDestructiveWritesCounter;
// Count of live static clones of this document.
uint32_t mStaticCloneCount;
// If the document is currently printing (or in print preview) this will point
// to the current static clone of this document. This is weak since the clone
// also has a reference to this document.
WeakPtr<Document> mLatestStaticClone;
// Array of nodes that have been blocked to prevent user tracking.
// They most likely have had their nsIChannel canceled by the URL
// classifier. (Safebrowsing)
//
// Weak nsINode pointers are used to allow nodes to disappear.
nsTArray<nsWeakPtr> mBlockedNodesByClassifier;
// Weak reference to mScriptGlobalObject QI:d to nsPIDOMWindow,
// updated on every set of mScriptGlobalObject.
nsPIDOMWindowInner* mWindow;
nsCOMPtr<nsIDocumentEncoder> mCachedEncoder;
dom::FrameRequestManager mFrameRequestManager;
// This object allows us to evict ourself from the back/forward cache. The
// pointer is non-null iff we're currently in the bfcache.
nsIBFCacheEntry* mBFCacheEntry;
// Our base target.
nsString mBaseTarget;
nsCOMPtr<nsIStructuredCloneContainer> mStateObjectContainer;
JS::Heap<JS::Value> mCachedStateObject;
uint32_t mInSyncOperationCount;
UniquePtr<dom::XPathEvaluator> mXPathEvaluator;
nsTArray<RefPtr<AnonymousContent>> mAnonymousContents;
// The <div class="moz-custom-content-container"> that we use to wrap all the
// mAnonymousContents roots. It's a NAC root, child of the root element.
RefPtr<Element> mCustomContentContainer;
uint32_t mBlockDOMContentLoaded;
// Our live MediaQueryLists
LinkedList<MediaQueryList> mDOMMediaQueryLists;
// A hashmap to keep track of which {element, imgRequestProxy}
// combination has been processed to avoid considering the same
// element twice for LargestContentfulPaint.
ContentIdentifiersForLCPType mContentIdentifiersForLCP;
// Array of observers
nsTObserverArray<nsIDocumentObserver*> mObservers;
// Flags for use counters used directly by this document.
UseCounters mUseCounters;
// Flags for use counters from resource documents, static clones,
// and SVG images referenced by this document. Those documents propagate
// their use counters up to here, which then count towards the top-level
// document's page use counters.
UseCounters mChildDocumentUseCounters;
// The CSS property use counters.
UniquePtr<StyleUseCounters> mStyleUseCounters;
TimeStamp mPageUnloadingEventTimeStamp;
RefPtr<DocGroup> mDocGroup;
RefPtr<nsCommandManager> mMidasCommandManager;
// The hashmap of all the tracking script URLs. URLs are added to this map by
// calling NoteScriptTrackingStatus(). Currently we assume that a URL not
// existing in the map means the corresponding script isn't a tracking script.
nsTHashMap<nsCStringHashKey, net::ClassificationFlags> mTrackingScripts;
// Pointer to our parser if we're currently in the process of being
// parsed into.
nsCOMPtr<nsIParser> mParser;
// If the document was created from the the prototype cache there will be a
// reference to the prototype document to allow tracing.
RefPtr<nsXULPrototypeDocument> mPrototypeDocument;
// Weak reference to our sink for in case we no longer have a parser. This
// will allow us to flush out any pending stuff from the sink even if
// EndLoad() has already happened.
nsWeakPtr mWeakSink;
// Our update nesting level
uint32_t mUpdateNestLevel;
// HTTPS-Only Mode Status
// Constants are defined at nsILoadInfo::HTTPS_ONLY_*
uint32_t mHttpsOnlyStatus;
enum ViewportType : uint8_t {
DisplayWidthHeight,
Specified,
Unknown,
};
ViewportType mViewportType;
// viewport-fit described by
// https://drafts.csswg.org/css-round-display/#viewport-fit-descriptor
ViewportFitType mViewportFit;
// https://drafts.csswg.org/css-viewport/#interactive-widget-section
dom::InteractiveWidget mInteractiveWidgetMode;
// XXXdholbert This should really be modernized to a nsTHashMap or similar,
// though note that the modernization will need to take care to also convert
// the special hash_table_ops logic (e.g. how SubDocClearEntry clears the
// parent document as part of cleaning up an entry in this table).
UniquePtr<PLDHashTable> mSubDocuments;
class HeaderData;
UniquePtr<HeaderData> mHeaderData;
nsTArray<net::EarlyHintConnectArgs> mEarlyHints;
class TitleChangeEvent;
nsRevocableEventPtr<TitleChangeEvent> mPendingTitleChangeEvent;
RefPtr<nsDOMNavigationTiming> mTiming;
// Recorded time of change to 'loading' state
// or time of the page gets restored from BFCache.
TimeStamp mLoadingOrRestoredFromBFCacheTimeStamp;
// Decided to use nsTObserverArray because it allows us to
// remove candidates while iterating them and this is what
// the spec defines. We could implement the spec without
// using nsTObserverArray, however using nsTObserverArray is more clear.
nsTObserverArray<nsWeakPtr> mAutoFocusCandidates;
nsCString mScrollToRef;
// Weak reference to the scope object (aka the script global object)
// that, unlike mScriptGlobalObject, is never unset once set. This
// is a weak reference to avoid leaks due to circular references.
nsWeakPtr mScopeObject;
// Array of intersection observers with active observations.
nsTArray<DOMIntersectionObserver*> mIntersectionObservers;
// Array of resize observers with active observations.
nsTArray<ResizeObserver*> mResizeObservers;
RefPtr<DOMIntersectionObserver> mLazyLoadObserver;
// Elements observed for a last remembered size.
// @see {@link https://drafts.csswg.org/css-sizing-4/#last-remembered}
nsTHashSet<RefPtr<Element>> mElementsObservedForLastRememberedSize;
// Stack of top layer elements.
nsTArray<nsWeakPtr> mTopLayer;
// Stack of open dialogs
// https://html.spec.whatwg.org/#open-dialogs-list
nsTArray<HTMLDialogElement*> mOpenDialogs;
// The last dialog pointer-down target
// https://html.spec.whatwg.org/#dialog-pointerdown-target
nsWeakPtr mLastDialogPointerdownTarget;
// The root of the doc tree in which this document is in. This is only
// non-null when this document is in fullscreen mode.
WeakPtr<Document> mFullscreenRoot;
RefPtr<DOMImplementation> mDOMImplementation;
RefPtr<nsContentList> mImageMaps;
// A set of responsive images keyed by address pointer.
nsTHashSet<HTMLImageElement*> mResponsiveContent;
RefPtr<DocumentTimeline> mDocumentTimeline;
LinkedList<DocumentTimeline> mTimelines;
RefPtr<dom::ScriptLoader> mScriptLoader;
// Tracker for scroll-driven animations that are waiting to start.
// nullptr until GetOrCreateScrollTimelineAnimationTracker is called.
RefPtr<ScrollTimelineAnimationTracker> mScrollTimelineAnimationTracker;
// A document "without a browsing context" that owns the content of
// HTMLTemplateElement.
RefPtr<Document> mTemplateContentsOwner;
dom::ExternalResourceMap mExternalResourceMap;
// ScreenOrientation "pending promise" as described by
// http://www.w3.org/TR/screen-orientation/
RefPtr<Promise> mOrientationPendingPromise;
nsTArray<RefPtr<nsFrameLoader>> mInitializableFrameLoaders;
nsTArray<nsCOMPtr<nsIRunnable>> mFrameLoaderFinalizers;
RefPtr<nsRunnableMethod<Document>> mFrameLoaderRunner;
nsTArray<PendingFrameStaticClone> mPendingFrameStaticClones;
// The layout history state that should be used by nodes in this
// document. We only actually store a pointer to it when:
// 1) We have no script global object.
// 2) We haven't had Destroy() called on us yet.
nsCOMPtr<nsILayoutHistoryState> mLayoutHistoryState;
// Mapping of wake lock types to sets of wake locks sentinels
// https://w3c.github.io/screen-wake-lock/#internal-slots
nsTHashMap<WakeLockType, nsTHashSet<RefPtr<WakeLockSentinel>>> mActiveLocks;
// The parsed viewport metadata of the last modified <meta name=viewport>
// element.
UniquePtr<ViewportMetaData> mLastModifiedViewportMetaData;
// A tree ordered list of all color-scheme meta tags in this document.
//
// TODO(emilio): There are other meta tags in the spec that have a similar
// processing model to color-scheme. We could store all in-document meta tags
// here to get sane and fast <meta> element processing.
TreeOrderedArray<HTMLMetaElement*> mColorSchemeMetaTags;
// These member variables cache information about the viewport so we don't
// have to recalculate it each time.
LayoutDeviceToScreenScale mScaleMinFloat;
LayoutDeviceToScreenScale mScaleMaxFloat;
LayoutDeviceToScreenScale mScaleFloat;
CSSToLayoutDeviceScale mPixelRatio;
CSSCoord mMinWidth;
CSSCoord mMaxWidth;
CSSCoord mMinHeight;
CSSCoord mMaxHeight;
RefPtr<EventListenerManager> mListenerManager;
nsCOMPtr<nsIRequest> mOnloadBlocker;
// Gecko-internal sheets used for extensions and such.
// Exposed to privileged script via nsIDOMWindowUtils.loadSheet.
nsTArray<RefPtr<StyleSheet>> mAdditionalSheets[AdditionalSheetTypeCount];
// Member to store out last-selected stylesheet set.
nsString mLastStyleSheetSet;
nsString mPreferredStyleSheetSet;
RefPtr<DOMStyleSheetSetList> mStyleSheetSetList;
// We lazily calculate declaration blocks for elements with mapped
// attributes. This set contains all elements which need lazy resolution.
nsTHashSet<Element*> mLazyPresElements;
nsTHashSet<RefPtr<nsAtom>> mLanguagesUsed;
// TODO(emilio): Is this hot enough to warrant to be cached?
// EncodingToLang.cpp keeps the atom alive until shutdown, so
// no need for a RefPtr.
nsAtom* mLanguageFromCharset;
// Restyle root for servo's style system.
//
// We store this as an nsINode, rather than as an Element, so that we can
// store the Document node as the restyle root if the entire document (along
// with all document-level native-anonymous content) needs to be restyled.
//
// We also track which "descendant" bits (normal/animation-only/lazy-fc) the
// root corresponds to.
nsCOMPtr<nsINode> mServoRestyleRoot;
uint32_t mServoRestyleRootDirtyBits;
// Used in conjunction with the create-an-element-for-the-token algorithm to
// prevent custom element constructors from being able to use document.open(),
// document.close(), and document.write() when they are invoked by the parser.
uint32_t mThrowOnDynamicMarkupInsertionCounter;
// Count of unload/beforeunload/pagehide operations in progress.
uint32_t mIgnoreOpensDuringUnloadCounter;
nsCOMPtr<nsIDOMXULCommandDispatcher>
mCommandDispatcher; // [OWNER] of the focus tracker
RefPtr<XULBroadcastManager> mXULBroadcastManager;
RefPtr<XULPersist> mXULPersist;
RefPtr<ChromeObserver> mChromeObserver;
RefPtr<HTMLAllCollection> mAll;
// The active view transition.
// https://drafts.csswg.org/css-view-transitions-1/#document-active-view-transition
RefPtr<ViewTransition> mActiveViewTransition;
// The update callback queue.
// https://drafts.csswg.org/css-view-transitions-1/#document-update-callback-queue
nsTArray<RefPtr<ViewTransition>> mViewTransitionUpdateCallbacks;
nsTHashSet<RefPtr<WorkerDocumentListener>> mWorkerListeners;
// Pres shell resolution saved before entering fullscreen mode.
float mSavedResolution;
nsCOMPtr<nsICookieJarSettings> mCookieJarSettings;
bool mHasStoragePermission;
net::ClassificationFlags mClassificationFlags;
// Document generation. Gets incremented everytime it changes.
int32_t mGeneration;
// Cached TabSizes values for the document.
int32_t mCachedTabSizeGeneration;
nsTabSizes mCachedTabSizes;
// This is equal to document's principal but with an isolation key. See
// StoragePrincipalHelper.h to know more.
nsCOMPtr<nsIPrincipal> mPartitionedPrincipal;
// The cached storage principal for this document.
// This is mutable so that we can keep EffectiveStoragePrincipal() const
// which is required due to its CloneDocHelper() call site. :-(
mutable nsCOMPtr<nsIPrincipal> mActiveStoragePrincipal;
// The cached cookie principal for this document.
// This is mutable so that we can keep EffectiveCookiePrincipal() const
// which is required due to its CloneDocHelper() call site. :-(
mutable nsCOMPtr<nsIPrincipal> mActiveCookiePrincipal;
// https://fullscreen.spec.whatwg.org/#list-of-pending-fullscreen-events
nsTArray<UniquePtr<PendingFullscreenEvent>> mPendingFullscreenEvents;
// See GetNextFormNumber and GetNextControlNumber.
int32_t mNextFormNumber;
int32_t mNextControlNumber;
uint32_t mMediaElementWithMSECount = 0;
// Scope preloads per document. This is used by speculative loading as well.
PreloadService mPreloadService;
// See NotifyFetchOrXHRSuccess and SetNotifyFetchSuccess.
bool mShouldNotifyFetchSuccess;
// See SetNotifyFormOrPasswordRemoved and ShouldNotifyFormOrPasswordRemoved.
bool mShouldNotifyFormOrPasswordRemoved;
// Used by the shadowed_html_document_property_access telemetry probe to
// collected shadowed HTMLDocument properties. (Limited to 10 entries)
nsTArray<nsString> mShadowedHTMLDocumentProperties;
// Used by the shadowed_html_form_element_property_access telemetry probe to
// collected shadowed HTMLFormElement properties. (Limited to 10 entries)
nsTArray<nsString> mShadowedHTMLFormElementProperties;
// Collection of data used by the pageload event.
PageloadEventData mPageloadEventData;
// Record page load telemetry
void RecordPageLoadEventTelemetry();
// Accumulate JS telemetry collected
void AccumulateJSTelemetry();
// Accumulate page load metrics
void AccumulatePageLoadTelemetry();
// The OOP counterpart to nsDocLoader::mChildrenInOnload.
// Not holding strong refs here since we don't actually use the BBCs.
nsTArray<const BrowserBridgeChild*> mOOPChildrenLoading;
// Registry of custom highlight definitions associated with this document.
RefPtr<class HighlightRegistry> mHighlightRegistry;
// Used for tracking a number of recent canvas extractions (e.g. toDataURL),
// this is used for a canvas fingerprinter detection heuristic.
nsTArray<CanvasUsage> mCanvasUsage;
uint64_t mLastCanvasUsage = 0;
RefPtr<class FragmentDirective> mFragmentDirective;
UniquePtr<RadioGroupContainer> mRadioGroupContainer;
public:
// Needs to be public because the bindings code pokes at it.
JS::ExpandoAndGeneration mExpandoAndGeneration;
bool HasPendingInitialTranslation();
nsRefPtrHashtable<nsRefPtrHashKey<Element>, nsXULPrototypeElement>
mL10nProtoElements;
void LoadEventFired();
RadioGroupContainer& OwnedRadioGroupContainer();
MOZ_CAN_RUN_SCRIPT static already_AddRefed<Document> ParseHTMLUnsafe(
GlobalObject& aGlobal, const TrustedHTMLOrString& aHTML,
const SetHTMLUnsafeOptions& aOptions, nsIPrincipal* aSubjectPrincipal,
ErrorResult& aError);
static already_AddRefed<Document> ParseHTML(GlobalObject& aGlobal,
const nsAString& aHTML,
const SetHTMLOptions& aOptions,
ErrorResult& aError);
};
/**
* mozAutoSubtreeModified batches DOM mutations so that a DOMSubtreeModified
* event is dispatched, if necessary, when the outermost mozAutoSubtreeModified
* object is deleted.
*/
class MOZ_STACK_CLASS mozAutoSubtreeModified {
public:
/**
* @param aSubTreeOwner The document in which a subtree will be modified.
* @param aTarget The target of the possible DOMSubtreeModified event.
* Can be nullptr, in which case mozAutoSubtreeModified
* is just used to batch DOM mutations.
*/
mozAutoSubtreeModified(Document* aSubtreeOwner, nsINode* aTarget) {
UpdateTarget(aSubtreeOwner, aTarget);
}
~mozAutoSubtreeModified() { UpdateTarget(nullptr, nullptr); }
void UpdateTarget(Document* aSubtreeOwner, nsINode* aTarget) {
if (mSubtreeOwner) {
mSubtreeOwner->MutationEventDispatched(mTarget);
}
mTarget = aTarget;
mSubtreeOwner = aSubtreeOwner;
if (mSubtreeOwner) {
mSubtreeOwner->WillDispatchMutationEvent(mTarget);
}
}
private:
nsCOMPtr<nsINode> mTarget;
RefPtr<Document> mSubtreeOwner;
};
enum class SyncOperationBehavior { eSuspendInput, eAllowInput };
class AutoWalkBrowsingContextGroup {
public:
virtual ~AutoWalkBrowsingContextGroup() = default;
protected:
void SuppressBrowsingContext(BrowsingContext* aContext);
void SuppressBrowsingContextGroup(BrowsingContextGroup* aGroup);
void UnsuppressDocuments() {
for (const auto& doc : mDocuments) {
UnsuppressDocument(doc);
}
}
virtual void SuppressDocument(Document* aDocument) = 0;
virtual void UnsuppressDocument(Document* aDocument) = 0;
AutoTArray<RefPtr<Document>, 16> mDocuments;
};
class MOZ_RAII nsAutoSyncOperation : private AutoWalkBrowsingContextGroup {
public:
explicit nsAutoSyncOperation(Document* aDocument,
SyncOperationBehavior aSyncBehavior);
~nsAutoSyncOperation();
protected:
void SuppressDocument(Document* aDocument) override;
void UnsuppressDocument(Document* aDocument) override;
private:
uint32_t mMicroTaskLevel;
const SyncOperationBehavior mSyncBehavior;
RefPtr<BrowsingContext> mBrowsingContext;
};
class MOZ_RAII AutoSetThrowOnDynamicMarkupInsertionCounter final {
public:
explicit AutoSetThrowOnDynamicMarkupInsertionCounter(Document* aDocument)
: mDocument(aDocument) {
mDocument->IncrementThrowOnDynamicMarkupInsertionCounter();
}
~AutoSetThrowOnDynamicMarkupInsertionCounter() {
mDocument->DecrementThrowOnDynamicMarkupInsertionCounter();
}
private:
Document* mDocument;
};
class MOZ_RAII IgnoreOpensDuringUnload final {
public:
explicit IgnoreOpensDuringUnload(Document* aDoc) : mDoc(aDoc) {
mDoc->IncrementIgnoreOpensDuringUnloadCounter();
}
~IgnoreOpensDuringUnload() {
mDoc->DecrementIgnoreOpensDuringUnloadCounter();
}
private:
Document* mDoc;
};
bool IsInFocusedTab(Document* aDoc);
// This covers all cases covered by IsInFocusedTab, but also ensures that
// focused tab is "active" meaning not occluded.
bool IsInActiveTab(Document* aDoc);
} // namespace mozilla::dom
NON_VIRTUAL_ADDREF_RELEASE(mozilla::dom::Document)
// XXX These belong somewhere else
nsresult NS_NewHTMLDocument(mozilla::dom::Document** aInstancePtrResult,
nsIPrincipal* aPrincipal,
nsIPrincipal* aPartitionedPrincipal,
bool aLoadedAsData = false);
nsresult NS_NewXMLDocument(mozilla::dom::Document** aInstancePtrResult,
nsIPrincipal* aPrincipal,
nsIPrincipal* aPartitionedPrincipal,
bool aLoadedAsData = false,
bool aIsPlainDocument = false);
nsresult NS_NewSVGDocument(mozilla::dom::Document** aInstancePtrResult,
nsIPrincipal* aPrincipal,
nsIPrincipal* aPartitionedPrincipal);
nsresult NS_NewImageDocument(mozilla::dom::Document** aInstancePtrResult,
nsIPrincipal* aPrincipal,
nsIPrincipal* aPartitionedPrincipal);
nsresult NS_NewVideoDocument(mozilla::dom::Document** aInstancePtrResult,
nsIPrincipal* aPrincipal,
nsIPrincipal* aPartitionedPrincipal);
// Enum for requesting a particular type of document when creating a doc
enum class DocumentFlavor : uint8_t {
LegacyGuess, // compat with old code until made HTML5-compliant
HTML, // HTMLDocument with HTMLness bit set to true
SVG, // SVGDocument
XML, // XMLDocument
Plain, // Just a Document
};
// Note: it's the caller's responsibility to create or get aPrincipal as needed
// -- this method will not attempt to get a principal based on aDocumentURI.
// Also, both aDocumentURI and aBaseURI must not be null.
nsresult NS_NewDOMDocument(
mozilla::dom::Document** aInstancePtrResult, const nsAString& aNamespaceURI,
const nsAString& aQualifiedName, mozilla::dom::DocumentType* aDoctype,
nsIURI* aDocumentURI, nsIURI* aBaseURI, nsIPrincipal* aPrincipal,
bool aLoadedAsData, nsIGlobalObject* aEventObject, DocumentFlavor aFlavor);
inline mozilla::dom::Document* nsINode::GetOwnerDocument() const {
mozilla::dom::Document* ownerDoc = OwnerDoc();
return ownerDoc != this ? ownerDoc : nullptr;
}
inline nsINode* nsINode::OwnerDocAsNode() const { return OwnerDoc(); }
inline mozilla::dom::Document* nsINode::AsDocument() {
MOZ_ASSERT(IsDocument());
return static_cast<mozilla::dom::Document*>(this);
}
inline const mozilla::dom::Document* nsINode::AsDocument() const {
MOZ_ASSERT(IsDocument());
return static_cast<const mozilla::dom::Document*>(this);
}
inline nsISupports* ToSupports(mozilla::dom::Document* aDoc) {
return static_cast<nsINode*>(aDoc);
}
#endif /* mozilla_dom_Document_h___ */
|