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
|
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*-
* 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/. */
var { XPCOMUtils } = ChromeUtils.importESModule(
"resource://gre/modules/XPCOMUtils.sys.mjs"
);
var { AppConstants } = ChromeUtils.importESModule(
"resource://gre/modules/AppConstants.sys.mjs"
);
// lazy module getters
ChromeUtils.defineESModuleGetters(this, {
AMTelemetry: "resource://gre/modules/AddonManager.sys.mjs",
AboutNewTab: "resource:///modules/AboutNewTab.sys.mjs",
AboutReaderParent: "resource:///actors/AboutReaderParent.sys.mjs",
ActionsProviderContextualSearch:
"resource:///modules/ActionsProviderContextualSearch.sys.mjs",
AddonManager: "resource://gre/modules/AddonManager.sys.mjs",
BrowserTelemetryUtils: "resource://gre/modules/BrowserTelemetryUtils.sys.mjs",
BrowserUIUtils: "resource:///modules/BrowserUIUtils.sys.mjs",
BrowserUsageTelemetry: "resource:///modules/BrowserUsageTelemetry.sys.mjs",
BrowserWindowTracker: "resource:///modules/BrowserWindowTracker.sys.mjs",
CFRPageActions: "resource:///modules/asrouter/CFRPageActions.sys.mjs",
Color: "resource://gre/modules/Color.sys.mjs",
ContentAnalysis: "resource:///modules/ContentAnalysis.sys.mjs",
ContextualIdentityService:
"resource://gre/modules/ContextualIdentityService.sys.mjs",
CustomizableUI: "resource:///modules/CustomizableUI.sys.mjs",
DevToolsSocketStatus:
"resource://devtools/shared/security/DevToolsSocketStatus.sys.mjs",
DownloadUtils: "resource://gre/modules/DownloadUtils.sys.mjs",
DownloadsCommon: "resource:///modules/DownloadsCommon.sys.mjs",
E10SUtils: "resource://gre/modules/E10SUtils.sys.mjs",
ExtensionsUI: "resource:///modules/ExtensionsUI.sys.mjs",
HomePage: "resource:///modules/HomePage.sys.mjs",
LightweightThemeConsumer:
"resource://gre/modules/LightweightThemeConsumer.sys.mjs",
LoginHelper: "resource://gre/modules/LoginHelper.sys.mjs",
LoginManagerParent: "resource://gre/modules/LoginManagerParent.sys.mjs",
MigrationUtils: "resource:///modules/MigrationUtils.sys.mjs",
NetUtil: "resource://gre/modules/NetUtil.sys.mjs",
NewTabPagePreloading:
"moz-src:///browser/components/tabbrowser/NewTabPagePreloading.sys.mjs",
NewTabUtils: "resource://gre/modules/NewTabUtils.sys.mjs",
NimbusFeatures: "resource://nimbus/ExperimentAPI.sys.mjs",
nsContextMenu: "chrome://browser/content/nsContextMenu.sys.mjs",
OpenInTabsUtils:
"moz-src:///browser/components/tabbrowser/OpenInTabsUtils.sys.mjs",
OpenSearchManager:
"moz-src:///browser/components/search/OpenSearchManager.sys.mjs",
PageActions: "resource:///modules/PageActions.sys.mjs",
PageThumbs: "resource://gre/modules/PageThumbs.sys.mjs",
PanelMultiView: "resource:///modules/PanelMultiView.sys.mjs",
PanelView: "resource:///modules/PanelMultiView.sys.mjs",
PictureInPicture: "resource://gre/modules/PictureInPicture.sys.mjs",
PlacesTransactions: "resource://gre/modules/PlacesTransactions.sys.mjs",
PlacesUIUtils: "moz-src:///browser/components/places/PlacesUIUtils.sys.mjs",
PlacesUtils: "resource://gre/modules/PlacesUtils.sys.mjs",
PopupBlockerObserver: "resource:///modules/PopupBlockerObserver.sys.mjs",
PrivateBrowsingUtils: "resource://gre/modules/PrivateBrowsingUtils.sys.mjs",
ProcessHangMonitor: "resource:///modules/ProcessHangMonitor.sys.mjs",
ProfilesDatastoreService:
"moz-src:///toolkit/profile/ProfilesDatastoreService.sys.mjs",
PromptUtils: "resource://gre/modules/PromptUtils.sys.mjs",
ReaderMode: "moz-src:///toolkit/components/reader/ReaderMode.sys.mjs",
ResetPBMPanel: "resource:///modules/ResetPBMPanel.sys.mjs",
SafeBrowsing: "resource://gre/modules/SafeBrowsing.sys.mjs",
Sanitizer: "resource:///modules/Sanitizer.sys.mjs",
ScreenshotsUtils: "resource:///modules/ScreenshotsUtils.sys.mjs",
SearchUIUtils: "moz-src:///browser/components/search/SearchUIUtils.sys.mjs",
SelectableProfileService:
"resource:///modules/profiles/SelectableProfileService.sys.mjs",
SessionStartup: "resource:///modules/sessionstore/SessionStartup.sys.mjs",
SessionStore: "resource:///modules/sessionstore/SessionStore.sys.mjs",
SessionWindowUI: "resource:///modules/sessionstore/SessionWindowUI.sys.mjs",
SharingUtils: "resource:///modules/SharingUtils.sys.mjs",
ShortcutUtils: "resource://gre/modules/ShortcutUtils.sys.mjs",
SiteDataManager: "resource:///modules/SiteDataManager.sys.mjs",
SitePermissions: "resource:///modules/SitePermissions.sys.mjs",
SubDialog: "resource://gre/modules/SubDialog.sys.mjs",
SubDialogManager: "resource://gre/modules/SubDialog.sys.mjs",
TabCrashHandler: "resource:///modules/ContentCrashHandlers.sys.mjs",
TabsSetupFlowManager:
"resource:///modules/firefox-view-tabs-setup-manager.sys.mjs",
TaskbarTabsChrome:
"resource:///modules/taskbartabs/TaskbarTabsChrome.sys.mjs",
TelemetryEnvironment: "resource://gre/modules/TelemetryEnvironment.sys.mjs",
ToolbarContextMenu: "resource:///modules/ToolbarContextMenu.sys.mjs",
ToolbarDropHandler: "resource:///modules/ToolbarDropHandler.sys.mjs",
ToolbarIconColor: "moz-src:///browser/themes/ToolbarIconColor.sys.mjs",
TranslationsParent: "resource://gre/actors/TranslationsParent.sys.mjs",
UITour: "moz-src:///browser/components/uitour/UITour.sys.mjs",
UpdateUtils: "resource://gre/modules/UpdateUtils.sys.mjs",
URILoadingHelper: "resource:///modules/URILoadingHelper.sys.mjs",
UrlbarInput: "resource:///modules/UrlbarInput.sys.mjs",
UrlbarPrefs: "resource:///modules/UrlbarPrefs.sys.mjs",
UrlbarProviderSearchTips:
"resource:///modules/UrlbarProviderSearchTips.sys.mjs",
UrlbarTokenizer: "resource:///modules/UrlbarTokenizer.sys.mjs",
UrlbarUtils: "resource:///modules/UrlbarUtils.sys.mjs",
UrlbarValueFormatter: "resource:///modules/UrlbarValueFormatter.sys.mjs",
Weave: "resource://services-sync/main.sys.mjs",
WebNavigationFrames: "resource://gre/modules/WebNavigationFrames.sys.mjs",
webrtcUI: "resource:///modules/webrtcUI.sys.mjs",
WebsiteFilter: "resource:///modules/policies/WebsiteFilter.sys.mjs",
ZoomUI: "resource:///modules/ZoomUI.sys.mjs",
});
ChromeUtils.defineLazyGetter(this, "fxAccounts", () => {
return ChromeUtils.importESModule(
"resource://gre/modules/FxAccounts.sys.mjs"
).getFxAccountsSingleton();
});
XPCOMUtils.defineLazyScriptGetter(
this,
["BrowserCommands", "kSkipCacheFlags"],
"chrome://browser/content/browser-commands.js"
);
XPCOMUtils.defineLazyScriptGetter(
this,
"PlacesTreeView",
"chrome://browser/content/places/treeView.js"
);
XPCOMUtils.defineLazyScriptGetter(
this,
["PlacesInsertionPoint", "PlacesController", "PlacesControllerDragHelper"],
"chrome://browser/content/places/controller.js"
);
XPCOMUtils.defineLazyScriptGetter(
this,
"PrintUtils",
"chrome://global/content/printUtils.js"
);
XPCOMUtils.defineLazyScriptGetter(
this,
"ZoomManager",
"chrome://global/content/viewZoomOverlay.js"
);
XPCOMUtils.defineLazyScriptGetter(
this,
"FullZoom",
"chrome://browser/content/tabbrowser/browser-fullZoom.js"
);
XPCOMUtils.defineLazyScriptGetter(
this,
"PanelUI",
"chrome://browser/content/customizableui/panelUI.js"
);
XPCOMUtils.defineLazyScriptGetter(
this,
"gViewSourceUtils",
"chrome://global/content/viewSourceUtils.js"
);
XPCOMUtils.defineLazyScriptGetter(
this,
"gTabsPanel",
"chrome://browser/content/tabbrowser/browser-allTabsMenu.js"
);
XPCOMUtils.defineLazyScriptGetter(
this,
[
"BrowserAddonUI",
"gExtensionsNotifications",
"gUnifiedExtensions",
"gXPInstallObserver",
],
"chrome://browser/content/browser-addons.js"
);
XPCOMUtils.defineLazyScriptGetter(
this,
"ctrlTab",
"chrome://browser/content/tabbrowser/browser-ctrlTab.js"
);
XPCOMUtils.defineLazyScriptGetter(
this,
["CustomizationHandler", "AutoHideMenubar"],
"chrome://browser/content/browser-customization.js"
);
XPCOMUtils.defineLazyScriptGetter(
this,
["PointerLock", "FullScreen"],
"chrome://browser/content/browser-fullScreenAndPointerLock.js"
);
XPCOMUtils.defineLazyScriptGetter(
this,
"gIdentityHandler",
"chrome://browser/content/browser-siteIdentity.js"
);
XPCOMUtils.defineLazyScriptGetter(
this,
"gPermissionPanel",
"chrome://browser/content/browser-sitePermissionPanel.js"
);
XPCOMUtils.defineLazyScriptGetter(
this,
"SelectTranslationsPanel",
"chrome://browser/content/translations/selectTranslationsPanel.js"
);
XPCOMUtils.defineLazyScriptGetter(
this,
"FullPageTranslationsPanel",
"chrome://browser/content/translations/fullPageTranslationsPanel.js"
);
XPCOMUtils.defineLazyScriptGetter(
this,
"gProtectionsHandler",
"chrome://browser/content/browser-siteProtections.js"
);
XPCOMUtils.defineLazyScriptGetter(
this,
["gGestureSupport", "gHistorySwipeAnimation"],
"chrome://browser/content/browser-gestureSupport.js"
);
XPCOMUtils.defineLazyScriptGetter(
this,
"gSafeBrowsing",
"chrome://browser/content/browser-safebrowsing.js"
);
XPCOMUtils.defineLazyScriptGetter(
this,
"gSync",
"chrome://browser/content/browser-sync.js"
);
XPCOMUtils.defineLazyScriptGetter(
this,
"gBrowserThumbnails",
"chrome://browser/content/browser-thumbnails.js"
);
XPCOMUtils.defineLazyScriptGetter(
this,
[
"DownloadsPanel",
"DownloadsOverlayLoader",
"DownloadsView",
"DownloadsViewUI",
"DownloadsViewController",
"DownloadsSummary",
"DownloadsFooter",
"DownloadsBlockedSubview",
],
"chrome://browser/content/downloads/downloads.js"
);
XPCOMUtils.defineLazyScriptGetter(
this,
["DownloadsButton", "DownloadsIndicatorView"],
"chrome://browser/content/downloads/indicator.js"
);
XPCOMUtils.defineLazyScriptGetter(
this,
"gEditItemOverlay",
"chrome://browser/content/places/editBookmark.js"
);
XPCOMUtils.defineLazyScriptGetter(
this,
"gGfxUtils",
"chrome://browser/content/browser-graphics-utils.js"
);
XPCOMUtils.defineLazyScriptGetter(
this,
"ToolbarKeyboardNavigator",
"chrome://browser/content/browser-toolbarKeyNav.js"
);
XPCOMUtils.defineLazyScriptGetter(
this,
"A11yUtils",
"chrome://browser/content/browser-a11yUtils.js"
);
XPCOMUtils.defineLazyScriptGetter(
this,
"gSharedTabWarning",
"chrome://browser/content/browser-webrtc.js"
);
XPCOMUtils.defineLazyScriptGetter(
this,
"gPageStyleMenu",
"chrome://browser/content/browser-pagestyle.js"
);
XPCOMUtils.defineLazyScriptGetter(
this,
"gProfiles",
"chrome://browser/content/browser-profiles.js"
);
// lazy service getters
XPCOMUtils.defineLazyServiceGetters(this, {
ContentPrefService2: [
"@mozilla.org/content-pref/service;1",
"nsIContentPrefService2",
],
classifierService: [
"@mozilla.org/url-classifier/dbservice;1",
"nsIURIClassifier",
],
Favicons: ["@mozilla.org/browser/favicon-service;1", "nsIFaviconService"],
WindowsUIUtils: ["@mozilla.org/windows-ui-utils;1", "nsIWindowsUIUtils"],
BrowserHandler: ["@mozilla.org/browser/clh;1", "nsIBrowserHandler"],
});
if (AppConstants.ENABLE_WEBDRIVER) {
XPCOMUtils.defineLazyServiceGetter(
this,
"Marionette",
"@mozilla.org/remote/marionette;1",
"nsIMarionette"
);
XPCOMUtils.defineLazyServiceGetter(
this,
"RemoteAgent",
"@mozilla.org/remote/agent;1",
"nsIRemoteAgent"
);
} else {
this.Marionette = { running: false };
this.RemoteAgent = { running: false };
}
ChromeUtils.defineLazyGetter(this, "RTL_UI", () => {
return Services.locale.isAppLocaleRTL;
});
function gLocaleChangeObserver() {
delete window.RTL_UI;
window.RTL_UI = Services.locale.isAppLocaleRTL;
}
ChromeUtils.defineLazyGetter(this, "gBrandBundle", () => {
return Services.strings.createBundle(
"chrome://branding/locale/brand.properties"
);
});
ChromeUtils.defineLazyGetter(this, "gBrowserBundle", () => {
return Services.strings.createBundle(
"chrome://browser/locale/browser.properties"
);
});
ChromeUtils.defineLazyGetter(this, "gCustomizeMode", () => {
let { CustomizeMode } = ChromeUtils.importESModule(
"resource:///modules/CustomizeMode.sys.mjs"
);
return new CustomizeMode(window);
});
ChromeUtils.defineLazyGetter(this, "gNavToolbox", () => {
return document.getElementById("navigator-toolbox");
});
ChromeUtils.defineLazyGetter(this, "gURLBar", () => {
let urlbar = new UrlbarInput({
textbox: document.getElementById("urlbar"),
eventTelemetryCategory: "urlbar",
});
let beforeFocusOrSelect = event => {
// In customize mode, the url bar is disabled. If a new tab is opened or the
// user switches to a different tab, this function gets called before we've
// finished leaving customize mode, and the url bar will still be disabled.
// We can't focus it when it's disabled, so we need to re-run ourselves when
// we've finished leaving customize mode.
if (
CustomizationHandler.isCustomizing() ||
CustomizationHandler.isExitingCustomizeMode
) {
gNavToolbox.addEventListener(
"aftercustomization",
() => {
if (event.type == "beforeselect") {
gURLBar.select();
} else {
gURLBar.focus();
}
},
{
once: true,
}
);
event.preventDefault();
return;
}
if (window.fullScreen) {
FullScreen.showNavToolbox();
}
};
urlbar.addEventListener("beforefocus", beforeFocusOrSelect);
urlbar.addEventListener("beforeselect", beforeFocusOrSelect);
return urlbar;
});
// High priority notification bars shown at the top of the window.
ChromeUtils.defineLazyGetter(this, "gNotificationBox", () => {
let securityDelayMS = Services.prefs.getIntPref(
"security.notification_enable_delay"
);
return new MozElements.NotificationBox(element => {
element.classList.add("global-notificationbox");
element.setAttribute("notificationside", "top");
element.setAttribute("prepend-notifications", true);
// We want this before the tab notifications.
document.getElementById("notifications-toolbar").prepend(element);
}, securityDelayMS);
});
ChromeUtils.defineLazyGetter(this, "InlineSpellCheckerUI", () => {
let { InlineSpellChecker } = ChromeUtils.importESModule(
"resource://gre/modules/InlineSpellChecker.sys.mjs"
);
return new InlineSpellChecker();
});
ChromeUtils.defineLazyGetter(this, "PopupNotifications", () => {
// eslint-disable-next-line no-shadow
let { PopupNotifications } = ChromeUtils.importESModule(
"resource://gre/modules/PopupNotifications.sys.mjs"
);
try {
// Hide all PopupNotifications while the the address bar has focus,
// including the virtual focus in the results popup, and the URL is being
// edited or the page proxy state is invalid while async tab switching.
let shouldSuppress = () => {
// "Blank" pages, like about:welcome, have a pageproxystate of "invalid", but
// popups like CFRs should not automatically be suppressed when the address
// bar has focus on these pages as it disrupts user navigation using FN+F6.
// See `UrlbarInput.setURI()` where pageproxystate is set to "invalid" for
// all pages that the "isBlankPageURL" method returns true for.
const urlBarEdited = isBlankPageURL(gBrowser.currentURI.spec)
? gURLBar.hasAttribute("usertyping")
: gURLBar.getAttribute("pageproxystate") != "valid";
return (
(urlBarEdited && gURLBar.focused) ||
(gURLBar.getAttribute("pageproxystate") != "valid" &&
gBrowser.selectedBrowser._awaitingSetURI) ||
shouldSuppressPopupNotifications()
);
};
// Before a Popup is shown, check that its anchor is visible.
// If the anchor is not visible, use one of the fallbacks.
// If no fallbacks are visible, return null.
const getVisibleAnchorElement = anchorElement => {
// If the anchor element is present in the Urlbar,
// ensure that both the anchor and page URL are visible.
gURLBar.maybeHandleRevertFromPopup(anchorElement);
anchorElement?.dispatchEvent(
new CustomEvent("PopupNotificationsBeforeAnchor", { bubbles: true })
);
if (anchorElement?.checkVisibility()) {
return anchorElement;
}
let fallback = [
document.getElementById("searchmode-switcher-icon"),
document.getElementById("identity-icon"),
gURLBar.querySelector(".urlbar-search-button"),
document.getElementById("remote-control-icon"),
];
return fallback.find(element => element?.checkVisibility()) ?? null;
};
return new PopupNotifications(
gBrowser,
document.getElementById("notification-popup"),
document.getElementById("notification-popup-box"),
{ shouldSuppress, getVisibleAnchorElement }
);
} catch (ex) {
console.error(ex);
return null;
}
});
ChromeUtils.defineLazyGetter(this, "MacUserActivityUpdater", () => {
if (AppConstants.platform != "macosx") {
return null;
}
return Cc["@mozilla.org/widget/macuseractivityupdater;1"].getService(
Ci.nsIMacUserActivityUpdater
);
});
ChromeUtils.defineLazyGetter(this, "Win7Features", () => {
if (AppConstants.platform != "win") {
return null;
}
const WINTASKBAR_CONTRACTID = "@mozilla.org/windows-taskbar;1";
if (
WINTASKBAR_CONTRACTID in Cc &&
Cc[WINTASKBAR_CONTRACTID].getService(Ci.nsIWinTaskbar).available
) {
let { AeroPeek } = ChromeUtils.importESModule(
"resource:///modules/WindowsPreviewPerTab.sys.mjs"
);
return {
onOpenWindow() {
AeroPeek.onOpenWindow(window);
this.handledOpening = true;
},
onCloseWindow() {
if (this.handledOpening) {
AeroPeek.onCloseWindow(window);
}
},
handledOpening: false,
};
}
return null;
});
ChromeUtils.defineLazyGetter(this, "gRestoreLastSessionObserver", () => {
let { RestoreLastSessionObserver } = ChromeUtils.importESModule(
"resource:///modules/sessionstore/SessionWindowUI.sys.mjs"
);
return new RestoreLastSessionObserver(window);
});
XPCOMUtils.defineLazyPreferenceGetter(
this,
"gToolbarKeyNavEnabled",
"browser.toolbars.keyboard_navigation",
false,
(aPref, aOldVal, aNewVal) => {
if (window.closed) {
return;
}
if (aNewVal) {
ToolbarKeyboardNavigator.init();
} else {
ToolbarKeyboardNavigator.uninit();
}
}
);
XPCOMUtils.defineLazyPreferenceGetter(
this,
"gBookmarksToolbarVisibility",
"browser.toolbars.bookmarks.visibility",
"newtab"
);
XPCOMUtils.defineLazyPreferenceGetter(
this,
"gFxaToolbarEnabled",
"identity.fxaccounts.toolbar.enabled",
false,
(aPref, aOldVal, aNewVal) => {
updateFxaToolbarMenu(aNewVal);
}
);
XPCOMUtils.defineLazyPreferenceGetter(
this,
"gFxaToolbarAccessed",
"identity.fxaccounts.toolbar.accessed",
false,
() => {
updateFxaToolbarMenu(gFxaToolbarEnabled);
}
);
XPCOMUtils.defineLazyPreferenceGetter(
this,
"gAddonAbuseReportEnabled",
"extensions.abuseReport.enabled",
false
);
XPCOMUtils.defineLazyPreferenceGetter(
this,
"gMiddleClickNewTabUsesPasteboard",
"browser.tabs.searchclipboardfor.middleclick",
true
);
XPCOMUtils.defineLazyPreferenceGetter(
this,
"gPrintEnabled",
"print.enabled",
false,
(aPref, aOldVal, aNewVal) => {
updatePrintCommands(aNewVal);
}
);
XPCOMUtils.defineLazyPreferenceGetter(
this,
"gTranslationsEnabled",
"browser.translations.enable",
false
);
XPCOMUtils.defineLazyPreferenceGetter(
this,
"gUseFeltPrivacyUI",
"browser.privatebrowsing.felt-privacy-v1",
false
);
customElements.setElementCreationCallback("screenshots-buttons", () => {
Services.scriptloader.loadSubScript(
"chrome://browser/content/screenshots/screenshots-buttons.js",
window
);
});
customElements.setElementCreationCallback("fxa-menu-message", () => {
ChromeUtils.importESModule(
"chrome://browser/content/asrouter/components/fxa-menu-message.mjs",
{ global: "current" }
);
});
var gBrowser;
var gContextMenu = null; // nsContextMenu instance
var gMultiProcessBrowser = window.docShell.QueryInterface(
Ci.nsILoadContext
).useRemoteTabs;
var gFissionBrowser = window.docShell.QueryInterface(
Ci.nsILoadContext
).useRemoteSubframes;
var gBrowserAllowScriptsToCloseInitialTabs = false;
if (AppConstants.platform != "macosx") {
var gEditUIVisible = true;
}
Object.defineProperty(this, "gReduceMotion", {
enumerable: true,
get() {
return typeof gReduceMotionOverride == "boolean"
? gReduceMotionOverride
: gReduceMotionSetting;
},
});
// Reduce motion during startup. The setting will be reset later.
let gReduceMotionSetting = true;
// This is for tests to set.
var gReduceMotionOverride;
// Smart getter for the findbar. If you don't wish to force the creation of
// the findbar, check gFindBarInitialized first.
Object.defineProperty(this, "gFindBar", {
enumerable: true,
get() {
return gBrowser.getCachedFindBar();
},
});
Object.defineProperty(this, "gFindBarInitialized", {
enumerable: true,
get() {
return gBrowser.isFindBarInitialized();
},
});
Object.defineProperty(this, "gFindBarPromise", {
enumerable: true,
get() {
return gBrowser.getFindBar();
},
});
function shouldSuppressPopupNotifications() {
// We have to hide notifications explicitly when the window is
// minimized because of the effects of the "noautohide" attribute on Linux.
// This can be removed once bug 545265 and bug 1320361 are fixed.
// Hide popup notifications when system tab prompts are shown so they
// don't cover up the prompt.
return (
window.windowState == window.STATE_MINIMIZED ||
gBrowser?.selectedBrowser.hasAttribute("tabDialogShowing") ||
gDialogBox?.isOpen
);
}
async function gLazyFindCommand(cmd, ...args) {
let fb = await gFindBarPromise;
// We could be closed by now, or the tab with XBL binding could have gone away:
if (fb && fb[cmd]) {
fb[cmd].apply(fb, args);
}
}
var gPageIcons = {
"about:home": "chrome://branding/content/icon32.png",
"about:newtab": "chrome://branding/content/icon32.png",
"about:welcome": "chrome://branding/content/icon32.png",
"about:privatebrowsing": "chrome://browser/skin/privatebrowsing/favicon.svg",
};
var gInitialPages = [
"about:blank",
"about:home",
"about:firefoxview",
"about:newtab",
"about:privatebrowsing",
"about:sessionrestore",
"about:welcome",
"about:welcomeback",
"chrome://browser/content/blanktab.html",
];
function isInitialPage(url) {
if (!(url instanceof Ci.nsIURI)) {
try {
url = Services.io.newURI(url);
} catch (ex) {
return false;
}
}
let nonQuery = url.prePath + url.filePath;
return gInitialPages.includes(nonQuery) || nonQuery == BROWSER_NEW_TAB_URL;
}
function browserWindows() {
return Services.wm.getEnumerator("navigator:browser");
}
function updateBookmarkToolbarVisibility() {
BookmarkingUI.updateEmptyToolbarMessage();
setToolbarVisibility(
BookmarkingUI.toolbar,
gBookmarksToolbarVisibility,
false,
false
);
}
// This is a stringbundle-like interface to gBrowserBundle, formerly a getter for
// the "bundle_browser" element.
var gNavigatorBundle = {
getString(key) {
return gBrowserBundle.GetStringFromName(key);
},
getFormattedString(key, array) {
return gBrowserBundle.formatStringFromName(key, array);
},
};
function updateFxaToolbarMenu(enable, isInitialUpdate = false) {
// We only show the Firefox Account toolbar menu if the feature is enabled and
// if sync is enabled.
const syncEnabled = Services.prefs.getBoolPref(
"identity.fxaccounts.enabled",
false
);
const mainWindowEl = document.documentElement;
const fxaPanelEl = PanelMultiView.getViewNode(document, "PanelUI-fxa");
const taskbarTab = mainWindowEl.hasAttribute("taskbartab");
// To minimize the toolbar button flickering or appearing/disappearing during startup,
// we use this pref to anticipate the likely FxA status.
const statusGuess = !!Services.prefs.getStringPref(
"identity.fxaccounts.account.device.name",
""
);
mainWindowEl.setAttribute(
"fxastatus",
statusGuess ? "signed_in" : "not_configured"
);
fxaPanelEl.addEventListener("ViewShowing", gSync.updateSendToDeviceTitle);
if (enable && syncEnabled && !taskbarTab) {
mainWindowEl.setAttribute("fxatoolbarmenu", "visible");
// We have to manually update the sync state UI when toggling the FxA toolbar
// because it could show an invalid icon if the user is logged in and no sync
// event was performed yet.
if (!isInitialUpdate) {
gSync.maybeUpdateUIState();
}
} else {
mainWindowEl.removeAttribute("fxatoolbarmenu");
}
}
function UpdateBackForwardCommands(aWebNavigation) {
var backCommand = document.getElementById("Browser:Back");
var forwardCommand = document.getElementById("Browser:Forward");
// Avoid setting attributes on commands if the value hasn't changed!
// Remember, guys, setting attributes on elements is expensive! They
// get inherited into anonymous content, broadcast to other widgets, etc.!
// Don't do it if the value hasn't changed! - dwh
var backDisabled = backCommand.hasAttribute("disabled");
var forwardDisabled = forwardCommand.hasAttribute("disabled");
if (backDisabled == aWebNavigation.canGoBack) {
if (backDisabled) {
backCommand.removeAttribute("disabled");
} else {
backCommand.setAttribute("disabled", true);
}
}
if (forwardDisabled == aWebNavigation.canGoForward) {
if (forwardDisabled) {
forwardCommand.removeAttribute("disabled");
} else {
forwardCommand.setAttribute("disabled", true);
}
}
}
function updatePrintCommands(enabled) {
var printCommand = document.getElementById("cmd_print");
var printPreviewCommand = document.getElementById("cmd_printPreviewToggle");
if (enabled) {
printCommand.removeAttribute("disabled");
printPreviewCommand.removeAttribute("disabled");
} else {
printCommand.setAttribute("disabled", "true");
printPreviewCommand.setAttribute("disabled", "true");
}
}
/**
* Click-and-Hold implementation for the Back and Forward buttons
* XXXmano: should this live in toolbarbutton.js?
*/
function SetClickAndHoldHandlers() {
// Bug 414797: Clone the back/forward buttons' context menu into both buttons.
let popup = document.getElementById("backForwardMenu").cloneNode(true);
popup.removeAttribute("id");
// Prevent the back/forward buttons' context attributes from being inherited.
popup.setAttribute("context", "");
function backForwardMenuCommand(event) {
BrowserCommands.gotoHistoryIndex(event);
// event.stopPropagation is here for the cloned version
// to prevent already-handled clicks on menu items from
// propagating to the back or forward button.
event.stopPropagation();
}
let backButton = document.getElementById("back-button");
backButton.setAttribute("type", "menu");
popup.addEventListener("command", backForwardMenuCommand);
popup.addEventListener("popupshowing", FillHistoryMenu);
backButton.prepend(popup);
gClickAndHoldListenersOnElement.add(backButton);
let forwardButton = document.getElementById("forward-button");
popup = popup.cloneNode(true);
forwardButton.setAttribute("type", "menu");
popup.addEventListener("command", backForwardMenuCommand);
popup.addEventListener("popupshowing", FillHistoryMenu);
forwardButton.prepend(popup);
gClickAndHoldListenersOnElement.add(forwardButton);
}
const gClickAndHoldListenersOnElement = {
_timers: new Map(),
_mousedownHandler(aEvent) {
if (
aEvent.button != 0 ||
aEvent.currentTarget.open ||
aEvent.currentTarget.disabled
) {
return;
}
// Prevent the menupopup from opening immediately
aEvent.currentTarget.menupopup.hidden = true;
aEvent.currentTarget.addEventListener("mouseout", this);
aEvent.currentTarget.addEventListener("mouseup", this);
this._timers.set(
aEvent.currentTarget,
setTimeout(b => this._openMenu(b), 500, aEvent.currentTarget)
);
},
_clickHandler(aEvent) {
if (
aEvent.button == 0 &&
aEvent.target == aEvent.currentTarget &&
!aEvent.currentTarget.open &&
!aEvent.currentTarget.disabled &&
// When menupopup is not hidden and we receive
// a click event, it means the mousedown occurred
// on aEvent.currentTarget and mouseup occurred on
// aEvent.currentTarget.menupopup, we don't
// need to handle the click event as menupopup
// handled mouseup event already.
aEvent.currentTarget.menupopup.hidden
) {
let cmdEvent = document.createEvent("xulcommandevent");
cmdEvent.initCommandEvent(
"command",
true,
true,
window,
0,
aEvent.ctrlKey,
aEvent.altKey,
aEvent.shiftKey,
aEvent.metaKey,
0,
null,
aEvent.inputSource
);
aEvent.currentTarget.dispatchEvent(cmdEvent);
// This is here to cancel the XUL default event
// dom.click() triggers a command even if there is a click handler
// however this can now be prevented with preventDefault().
aEvent.preventDefault();
}
},
_openMenu(aButton) {
this._cancelHold(aButton);
aButton.firstElementChild.hidden = false;
aButton.open = true;
},
_mouseoutHandler(aEvent) {
let buttonRect = aEvent.currentTarget.getBoundingClientRect();
if (
aEvent.clientX >= buttonRect.left &&
aEvent.clientX <= buttonRect.right &&
aEvent.clientY >= buttonRect.bottom
) {
this._openMenu(aEvent.currentTarget);
} else {
this._cancelHold(aEvent.currentTarget);
}
},
_mouseupHandler(aEvent) {
this._cancelHold(aEvent.currentTarget);
},
_cancelHold(aButton) {
clearTimeout(this._timers.get(aButton));
aButton.removeEventListener("mouseout", this);
aButton.removeEventListener("mouseup", this);
},
_keypressHandler(aEvent) {
if (aEvent.key == " " || aEvent.key == "Enter") {
aEvent.preventDefault();
// Normally, command events get fired for keyboard activation. However,
// we've set type="menu", so that doesn't happen. Handle this the same
// way we handle clicks.
aEvent.target.click();
}
},
handleEvent(e) {
switch (e.type) {
case "mouseout":
this._mouseoutHandler(e);
break;
case "mousedown":
this._mousedownHandler(e);
break;
case "click":
this._clickHandler(e);
break;
case "mouseup":
this._mouseupHandler(e);
break;
case "keypress":
// Note that we might not be the only ones dealing with keypresses.
// See bug 1921772 for more context.
if (!e.defaultPrevented) {
this._keypressHandler(e);
}
break;
}
},
remove(aButton) {
aButton.removeEventListener("mousedown", this, true);
aButton.removeEventListener("click", this, true);
aButton.removeEventListener("keypress", this, true);
},
add(aElm) {
this._timers.delete(aElm);
aElm.addEventListener("mousedown", this, true);
aElm.addEventListener("click", this, true);
aElm.addEventListener("keypress", this, true);
},
};
const gSessionHistoryObserver = {
observe(subject, topic) {
if (topic != "browser:purge-session-history") {
return;
}
var backCommand = document.getElementById("Browser:Back");
backCommand.setAttribute("disabled", "true");
var fwdCommand = document.getElementById("Browser:Forward");
fwdCommand.setAttribute("disabled", "true");
// Clear undo history of the URL bar
gURLBar.editor.clearUndoRedo();
},
};
const gStoragePressureObserver = {
_lastNotificationTime: -1,
async observe(subject, topic) {
if (topic != "QuotaManager::StoragePressure") {
return;
}
const NOTIFICATION_VALUE = "storage-pressure-notification";
if (gNotificationBox.getNotificationWithValue(NOTIFICATION_VALUE)) {
// Do not display the 2nd notification when there is already one
return;
}
// Don't display notification twice within the given interval.
// This is because
// - not to annoy user
// - give user some time to clean space.
// Even user sees notification and starts acting, it still takes some time.
const MIN_NOTIFICATION_INTERVAL_MS = Services.prefs.getIntPref(
"browser.storageManager.pressureNotification.minIntervalMS"
);
let duration = Date.now() - this._lastNotificationTime;
if (duration <= MIN_NOTIFICATION_INTERVAL_MS) {
return;
}
this._lastNotificationTime = Date.now();
MozXULElement.insertFTLIfNeeded("branding/brand.ftl");
MozXULElement.insertFTLIfNeeded("browser/preferences/preferences.ftl");
const BYTES_IN_GIGABYTE = 1073741824;
const USAGE_THRESHOLD_BYTES =
BYTES_IN_GIGABYTE *
Services.prefs.getIntPref(
"browser.storageManager.pressureNotification.usageThresholdGB"
);
let messageFragment = document.createDocumentFragment();
let message = document.createElement("span");
let buttons = [{ supportPage: "storage-permissions" }];
let usage = subject.QueryInterface(Ci.nsISupportsPRUint64).data;
if (usage < USAGE_THRESHOLD_BYTES) {
// The firefox-used space < 5GB, then warn user to free some disk space.
// This is because this usage is small and not the main cause for space issue.
// In order to avoid the bad and wrong impression among users that
// firefox eats disk space a lot, indicate users to clean up other disk space.
document.l10n.setAttributes(message, "space-alert-under-5gb-message2");
} else {
// The firefox-used space >= 5GB, then guide users to about:preferences
// to clear some data stored on firefox by websites.
document.l10n.setAttributes(message, "space-alert-over-5gb-message2");
buttons.push({
"l10n-id": "space-alert-over-5gb-settings-button",
callback() {
// The advanced subpanes are only supported in the old organization, which will
// be removed by bug 1349689.
openPreferences("privacy-sitedata");
},
});
}
messageFragment.appendChild(message);
await gNotificationBox.appendNotification(
NOTIFICATION_VALUE,
{
label: messageFragment,
priority: gNotificationBox.PRIORITY_WARNING_HIGH,
},
buttons
);
// This seems to be necessary to get the buttons to display correctly
// See: https://bugzilla.mozilla.org/show_bug.cgi?id=1504216
document.l10n.translateFragment(gNotificationBox.currentNotification);
},
};
var gKeywordURIFixup = {
check(browser, { fixedURI, keywordProviderName, preferredURI }) {
// We get called irrespective of whether we did a keyword search, or
// whether the original input would be vaguely interpretable as a URL,
// so figure that out first.
if (
!keywordProviderName ||
!fixedURI ||
!fixedURI.host ||
UrlbarPrefs.get("browser.fixup.dns_first_for_single_words") ||
UrlbarPrefs.get("dnsResolveSingleWordsAfterSearch") == 0
) {
return;
}
let contentPrincipal = browser.contentPrincipal;
// At this point we're still only just about to load this URI.
// When the async DNS lookup comes back, we may be in any of these states:
// 1) still on the previous URI, waiting for the preferredURI (keyword
// search) to respond;
// 2) at the keyword search URI (preferredURI)
// 3) at some other page because the user stopped navigation.
// We keep track of the currentURI to detect case (1) in the DNS lookup
// callback.
let previousURI = browser.currentURI;
// now swap for a weak ref so we don't hang on to browser needlessly
// even if the DNS query takes forever
let weakBrowser = Cu.getWeakReference(browser);
browser = null;
// Additionally, we need the host of the parsed url
let hostName = fixedURI.displayHost;
// and the ascii-only host for the pref:
let asciiHost = fixedURI.asciiHost;
let onLookupCompleteListener = {
async onLookupComplete(request, record, status) {
let browserRef = weakBrowser.get();
if (!Components.isSuccessCode(status) || !browserRef) {
return;
}
let currentURI = browserRef.currentURI;
// If we're in case (3) (see above), don't show an info bar.
if (
!currentURI.equals(previousURI) &&
!currentURI.equals(preferredURI)
) {
return;
}
// show infobar offering to visit the host
let notificationBox = gBrowser.getNotificationBox(browserRef);
if (notificationBox.getNotificationWithValue("keyword-uri-fixup")) {
return;
}
let displayHostName = "http://" + hostName + "/";
let message = gNavigatorBundle.getFormattedString(
"keywordURIFixup.message",
[displayHostName]
);
let yesMessage = gNavigatorBundle.getFormattedString(
"keywordURIFixup.goTo",
[displayHostName]
);
let buttons = [
{
label: yesMessage,
accessKey: gNavigatorBundle.getString(
"keywordURIFixup.goTo.accesskey"
),
callback() {
// Do not set this preference while in private browsing.
if (!PrivateBrowsingUtils.isWindowPrivate(window)) {
let prefHost = asciiHost;
// Normalize out a single trailing dot - NB: not using endsWith/lastIndexOf
// because we need to be sure this last dot is the *only* dot, too.
// More generally, this is used for the pref and should stay in sync with
// the code in URIFixup::KeywordURIFixup .
if (prefHost.indexOf(".") == prefHost.length - 1) {
prefHost = prefHost.slice(0, -1);
}
let pref = "browser.fixup.domainwhitelist." + prefHost;
Services.prefs.setBoolPref(pref, true);
}
openTrustedLinkIn(fixedURI.spec, "current");
},
},
];
let notification = await notificationBox.appendNotification(
"keyword-uri-fixup",
{
label: message,
priority: notificationBox.PRIORITY_INFO_HIGH,
},
buttons
);
notification.persistence = 1;
},
};
try {
Services.uriFixup.checkHost(
fixedURI,
onLookupCompleteListener,
contentPrincipal.originAttributes
);
} catch (ex) {
// Ignore errors.
}
},
observe(fixupInfo) {
fixupInfo.QueryInterface(Ci.nsIURIFixupInfo);
let browser = fixupInfo.consumer?.top?.embedderElement;
if (!browser || browser.ownerGlobal != window) {
return;
}
this.check(browser, fixupInfo);
},
};
/* Creates a null principal using the userContextId
from the current selected tab or a passed in tab argument */
function _createNullPrincipalFromTabUserContextId(tab = gBrowser.selectedTab) {
let userContextId;
if (tab.hasAttribute("usercontextid")) {
userContextId = tab.getAttribute("usercontextid");
}
return Services.scriptSecurityManager.createNullPrincipal({
userContextId,
});
}
function HandleAppCommandEvent(evt) {
switch (evt.command) {
case "Back":
BrowserCommands.back();
break;
case "Forward":
BrowserCommands.forward();
break;
case "Reload":
BrowserCommands.reloadSkipCache();
break;
case "Stop":
if (XULBrowserWindow.stopCommand.getAttribute("disabled") != "true") {
BrowserCommands.stop();
}
break;
case "Search":
SearchUIUtils.webSearch(window);
break;
case "Bookmarks":
SidebarController.toggle("viewBookmarksSidebar");
break;
case "Home":
BrowserCommands.home();
break;
case "New":
BrowserCommands.openTab();
break;
case "Close":
BrowserCommands.closeTabOrWindow();
break;
case "Find":
gLazyFindCommand("onFindCommand");
break;
case "Help":
openHelpLink("firefox-help");
break;
case "Open":
BrowserCommands.openFileWindow();
break;
case "Print":
PrintUtils.startPrintWindow(gBrowser.selectedBrowser.browsingContext);
break;
case "Save":
saveBrowser(gBrowser.selectedBrowser);
break;
case "SendMail":
MailIntegration.sendLinkForBrowser(gBrowser.selectedBrowser);
break;
default:
return;
}
evt.stopPropagation();
evt.preventDefault();
}
function loadOneOrMoreURIs(aURIString, aTriggeringPrincipal, aCsp) {
// we're not a browser window, pass the URI string to a new browser window
if (window.location.href != AppConstants.BROWSER_CHROME_URL) {
window.openDialog(
AppConstants.BROWSER_CHROME_URL,
"_blank",
"all,dialog=no",
aURIString
);
return;
}
// This function throws for certain malformed URIs, so use exception handling
// so that we don't disrupt startup
try {
gBrowser.loadTabs(aURIString.split("|"), {
inBackground: false,
replace: true,
triggeringPrincipal: aTriggeringPrincipal,
csp: aCsp,
});
} catch (e) {}
}
function openLocation(event) {
if (window.location.href == AppConstants.BROWSER_CHROME_URL) {
gURLBar.select();
gURLBar.view.autoOpen({ event });
return;
}
// If there's an open browser window, redirect the command there.
let win = URILoadingHelper.getTargetWindow(window);
if (win) {
win.focus();
win.openLocation();
return;
}
// There are no open browser windows; open a new one.
window.openDialog(
AppConstants.BROWSER_CHROME_URL,
"_blank",
"chrome,all,dialog=no",
BROWSER_NEW_TAB_URL
);
}
var gLastOpenDirectory = {
_lastDir: null,
get path() {
if (!this._lastDir || !this._lastDir.exists()) {
try {
this._lastDir = Services.prefs.getComplexValue(
"browser.open.lastDir",
Ci.nsIFile
);
if (!this._lastDir.exists()) {
this._lastDir = null;
}
} catch (e) {}
}
return this._lastDir;
},
set path(val) {
try {
if (!val || !val.isDirectory()) {
return;
}
} catch (e) {
return;
}
this._lastDir = val.clone();
// Don't save the last open directory pref inside the Private Browsing mode
if (!PrivateBrowsingUtils.isWindowPrivate(window)) {
Services.prefs.setComplexValue(
"browser.open.lastDir",
Ci.nsIFile,
this._lastDir
);
}
},
reset() {
this._lastDir = null;
},
};
function readFromClipboard() {
var url;
try {
// Create transferable that will transfer the text.
var trans = Cc["@mozilla.org/widget/transferable;1"].createInstance(
Ci.nsITransferable
);
trans.init(window.docShell.QueryInterface(Ci.nsILoadContext));
trans.addDataFlavor("text/plain");
// If available, use selection clipboard, otherwise global one
let clipboard = Services.clipboard;
if (clipboard.isClipboardTypeSupported(clipboard.kSelectionClipboard)) {
clipboard.getData(trans, clipboard.kSelectionClipboard);
} else {
clipboard.getData(trans, clipboard.kGlobalClipboard);
}
var data = {};
trans.getTransferData("text/plain", data);
if (data) {
data = data.value.QueryInterface(Ci.nsISupportsString);
url = data.data;
}
} catch (ex) {}
return url;
}
function UpdateUrlbarSearchSplitterState() {
var splitter = document.getElementById("urlbar-search-splitter");
var urlbar = document.getElementById("urlbar-container");
var searchbar = document.getElementById("search-container");
if (document.documentElement.hasAttribute("customizing")) {
if (splitter) {
splitter.remove();
}
return;
}
// If the splitter is already in the right place, we don't need to do anything:
if (
splitter &&
((splitter.nextElementSibling == searchbar &&
splitter.previousElementSibling == urlbar) ||
(splitter.nextElementSibling == urlbar &&
splitter.previousElementSibling == searchbar))
) {
return;
}
let ibefore = null;
let resizebefore = "none";
let resizeafter = "none";
if (urlbar && searchbar) {
if (urlbar.nextElementSibling == searchbar) {
resizeafter = "sibling";
ibefore = searchbar;
} else if (searchbar.nextElementSibling == urlbar) {
resizebefore = "sibling";
ibefore = urlbar;
}
}
if (ibefore) {
if (!splitter) {
splitter = document.createXULElement("splitter");
splitter.id = "urlbar-search-splitter";
splitter.setAttribute("resizebefore", resizebefore);
splitter.setAttribute("resizeafter", resizeafter);
splitter.setAttribute("skipintoolbarset", "true");
splitter.setAttribute("overflows", "false");
splitter.className = "chromeclass-toolbar-additional";
}
urlbar.parentNode.insertBefore(splitter, ibefore);
} else if (splitter) {
splitter.remove();
}
}
function UpdatePopupNotificationsVisibility() {
// Only need to update PopupNotifications if it has already been initialized
// for this window (i.e. its getter no longer exists).
if (!Object.getOwnPropertyDescriptor(window, "PopupNotifications").get) {
// Notify PopupNotifications that the visible anchors may have changed. This
// also checks the suppression state according to the "shouldSuppress"
// function defined earlier in this file.
PopupNotifications.anchorVisibilityChange();
}
// This is similar to the above, but for notifications attached to the
// hamburger menu icon (such as update notifications and add-on install
// notifications.)
PanelUI?.updateNotifications();
}
function PageProxyClickHandler(aEvent) {
if (aEvent.button == 1 && Services.prefs.getBoolPref("middlemouse.paste")) {
middleMousePaste(aEvent);
}
}
function CreateContainerTabMenu(event) {
// Do not open context menus within menus.
// Note that triggerNode is null if we're opened by long press.
if (event.target.triggerNode?.closest("menupopup")) {
event.preventDefault();
return;
}
createUserContextMenu(event, {
useAccessKeys: false,
showDefaultTab: true,
});
}
function FillHistoryMenu(event) {
let parent = event.target;
// Lazily add the hover listeners on first showing and never remove them
if (!parent.hasStatusListener) {
// Show history item's uri in the status bar when hovering, and clear on exit
parent.addEventListener("DOMMenuItemActive", function (aEvent) {
// Only the current page should have the checked attribute, so skip it
if (!aEvent.target.hasAttribute("checked")) {
XULBrowserWindow.setOverLink(aEvent.target.getAttribute("uri"));
}
});
parent.addEventListener("DOMMenuItemInactive", function () {
XULBrowserWindow.setOverLink("");
});
parent.hasStatusListener = true;
}
// Remove old entries if any
let children = parent.children;
for (var i = children.length - 1; i >= 0; --i) {
if (children[i].hasAttribute("index")) {
parent.removeChild(children[i]);
}
}
const MAX_HISTORY_MENU_ITEMS = 15;
const tooltipBack = gNavigatorBundle.getString("tabHistory.goBack");
const tooltipCurrent = gNavigatorBundle.getString("tabHistory.reloadCurrent");
const tooltipForward = gNavigatorBundle.getString("tabHistory.goForward");
function updateSessionHistory(sessionHistory, initial, ssInParent) {
let count = ssInParent
? sessionHistory.count
: sessionHistory.entries.length;
if (!initial) {
if (count <= 1) {
// if there is only one entry now, close the popup.
parent.hidePopup();
return;
} else if (parent.id != "backForwardMenu" && !parent.parentNode.open) {
// if the popup wasn't open before, but now needs to be, reopen the menu.
// It should trigger FillHistoryMenu again. This might happen with the
// delay from click-and-hold menus but skip this for the context menu
// (backForwardMenu) rather than figuring out how the menu should be
// positioned and opened as it is an extreme edgecase.
parent.parentNode.open = true;
return;
}
}
let index = sessionHistory.index;
let half_length = Math.floor(MAX_HISTORY_MENU_ITEMS / 2);
let start = Math.max(index - half_length, 0);
let end = Math.min(
start == 0 ? MAX_HISTORY_MENU_ITEMS : index + half_length + 1,
count
);
if (end == count) {
start = Math.max(count - MAX_HISTORY_MENU_ITEMS, 0);
}
let existingIndex = 0;
for (let j = end - 1; j >= start; j--) {
let entry = ssInParent
? sessionHistory.getEntryAtIndex(j)
: sessionHistory.entries[j];
// Explicitly check for "false" to stay backwards-compatible with session histories
// from before the hasUserInteraction was implemented.
if (
BrowserUtils.navigationRequireUserInteraction &&
entry.hasUserInteraction === false &&
// Always list the current and last navigation points.
j != end - 1 &&
j != index
) {
continue;
}
let uri = ssInParent ? entry.URI.spec : entry.url;
let item =
existingIndex < children.length
? children[existingIndex]
: document.createXULElement("menuitem");
item.setAttribute("uri", uri);
item.setAttribute("label", entry.title || uri);
item.setAttribute("index", j);
// Cache this so that BrowserCommands.gotoHistoryIndex doesn't need the
// original index
item.setAttribute("historyindex", j - index);
if (j != index) {
// Use list-style-image rather than the image attribute in order to
// allow CSS to override this.
item.style.listStyleImage = `url(page-icon:${uri})`;
}
if (j < index) {
item.className =
"unified-nav-back menuitem-iconic menuitem-with-favicon";
item.setAttribute("tooltiptext", tooltipBack);
} else if (j == index) {
item.setAttribute("type", "radio");
item.setAttribute("checked", "true");
item.className = "unified-nav-current";
item.setAttribute("tooltiptext", tooltipCurrent);
} else {
item.className =
"unified-nav-forward menuitem-iconic menuitem-with-favicon";
item.setAttribute("tooltiptext", tooltipForward);
}
if (!item.parentNode) {
parent.appendChild(item);
}
existingIndex++;
}
if (!initial) {
let existingLength = children.length;
while (existingIndex < existingLength) {
parent.removeChild(parent.lastElementChild);
existingIndex++;
}
}
}
// If session history in parent is available, use it. Otherwise, get the session history
// from session store.
let sessionHistory = gBrowser.selectedBrowser.browsingContext.sessionHistory;
if (sessionHistory?.count) {
// Don't show the context menu if there is only one item.
if (sessionHistory.count <= 1) {
event.preventDefault();
return;
}
updateSessionHistory(sessionHistory, true, true);
} else {
sessionHistory = SessionStore.getSessionHistory(
gBrowser.selectedTab,
updateSessionHistory
);
updateSessionHistory(sessionHistory, true, false);
}
}
function toOpenWindowByType(inType, uri, features) {
var topWindow = Services.wm.getMostRecentWindow(inType);
if (topWindow) {
topWindow.focus();
} else if (features) {
window.open(uri, "_blank", features);
} else {
window.open(
uri,
"_blank",
"chrome,extrachrome,menubar,resizable,scrollbars,status,toolbar"
);
}
}
/**
* Open a new browser window. See `BrowserWindowTracker.openWindow` for
* options.
*
* @return a reference to the new window.
*/
function OpenBrowserWindow(options = {}) {
let timerId = Glean.browserTimings.newWindow.start();
let win = BrowserWindowTracker.openWindow({
openerWindow: window,
...options,
});
win.addEventListener(
"MozAfterPaint",
() => {
Glean.browserTimings.newWindow.stopAndAccumulate(timerId);
},
{ once: true }
);
return win;
}
/**
* Update the global flag that tracks whether or not any edit UI (the Edit menu,
* edit-related items in the context menu, and edit-related toolbar buttons
* is visible, then update the edit commands' enabled state accordingly. We use
* this flag to skip updating the edit commands on focus or selection changes
* when no UI is visible to improve performance (including pageload performance,
* since focus changes when you load a new page).
*
* If UI is visible, we use goUpdateGlobalEditMenuItems to set the commands'
* enabled state so the UI will reflect it appropriately.
*
* If the UI isn't visible, we enable all edit commands so keyboard shortcuts
* still work and just lazily disable them as needed when the user presses a
* shortcut.
*
* This doesn't work on Mac, since Mac menus flash when users press their
* keyboard shortcuts, so edit UI is essentially always visible on the Mac,
* and we need to always update the edit commands. Thus on Mac this function
* is a no op.
*/
function updateEditUIVisibility() {
if (AppConstants.platform == "macosx") {
return;
}
let editMenuPopupState = document.getElementById("menu_EditPopup").state;
let contextMenuPopupState = document.getElementById(
"contentAreaContextMenu"
).state;
let placesContextMenuPopupState =
document.getElementById("placesContext").state;
let oldVisible = gEditUIVisible;
// The UI is visible if the Edit menu is opening or open, if the context menu
// is open, or if the toolbar has been customized to include the Cut, Copy,
// or Paste toolbar buttons.
gEditUIVisible =
editMenuPopupState == "showing" ||
editMenuPopupState == "open" ||
contextMenuPopupState == "showing" ||
contextMenuPopupState == "open" ||
placesContextMenuPopupState == "showing" ||
placesContextMenuPopupState == "open";
const kOpenPopupStates = ["showing", "open"];
if (!gEditUIVisible) {
// Now check the edit-controls toolbar buttons.
let placement = CustomizableUI.getPlacementOfWidget("edit-controls");
let areaType = placement ? CustomizableUI.getAreaType(placement.area) : "";
if (areaType == CustomizableUI.TYPE_PANEL) {
let customizablePanel = PanelUI.overflowPanel;
gEditUIVisible = kOpenPopupStates.includes(customizablePanel.state);
} else if (
areaType == CustomizableUI.TYPE_TOOLBAR &&
window.toolbar.visible
) {
// The edit controls are on a toolbar, so they are visible,
// unless they're in a panel that isn't visible...
if (placement.area == "nav-bar") {
let editControls = document.getElementById("edit-controls");
gEditUIVisible =
!editControls.hasAttribute("overflowedItem") ||
kOpenPopupStates.includes(
document.getElementById("widget-overflow").state
);
} else {
gEditUIVisible = true;
}
}
}
// Now check the main menu panel
if (!gEditUIVisible) {
gEditUIVisible = kOpenPopupStates.includes(PanelUI.panel.state);
}
// No need to update commands if the edit UI visibility has not changed.
if (gEditUIVisible == oldVisible) {
return;
}
// If UI is visible, update the edit commands' enabled state to reflect
// whether or not they are actually enabled for the current focus/selection.
if (gEditUIVisible) {
goUpdateGlobalEditMenuItems();
} else {
// Otherwise, enable all commands, so that keyboard shortcuts still work,
// then lazily determine their actual enabled state when the user presses
// a keyboard shortcut.
goSetCommandEnabled("cmd_undo", true);
goSetCommandEnabled("cmd_redo", true);
goSetCommandEnabled("cmd_cut", true);
goSetCommandEnabled("cmd_copy", true);
goSetCommandEnabled("cmd_paste", true);
goSetCommandEnabled("cmd_selectAll", true);
goSetCommandEnabled("cmd_delete", true);
goSetCommandEnabled("cmd_switchTextDirection", true);
}
}
let gFileMenu = {
/**
* Updates User Context Menu Item UI visibility depending on
* privacy.userContext.enabled pref state.
*/
updateUserContextUIVisibility() {
let menu = document.getElementById("menu_newUserContext");
menu.hidden = !Services.prefs.getBoolPref(
"privacy.userContext.enabled",
false
);
// Visibility of File menu item shouldn't change frequently.
if (PrivateBrowsingUtils.isWindowPrivate(window)) {
menu.setAttribute("disabled", "true");
}
},
/**
* Updates the enabled state of the "Import From Another Browser" command
* depending on the DisableProfileImport policy.
*/
updateImportCommandEnabledState() {
if (!Services.policies.isAllowed("profileImport")) {
document
.getElementById("cmd_file_importFromAnotherBrowser")
.setAttribute("disabled", "true");
}
},
/**
* Updates the "Close tab" command to reflect the number of selected tabs,
* when applicable.
*/
updateTabCloseCountState() {
document.l10n.setAttributes(
document.getElementById("menu_close"),
"menu-file-close-tab",
{ tabCount: gBrowser.selectedTabs.length }
);
},
onPopupShowing(event) {
// We don't care about submenus:
if (event.target.id != "menu_FilePopup") {
return;
}
this.updateUserContextUIVisibility();
this.updateImportCommandEnabledState();
this.updateTabCloseCountState();
if (AppConstants.platform == "macosx") {
SharingUtils.updateShareURLMenuItem(
gBrowser.selectedBrowser,
document.getElementById("menu_savePage")
);
}
PrintUtils.updatePrintSetupMenuHiddenState();
},
};
/**
* Opens a new tab with the userContextId specified as an attribute of
* sourceEvent. This attribute is propagated to the top level originAttributes
* living on the tab's docShell.
*
* @param event
* A click event on a userContext File Menu option
*/
function openNewUserContextTab(event) {
openTrustedLinkIn(BROWSER_NEW_TAB_URL, "tab", {
userContextId: parseInt(event.target.getAttribute("data-usercontextid")),
});
}
var XULBrowserWindow = {
// Stored Status, Link and Loading values
status: "",
defaultStatus: "",
overLink: "",
startTime: 0,
isBusy: false,
busyUI: false,
QueryInterface: ChromeUtils.generateQI([
"nsIWebProgressListener",
"nsIWebProgressListener2",
"nsISupportsWeakReference",
"nsIXULBrowserWindow",
]),
get stopCommand() {
delete this.stopCommand;
return (this.stopCommand = document.getElementById("Browser:Stop"));
},
get reloadCommand() {
delete this.reloadCommand;
return (this.reloadCommand = document.getElementById("Browser:Reload"));
},
get _elementsForTextBasedTypes() {
delete this._elementsForTextBasedTypes;
return (this._elementsForTextBasedTypes = [
document.getElementById("pageStyleMenu"),
document.getElementById("context-viewpartialsource-selection"),
document.getElementById("context-print-selection"),
]);
},
get _elementsForFind() {
delete this._elementsForFind;
return (this._elementsForFind = [
document.getElementById("cmd_find"),
document.getElementById("cmd_findAgain"),
document.getElementById("cmd_findPrevious"),
]);
},
get _elementsForViewSource() {
delete this._elementsForViewSource;
return (this._elementsForViewSource = [
document.getElementById("context-viewsource"),
document.getElementById("View:PageSource"),
]);
},
get _menuItemForRepairTextEncoding() {
delete this._menuItemForRepairTextEncoding;
return (this._menuItemForRepairTextEncoding = document.getElementById(
"repair-text-encoding"
));
},
get _menuItemForTranslations() {
delete this._menuItemForTranslations;
return (this._menuItemForTranslations =
document.getElementById("cmd_translate"));
},
setDefaultStatus(status) {
this.defaultStatus = status;
StatusPanel.update();
},
/**
* Tells the UI what link we are currently over.
*
* @param {String} url
* The URL of the link.
* @param {Object} [options]
* This is an extension of nsIXULBrowserWindow for JS callers, will be
* passed on to LinkTargetDisplay.
*/
setOverLink(url, options = undefined) {
window.dispatchEvent(
new CustomEvent("OverLink", {
detail: { url },
})
);
if (url) {
url = Services.textToSubURI.unEscapeURIForUI(url);
// Encode bidirectional formatting characters.
// (RFC 3987 sections 3.2 and 4.1 paragraph 6)
url = url.replace(
/[\u200e\u200f\u202a\u202b\u202c\u202d\u202e]/g,
encodeURIComponent
);
if (UrlbarPrefs.get("trimURLs")) {
url = BrowserUIUtils.trimURL(url);
}
}
this.overLink = url;
LinkTargetDisplay.update(options);
},
onEnterDOMFullscreen() {
// Clear the status panel.
this.status = "";
this.setDefaultStatus("");
this.setOverLink("", { hideStatusPanelImmediately: true });
},
showTooltip(xDevPix, yDevPix, tooltip, direction, _browser) {
if (
Cc["@mozilla.org/widget/dragservice;1"]
.getService(Ci.nsIDragService)
.getCurrentSession()
) {
return;
}
if (!document.hasFocus()) {
return;
}
let elt = document.getElementById("remoteBrowserTooltip");
elt.label = tooltip;
elt.style.direction = direction;
elt.openPopupAtScreen(
xDevPix / window.devicePixelRatio,
yDevPix / window.devicePixelRatio,
false,
null
);
},
hideTooltip() {
let elt = document.getElementById("remoteBrowserTooltip");
elt.hidePopup();
},
getTabCount() {
return gBrowser.tabs.length;
},
onProgressChange() {
// Do nothing.
},
onProgressChange64(
aWebProgress,
aRequest,
aCurSelfProgress,
aMaxSelfProgress,
aCurTotalProgress,
aMaxTotalProgress
) {
return this.onProgressChange(
aWebProgress,
aRequest,
aCurSelfProgress,
aMaxSelfProgress,
aCurTotalProgress,
aMaxTotalProgress
);
},
// This function fires only for the currently selected tab.
onStateChange(aWebProgress, aRequest, aStateFlags, aStatus) {
const nsIWebProgressListener = Ci.nsIWebProgressListener;
let browser = gBrowser.selectedBrowser;
gProtectionsHandler.onStateChange(aWebProgress, aStateFlags);
if (
aStateFlags & nsIWebProgressListener.STATE_START &&
aStateFlags & nsIWebProgressListener.STATE_IS_NETWORK
) {
if (aRequest && aWebProgress.isTopLevel) {
OpenSearchManager.clearEngines(browser);
}
this.isBusy = true;
if (
!(aStateFlags & nsIWebProgressListener.STATE_RESTORING) &&
aWebProgress.isTopLevel
) {
this.busyUI = true;
if (this.spinCursorWhileBusy) {
window.setCursor("progress");
}
// XXX: This needs to be based on window activity...
this.stopCommand.removeAttribute("disabled");
CombinedStopReload.switchToStop(aRequest, aWebProgress);
}
} else if (aStateFlags & nsIWebProgressListener.STATE_STOP) {
// This (thanks to the filter) is a network stop or the last
// request stop outside of loading the document, stop throbbers
// and progress bars and such
if (aRequest) {
let msg = "";
let location;
let canViewSource = true;
// Get the URI either from a channel or a pseudo-object
if (aRequest instanceof Ci.nsIChannel || "URI" in aRequest) {
location = aRequest.URI;
// For keyword URIs clear the user typed value since they will be changed into real URIs
if (location.scheme == "keyword" && aWebProgress.isTopLevel) {
gBrowser.userTypedValue = null;
}
canViewSource = location.scheme != "view-source";
if (location.spec != "about:blank") {
switch (aStatus) {
case Cr.NS_ERROR_NET_TIMEOUT:
msg = gNavigatorBundle.getString("nv_timeout");
break;
}
}
}
this.status = "";
this.setDefaultStatus(msg);
// Disable View Source menu entries for images, enable otherwise
let isText =
browser.documentContentType &&
BrowserUtils.mimeTypeIsTextBased(browser.documentContentType);
for (let element of this._elementsForViewSource) {
if (canViewSource && isText) {
element.removeAttribute("disabled");
} else {
element.setAttribute("disabled", "true");
}
}
this._updateElementsForContentType();
// Update Override Text Encoding state.
// Can't cache the button, because the presence of the element in the DOM
// may change over time.
let button = document.getElementById("characterencoding-button");
if (browser.mayEnableCharacterEncodingMenu) {
this._menuItemForRepairTextEncoding.removeAttribute("disabled");
button?.removeAttribute("disabled");
} else {
this._menuItemForRepairTextEncoding.setAttribute("disabled", "true");
button?.setAttribute("disabled", "true");
}
}
this.isBusy = false;
if (this.busyUI && aWebProgress.isTopLevel) {
this.busyUI = false;
if (this.spinCursorWhileBusy) {
window.setCursor("auto");
}
this.stopCommand.setAttribute("disabled", "true");
CombinedStopReload.switchToReload(aRequest, aWebProgress);
}
}
},
/**
* An nsIWebProgressListener method called by tabbrowser. The `aIsSimulated`
* parameter is extra and not declared in nsIWebProgressListener, however; see
* below.
*
* @param {nsIWebProgress} aWebProgress
* The nsIWebProgress instance that fired the notification.
* @param {nsIRequest} aRequest
* The associated nsIRequest. This may be null in some cases.
* @param {nsIURI} aLocationURI
* The URI of the location that is being loaded.
* @param {integer} aFlags
* Flags that indicate the reason the location changed. See the
* nsIWebProgressListener.LOCATION_CHANGE_* values.
* @param {boolean} aIsSimulated
* True when this is called by tabbrowser due to switching tabs and
* undefined otherwise. This parameter is not declared in
* nsIWebProgressListener.onLocationChange; see bug 1478348.
*/
onLocationChange(aWebProgress, aRequest, aLocationURI, aFlags, aIsSimulated) {
var location = aLocationURI ? aLocationURI.spec : "";
UpdateBackForwardCommands(gBrowser.webNavigation);
Services.obs.notifyObservers(
aWebProgress,
"touchbar-location-change",
location
);
// For most changes we only need to update the browser UI if the primary
// content area was navigated or the selected tab was changed. We don't need
// to do anything else if there was a subframe navigation.
if (!aWebProgress.isTopLevel) {
return;
}
this.setOverLink("", { hideStatusPanelImmediately: true });
let isSameDocument =
aFlags & Ci.nsIWebProgressListener.LOCATION_CHANGE_SAME_DOCUMENT;
if (
(location == "about:blank" &&
BrowserUIUtils.checkEmptyPageOrigin(gBrowser.selectedBrowser)) ||
location == ""
) {
// Second condition is for new tabs, otherwise
// reload function is enabled until tab is refreshed.
this.reloadCommand.setAttribute("disabled", "true");
} else {
this.reloadCommand.removeAttribute("disabled");
}
let isSessionRestore = !!(
aFlags & Ci.nsIWebProgressListener.LOCATION_CHANGE_SESSION_STORE
);
// We want to update the popup visibility if we received this notification
// via simulated locationchange events such as switching between tabs, however
// if this is a document navigation then PopupNotifications will be updated
// via TabsProgressListener.onLocationChange and we do not want it called twice
gURLBar.setURI(
aLocationURI,
aIsSimulated,
isSessionRestore,
false,
isSameDocument
);
BookmarkingUI.onLocationChange();
// If we've actually changed document, update the toolbar visibility.
if (!isSameDocument) {
updateBookmarkToolbarVisibility();
}
let closeOpenPanels = selector => {
for (let panel of document.querySelectorAll(selector)) {
if (panel.state != "closed") {
panel.hidePopup();
}
}
};
// If the location is changed due to switching tabs,
// ensure we close any open tabspecific popups.
if (aIsSimulated) {
closeOpenPanels(":is(panel, menupopup)[tabspecific='true']");
}
// Ensure we close any remaining open locationspecific panels
if (!isSameDocument) {
closeOpenPanels("panel[locationspecific='true']");
}
gPermissionPanel.onLocationChange();
gProtectionsHandler.onLocationChange();
BrowserPageActions.onLocationChange();
UrlbarProviderSearchTips.onLocationChange(
window,
aLocationURI,
aWebProgress,
aFlags
);
if (aLocationURI.scheme.startsWith("http")) {
ActionsProviderContextualSearch.onLocationChange(
window,
aLocationURI,
aWebProgress,
aFlags
);
}
this._updateElementsForContentType();
this._updateMacUserActivity(window, aLocationURI, aWebProgress);
// Unconditionally disable the Text Encoding button during load to
// keep the UI calm when navigating from one modern page to another and
// the toolbar button is visible.
// Can't cache the button, because the presence of the element in the DOM
// may change over time.
let button = document.getElementById("characterencoding-button");
this._menuItemForRepairTextEncoding.setAttribute("disabled", "true");
button?.setAttribute("disabled", "true");
// Try not to instantiate gCustomizeMode as much as possible,
// so don't use CustomizeMode.sys.mjs to check for URI or customizing.
if (
location == "about:blank" &&
gBrowser.selectedTab.hasAttribute("customizemode")
) {
gCustomizeMode.enter();
} else if (
CustomizationHandler.isEnteringCustomizeMode ||
CustomizationHandler.isCustomizing()
) {
gCustomizeMode.exit();
}
CFRPageActions.updatePageActions(gBrowser.selectedBrowser);
AboutReaderParent.updateReaderButton(gBrowser.selectedBrowser);
TranslationsParent.onLocationChange(gBrowser.selectedBrowser);
PictureInPicture.updateUrlbarToggle(gBrowser.selectedBrowser);
if (!gMultiProcessBrowser) {
// Bug 1108553 - Cannot rotate images with e10s
gGestureSupport.restoreRotationState();
}
// See bug 358202, when tabs are switched during a drag operation,
// timers don't fire on windows (bug 203573)
if (aRequest) {
setTimeout(function () {
XULBrowserWindow.asyncUpdateUI();
}, 0);
} else {
this.asyncUpdateUI();
}
if (AppConstants.MOZ_CRASHREPORTER && aLocationURI) {
let uri = aLocationURI;
try {
// If the current URI contains a username/password, remove it.
uri = aLocationURI.mutate().setUserPass("").finalize();
} catch (ex) {
/* Ignore failures on about: URIs. */
}
try {
Services.appinfo.annotateCrashReport("URL", uri.spec);
} catch (ex) {
// Don't make noise when the crash reporter is built but not enabled.
if (ex.result != Cr.NS_ERROR_NOT_INITIALIZED) {
throw ex;
}
}
}
},
_updateElementsForContentType() {
let browser = gBrowser.selectedBrowser;
let isText =
browser.documentContentType &&
BrowserUtils.mimeTypeIsTextBased(browser.documentContentType);
for (let element of this._elementsForTextBasedTypes) {
if (isText) {
element.removeAttribute("disabled");
} else {
element.setAttribute("disabled", "true");
}
}
// Always enable find commands in PDF documents, otherwise do it only for
// text documents whose location is not in the blacklist.
let enableFind =
browser.contentPrincipal?.spec == "resource://pdf.js/web/viewer.html" ||
(isText && BrowserUtils.canFindInPage(gBrowser.currentURI.spec));
for (let element of this._elementsForFind) {
if (enableFind) {
element.removeAttribute("disabled");
} else {
element.setAttribute("disabled", "true");
}
}
if (TranslationsParent.isFullPageTranslationsRestrictedForPage(gBrowser)) {
this._menuItemForTranslations.setAttribute("disabled", "true");
} else {
this._menuItemForTranslations.removeAttribute("disabled");
}
if (gTranslationsEnabled) {
if (TranslationsParent.getIsTranslationsEngineSupported()) {
this._menuItemForTranslations.removeAttribute("hidden");
} else {
this._menuItemForTranslations.setAttribute("hidden", "true");
}
} else {
this._menuItemForTranslations.setAttribute("hidden", "true");
}
},
/**
* Updates macOS platform code with the current URI and page title.
* From there, we update the current NSUserActivity, enabling Handoff to other
* Apple devices.
* @param {Window} window
* The window in which the navigation occurred.
* @param {nsIURI} uri
* The URI pointing to the current page.
* @param {nsIWebProgress} webProgress
* The nsIWebProgress instance that fired a onLocationChange notification.
*/
_updateMacUserActivity(win, uri, webProgress) {
if (!webProgress.isTopLevel || AppConstants.platform != "macosx") {
return;
}
let url = uri.spec;
if (PrivateBrowsingUtils.isWindowPrivate(win)) {
// Passing an empty string to MacUserActivityUpdater will invalidate the
// current user activity.
url = "";
}
let baseWin = win.docShell.treeOwner.QueryInterface(Ci.nsIBaseWindow);
MacUserActivityUpdater.updateLocation(
url,
win.gBrowser.contentTitle,
baseWin
);
},
/**
* Potentially gets a URI for a MozBrowser to be shown to the user in the
* identity panel. For browsers whose content does not have a principal,
* this tries the precursor. If this is null, we should not override the
* browser's currentURI.
* @param {MozBrowser} browser
* The browser that we need a URI to show the user in the
* identity panel.
* @return nsIURI of the principal for the browser's content if
* the browser's currentURI should not be used, null otherwise.
*/
_securityURIOverride(browser) {
let uri = browser.currentURI;
if (!uri) {
return null;
}
// If the browser's currentURI is sufficiently good that we
// do not require an override, bail out here.
// browser.currentURI should be used.
let { URI_INHERITS_SECURITY_CONTEXT } = Ci.nsIProtocolHandler;
if (
!(doGetProtocolFlags(uri) & URI_INHERITS_SECURITY_CONTEXT) &&
!(uri.scheme == "about" && uri.filePath == "srcdoc") &&
!(uri.scheme == "about" && uri.filePath == "blank")
) {
return null;
}
let principal = browser.contentPrincipal;
if (principal.isNullPrincipal) {
principal = principal.precursorPrincipal;
}
if (!principal) {
return null;
}
// Can't get the original URI for a PDF viewer principal yet.
if (principal.originNoSuffix == "resource://pdf.js") {
return null;
}
return principal.URI;
},
asyncUpdateUI() {
OpenSearchManager.updateOpenSearchBadge(window);
},
onStatusChange(aWebProgress, aRequest, aStatus, aMessage) {
this.status = aMessage;
StatusPanel.update();
},
// Properties used to cache security state used to update the UI
_event: null,
_lastLocationForEvent: null,
// This is called in multiple ways:
// 1. Due to the nsIWebProgressListener.onContentBlockingEvent notification.
// 2. Called by tabbrowser.xml when updating the current browser.
// 3. Called directly during this object's initializations.
// 4. Due to the nsIWebProgressListener.onLocationChange notification.
// aRequest will be null always in case 2 and 3, and sometimes in case 1 (for
// instance, there won't be a request when STATE_BLOCKED_TRACKING_CONTENT or
// other blocking events are observed).
onContentBlockingEvent(aWebProgress, aRequest, aEvent, aIsSimulated) {
// Don't need to do anything if the data we use to update the UI hasn't
// changed
let uri = gBrowser.currentURI;
let spec = uri.spec;
if (this._event == aEvent && this._lastLocationForEvent == spec) {
return;
}
this._lastLocationForEvent = spec;
if (
typeof aIsSimulated != "boolean" &&
typeof aIsSimulated != "undefined"
) {
throw new Error(
"onContentBlockingEvent: aIsSimulated receieved an unexpected type"
);
}
gProtectionsHandler.onContentBlockingEvent(
aEvent,
aWebProgress,
aIsSimulated,
this._event // previous content blocking event
);
// We need the state of the previous content blocking event, so update
// event after onContentBlockingEvent is called.
this._event = aEvent;
},
// This is called in multiple ways:
// 1. Due to the nsIWebProgressListener.onSecurityChange notification.
// 2. Called by tabbrowser.xml when updating the current browser.
// 3. Called directly during this object's initializations.
// aRequest will be null always in case 2 and 3, and sometimes in case 1.
onSecurityChange(aWebProgress, aRequest, aState, _aIsSimulated) {
// Make sure the "https" part of the URL is striked out or not,
// depending on the current mixed active content blocking state.
gURLBar.formatValue();
// Update the identity panel, making sure we use the precursorPrincipal's
// URI where appropriate, for example about:blank windows.
let uri = gBrowser.currentURI;
let uriOverride = this._securityURIOverride(gBrowser.selectedBrowser);
if (uriOverride) {
uri = uriOverride;
aState |= Ci.nsIWebProgressListener.STATE_IDENTITY_ASSOCIATED;
}
try {
uri = Services.io.createExposableURI(uri);
} catch (e) {}
gIdentityHandler.updateIdentity(aState, uri);
},
// simulate all change notifications after switching tabs
onUpdateCurrentBrowser: function XWB_onUpdateCurrentBrowser(
aStateFlags,
aStatus,
aMessage,
_aTotalProgress
) {
if (FullZoom.updateBackgroundTabs) {
FullZoom.onLocationChange(gBrowser.currentURI, true);
}
CombinedStopReload.onTabSwitch();
// Docshell should normally take care of hiding the tooltip, but we need to do it
// ourselves for tabswitches.
this.hideTooltip();
// Also hide tooltips for content loaded in the parent process:
document.getElementById("aHTMLTooltip").hidePopup();
var nsIWebProgressListener = Ci.nsIWebProgressListener;
var loadingDone = aStateFlags & nsIWebProgressListener.STATE_STOP;
// use a pseudo-object instead of a (potentially nonexistent) channel for getting
// a correct error message - and make sure that the UI is always either in
// loading (STATE_START) or done (STATE_STOP) mode
this.onStateChange(
gBrowser.webProgress,
{ URI: gBrowser.currentURI },
loadingDone
? nsIWebProgressListener.STATE_STOP
: nsIWebProgressListener.STATE_START,
aStatus
);
// status message and progress value are undefined if we're done with loading
if (loadingDone) {
return;
}
this.onStatusChange(gBrowser.webProgress, null, 0, aMessage);
},
};
XPCOMUtils.defineLazyPreferenceGetter(
XULBrowserWindow,
"spinCursorWhileBusy",
"browser.spin_cursor_while_busy"
);
var LinkTargetDisplay = {
get DELAY_SHOW() {
delete this.DELAY_SHOW;
return (this.DELAY_SHOW = Services.prefs.getIntPref(
"browser.overlink-delay"
));
},
DELAY_HIDE: 250,
_timer: 0,
get _contextMenu() {
delete this._contextMenu;
return (this._contextMenu = document.getElementById(
"contentAreaContextMenu"
));
},
update({ hideStatusPanelImmediately = false } = {}) {
if (
this._contextMenu.state == "open" ||
this._contextMenu.state == "showing"
) {
this._contextMenu.addEventListener("popuphidden", () => this.update(), {
once: true,
});
return;
}
clearTimeout(this._timer);
window.removeEventListener("mousemove", this, true);
if (!XULBrowserWindow.overLink) {
if (hideStatusPanelImmediately) {
this._hide();
} else {
this._timer = setTimeout(this._hide.bind(this), this.DELAY_HIDE);
}
return;
}
if (StatusPanel.isVisible) {
StatusPanel.update();
} else {
// Let the display appear when the mouse doesn't move within the delay
this._showDelayed();
window.addEventListener("mousemove", this, true);
}
},
handleEvent(event) {
switch (event.type) {
case "mousemove":
// Restart the delay since the mouse was moved
clearTimeout(this._timer);
this._showDelayed();
break;
}
},
_showDelayed() {
this._timer = setTimeout(
function (self) {
StatusPanel.update();
window.removeEventListener("mousemove", self, true);
},
this.DELAY_SHOW,
this
);
},
_hide() {
clearTimeout(this._timer);
StatusPanel.update();
},
};
var CombinedStopReload = {
// Try to initialize. Returns whether initialization was successful, which
// may mean we had already initialized.
ensureInitialized() {
if (this._initialized) {
return true;
}
if (this._destroyed) {
return false;
}
let reload = document.getElementById("reload-button");
let stop = document.getElementById("stop-button");
// It's possible the stop/reload buttons have been moved to the palette.
// They may be reinserted later, so we will retry initialization if/when
// we get notified of document loads.
if (!stop || !reload) {
return false;
}
this._initialized = true;
if (XULBrowserWindow.stopCommand.getAttribute("disabled") != "true") {
reload.setAttribute("displaystop", "true");
}
stop.addEventListener("click", this);
// Removing attributes based on the observed command doesn't happen if the button
// is in the palette when the command's attribute is removed (cf. bug 309953)
for (let button of [stop, reload]) {
if (button.hasAttribute("disabled")) {
let command = document.getElementById(button.getAttribute("command"));
if (!command.hasAttribute("disabled")) {
button.removeAttribute("disabled");
}
}
}
this.reload = reload;
this.stop = stop;
this.stopReloadContainer = this.reload.parentNode;
this.timeWhenSwitchedToStop = 0;
this.stopReloadContainer.addEventListener("animationend", this);
this.stopReloadContainer.addEventListener("animationcancel", this);
return true;
},
uninit() {
this._destroyed = true;
if (!this._initialized) {
return;
}
this._cancelTransition();
this.stop.removeEventListener("click", this);
this.stopReloadContainer.removeEventListener("animationend", this);
this.stopReloadContainer.removeEventListener("animationcancel", this);
this.stopReloadContainer = null;
this.reload = null;
this.stop = null;
},
handleEvent(event) {
switch (event.type) {
case "click":
if (event.button == 0 && !this.stop.disabled) {
this._stopClicked = true;
}
break;
case "animationcancel":
case "animationend": {
if (
event.target.classList.contains("toolbarbutton-animatable-image") &&
(event.animationName == "reload-to-stop" ||
event.animationName == "stop-to-reload")
) {
this.stopReloadContainer.removeAttribute("animate");
}
}
}
},
onTabSwitch() {
// Reset the time in the event of a tabswitch since the stored time
// would have been associated with the previous tab, so the animation will
// still run if the page has been loading until long after the tab switch.
this.timeWhenSwitchedToStop = window.performance.now();
},
switchToStop(aRequest, aWebProgress) {
if (
!this.ensureInitialized() ||
!this._shouldSwitch(aRequest, aWebProgress)
) {
return;
}
// Store the time that we switched to the stop button only if a request
// is active. Requests are null if the switch is related to a tabswitch.
// This is used to determine if we should show the stop->reload animation.
if (aRequest instanceof Ci.nsIRequest) {
this.timeWhenSwitchedToStop = window.performance.now();
}
let shouldAnimate =
aRequest instanceof Ci.nsIRequest &&
aWebProgress.isTopLevel &&
aWebProgress.isLoadingDocument &&
!gBrowser.tabAnimationsInProgress &&
!gReduceMotion &&
this.stopReloadContainer.closest("#nav-bar-customization-target");
this._cancelTransition();
if (shouldAnimate) {
this.stopReloadContainer.setAttribute("animate", "true");
} else {
this.stopReloadContainer.removeAttribute("animate");
}
this.reload.setAttribute("displaystop", "true");
},
switchToReload(aRequest, aWebProgress) {
if (!this.ensureInitialized() || !this.reload.hasAttribute("displaystop")) {
return;
}
let shouldAnimate =
aRequest instanceof Ci.nsIRequest &&
aWebProgress.isTopLevel &&
!aWebProgress.isLoadingDocument &&
!gBrowser.tabAnimationsInProgress &&
!gReduceMotion &&
this._loadTimeExceedsMinimumForAnimation() &&
this.stopReloadContainer.closest("#nav-bar-customization-target");
if (shouldAnimate) {
this.stopReloadContainer.setAttribute("animate", "true");
} else {
this.stopReloadContainer.removeAttribute("animate");
}
this.reload.removeAttribute("displaystop");
if (!shouldAnimate || this._stopClicked) {
this._stopClicked = false;
this._cancelTransition();
this.reload.disabled =
XULBrowserWindow.reloadCommand.getAttribute("disabled") == "true";
return;
}
if (this._timer) {
return;
}
// Temporarily disable the reload button to prevent the user from
// accidentally reloading the page when intending to click the stop button
this.reload.disabled = true;
this._timer = setTimeout(
function (self) {
self._timer = 0;
self.reload.disabled =
XULBrowserWindow.reloadCommand.getAttribute("disabled") == "true";
},
650,
this
);
},
_loadTimeExceedsMinimumForAnimation() {
// If the time between switching to the stop button then switching to
// the reload button exceeds 150ms, then we will show the animation.
// If we don't know when we switched to stop (switchToStop is called
// after init but before switchToReload), then we will prevent the
// animation from occuring.
return (
this.timeWhenSwitchedToStop &&
window.performance.now() - this.timeWhenSwitchedToStop > 150
);
},
_shouldSwitch(aRequest, aWebProgress) {
if (
aRequest &&
aRequest.originalURI &&
(aRequest.originalURI.schemeIs("chrome") ||
(aRequest.originalURI.schemeIs("about") &&
aWebProgress.isTopLevel &&
!aRequest.originalURI.spec.startsWith("about:reader")))
) {
return false;
}
return true;
},
_cancelTransition() {
if (this._timer) {
clearTimeout(this._timer);
this._timer = 0;
}
},
};
var TabsProgressListener = {
onStateChange(aBrowser, aWebProgress, aRequest, aStateFlags, aStatus) {
// Collect telemetry data about tab load times.
if (
aWebProgress.isTopLevel &&
(!aRequest.originalURI || aRequest.originalURI.scheme != "about")
) {
let metricName = "pageLoad";
if (aWebProgress.loadType & Ci.nsIDocShell.LOAD_CMD_RELOAD) {
// loadType is constructed by shifting loadFlags, this is why we need to
// do the same shifting here.
// https://searchfox.org/mozilla-central/rev/11cfa0462a6b5d8c5e2111b8cfddcf78098f0141/docshell/base/nsDocShellLoadTypes.h#22
if (aWebProgress.loadType & (kSkipCacheFlags << 16)) {
metricName = "pageReloadSkipCache";
} else if (aWebProgress.loadType == Ci.nsIDocShell.LOAD_CMD_RELOAD) {
metricName = "pageReloadNormal";
} else {
metricName = "";
}
}
const timerIdField = `_${metricName}TimerId`;
if (aStateFlags & Ci.nsIWebProgressListener.STATE_IS_WINDOW) {
if (aStateFlags & Ci.nsIWebProgressListener.STATE_START) {
if (metricName) {
if (aBrowser[timerIdField]) {
// Oops, we're seeing another start without having noticed the previous stop.
Glean.browserTimings[metricName].cancel(aBrowser[timerIdField]);
}
aBrowser[timerIdField] = Glean.browserTimings[metricName].start();
}
Glean.browserEngagement.totalTopVisits.true.add();
} else if (
aStateFlags & Ci.nsIWebProgressListener.STATE_STOP &&
/* we won't see STATE_START events for pre-rendered tabs */
metricName &&
aBrowser[timerIdField]
) {
Glean.browserTimings[metricName].stopAndAccumulate(
aBrowser[timerIdField]
);
aBrowser[timerIdField] = null;
BrowserTelemetryUtils.recordSiteOriginTelemetry(browserWindows());
}
} else if (
aStateFlags & Ci.nsIWebProgressListener.STATE_STOP &&
/* we won't see STATE_START events for pre-rendered tabs */
aStatus == Cr.NS_BINDING_ABORTED &&
metricName &&
aBrowser[timerIdField]
) {
Glean.browserTimings[metricName].cancel(aBrowser[timerIdField]);
aBrowser[timerIdField] = null;
}
}
},
onLocationChange(aBrowser, aWebProgress, aRequest, aLocationURI, aFlags) {
// Filter out location changes in sub documents.
if (!aWebProgress.isTopLevel) {
return;
}
// Filter out location changes caused by anchor navigation
// or history.push/pop/replaceState.
if (aFlags & Ci.nsIWebProgressListener.LOCATION_CHANGE_SAME_DOCUMENT) {
// Reader mode cares about history.pushState and friends.
// FIXME: The content process should manage this directly (bug 1445351).
aBrowser.sendMessageToActor(
"Reader:PushState",
{
isArticle: aBrowser.isArticle,
},
"AboutReader"
);
return;
}
// Only need to call locationChange if the PopupNotifications object
// for this window has already been initialized (i.e. its getter no
// longer exists)
if (!Object.getOwnPropertyDescriptor(window, "PopupNotifications").get) {
PopupNotifications.locationChange(aBrowser);
}
let tab = gBrowser.getTabForBrowser(aBrowser);
if (tab && tab._sharingState) {
gBrowser.resetBrowserSharing(aBrowser);
}
gBrowser.readNotificationBox(aBrowser)?.removeTransientNotifications();
// Notify the mailto notification creation code _after_ clearing transient
// notifications, so its notification does not immediately get removed.
Services.obs.notifyObservers(aBrowser, "mailto::onLocationChange", aFlags);
FullZoom.onLocationChange(aLocationURI, false, aBrowser);
CaptivePortalWatcher.onLocationChange(aBrowser);
},
onLinkIconAvailable(browser, dataURI, iconURI) {
if (!iconURI) {
return;
}
if (browser == gBrowser.selectedBrowser) {
// If the "Add Search Engine" page action is in the urlbar, its image
// needs to be set to the new icon, so call updateOpenSearchBadge.
OpenSearchManager.updateOpenSearchBadge(window);
}
},
};
function showFullScreenViewContextMenuItems(popup) {
for (let node of popup.querySelectorAll('[contexttype="fullscreen"]')) {
node.hidden = !window.fullScreen;
}
let autoHide = popup.querySelector(".fullscreen-context-autohide");
if (autoHide) {
FullScreen.updateAutohideMenuitem(autoHide);
}
}
function onViewToolbarCommand(aEvent) {
let node = aEvent.originalTarget;
let menuId;
let toolbarId;
let isVisible;
if (node.dataset.bookmarksToolbarVisibility) {
isVisible = node.dataset.visibilityEnum;
toolbarId = "PersonalToolbar";
menuId = node.parentNode.parentNode.parentNode.id;
Services.prefs.setCharPref(
"browser.toolbars.bookmarks.visibility",
isVisible
);
} else {
menuId = node.parentNode.id;
toolbarId = node.getAttribute("toolbarId");
isVisible = node.getAttribute("checked") == "true";
}
CustomizableUI.setToolbarVisibility(toolbarId, isVisible);
BrowserUsageTelemetry.recordToolbarVisibility(toolbarId, isVisible, menuId);
}
function setToolbarVisibility(
toolbar,
isVisible,
persist = true,
animated = true
) {
let hidingAttribute;
if (toolbar.getAttribute("type") == "menubar") {
hidingAttribute = "autohide";
if (AppConstants.platform == "linux") {
Services.prefs.setBoolPref("ui.key.menuAccessKeyFocuses", !isVisible);
}
} else {
hidingAttribute = "collapsed";
}
if (toolbar == BookmarkingUI.toolbar) {
// For the bookmarks toolbar, we need to persist state before toggling
// the visibility in this window, because the state can be different
// (newtab vs never or always) even when that won't change visibility
// in this window.
if (persist) {
let prefValue;
if (typeof isVisible == "string") {
prefValue = isVisible;
} else {
prefValue = isVisible ? "always" : "never";
}
Services.prefs.setCharPref(
"browser.toolbars.bookmarks.visibility",
prefValue
);
}
switch (isVisible) {
case true:
case "always":
isVisible = true;
break;
case false:
case "never":
isVisible = false;
break;
case "newtab":
default: {
let currentURI;
if (!gBrowserInit.domContentLoaded) {
let uriToLoad = gBrowserInit.uriToLoadPromise;
if (uriToLoad) {
if (Array.isArray(uriToLoad)) {
// We only care about the first tab being loaded
uriToLoad = uriToLoad[0];
}
currentURI = URL.parse(uriToLoad)?.URI;
if (!currentURI) {
currentURI = gBrowser?.currentURI;
}
}
} else {
currentURI = gBrowser.currentURI;
}
isVisible = BookmarkingUI.isOnNewTabPage(currentURI);
break;
}
}
}
if (toolbar.getAttribute(hidingAttribute) == (!isVisible).toString()) {
// If this call will not result in a visibility change, return early
// since dispatching toolbarvisibilitychange will cause views to get rebuilt.
return;
}
toolbar.classList.toggle("instant", !animated);
toolbar.setAttribute(hidingAttribute, !isVisible);
// For the bookmarks toolbar, we will have saved state above. For other
// toolbars, we need to do it after setting the attribute, or we might
// save the wrong state.
if (persist && toolbar.id != "PersonalToolbar") {
Services.xulStore.persist(toolbar, hidingAttribute);
}
let eventParams = {
detail: {
visible: isVisible,
},
bubbles: true,
};
let event = new CustomEvent("toolbarvisibilitychange", eventParams);
toolbar.dispatchEvent(event);
}
function updateToggleControlLabel(control) {
if (!control.hasAttribute("label-checked")) {
return;
}
if (!control.hasAttribute("label-unchecked")) {
control.setAttribute("label-unchecked", control.getAttribute("label"));
}
let prefix = control.getAttribute("checked") == "true" ? "" : "un";
control.setAttribute("label", control.getAttribute(`label-${prefix}checked`));
}
// Propagates Win10's tablet mode into the browser CSS. (Win11's tablet mode is
// more like non-tablet mode and has no need for this.)
const Win10TabletModeUpdater = {
init() {
if (AppConstants.platform == "win") {
this.update(WindowsUIUtils.inWin10TabletMode);
Services.obs.addObserver(this, "tablet-mode-change");
}
},
uninit() {
if (AppConstants.platform == "win") {
Services.obs.removeObserver(this, "tablet-mode-change");
}
},
observe(subject, topic, data) {
this.update(data == "win10-tablet-mode");
},
update(isInTabletMode) {
if (isInTabletMode) {
document.documentElement.setAttribute("win10-tablet-mode", "true");
} else {
document.documentElement.removeAttribute("win10-tablet-mode");
}
},
};
function displaySecurityInfo() {
BrowserCommands.pageInfo(null, "securityTab");
}
// Updates the UI density (for touch and compact mode) based on the uidensity pref.
var gUIDensity = {
MODE_NORMAL: 0,
MODE_COMPACT: 1,
MODE_TOUCH: 2,
uiDensityPref: "browser.uidensity",
autoTouchModePref: "browser.touchmode.auto",
knownPrefs: new Set(["browser.uidensity", "browser.touchmode.auto"]),
init() {
this.update();
Services.obs.addObserver(this, "tablet-mode-change");
Services.prefs.addObserver(this.uiDensityPref, this);
Services.prefs.addObserver(this.autoTouchModePref, this);
},
uninit() {
Services.obs.removeObserver(this, "tablet-mode-change");
Services.prefs.removeObserver(this.uiDensityPref, this);
Services.prefs.removeObserver(this.autoTouchModePref, this);
},
observe(aSubject, aTopic, aPrefName) {
const ok = (() => {
if (aTopic == "tablet-mode-change") {
return true;
}
if (aTopic == "nsPref:changed" && this.knownPrefs.has(aPrefName)) {
return true;
}
return false;
})();
if (!ok) {
return;
}
this.update();
},
getCurrentDensity() {
// Automatically override the uidensity to touch in Windows tablet mode
// (either Win10 or Win11).
if (AppConstants.platform == "win") {
const inTablet =
WindowsUIUtils.inWin10TabletMode || WindowsUIUtils.inWin11TabletMode;
if (inTablet && Services.prefs.getBoolPref(this.autoTouchModePref)) {
return { mode: this.MODE_TOUCH, overridden: true };
}
}
return {
mode: Services.prefs.getIntPref(this.uiDensityPref),
overridden: false,
};
},
update(mode) {
if (mode == null) {
mode = this.getCurrentDensity().mode;
}
let docs = [document.documentElement];
let shouldUpdateSidebar =
SidebarController.initialized && SidebarController.isOpen;
if (shouldUpdateSidebar) {
docs.push(SidebarController.browser.contentDocument.documentElement);
}
for (let doc of docs) {
switch (mode) {
case this.MODE_COMPACT:
doc.setAttribute("uidensity", "compact");
break;
case this.MODE_TOUCH:
doc.setAttribute("uidensity", "touch");
break;
default:
doc.removeAttribute("uidensity");
break;
}
}
if (shouldUpdateSidebar) {
let tree = SidebarController.browser.contentDocument.querySelector(
".sidebar-placesTree"
);
if (tree) {
// Tree items don't update their styles without changing some property on the
// parent tree element, like background-color or border. See bug 1407399.
tree.style.border = "1px";
tree.style.border = "";
}
}
gBrowser.tabContainer.uiDensityChanged();
gURLBar.uiDensityChanged();
},
};
const nodeToTooltipMap = {
"bookmarks-menu-button": "bookmarksMenuButton.tooltip",
"context-reload": "reloadButton.tooltip",
"context-stop": "stopButton.tooltip",
"downloads-button": "downloads.tooltip",
"fullscreen-button": "fullscreenButton.tooltip",
"appMenu-fullscreen-button2": "fullscreenButton.tooltip",
"new-window-button": "newWindowButton.tooltip",
"new-tab-button": "newTabButton.tooltip",
"tabs-newtab-button": "newTabButton.tooltip",
"reload-button": "reloadButton.tooltip",
"stop-button": "stopButton.tooltip",
"urlbar-zoom-button": "urlbar-zoom-button.tooltip",
"appMenu-zoomEnlarge-button2": "zoomEnlarge-button.tooltip",
"appMenu-zoomReset-button2": "zoomReset-button.tooltip",
"appMenu-zoomReduce-button2": "zoomReduce-button.tooltip",
"reader-mode-button": "reader-mode-button.tooltip",
"reader-mode-button-icon": "reader-mode-button.tooltip",
"vertical-tabs-newtab-button": "newTabButton.tooltip",
};
const nodeToShortcutMap = {
"bookmarks-menu-button": "manBookmarkKb",
"context-reload": "key_reload",
"context-stop": "key_stop",
"downloads-button": "key_openDownloads",
"fullscreen-button": "key_enterFullScreen",
"appMenu-fullscreen-button2": "key_enterFullScreen",
"new-window-button": "key_newNavigator",
"new-tab-button": "key_newNavigatorTab",
"tabs-newtab-button": "key_newNavigatorTab",
"reload-button": "key_reload",
"stop-button": "key_stop",
"urlbar-zoom-button": "key_fullZoomReset",
"appMenu-zoomEnlarge-button2": "key_fullZoomEnlarge",
"appMenu-zoomReset-button2": "key_fullZoomReset",
"appMenu-zoomReduce-button2": "key_fullZoomReduce",
"reader-mode-button": "key_toggleReaderMode",
"reader-mode-button-icon": "key_toggleReaderMode",
"vertical-tabs-newtab-button": "key_newNavigatorTab",
};
const gDynamicTooltipCache = new Map();
function GetDynamicShortcutTooltipText(nodeId) {
if (!gDynamicTooltipCache.has(nodeId) && nodeId in nodeToTooltipMap) {
let strId = nodeToTooltipMap[nodeId];
let args = [];
if (nodeId in nodeToShortcutMap) {
let shortcutId = nodeToShortcutMap[nodeId];
let shortcut = document.getElementById(shortcutId);
if (shortcut) {
args.push(ShortcutUtils.prettifyShortcut(shortcut));
}
}
gDynamicTooltipCache.set(
nodeId,
gNavigatorBundle.getFormattedString(strId, args)
);
}
return gDynamicTooltipCache.get(nodeId);
}
function UpdateDynamicShortcutTooltipText(aTooltip) {
let nodeId =
aTooltip.triggerNode.id || aTooltip.triggerNode.getAttribute("anonid");
aTooltip.setAttribute("label", GetDynamicShortcutTooltipText(nodeId));
}
/*
* - [ Dependencies ] ---------------------------------------------------------
* utilityOverlay.js:
* - gatherTextUnder
*/
/**
* Extracts linkNode and href for the current click target.
*
* @param event
* The click event.
* @return [href, linkNode].
*
* @note linkNode will be null if the click wasn't on an anchor
* element (or XLink).
*/
function hrefAndLinkNodeForClickEvent(event) {
function isHTMLLink(aNode) {
// Be consistent with what nsContextMenu.js does.
return (
(HTMLAnchorElement.isInstance(aNode) && aNode.href) ||
(HTMLAreaElement.isInstance(aNode) && aNode.href) ||
HTMLLinkElement.isInstance(aNode)
);
}
let node = event.composedTarget;
while (node && !isHTMLLink(node)) {
node = node.flattenedTreeParentNode;
}
if (node) {
return [node.href, node];
}
// If there is no linkNode, try simple XLink.
let href, baseURI;
node = event.composedTarget;
while (node && !href) {
if (
node.nodeType == Node.ELEMENT_NODE &&
(node.localName == "a" ||
node.namespaceURI == "http://www.w3.org/1998/Math/MathML")
) {
href =
node.getAttribute("href") ||
node.getAttributeNS("http://www.w3.org/1999/xlink", "href");
if (href) {
baseURI = node.baseURI;
break;
}
}
node = node.flattenedTreeParentNode;
}
// In case of XLink, we don't return the node we got href from since
// callers expect <a>-like elements.
return [href ? makeURLAbsolute(baseURI, href) : null, null];
}
/**
* Called whenever the user clicks in the content area.
*
* @param event
* The click event.
* @param isPanelClick
* Whether the event comes from an extension panel.
* @note default event is prevented if the click is handled.
*/
function contentAreaClick(event, isPanelClick) {
if (!event.isTrusted || event.defaultPrevented || event.button != 0) {
return;
}
let [href, linkNode] = hrefAndLinkNodeForClickEvent(event);
if (!href) {
// Not a link, handle middle mouse navigation.
if (
event.button == 1 &&
Services.prefs.getBoolPref("middlemouse.contentLoadURL") &&
!Services.prefs.getBoolPref("general.autoScroll")
) {
middleMousePaste(event);
event.preventDefault();
}
return;
}
// This code only applies if we have a linkNode (i.e. clicks on real anchor
// elements, as opposed to XLink).
if (
linkNode &&
event.button == 0 &&
!event.ctrlKey &&
!event.shiftKey &&
!event.altKey &&
!event.metaKey
) {
// An extension panel's links should target the main content area. Do this
// if no modifier keys are down and if there's no target or the target
// equals _main (the IE convention) or _content (the Mozilla convention).
let target = linkNode.target;
let mainTarget = !target || target == "_content" || target == "_main";
if (isPanelClick && mainTarget) {
// javascript and data links should be executed in the current browser.
if (
linkNode.getAttribute("onclick") ||
href.startsWith("javascript:") ||
href.startsWith("data:")
) {
return;
}
try {
urlSecurityCheck(href, linkNode.ownerDocument.nodePrincipal);
} catch (ex) {
// Prevent loading unsecure destinations.
event.preventDefault();
return;
}
openLinkIn(href, "current", {
allowThirdPartyFixup: false,
});
event.preventDefault();
return;
}
}
handleLinkClick(event, href, linkNode);
// Mark the page as a user followed link. This is done so that history can
// distinguish automatic embed visits from user activated ones. For example
// pages loaded in frames are embed visits and lost with the session, while
// visits across frames should be preserved.
try {
if (!PrivateBrowsingUtils.isWindowPrivate(window)) {
PlacesUIUtils.markPageAsFollowedLink(href);
}
} catch (ex) {
/* Skip invalid URIs. */
}
}
/**
* Handles clicks on links.
*
* @return true if the click event was handled, false otherwise.
*/
function handleLinkClick(event, href, linkNode) {
if (event.button == 2) {
// right click
return false;
}
var where = BrowserUtils.whereToOpenLink(event);
if (where == "current") {
return false;
}
var doc = event.target.ownerDocument;
let referrerInfo = Cc["@mozilla.org/referrer-info;1"].createInstance(
Ci.nsIReferrerInfo
);
if (linkNode) {
referrerInfo.initWithElement(linkNode);
} else {
referrerInfo.initWithDocument(doc);
}
if (where == "save") {
saveURL(
href,
null,
linkNode ? gatherTextUnder(linkNode) : "",
null,
true,
true,
referrerInfo,
doc.cookieJarSettings,
doc
);
event.preventDefault();
return true;
}
let frameID = WebNavigationFrames.getFrameId(doc.defaultView);
urlSecurityCheck(href, doc.nodePrincipal);
let params = {
charset: doc.characterSet,
referrerInfo,
originPrincipal: doc.nodePrincipal,
originStoragePrincipal: doc.effectiveStoragePrincipal,
triggeringPrincipal: doc.nodePrincipal,
csp: doc.csp,
frameID,
};
// The new tab/window must use the same userContextId
if (doc.nodePrincipal.originAttributes.userContextId) {
params.userContextId = doc.nodePrincipal.originAttributes.userContextId;
}
openLinkIn(href, where, params);
event.preventDefault();
return true;
}
/**
* Handles paste on middle mouse clicks.
*
* @param event {Event | Object} Event or JSON object.
*/
function middleMousePaste(event) {
let clipboard = readFromClipboard();
if (!clipboard) {
return;
}
// Strip embedded newlines and surrounding whitespace, to match the URL
// bar's behavior (stripsurroundingwhitespace)
clipboard = clipboard.replace(/\s*\n\s*/g, "");
clipboard = UrlbarUtils.stripUnsafeProtocolOnPaste(clipboard);
// if it's not the current tab, we don't need to do anything because the
// browser doesn't exist.
let where = BrowserUtils.whereToOpenLink(event, true, false);
let lastLocationChange;
if (where == "current") {
lastLocationChange = gBrowser.selectedBrowser.lastLocationChange;
}
UrlbarUtils.getShortcutOrURIAndPostData(clipboard).then(data => {
try {
makeURI(data.url);
} catch (ex) {
// Not a valid URI.
return;
}
try {
UrlbarUtils.addToUrlbarHistory(data.url, window);
} catch (ex) {
// Things may go wrong when adding url to session history,
// but don't let that interfere with the loading of the url.
console.error(ex);
}
if (
where != "current" ||
lastLocationChange == gBrowser.selectedBrowser.lastLocationChange
) {
openUILink(data.url, event, {
ignoreButton: true,
allowInheritPrincipal: data.mayInheritPrincipal,
triggeringPrincipal: gBrowser.selectedBrowser.contentPrincipal,
csp: gBrowser.selectedBrowser.csp,
});
}
});
if (Event.isInstance(event)) {
event.stopPropagation();
}
}
// handleDroppedLink has the following 2 overloads:
// handleDroppedLink(event, url, name, triggeringPrincipal)
// handleDroppedLink(event, links, triggeringPrincipal)
function handleDroppedLink(
event,
urlOrLinks,
nameOrTriggeringPrincipal,
triggeringPrincipal
) {
let links;
if (Array.isArray(urlOrLinks)) {
links = urlOrLinks;
triggeringPrincipal = nameOrTriggeringPrincipal;
} else {
links = [{ url: urlOrLinks, nameOrTriggeringPrincipal, type: "" }];
}
let lastLocationChange = gBrowser.selectedBrowser.lastLocationChange;
let userContextId = gBrowser.selectedBrowser.getAttribute("usercontextid");
// event is null if links are dropped in content process.
// inBackground should be false, as it's loading into current browser.
let inBackground = false;
if (event) {
inBackground = Services.prefs.getBoolPref("browser.tabs.loadInBackground");
if (event.shiftKey) {
inBackground = !inBackground;
}
}
(async function () {
if (
links.length >=
Services.prefs.getIntPref("browser.tabs.maxOpenBeforeWarn")
) {
// Sync dialog cannot be used inside drop event handler.
let answer = await OpenInTabsUtils.promiseConfirmOpenInTabs(
links.length,
window
);
if (!answer) {
return;
}
}
let urls = [];
let postDatas = [];
for (let link of links) {
let data = await UrlbarUtils.getShortcutOrURIAndPostData(link.url);
urls.push(data.url);
postDatas.push(data.postData);
}
if (lastLocationChange == gBrowser.selectedBrowser.lastLocationChange) {
gBrowser.loadTabs(urls, {
inBackground,
replace: true,
allowThirdPartyFixup: false,
postDatas,
userContextId,
triggeringPrincipal,
});
}
})();
// If links are dropped in content process, event.preventDefault() should be
// called in content process.
if (event) {
// Keep the event from being handled by the dragDrop listeners
// built-in to gecko if they happen to be above us.
event.preventDefault();
}
}
// Note that this is also called from non-browser windows on OSX, which do
// share menu items but not much else. See nonbrowser-mac.js.
var BrowserOffline = {
_inited: false,
// BrowserOffline Public Methods
init() {
if (!this._uiElement) {
this._uiElement = document.getElementById("cmd_toggleOfflineStatus");
}
Services.obs.addObserver(this, "network:offline-status-changed");
this._updateOfflineUI(Services.io.offline);
this._inited = true;
},
uninit() {
if (this._inited) {
Services.obs.removeObserver(this, "network:offline-status-changed");
}
},
toggleOfflineStatus() {
var ioService = Services.io;
if (!ioService.offline && !this._canGoOffline()) {
this._updateOfflineUI(false);
return;
}
ioService.offline = !ioService.offline;
},
// nsIObserver
observe(aSubject, aTopic) {
if (aTopic != "network:offline-status-changed") {
return;
}
// This notification is also received because of a loss in connectivity,
// which we ignore by updating the UI to the current value of io.offline
this._updateOfflineUI(Services.io.offline);
},
// BrowserOffline Implementation Methods
_canGoOffline() {
try {
var cancelGoOffline = Cc["@mozilla.org/supports-PRBool;1"].createInstance(
Ci.nsISupportsPRBool
);
Services.obs.notifyObservers(cancelGoOffline, "offline-requested");
// Something aborted the quit process.
if (cancelGoOffline.data) {
return false;
}
} catch (ex) {}
return true;
},
_uiElement: null,
_updateOfflineUI(aOffline) {
var offlineLocked = Services.prefs.prefIsLocked("network.online");
if (offlineLocked) {
this._uiElement.setAttribute("disabled", "true");
}
this._uiElement.setAttribute("checked", aOffline);
},
};
var CanvasPermissionPromptHelper = {
_permissionsPrompt: "canvas-permissions-prompt",
_permissionsPromptHideDoorHanger: "canvas-permissions-prompt-hide-doorhanger",
_notificationIcon: "canvas-notification-icon",
init() {
Services.obs.addObserver(this, this._permissionsPrompt);
Services.obs.addObserver(this, this._permissionsPromptHideDoorHanger);
},
uninit() {
Services.obs.removeObserver(this, this._permissionsPrompt);
Services.obs.removeObserver(this, this._permissionsPromptHideDoorHanger);
},
// aSubject is an nsIBrowser (e10s) or an nsIDOMWindow (non-e10s).
// aData is an Origin string.
observe(aSubject, aTopic, aData) {
if (
aTopic != this._permissionsPrompt &&
aTopic != this._permissionsPromptHideDoorHanger
) {
return;
}
let browser;
if (aSubject instanceof Ci.nsIDOMWindow) {
browser = aSubject.docShell.chromeEventHandler;
} else {
browser = aSubject;
}
if (browser?.ownerGlobal !== window) {
// Must belong to some other window.
return;
}
let message = gNavigatorBundle.getFormattedString(
"canvas.siteprompt2",
["<>"],
1
);
let principal =
Services.scriptSecurityManager.createContentPrincipalFromOrigin(aData);
function setCanvasPermission(aPerm, aPersistent) {
Services.perms.addFromPrincipal(
principal,
"canvas",
aPerm,
aPersistent
? Ci.nsIPermissionManager.EXPIRE_NEVER
: Ci.nsIPermissionManager.EXPIRE_SESSION
);
}
let mainAction = {
label: gNavigatorBundle.getString("canvas.allow2"),
accessKey: gNavigatorBundle.getString("canvas.allow2.accesskey"),
callback(state) {
setCanvasPermission(
Ci.nsIPermissionManager.ALLOW_ACTION,
state && state.checkboxChecked
);
},
};
let secondaryActions = [
{
label: gNavigatorBundle.getString("canvas.block"),
accessKey: gNavigatorBundle.getString("canvas.block.accesskey"),
callback(state) {
setCanvasPermission(
Ci.nsIPermissionManager.DENY_ACTION,
state && state.checkboxChecked
);
},
},
];
let checkbox = {
// In PB mode, we don't want the "always remember" checkbox
show: !PrivateBrowsingUtils.isWindowPrivate(window),
};
if (checkbox.show) {
checkbox.checked = true;
checkbox.label = gBrowserBundle.GetStringFromName("canvas.remember2");
}
let options = {
checkbox,
name: principal.host,
learnMoreURL:
Services.urlFormatter.formatURLPref("app.support.baseURL") +
"fingerprint-permission",
dismissed: aTopic == this._permissionsPromptHideDoorHanger,
eventCallback(e) {
if (e == "showing") {
this.browser.ownerDocument.getElementById(
"canvas-permissions-prompt-warning"
).textContent = gBrowserBundle.GetStringFromName(
"canvas.siteprompt2.warning"
);
}
},
};
PopupNotifications.show(
browser,
this._permissionsPrompt,
message,
this._notificationIcon,
mainAction,
secondaryActions,
options
);
},
};
var WebAuthnPromptHelper = {
_icon: "webauthn-notification-icon",
_topic: "webauthn-prompt",
// The current notification, if any. The U2F manager is a singleton, we will
// never allow more than one active request. And thus we'll never have more
// than one notification either.
_current: null,
// The current transaction ID. Will be checked when we're notified of the
// cancellation of an ongoing WebAuthhn request.
_tid: 0,
// Translation object
_l10n: null,
init() {
this._l10n = new Localization(["browser/webauthnDialog.ftl"], true);
Services.obs.addObserver(this, this._topic);
},
uninit() {
Services.obs.removeObserver(this, this._topic);
},
observe(aSubject, aTopic, aData) {
switch (aTopic) {
case "fullscreen-nav-toolbox":
// Prevent the navigation toolbox from being hidden while a WebAuthn
// prompt is visible.
if (aData == "hidden" && this._tid != 0) {
FullScreen.showNavToolbox();
}
return;
case "fullscreen-painted":
// Prevent DOM elements from going fullscreen while a WebAuthn
// prompt is shown.
if (this._tid != 0) {
FullScreen.exitDomFullScreen();
}
return;
case this._topic:
break;
default:
return;
}
// aTopic is equal to this._topic
let data = JSON.parse(aData);
// If we receive a cancel, it might be a WebAuthn prompt starting in another
// window, and the other window's browsing context will send out the
// cancellations, so any cancel action we get should prompt us to cancel.
if (data.prompt.type == "cancel") {
this.cancel(data);
return;
}
if (
data.browsingContextId !== gBrowser.selectedBrowser.browsingContext.id
) {
// Must belong to some other window.
return;
}
let mgr = Cc["@mozilla.org/webauthn/service;1"].getService(
Ci.nsIWebAuthnService
);
if (data.prompt.type == "presence") {
this.presence_required(mgr, data);
} else if (data.prompt.type == "attestation-consent") {
this.attestation_consent(mgr, data);
} else if (data.prompt.type == "pin-required") {
this.pin_required(mgr, false, data);
} else if (data.prompt.type == "pin-invalid") {
this.pin_required(mgr, true, data);
} else if (data.prompt.type == "select-sign-result") {
this.select_sign_result(mgr, data);
} else if (data.prompt.type == "already-registered") {
this.show_info(
mgr,
data.origin,
data.tid,
"alreadyRegistered",
"webauthn.alreadyRegisteredPrompt"
);
} else if (data.prompt.type == "select-device") {
this.show_info(
mgr,
data.origin,
data.tid,
"selectDevice",
"webauthn.selectDevicePrompt"
);
} else if (data.prompt.type == "pin-auth-blocked") {
this.show_info(
mgr,
data.origin,
data.tid,
"pinAuthBlocked",
"webauthn.pinAuthBlockedPrompt"
);
} else if (data.prompt.type == "uv-blocked") {
this.show_info(
mgr,
data.origin,
data.tid,
"uvBlocked",
"webauthn.uvBlockedPrompt"
);
} else if (data.prompt.type == "uv-invalid") {
let retriesLeft = data.prompt.retries;
let dialogText;
if (retriesLeft === 0) {
// We can skip that because it will either be replaced
// by uv-blocked or by PIN-prompt
return;
} else if (retriesLeft == null || retriesLeft < 0) {
dialogText = this._l10n.formatValueSync(
"webauthn-uv-invalid-short-prompt"
);
} else {
dialogText = this._l10n.formatValueSync(
"webauthn-uv-invalid-long-prompt",
{ retriesLeft }
);
}
let mainAction = this.buildCancelAction(mgr, data.tid);
this.show_formatted_msg(data.tid, "uvInvalid", dialogText, mainAction);
} else if (data.prompt.type == "device-blocked") {
this.show_info(
mgr,
data.origin,
data.tid,
"deviceBlocked",
"webauthn.deviceBlockedPrompt"
);
} else if (data.prompt.type == "pin-not-set") {
this.show_info(
mgr,
data.origin,
data.tid,
"pinNotSet",
"webauthn.pinNotSetPrompt"
);
}
},
prompt_for_password(origin, wasInvalid, retriesLeft, aPassword) {
this.reset();
let dialogText;
if (!wasInvalid) {
dialogText = this._l10n.formatValueSync("webauthn-pin-required-prompt");
} else if (retriesLeft == null || retriesLeft < 0 || retriesLeft > 3) {
// The token will need to be power cycled after three incorrect attempts,
// so we show a short error message that does not include retriesLeft. It
// would be confusing to display retriesLeft at this point, as the user
// will feel that they only get three attempts.
// We also only show the short prompt in the case the token doesn't
// support/send a retries-counter. Then we simply don't know how many are left.
dialogText = this._l10n.formatValueSync(
"webauthn-pin-invalid-short-prompt"
);
} else {
// The user is close to having their PIN permanently blocked. Show a more
// severe warning that includes the retriesLeft counter.
dialogText = this._l10n.formatValueSync(
"webauthn-pin-invalid-long-prompt",
{ retriesLeft }
);
}
let res = Services.prompt.promptPasswordBC(
gBrowser.selectedBrowser.browsingContext,
Services.prompt.MODAL_TYPE_TAB,
origin,
dialogText,
aPassword
);
return res;
},
select_sign_result(mgr, { origin, tid, prompt: { entities } }) {
let unknownAccount = this._l10n.formatValueSync(
"webauthn-select-sign-result-unknown-account"
);
let secondaryActions = [];
for (let i = 0; i < entities.length; i++) {
let label = entities[i].name ?? unknownAccount;
secondaryActions.push({
label,
accessKey: i.toString(),
callback() {
mgr.selectionCallback(tid, i);
},
});
}
let mainAction = this.buildCancelAction(mgr, tid);
let options = { escAction: "buttoncommand" };
this.show(
tid,
"select-sign-result",
"webauthn.selectSignResultPrompt",
origin,
mainAction,
secondaryActions,
options
);
},
pin_required(mgr, wasInvalid, { origin, tid, prompt: { retries } }) {
let aPassword = Object.create(null); // create a "null" object
let res = this.prompt_for_password(origin, wasInvalid, retries, aPassword);
if (res) {
mgr.pinCallback(tid, aPassword.value);
} else {
mgr.cancel(tid);
}
},
presence_required(mgr, { origin, tid }) {
let mainAction = this.buildCancelAction(mgr, tid);
let options = { escAction: "buttoncommand" };
let secondaryActions = [];
let message = "webauthn.userPresencePrompt";
this.show(
tid,
"presence",
message,
origin,
mainAction,
secondaryActions,
options
);
},
attestation_consent(mgr, { origin, tid }) {
let mainAction = {
label: gNavigatorBundle.getString("webauthn.allow"),
accessKey: gNavigatorBundle.getString("webauthn.allow.accesskey"),
callback(_state) {
mgr.setHasAttestationConsent(tid, true);
},
};
let secondaryActions = [
{
label: gNavigatorBundle.getString("webauthn.block"),
accessKey: gNavigatorBundle.getString("webauthn.block.accesskey"),
callback(_state) {
mgr.setHasAttestationConsent(tid, false);
},
},
];
let learnMoreURL =
Services.urlFormatter.formatURLPref("app.support.baseURL") +
"webauthn-direct-attestation";
let options = {
learnMoreURL,
hintText: "webauthn.registerDirectPromptHint",
};
this.show(
tid,
"register-direct",
"webauthn.registerDirectPrompt3",
origin,
mainAction,
secondaryActions,
options
);
},
show_info(mgr, origin, tid, id, stringId) {
let mainAction = this.buildCancelAction(mgr, tid);
this.show(tid, id, stringId, origin, mainAction);
},
show(
tid,
id,
stringId,
origin,
mainAction,
secondaryActions = [],
options = {}
) {
let brandShortName = document
.getElementById("bundle_brand")
.getString("brandShortName");
let message = gNavigatorBundle.getFormattedString(stringId, [
"<>",
brandShortName,
]);
try {
origin = Services.io.newURI(origin).asciiHost;
} catch (e) {
/* Might fail for arbitrary U2F RP IDs. */
}
options.name = origin;
this.show_formatted_msg(
tid,
id,
message,
mainAction,
secondaryActions,
options
);
},
show_formatted_msg(
tid,
id,
message,
mainAction,
secondaryActions = [],
options = {}
) {
this.reset();
this._tid = tid;
// We need to prevent some fullscreen transitions while WebAuthn prompts
// are shown. The `fullscreen-painted` topic is notified when DOM elements
// go fullscreen.
Services.obs.addObserver(this, "fullscreen-painted");
// The `fullscreen-nav-toolbox` topic is notified when the nav toolbox is
// hidden.
Services.obs.addObserver(this, "fullscreen-nav-toolbox");
// Ensure that no DOM elements are already fullscreen.
FullScreen.exitDomFullScreen();
// Ensure that the nav toolbox is being shown.
if (window.fullScreen) {
FullScreen.showNavToolbox();
}
let brandShortName = document
.getElementById("bundle_brand")
.getString("brandShortName");
if (options.hintText) {
options.hintText = gNavigatorBundle.getFormattedString(options.hintText, [
brandShortName,
]);
}
options.hideClose = true;
options.persistent = true;
options.eventCallback = event => {
if (event == "removed") {
Services.obs.removeObserver(this, "fullscreen-painted");
Services.obs.removeObserver(this, "fullscreen-nav-toolbox");
this._current = null;
this._tid = 0;
}
};
this._current = PopupNotifications.show(
gBrowser.selectedBrowser,
`webauthn-prompt-${id}`,
message,
this._icon,
mainAction,
secondaryActions,
options
);
},
cancel({ tid }) {
if (this._tid == tid) {
this.reset();
}
},
reset() {
if (this._current) {
this._current.remove();
}
},
buildCancelAction(mgr, tid) {
return {
label: gNavigatorBundle.getString("webauthn.cancel"),
accessKey: gNavigatorBundle.getString("webauthn.cancel.accesskey"),
callback() {
mgr.cancel(tid);
},
};
},
};
function CanCloseWindow() {
// Avoid redundant calls to canClose from showing multiple
// PermitUnload dialogs.
if (Services.startup.shuttingDown || window.skipNextCanClose) {
return true;
}
for (let browser of gBrowser.browsers) {
// Don't instantiate lazy browsers.
if (!browser.isConnected) {
continue;
}
let { permitUnload } = browser.permitUnload();
if (!permitUnload) {
return false;
}
}
return true;
}
function WindowIsClosing(event) {
let source;
if (event) {
let target = event.sourceEvent?.target;
if (target?.id?.startsWith("menu_")) {
source = "menuitem";
} else if (target?.nodeName == "toolbarbutton") {
source = "close-button";
} else {
let key = AppConstants.platform == "macosx" ? "metaKey" : "ctrlKey";
source = event[key] ? "shortcut" : "OS";
}
}
if (!closeWindow(false, warnAboutClosingWindow, source)) {
return false;
}
// In theory we should exit here and the Window's internal Close
// method should trigger canClose on BrowserDOMWindow. However, by
// that point it's too late to be able to show a prompt for
// PermitUnload. So we do it here, when we still can.
if (CanCloseWindow()) {
// This flag ensures that the later canClose call does nothing.
// It's only needed to make tests pass, since they detect the
// prompt even when it's not actually shown.
window.skipNextCanClose = true;
return true;
}
return false;
}
/**
* Checks if this is the last full *browser* window around. If it is, this will
* be communicated like quitting. Otherwise, we warn about closing multiple tabs.
*
* @returns true if closing can proceed, false if it got cancelled.
*/
function warnAboutClosingWindow() {
// Popups aren't considered full browser windows; we also ignore private windows.
let isPBWindow =
PrivateBrowsingUtils.isWindowPrivate(window) &&
!PrivateBrowsingUtils.permanentPrivateBrowsing;
if (!isPBWindow && !toolbar.visible) {
return gBrowser.warnAboutClosingTabs(
gBrowser.openTabs.length,
gBrowser.closingTabsEnum.ALL
);
}
// Figure out if there's at least one other browser window around.
let otherPBWindowExists = false;
let otherWindowExists = false;
for (let win of browserWindows()) {
if (!win.closed && win != window) {
otherWindowExists = true;
if (isPBWindow && PrivateBrowsingUtils.isWindowPrivate(win)) {
otherPBWindowExists = true;
}
// If the current window is not in private browsing mode we don't need to
// look for other pb windows, we can leave the loop when finding the
// first non-popup window. If however the current window is in private
// browsing mode then we need at least one other pb and one non-popup
// window to break out early.
if (!isPBWindow || otherPBWindowExists) {
break;
}
}
}
if (isPBWindow && !otherPBWindowExists) {
let exitingCanceled = Cc["@mozilla.org/supports-PRBool;1"].createInstance(
Ci.nsISupportsPRBool
);
exitingCanceled.data = false;
Services.obs.notifyObservers(exitingCanceled, "last-pb-context-exiting");
if (exitingCanceled.data) {
return false;
}
}
if (otherWindowExists) {
return (
isPBWindow ||
gBrowser.warnAboutClosingTabs(
gBrowser.openTabs.length,
gBrowser.closingTabsEnum.ALL
)
);
}
let os = Services.obs;
let closingCanceled = Cc["@mozilla.org/supports-PRBool;1"].createInstance(
Ci.nsISupportsPRBool
);
os.notifyObservers(closingCanceled, "browser-lastwindow-close-requested");
if (closingCanceled.data) {
return false;
}
os.notifyObservers(null, "browser-lastwindow-close-granted");
// OS X doesn't quit the application when the last window is closed, but keeps
// the session alive. Hence don't prompt users to save tabs, but warn about
// closing multiple tabs.
return (
AppConstants.platform != "macosx" ||
isPBWindow ||
gBrowser.warnAboutClosingTabs(
gBrowser.openTabs.length,
gBrowser.closingTabsEnum.ALL
)
);
}
var MailIntegration = {
sendLinkForBrowser(aBrowser) {
this.sendMessage(
gURLBar.makeURIReadable(aBrowser.currentURI).displaySpec,
aBrowser.contentTitle
);
},
sendMessage(aBody, aSubject) {
// generate a mailto url based on the url and the url's title
var mailtoUrl = "mailto:";
if (aBody) {
mailtoUrl += "?body=" + encodeURIComponent(aBody);
mailtoUrl += "&subject=" + encodeURIComponent(aSubject);
}
var uri = makeURI(mailtoUrl);
// now pass this uri to the operating system
this._launchExternalUrl(uri);
},
// a generic method which can be used to pass arbitrary urls to the operating
// system.
// aURL --> a nsIURI which represents the url to launch
_launchExternalUrl(aURL) {
var extProtocolSvc = Cc[
"@mozilla.org/uriloader/external-protocol-service;1"
].getService(Ci.nsIExternalProtocolService);
if (extProtocolSvc) {
extProtocolSvc.loadURI(
aURL,
Services.scriptSecurityManager.getSystemPrincipal()
);
}
},
};
/**
* When the browser is being controlled from out-of-process,
* e.g. when Marionette or the remote debugging protocol is used,
* we add a visual hint to the browser UI to indicate to the user
* that the browser session is under remote control.
*
* This is called when the content browser initialises (from gBrowserInit.onLoad())
* and when the "remote-listening" system notification fires.
*/
const gRemoteControl = {
observe() {
gRemoteControl.updateVisualCue();
},
updateVisualCue() {
// Disable updating the remote control cue for performance tests,
// because these could fail due to an early initialization of Marionette.
const disableRemoteControlCue = Services.prefs.getBoolPref(
"browser.chrome.disableRemoteControlCueForTests",
false
);
if (disableRemoteControlCue && Cu.isInAutomation) {
return;
}
const mainWindow = document.documentElement;
const remoteControlComponent = this.getRemoteControlComponent();
if (remoteControlComponent) {
mainWindow.setAttribute("remotecontrol", "true");
const remoteControlIcon = document.getElementById("remote-control-icon");
document.l10n.setAttributes(
remoteControlIcon,
"urlbar-remote-control-notification-anchor2",
{ component: remoteControlComponent }
);
} else {
mainWindow.removeAttribute("remotecontrol");
}
},
getRemoteControlComponent() {
// For DevTools sockets, only show the remote control cue if the socket is
// not coming from a regular Browser Toolbox debugging session.
if (
DevToolsSocketStatus.hasSocketOpened({
excludeBrowserToolboxSockets: true,
})
) {
return "DevTools";
}
if (Marionette.running) {
return "Marionette";
}
if (RemoteAgent.running) {
return "RemoteAgent";
}
return null;
},
};
// Note that this is also called from non-browser windows on OSX, which do
// share menu items but not much else. See nonbrowser-mac.js.
var gPrivateBrowsingUI = {
init: function PBUI_init() {
// Do nothing for normal windows
if (!PrivateBrowsingUtils.isWindowPrivate(window)) {
return;
}
// Disable the Clear Recent History... menu item when in PB mode
// temporary fix until bug 463607 is fixed
document.getElementById("Tools:Sanitize").setAttribute("disabled", "true");
if (window.location.href != AppConstants.BROWSER_CHROME_URL) {
return;
}
// Adjust the window's title
let docElement = document.documentElement;
docElement.setAttribute(
"privatebrowsingmode",
PrivateBrowsingUtils.permanentPrivateBrowsing ? "permanent" : "temporary"
);
gBrowser.updateTitlebar();
if (PrivateBrowsingUtils.permanentPrivateBrowsing) {
let hideNewWindowItem = (windowItem, privateWindowItem) => {
// In permanent browsing mode command "cmd_newNavigator" should act the
// same as "Tools:PrivateBrowsing".
// So we hide the redundant private window item. But we also rename the
// "new window" item to be "new private window".
// NOTE: We choose to hide privateWindowItem rather than windowItem so
// that we still show the "key" for "cmd_newNavigator" (Ctrl+N) rather
// than (Ctrl+Shift+P).
privateWindowItem.hidden = true;
windowItem.setAttribute(
"data-l10n-id",
privateWindowItem.getAttribute("data-l10n-id")
);
};
// Adjust the File menu items.
hideNewWindowItem(
document.getElementById("menu_newNavigator"),
document.getElementById("menu_newPrivateWindow")
);
// Adjust the App menu items.
hideNewWindowItem(
PanelMultiView.getViewNode(document, "appMenu-new-window-button2"),
PanelMultiView.getViewNode(
document,
"appMenu-new-private-window-button2"
)
);
}
},
};
/**
* Switch to a tab that has a given URI, and focuses its browser window.
* If a matching tab is in this window, it will be switched to. Otherwise, other
* windows will be searched.
*
* @param aURI
* URI to search for
* @param aOpenNew
* True to open a new tab and switch to it, if no existing tab is found.
* If no suitable window is found, a new one will be opened.
* @param aOpenParams
* If switching to this URI results in us opening a tab, aOpenParams
* will be the parameter object that gets passed to openTrustedLinkIn. Please
* see the documentation for openTrustedLinkIn to see what parameters can be
* passed via this object.
* This object also allows:
* - 'ignoreFragment' property to be set to true to exclude fragment-portion
* matching when comparing URIs.
* If set to "whenComparing", the fragment will be unmodified.
* If set to "whenComparingAndReplace", the fragment will be replaced.
* - 'ignoreQueryString' boolean property to be set to true to exclude query string
* matching when comparing URIs.
* - 'replaceQueryString' boolean property to be set to true to exclude query string
* matching when comparing URIs and overwrite the initial query string with
* the one from the new URI.
* - 'adoptIntoActiveWindow' boolean property to be set to true to adopt the tab
* into the current window.
* @param aUserContextId
* If not null, will switch to the first found tab having the provided
* userContextId.
* @return True if an existing tab was found, false otherwise
*/
function switchToTabHavingURI(
aURI,
aOpenNew,
aOpenParams = {},
aUserContextId = null
) {
// Certain URLs can be switched to irrespective of the source or destination
// window being in private browsing mode:
const kPrivateBrowsingWhitelist = new Set(["about:addons"]);
let ignoreFragment = aOpenParams.ignoreFragment;
let ignoreQueryString = aOpenParams.ignoreQueryString;
let replaceQueryString = aOpenParams.replaceQueryString;
let adoptIntoActiveWindow = aOpenParams.adoptIntoActiveWindow;
// These properties are only used by switchToTabHavingURI and should
// not be used as a parameter for the new load.
delete aOpenParams.ignoreFragment;
delete aOpenParams.ignoreQueryString;
delete aOpenParams.replaceQueryString;
delete aOpenParams.adoptIntoActiveWindow;
let isBrowserWindow = !!window.gBrowser;
// This will switch to the tab in aWindow having aURI, if present.
function switchIfURIInWindow(aWindow) {
// We can switch tab only if if both the source and destination windows have
// the same private-browsing status.
if (
!kPrivateBrowsingWhitelist.has(aURI.spec) &&
PrivateBrowsingUtils.isWindowPrivate(window) !==
PrivateBrowsingUtils.isWindowPrivate(aWindow)
) {
return false;
}
// Remove the query string, fragment, both, or neither from a given url.
function cleanURL(url, removeQuery, removeFragment) {
let ret = url;
if (removeFragment) {
ret = ret.split("#")[0];
if (removeQuery) {
// This removes a query, if present before the fragment.
ret = ret.split("?")[0];
}
} else if (removeQuery) {
// This is needed in case there is a fragment after the query.
let fragment = ret.split("#")[1];
ret = ret
.split("?")[0]
.concat(fragment != undefined ? "#".concat(fragment) : "");
}
return ret;
}
// Need to handle nsSimpleURIs here too (e.g. about:...), which don't
// work correctly with URL objects - so treat them as strings
let ignoreFragmentWhenComparing =
typeof ignoreFragment == "string" &&
ignoreFragment.startsWith("whenComparing");
let requestedCompare = cleanURL(
aURI.displaySpec,
ignoreQueryString || replaceQueryString,
ignoreFragmentWhenComparing
);
let browsers = aWindow.gBrowser.browsers;
for (let i = 0; i < browsers.length; i++) {
let browser = browsers[i];
let browserCompare = cleanURL(
browser.currentURI.displaySpec,
ignoreQueryString || replaceQueryString,
ignoreFragmentWhenComparing
);
let browserUserContextId = browser.getAttribute("usercontextid") || "";
if (aUserContextId != null && aUserContextId != browserUserContextId) {
continue;
}
if (requestedCompare == browserCompare) {
// If adoptIntoActiveWindow is set, and this is a cross-window switch,
// adopt the tab into the current window, after the active tab.
let doAdopt =
adoptIntoActiveWindow && isBrowserWindow && aWindow != window;
if (doAdopt) {
const newTab = window.gBrowser.adoptTab(
aWindow.gBrowser.getTabForBrowser(browser),
{
tabIndex: window.gBrowser.tabContainer.selectedIndex + 1,
selectTab: true,
}
);
if (!newTab) {
doAdopt = false;
}
}
if (!doAdopt) {
aWindow.focus();
}
if (ignoreFragment == "whenComparingAndReplace" || replaceQueryString) {
browser.loadURI(aURI, {
triggeringPrincipal:
aOpenParams.triggeringPrincipal ||
_createNullPrincipalFromTabUserContextId(),
});
}
if (!doAdopt) {
aWindow.gBrowser.tabContainer.selectedIndex = i;
}
return true;
}
}
return false;
}
// This can be passed either nsIURI or a string.
if (!(aURI instanceof Ci.nsIURI)) {
aURI = Services.io.newURI(aURI);
}
// Prioritise this window.
if (isBrowserWindow && switchIfURIInWindow(window)) {
return true;
}
for (let browserWin of browserWindows()) {
// Skip closed (but not yet destroyed) windows,
// and the current window (which was checked earlier).
if (browserWin.closed || browserWin == window) {
continue;
}
if (switchIfURIInWindow(browserWin)) {
return true;
}
}
// No opened tab has that url.
if (aOpenNew) {
if (
UrlbarPrefs.get("switchTabs.searchAllContainers") &&
aUserContextId != null
) {
aOpenParams.userContextId = aUserContextId;
}
if (isBrowserWindow && gBrowser.selectedTab.isEmpty) {
openTrustedLinkIn(aURI.spec, "current", aOpenParams);
} else {
openTrustedLinkIn(aURI.spec, "tab", aOpenParams);
}
}
return false;
}
// Prompt user to restart the browser in safe mode
function safeModeRestart() {
if (Services.appinfo.inSafeMode) {
let cancelQuit = Cc["@mozilla.org/supports-PRBool;1"].createInstance(
Ci.nsISupportsPRBool
);
Services.obs.notifyObservers(
cancelQuit,
"quit-application-requested",
"restart"
);
if (cancelQuit.data) {
return;
}
Services.startup.quit(
Ci.nsIAppStartup.eRestart | Ci.nsIAppStartup.eAttemptQuit
);
return;
}
Services.obs.notifyObservers(window, "restart-in-safe-mode");
}
/* duplicateTabIn duplicates tab in a place specified by the parameter |where|.
*
* |where| can be:
* "tab" new tab
* "tabshifted" same as "tab" but in background if default is to select new
* tabs, and vice versa
* "window" new window
*
* delta is the offset to the history entry that you want to load.
*/
function duplicateTabIn(aTab, where, delta) {
switch (where) {
case "window": {
let otherWin = OpenBrowserWindow({
private: PrivateBrowsingUtils.isBrowserPrivate(aTab.linkedBrowser),
});
let delayedStartupFinished = (subject, topic) => {
if (
topic == "browser-delayed-startup-finished" &&
subject == otherWin
) {
Services.obs.removeObserver(delayedStartupFinished, topic);
let otherGBrowser = otherWin.gBrowser;
let otherTab = otherGBrowser.selectedTab;
SessionStore.duplicateTab(otherWin, aTab, delta);
otherGBrowser.removeTab(otherTab, { animate: false });
}
};
Services.obs.addObserver(
delayedStartupFinished,
"browser-delayed-startup-finished"
);
break;
}
case "tabshifted":
SessionStore.duplicateTab(window, aTab, delta);
// A background tab has been opened, nothing else to do here.
break;
case "tab":
SessionStore.duplicateTab(window, aTab, delta, true, {
inBackground: false,
});
break;
}
if (aTab.group) {
Glean.tabgroup.tabInteractions.duplicate.add();
}
}
var MousePosTracker = {
_listeners: new Set(),
_x: 0,
_y: 0,
/**
* Registers a listener.
*
* @param listener (object)
* A listener is expected to expose the following properties:
*
* getMouseTargetRect (function)
* Returns the rect that the MousePosTracker needs to alert
* the listener about if the mouse happens to be within it.
*
* onMouseEnter (function, optional)
* The function to be called if the mouse enters the rect
* returned by getMouseTargetRect. MousePosTracker always
* runs this inside of a requestAnimationFrame, since it
* assumes that the notification is used to update the DOM.
*
* onMouseLeave (function, optional)
* The function to be called if the mouse exits the rect
* returned by getMouseTargetRect. MousePosTracker always
* runs this inside of a requestAnimationFrame, since it
* assumes that the notification is used to update the DOM.
*/
addListener(listener) {
if (this._listeners.has(listener)) {
return;
}
listener._hover = false;
this._listeners.add(listener);
this._callListener(listener);
},
removeListener(listener) {
this._listeners.delete(listener);
},
handleEvent(event) {
if (event.type === "mouseout" && event.currentTarget !== window) {
return;
}
this._x = event.screenX - window.mozInnerScreenX;
this._y = event.screenY - window.mozInnerScreenY;
this._listeners.forEach(listener => {
try {
this._callListener(listener);
} catch (e) {
console.error(e);
}
});
},
_callListener(listener) {
let rect = listener.getMouseTargetRect();
let hover =
this._x >= rect.left &&
this._x <= rect.right &&
this._y >= rect.top &&
this._y <= rect.bottom;
if (hover == listener._hover) {
return;
}
listener._hover = hover;
if (hover) {
if (listener.onMouseEnter) {
listener.onMouseEnter();
}
} else if (listener.onMouseLeave) {
listener.onMouseLeave();
}
},
};
var PanicButtonNotifier = {
init() {
this._initialized = true;
if (window.PanicButtonNotifierShouldNotify) {
delete window.PanicButtonNotifierShouldNotify;
this.notify();
}
},
createPanelIfNeeded() {
// Lazy load the panic-button-success-notification panel the first time we need to display it.
if (!document.getElementById("panic-button-success-notification")) {
let template = document.getElementById("panicButtonNotificationTemplate");
template.replaceWith(template.content);
}
},
notify() {
if (!this._initialized) {
window.PanicButtonNotifierShouldNotify = true;
return;
}
// Display notification panel here...
try {
this.createPanelIfNeeded();
let popup = document.getElementById("panic-button-success-notification");
popup.hidden = false;
// To close the popup in 3 seconds after the popup is shown but left uninteracted.
let closePopup = () => {
popup.hidePopup();
};
popup.addEventListener("popupshown", function () {
PanicButtonNotifier.timer = setTimeout(closePopup, 3000);
});
let closeButton = document.getElementById(
"panic-button-success-closebutton"
);
closeButton.addEventListener("command", closePopup);
// To prevent the popup from closing when user tries to interact with the
// popup using mouse or keyboard.
let onUserInteractsWithPopup = () => {
clearTimeout(PanicButtonNotifier.timer);
};
popup.addEventListener("mouseover", onUserInteractsWithPopup);
window.addEventListener("keydown", onUserInteractsWithPopup);
let removeListeners = () => {
popup.removeEventListener("mouseover", onUserInteractsWithPopup);
window.removeEventListener("keydown", onUserInteractsWithPopup);
popup.removeEventListener("popuphidden", removeListeners);
closeButton.removeEventListener("command", closePopup);
clearTimeout(PanicButtonNotifier.timer);
};
popup.addEventListener("popuphidden", removeListeners);
let widget = CustomizableUI.getWidget("panic-button").forWindow(window);
let anchor = widget.anchor.icon;
popup.openPopup(anchor, popup.getAttribute("position"));
} catch (ex) {
console.error(ex);
}
},
};
/**
* The TabDialogBox supports opening window dialogs as SubDialogs on the tab and content
* level. Both tab and content dialogs have their own separate managers.
* Dialogs will be queued FIFO and cover the web content.
* Dialogs are closed when the user reloads or leaves the page.
* While a dialog is open PopupNotifications, such as permission prompts, are
* suppressed.
*/
class TabDialogBox {
static _containerFor(browser) {
return browser.closest(
".browserStack, .webextension-popup-stack, .sidebar-browser-stack"
);
}
constructor(browser) {
this._weakBrowserRef = Cu.getWeakReference(browser);
// Create parent element for tab dialogs
let template = document.getElementById("dialogStackTemplate");
let dialogStack = template.content.cloneNode(true).firstElementChild;
dialogStack.classList.add("tab-prompt-dialog");
TabDialogBox._containerFor(browser).appendChild(dialogStack);
// Initially the stack only contains the template
let dialogTemplate = dialogStack.firstElementChild;
// Create dialog manager for prompts at the tab level.
this._tabDialogManager = new SubDialogManager({
dialogStack,
dialogTemplate,
orderType: SubDialogManager.ORDER_QUEUE,
allowDuplicateDialogs: true,
dialogOptions: {
consumeOutsideClicks: false,
},
});
}
/**
* Open a dialog on tab or content level.
* @param {String} aURL - URL of the dialog to load in the tab box.
* @param {Object} [aOptions]
* @param {String} [aOptions.features] - Comma separated list of window
* features.
* @param {Boolean} [aOptions.allowDuplicateDialogs] - Whether to allow
* showing multiple dialogs with aURL at the same time. If false calls for
* duplicate dialogs will be dropped.
* @param {String} [aOptions.sizeTo] - Pass "available" to stretch dialog to
* roughly content size. Any max-width or max-height style values on the document root
* will also be applied to the dialog box.
* @param {Boolean} [aOptions.keepOpenSameOriginNav] - By default dialogs are
* aborted on any navigation.
* Set to true to keep the dialog open for same origin navigation.
* @param {Number} [aOptions.modalType] - The modal type to create the dialog for.
* By default, we show the dialog for tab prompts.
* @param {Boolean} [aOptions.hideContent] - When true, we are about to show a prompt that is requesting the
* users credentials for a toplevel load of a resource from a base domain different from the base domain of the currently loaded page.
* To avoid auth prompt spoofing (see bug 791594) we hide the current sites content
* (among other protection mechanisms, that are not handled here, see the bug for reference).
* @param {nsIWebProgress} [aOptions.webProgress] - If passed, use to detect when a site is being
* navigated to in order to close the dialog. By default, this.browser.webProgress is used.
* @returns {Object} [result] Returns an object { closedPromise, dialog }.
* @returns {Promise} [result.closedPromise] Resolves once the dialog has been closed.
* @returns {SubDialog} [result.dialog] A reference to the opened SubDialog.
*/
open(
aURL,
{
features = null,
allowDuplicateDialogs = true,
sizeTo,
keepOpenSameOriginNav,
modalType = null,
allowFocusCheckbox = false,
hideContent = false,
webProgress = undefined,
} = {},
...aParams
) {
let resolveClosed;
let closedPromise = new Promise(resolve => (resolveClosed = resolve));
// Get the dialog manager to open the prompt with.
let dialogManager =
modalType === Ci.nsIPrompt.MODAL_TYPE_CONTENT
? this.getContentDialogManager()
: this._tabDialogManager;
let hasDialogs = () =>
this._tabDialogManager.hasDialogs ||
this._contentDialogManager?.hasDialogs;
if (!hasDialogs()) {
this._onFirstDialogOpen(webProgress ?? this.browser.webProgress);
}
let closingCallback = event => {
if (!hasDialogs()) {
this._onLastDialogClose(webProgress ?? this.browser.webProgress);
}
if (allowFocusCheckbox && !event.detail?.abort) {
this.maybeSetAllowTabSwitchPermission(event.target);
}
};
if (modalType == Ci.nsIPrompt.MODAL_TYPE_CONTENT) {
sizeTo = "limitheight";
}
// Open dialog and resolve once it has been closed
let dialog = dialogManager.open(
aURL,
{
features,
allowDuplicateDialogs,
sizeTo,
closingCallback,
closedCallback: resolveClosed,
hideContent,
},
...aParams
);
// Marking the dialog externally, instead of passing it as an option.
// The SubDialog(Manager) does not care about navigation.
// dialog can be null here if allowDuplicateDialogs = false.
if (dialog) {
dialog._keepOpenSameOriginNav = keepOpenSameOriginNav;
}
return { closedPromise, dialog };
}
_onFirstDialogOpen(webProgress) {
// Hide PopupNotifications to prevent them from covering up dialogs.
this.browser.setAttribute("tabDialogShowing", true);
UpdatePopupNotificationsVisibility();
// Register listeners
this._lastPrincipal = this.browser.contentPrincipal;
webProgress.addProgressListener(this, Ci.nsIWebProgress.NOTIFY_LOCATION);
this.tab?.addEventListener("TabClose", this);
}
_onLastDialogClose(webProgress) {
// Show PopupNotifications again.
this.browser.removeAttribute("tabDialogShowing");
UpdatePopupNotificationsVisibility();
// Clean up listeners
webProgress.removeProgressListener(this);
this._lastPrincipal = null;
this.tab?.removeEventListener("TabClose", this);
}
_buildContentPromptDialog() {
let template = document.getElementById("dialogStackTemplate");
let contentDialogStack = template.content.cloneNode(true).firstElementChild;
contentDialogStack.classList.add("content-prompt-dialog");
// Create a dialog manager for content prompts.
let browserContainer = TabDialogBox._containerFor(this.browser);
let tabPromptDialog = browserContainer.querySelector(".tab-prompt-dialog");
browserContainer.insertBefore(contentDialogStack, tabPromptDialog);
let contentDialogTemplate = contentDialogStack.firstElementChild;
this._contentDialogManager = new SubDialogManager({
dialogStack: contentDialogStack,
dialogTemplate: contentDialogTemplate,
orderType: SubDialogManager.ORDER_QUEUE,
allowDuplicateDialogs: true,
dialogOptions: {
consumeOutsideClicks: false,
},
});
}
handleEvent(event) {
if (event.type !== "TabClose") {
return;
}
this.abortAllDialogs();
}
abortAllDialogs() {
this._tabDialogManager.abortDialogs();
this._contentDialogManager?.abortDialogs();
}
focus() {
// Prioritize focusing the dialog manager for tab prompts
if (this._tabDialogManager._dialogs.length) {
this._tabDialogManager.focusTopDialog();
return;
}
this._contentDialogManager?.focusTopDialog();
}
/**
* If the user navigates away or refreshes the page, close all dialogs for
* the current browser.
*/
onLocationChange(aWebProgress, aRequest, aLocation, aFlags) {
if (
!aWebProgress.isTopLevel ||
aFlags & Ci.nsIWebProgressListener.LOCATION_CHANGE_SAME_DOCUMENT
) {
return;
}
// Dialogs can be exempt from closing on same origin location change.
let filterFn;
// Test for same origin location change
if (
this._lastPrincipal?.isSameOrigin(
aLocation,
this.browser.browsingContext.usePrivateBrowsing
)
) {
filterFn = dialog => !dialog._keepOpenSameOriginNav;
}
this._lastPrincipal = this.browser.contentPrincipal;
this._tabDialogManager.abortDialogs(filterFn);
this._contentDialogManager?.abortDialogs(filterFn);
}
get tab() {
return gBrowser.getTabForBrowser(this.browser);
}
get browser() {
let browser = this._weakBrowserRef.get();
if (!browser) {
throw new Error("Stale dialog box! The associated browser is gone.");
}
return browser;
}
getTabDialogManager() {
return this._tabDialogManager;
}
getContentDialogManager() {
if (!this._contentDialogManager) {
this._buildContentPromptDialog();
}
return this._contentDialogManager;
}
onNextPromptShowAllowFocusCheckboxFor(principal) {
this._allowTabFocusByPromptPrincipal = principal;
}
/**
* Sets the "focus-tab-by-prompt" permission for the dialog.
*/
maybeSetAllowTabSwitchPermission(dialog) {
let checkbox = dialog.querySelector("checkbox");
if (checkbox.checked) {
Services.perms.addFromPrincipal(
this._allowTabFocusByPromptPrincipal,
"focus-tab-by-prompt",
Services.perms.ALLOW_ACTION
);
}
// Don't show the "allow tab switch checkbox" for subsequent prompts.
this._allowTabFocusByPromptPrincipal = null;
}
}
TabDialogBox.prototype.QueryInterface = ChromeUtils.generateQI([
"nsIWebProgressListener",
"nsISupportsWeakReference",
]);
// Handle window-modal prompts that we want to display with the same style as
// tab-modal prompts.
var gDialogBox = {
_dialog: null,
_nextOpenJumpsQueue: false,
_queued: [],
// Used to wait for a `close` event from the HTML
// dialog. The event is fired asynchronously, which means
// that if we open another dialog immediately after the
// previous one, we might be confused into thinking a
// `close` event for the old dialog is for the new one.
// As they have the same event target, we have no way of
// distinguishing them. So we wait for the `close` event
// to have happened before allowing another dialog to open.
_didCloseHTMLDialog: null,
// Whether we managed to open the dialog we tried to open.
// Used to avoid waiting for the above callback in case
// of an error opening the dialog.
_didOpenHTMLDialog: false,
get dialog() {
return this._dialog;
},
get isOpen() {
return !!this._dialog;
},
replaceDialogIfOpen() {
this._dialog?.close();
this._nextOpenJumpsQueue = true;
},
async open(uri, args) {
// If we need to queue, some callers indicate they should go first.
const queueMethod = this._nextOpenJumpsQueue ? "unshift" : "push";
this._nextOpenJumpsQueue = false;
// If we already have a dialog opened and are trying to open another,
// queue the next one to be opened later.
if (this.isOpen) {
return new Promise((resolve, reject) => {
this._queued[queueMethod]({ resolve, reject, uri, args });
});
}
// We're not open. If we're in a modal state though, we can't
// show the dialog effectively. To avoid hanging by deadlock,
// just return immediately for sync prompts:
if (window.windowUtils.isInModalState() && !args.getProperty("async")) {
throw Components.Exception(
"Prompt could not be shown.",
Cr.NS_ERROR_NOT_AVAILABLE
);
}
// Indicate if we should wait for the dialog to close.
this._didOpenHTMLDialog = false;
let haveClosedPromise = new Promise(resolve => {
this._didCloseHTMLDialog = resolve;
});
// Bring the window to the front in case we're minimized or occluded:
window.focus();
try {
// Prevent URL bar from showing on top of modal
gURLBar.incrementBreakoutBlockerCount();
} catch (ex) {
console.error(ex);
}
try {
await this._open(uri, args);
} catch (ex) {
console.error(ex);
} finally {
let dialog = document.getElementById("window-modal-dialog");
if (dialog.open) {
dialog.close();
}
// If the dialog was opened successfully, then we can wait for it
// to close before trying to open any others.
if (this._didOpenHTMLDialog) {
await haveClosedPromise;
}
dialog.style.visibility = "hidden";
dialog.style.height = "0";
dialog.style.width = "0";
document.documentElement.removeAttribute("window-modal-open");
dialog.removeEventListener("dialogopen", this);
dialog.removeEventListener("close", this);
this._updateMenuAndCommandState(true /* to enable */);
this._dialog = null;
UpdatePopupNotificationsVisibility();
// Restores URL bar breakout if needed
gURLBar.decrementBreakoutBlockerCount();
}
if (this._queued.length) {
setTimeout(() => this._openNextDialog(), 0);
}
return args;
},
_openNextDialog() {
if (!this.isOpen) {
let { resolve, reject, uri, args } = this._queued.shift();
this.open(uri, args).then(resolve, reject);
}
},
handleEvent(event) {
switch (event.type) {
case "dialogopen":
this._dialog.focus(true);
break;
case "close":
this._didCloseHTMLDialog();
this._dialog.close();
break;
}
},
_open(uri, args) {
// Get this offset before we touch style below, as touching style seems
// to reset the cached layout bounds.
let offset = window.windowUtils.getBoundsWithoutFlushing(
gBrowser.selectedBrowser
).top;
let parentElement = document.getElementById("window-modal-dialog");
parentElement.style.setProperty("--chrome-offset", offset + "px");
parentElement.style.removeProperty("visibility");
parentElement.style.removeProperty("width");
parentElement.style.removeProperty("height");
document.documentElement.setAttribute("window-modal-open", true);
// Call this first so the contents show up and get layout, which is
// required for SubDialog to work.
parentElement.showModal();
this._didOpenHTMLDialog = true;
// Disable menus and shortcuts.
this._updateMenuAndCommandState(false /* to disable */);
// Now actually set up the dialog contents:
let template = document.getElementById("window-modal-dialog-template")
.content.firstElementChild;
parentElement.addEventListener("dialogopen", this);
parentElement.addEventListener("close", this);
this._dialog = new SubDialog({
template,
parentElement,
id: "window-modal-dialog-subdialog",
options: {
consumeOutsideClicks: false,
},
});
let closedPromise = new Promise(resolve => {
this._closedCallback = function () {
PromptUtils.fireDialogEvent(window, "DOMModalDialogClosed");
resolve();
};
});
this._dialog.open(
uri,
{
features: "resizable=no",
modalType: Ci.nsIPrompt.MODAL_TYPE_INTERNAL_WINDOW,
closedCallback: () => {
this._closedCallback();
},
},
args
);
UpdatePopupNotificationsVisibility();
return closedPromise;
},
_nonUpdatableElements: new Set([
// Make an exception for debugging tools, for developer ease of use.
"key_browserConsole",
"key_browserToolbox",
// Don't touch the editing keys/commands which we might want inside the dialog.
"key_undo",
"key_redo",
"key_cut",
"key_copy",
"key_paste",
"key_delete",
"key_selectAll",
]),
_updateMenuAndCommandState(shouldBeEnabled) {
let editorCommands = document.getElementById("editMenuCommands");
// For the following items, set or clear disabled state:
// - toplevel menubar items (will affect inner items on macOS)
// - command elements
// - key elements not connected to command elements.
for (let element of document.querySelectorAll(
"menubar > menu, command, key:not([command])"
)) {
if (
editorCommands?.contains(element) ||
(element.id && this._nonUpdatableElements.has(element.id))
) {
continue;
}
if (element.nodeName == "key" && element.command) {
continue;
}
if (!shouldBeEnabled) {
if (element.getAttribute("disabled") != "true") {
element.setAttribute("disabled", true);
} else {
element.setAttribute("wasdisabled", true);
}
} else if (element.getAttribute("wasdisabled") != "true") {
element.removeAttribute("disabled");
} else {
element.removeAttribute("wasdisabled");
}
}
},
};
// browser.js loads in the library window, too, but we can only show prompts
// in the main browser window:
if (window.location.href != AppConstants.BROWSER_CHROME_URL) {
gDialogBox = null;
}
var ConfirmationHint = {
_timerID: null,
/**
* Shows a transient, non-interactive confirmation hint anchored to an
* element, usually used in response to a user action to reaffirm that it was
* successful and potentially provide extra context. Examples for such hints:
* - "Saved to bookmarks" after bookmarking a page
* - "Sent!" after sending a tab to another device
* - "Queued (offline)" when attempting to send a tab to another device
* while offline
*
* @param anchor (DOM node, required)
* The anchor for the panel.
* @param messageId (string, required)
* For getting the message string from confirmationHints.ftl
* @param options (object, optional)
* An object with the following optional properties:
* - event (DOM event): The event that triggered the feedback
* - descriptionId (string): message ID of the description text
* - position (string): position of the panel relative to the anchor.
* - l10nArgs (object): l10n arguments for the messageId.
*/
show(anchor, messageId, options = {}) {
this._reset();
MozXULElement.insertFTLIfNeeded("toolkit/branding/brandings.ftl");
MozXULElement.insertFTLIfNeeded("browser/confirmationHints.ftl");
document.l10n.setAttributes(this._message, messageId, options.l10nArgs);
if (options.descriptionId) {
document.l10n.setAttributes(this._description, options.descriptionId);
this._description.hidden = false;
this._panel.classList.add("with-description");
} else {
this._description.hidden = true;
this._panel.classList.remove("with-description");
}
this._panel.setAttribute("data-message-id", messageId);
// The timeout value used here allows the panel to stay open for
// 3s after the text transition (duration=120ms) has finished.
// If there is a description, we show for 6s after the text transition.
const DURATION = options.showDescription ? 6000 : 3000;
this._panel.addEventListener(
"popupshown",
() => {
this._animationBox.setAttribute("animate", "true");
this._timerID = setTimeout(() => {
this._panel.hidePopup(true);
}, DURATION + 120);
},
{ once: true }
);
this._panel.addEventListener(
"popuphidden",
() => {
// reset the timerId in case our timeout wasn't the cause of the popup being hidden
this._reset();
},
{ once: true }
);
this._panel.openPopup(anchor, {
position: options.position ?? "bottomleft topleft",
triggerEvent: options.event,
});
},
_reset() {
if (this._timerID) {
clearTimeout(this._timerID);
this._timerID = null;
}
if (this.__panel) {
this._animationBox.removeAttribute("animate");
this._panel.removeAttribute("data-message-id");
}
},
get _panel() {
this._ensurePanel();
return this.__panel;
},
get _animationBox() {
this._ensurePanel();
delete this._animationBox;
return (this._animationBox = document.getElementById(
"confirmation-hint-checkmark-animation-container"
));
},
get _message() {
this._ensurePanel();
delete this._message;
return (this._message = document.getElementById(
"confirmation-hint-message"
));
},
get _description() {
this._ensurePanel();
delete this._description;
return (this._description = document.getElementById(
"confirmation-hint-description"
));
},
_ensurePanel() {
if (!this.__panel) {
let wrapper = document.getElementById("confirmation-hint-wrapper");
wrapper.replaceWith(wrapper.content);
this.__panel = document.getElementById("confirmation-hint");
}
},
};
var FirefoxViewHandler = {
tab: null,
BUTTON_ID: "firefox-view-button",
get button() {
return document.getElementById(this.BUTTON_ID);
},
init() {
CustomizableUI.addListener(this);
ChromeUtils.defineESModuleGetters(this, {
SyncedTabs: "resource://services-sync/SyncedTabs.sys.mjs",
});
},
uninit() {
CustomizableUI.removeListener(this);
},
onWidgetRemoved(aWidgetId) {
if (aWidgetId == this.BUTTON_ID && this.tab) {
gBrowser.removeTab(this.tab);
}
},
onWidgetAdded(aWidgetId) {
if (aWidgetId === this.BUTTON_ID) {
this.button.removeAttribute("open");
}
},
openTab(section) {
if (!CustomizableUI.getPlacementOfWidget(this.BUTTON_ID)) {
CustomizableUI.addWidgetToArea(
this.BUTTON_ID,
CustomizableUI.AREA_TABSTRIP,
CustomizableUI.getPlacementOfWidget("tabbrowser-tabs").position
);
}
let viewURL = "about:firefoxview";
if (section) {
viewURL = `${viewURL}#${section}`;
}
// Need to account for navigation to Firefox View pages
if (
this.tab &&
this.tab.linkedBrowser.currentURI.spec.split("#")[0] != viewURL
) {
gBrowser.removeTab(this.tab);
this.tab = null;
}
if (!this.tab) {
this.tab = gBrowser.addTrustedTab(viewURL);
this.tab.addEventListener("TabClose", this, { once: true });
gBrowser.tabContainer.addEventListener("TabSelect", this);
window.addEventListener("activate", this);
gBrowser.hideTab(this.tab);
this.button.setAttribute("aria-controls", this.tab.linkedPanel);
}
// we put this here to avoid a race condition that would occur
// if this was called in response to "TabSelect"
this._closeDeviceConnectedTab();
gBrowser.selectedTab = this.tab;
},
openToolbarMouseEvent(event, section) {
if (event?.type == "mousedown" && event?.button != 0) {
return;
}
this.openTab(section);
},
handleEvent(e) {
switch (e.type) {
case "TabSelect": {
const selected = e.target == this.tab;
this.button?.toggleAttribute("open", selected);
this.button?.setAttribute("aria-pressed", selected);
this._recordViewIfTabSelected();
this._onTabForegrounded();
// If Fx View is opened, add temporary style to make first available tab focusable
// When Fx View is closed, remove temporary -moz-user-focus style from first available tab
gBrowser.visibleTabs[0].style.MozUserFocus =
e.target == this.tab ? "normal" : "";
break;
}
case "TabClose":
this.tab = null;
gBrowser.tabContainer.removeEventListener("TabSelect", this);
this.button?.removeAttribute("aria-controls");
break;
case "activate":
this._onTabForegrounded();
break;
}
},
_closeDeviceConnectedTab() {
if (!TabsSetupFlowManager.didFxaTabOpen) {
return;
}
// close the tab left behind after a user pairs a device and
// is redirected back to the Firefox View tab
const fxaRoot = Services.prefs.getCharPref(
"identity.fxaccounts.remote.root"
);
const fxDeviceConnectedTab = gBrowser.tabs.find(tab =>
tab.linkedBrowser.currentURI.displaySpec.startsWith(
`${fxaRoot}pair/auth/complete`
)
);
if (!fxDeviceConnectedTab) {
return;
}
if (gBrowser.tabs.length <= 2) {
// if its the only tab besides the Firefox View tab,
// open a new tab first so the browser doesn't close
gBrowser.addTrustedTab("about:newtab");
}
gBrowser.removeTab(fxDeviceConnectedTab);
TabsSetupFlowManager.didFxaTabOpen = false;
},
_onTabForegrounded() {
if (this.tab?.selected) {
this.SyncedTabs.syncTabs();
}
},
_recordViewIfTabSelected() {
if (this.tab?.selected) {
const PREF_NAME = "browser.firefox-view.view-count";
const MAX_VIEW_COUNT = 10;
let viewCount = Services.prefs.getIntPref(PREF_NAME, 0);
// Record telemetry
Glean.firefoxviewNext.tabSelectedToolbarbutton.record();
if (viewCount < MAX_VIEW_COUNT) {
Services.prefs.setIntPref(PREF_NAME, viewCount + 1);
}
}
},
};
|