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
|
# 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/.
<!-- Privacy panel -->
<script src="chrome://browser/content/preferences/privacy.js"/>
<stringbundle id="signonBundle" src="chrome://passwordmgr/locale/passwordmgr.properties"/>
<html:template id="template-panePrivacy">
<hbox id="browserPrivacyCategory"
class="subcategory"
hidden="true"
data-category="panePrivacy">
<html:h1 data-l10n-id="privacy-header"/>
</hbox>
<!-- Tracking / Content Blocking -->
<groupbox id="trackingGroup" data-category="panePrivacy" hidden="true" aria-describedby="contentBlockingDescription" class="highlighting-group">
<label id="contentBlockingHeader"><html:h2 data-l10n-id="content-blocking-enhanced-tracking-protection"/></label>
<vbox data-subcategory="trackingprotection">
<hbox align="start">
<image id="trackingProtectionShield"/>
<description class="description-with-side-element" flex="1">
<html:span id="contentBlockingDescription" data-l10n-id="content-blocking-section-top-level-description"></html:span>
<html:a is="moz-support-link"
id="contentBlockingLearnMore"
class="learnMore"
data-l10n-id="content-blocking-learn-more"
support-page="enhanced-tracking-protection"
/>
</description>
<button id="trackingProtectionExceptions"
is="highlightable-button"
class="accessory-button"
data-l10n-id="tracking-manage-exceptions"
preference="pref.privacy.disable_button.tracking_protection_exceptions"
search-l10n-ids="
permissions-address,
permissions-disable-etp,
permissions-remove.label,
permissions-remove-all.label,
permissions-exceptions-etp-window2.title,
permissions-exceptions-manage-etp-desc,
"/>
</hbox>
<hbox id="rfpIncompatibilityWarning" class="info-box-container" hidden="true">
<vbox class="info-icon-container">
<html:img class="info-icon"></html:img>
</vbox>
<vbox flex="1">
<description>
<html:span data-l10n-id="content-blocking-rfp-incompatibility-warning"/>
<html:a is="moz-support-link"
class="learnMore"
support-page="resist-fingerprinting"
/>
</description>
</vbox>
</hbox>
<hbox id="fpiIncompatibilityWarning" class="info-box-container" hidden="true">
<vbox class="info-icon-container">
<html:img class="info-icon"></html:img>
</vbox>
<vbox flex="1">
<description>
<html:span data-l10n-id="content-blocking-fpi-incompatibility-warning"/>
</description>
</vbox>
</hbox>
<vbox id="contentBlockingCategories">
<radiogroup id="contentBlockingCategoryRadio"
preference="browser.contentblocking.category"
aria-labelledby="trackingProtectionMenuDesc">
<vbox id="contentBlockingOptionStandard" class="privacy-detailedoption info-box-container">
<hbox>
<radio id="standardRadio"
value="standard"
data-l10n-id="enhanced-tracking-protection-setting-standard"
flex="1"/>
<button id="standardArrow"
is="highlightable-button"
class="arrowhead"
data-l10n-id="content-blocking-expand-section"
aria-expanded="false"/>
</hbox>
<vbox class="indent">
<description data-l10n-id="content-blocking-etp-standard-desc"></description>
<vbox class="privacy-extra-information">
<label class="content-blocking-extra-blocking-desc" data-l10n-id="content-blocking-etp-blocking-desc"/>
<vbox class="indent">
<hbox class="extra-information-label social-media-option" hidden="true">
<label class="content-blocking-label" data-l10n-id="content-blocking-social-media-trackers"/>
</hbox>
<hbox class="extra-information-label cross-site-cookies-option" hidden="true">
<label class="content-blocking-label" data-l10n-id="content-blocking-cross-site-cookies-in-all-windows2"/>
</hbox>
<hbox class="extra-information-label third-party-tracking-cookies-option" hidden="true">
<label class="content-blocking-label" data-l10n-id="content-blocking-cross-site-tracking-cookies"/>
</hbox>
<hbox class="extra-information-label all-third-party-cookies-private-windows-option" hidden="true">
<label class="content-blocking-label" data-l10n-id="content-blocking-all-cross-site-cookies-private-windows"/>
</hbox>
<hbox class="extra-information-label third-party-tracking-cookies-plus-isolate-option" hidden="true">
<label class="content-blocking-label" data-l10n-id="content-blocking-cross-site-tracking-cookies-plus-isolate"/>
</hbox>
<hbox class="extra-information-label pb-trackers-option" hidden="true">
<label class="content-blocking-label" data-l10n-id="content-blocking-private-windows"/>
</hbox>
<hbox class="extra-information-label trackers-option" hidden="true">
<label class="content-blocking-label" data-l10n-id="content-blocking-all-windows-tracking-content"/>
</hbox>
<hbox class="extra-information-label all-third-party-cookies-option" hidden="true">
<label class="content-blocking-label" data-l10n-id="content-blocking-all-cross-site-cookies"/>
</hbox>
<hbox class="extra-information-label all-cookies-option" hidden="true">
<label class="content-blocking-label" data-l10n-id="content-blocking-all-cookies"/>
</hbox>
<hbox class="extra-information-label unvisited-cookies-option" hidden="true">
<label class="content-blocking-label" data-l10n-id="content-blocking-unvisited-cookies"/>
</hbox>
<hbox class="extra-information-label cryptominers-option" hidden="true">
<label class="content-blocking-label" data-l10n-id="content-blocking-cryptominers"/>
</hbox>
<hbox class="extra-information-label fingerprinters-option" hidden="true">
<label class="content-blocking-label" data-l10n-id="content-blocking-fingerprinters"/>
</hbox>
</vbox>
<vbox id="etpStandardTCPBox" class="content-blocking-warning info-box-container">
<label class="content-blocking-warning-title" data-l10n-id="content-blocking-etp-standard-tcp-title"/>
<description>
<html:span data-l10n-id="content-blocking-etp-standard-tcp-rollout-description"></html:span>
<html:a is="moz-support-link"
id="tcp-learn-more-link"
class="learnMore"
data-l10n-id="content-blocking-etp-standard-tcp-rollout-learn-more"
support-page="total-cookie-protection"
/>
</description>
</vbox>
<html:div class="content-blocking-warning info-box-container reload-tabs" hidden="true">
<html:div class="content-blocking-reload-desc-container">
<html:div class="info-icon-container">
<html:img class="info-icon"/>
</html:div>
<html:span data-l10n-id="content-blocking-reload-description"
class="content-blocking-reload-description" />
</html:div>
<button class="accessory-button reload-tabs-button primary"
is="highlightable-button"
data-l10n-id="content-blocking-reload-tabs-button"/>
</html:div>
</vbox>
</vbox>
</vbox>
<vbox id="contentBlockingOptionStrict" class="privacy-detailedoption info-box-container">
<hbox>
<radio id="strictRadio"
value="strict"
data-l10n-id="enhanced-tracking-protection-setting-strict"
flex="1"/>
<button id="strictArrow"
is="highlightable-button"
class="arrowhead"
data-l10n-id="content-blocking-expand-section"
aria-expanded="false"/>
</hbox>
<vbox class="indent">
<label data-l10n-id="content-blocking-etp-strict-desc"></label>
<vbox class="privacy-extra-information">
<label class="content-blocking-extra-blocking-desc" data-l10n-id="content-blocking-etp-blocking-desc"/>
<vbox class="indent">
<hbox class="extra-information-label social-media-option" hidden="true">
<label class="content-blocking-label" data-l10n-id="content-blocking-social-media-trackers"/>
</hbox>
<hbox class="extra-information-label third-party-tracking-cookies-option" hidden="true">
<label class="content-blocking-label" data-l10n-id="content-blocking-cross-site-tracking-cookies"/>
</hbox>
<hbox class="extra-information-label all-third-party-cookies-private-windows-option" hidden="true">
<label class="content-blocking-label" data-l10n-id="content-blocking-all-cross-site-cookies-private-windows"/>
</hbox>
<hbox class="extra-information-label cross-site-cookies-option" hidden="true">
<label class="content-blocking-label" data-l10n-id="content-blocking-cross-site-cookies-in-all-windows2"/>
</hbox>
<hbox class="extra-information-label pb-trackers-option" hidden="true">
<label class="content-blocking-label" data-l10n-id="content-blocking-private-windows"/>
</hbox>
<hbox class="extra-information-label trackers-option" hidden="true">
<label class="content-blocking-label" data-l10n-id="content-blocking-all-windows-tracking-content"/>
</hbox>
<hbox class="extra-information-label all-third-party-cookies-option" hidden="true">
<label class="content-blocking-label" data-l10n-id="content-blocking-all-cross-site-cookies"/>
</hbox>
<hbox class="extra-information-label all-cookies-option" hidden="true">
<label class="content-blocking-label" data-l10n-id="content-blocking-all-cookies"/>
</hbox>
<hbox class="extra-information-label unvisited-cookies-option" hidden="true">
<label class="content-blocking-label" data-l10n-id="content-blocking-unvisited-cookies"/>
</hbox>
<hbox class="extra-information-label third-party-tracking-cookies-plus-isolate-option" hidden="true">
<label class="content-blocking-label" data-l10n-id="content-blocking-cross-site-tracking-cookies-plus-isolate"/>
</hbox>
<hbox class="extra-information-label cryptominers-option" hidden="true">
<label class="content-blocking-label" data-l10n-id="content-blocking-cryptominers"/>
</hbox>
<hbox class="extra-information-label fingerprinters-option" hidden="true">
<label class="content-blocking-label" data-l10n-id="content-blocking-known-and-suspected-fingerprinters"/>
</hbox>
</vbox>
<html:div class="content-blocking-warning info-box-container reload-tabs" hidden="true">
<html:div class="content-blocking-reload-desc-container">
<html:div class="info-icon-container">
<html:img class="info-icon"/>
</html:div>
<html:span data-l10n-id="content-blocking-reload-description"
class="content-blocking-reload-description" />
</html:div>
<button class="accessory-button reload-tabs-button primary"
is="highlightable-button"
data-l10n-id="content-blocking-reload-tabs-button"/>
</html:div>
<vbox class="content-blocking-warning info-box-container">
<hbox>
<image class="content-blocking-warning-image"/>
<label class="content-blocking-warning-title" data-l10n-id="content-blocking-warning-title"/>
</hbox>
<description class="indent">
<html:span class="content-blocking-warning-description" data-l10n-id="content-blocking-and-isolating-etp-warning-description-2"></html:span>
<html:a is="moz-support-link"
class="learnMore"
data-l10n-id="content-blocking-warning-learn-how"
support-page="turn-off-etp-desktop"
/>
</description>
</vbox>
</vbox>
</vbox>
</vbox>
<vbox id="contentBlockingOptionCustom" class="privacy-detailedoption info-box-container">
<hbox>
<radio id="customRadio"
value="custom"
data-l10n-id="enhanced-tracking-protection-setting-custom"
flex="1"/>
<button id="customArrow"
is="highlightable-button"
class="arrowhead"
data-l10n-id="content-blocking-expand-section"
aria-expanded="false"/>
</hbox>
<vbox class="indent">
<description id="contentBlockingCustomDesc" data-l10n-id="content-blocking-etp-custom-desc"></description>
<vbox class="privacy-extra-information">
<hbox class="reject-trackers-ui custom-option">
<checkbox id="contentBlockingBlockCookiesCheckbox"
class="content-blocking-checkbox" flex="1"
data-l10n-id="content-blocking-cookies-label"
aria-describedby="contentBlockingCustomDesc"
preference="network.cookie.cookieBehavior"/>
<vbox>
<menulist id="blockCookiesMenu"
sizetopopup="none"
preference="network.cookie.cookieBehavior">
<menupopup>
<menuitem id="blockCookiesSocialMedia" data-l10n-id="sitedata-option-block-cross-site-trackers" value="trackers"/>
<menuitem id="isolateCookiesSocialMedia" data-l10n-id="sitedata-option-block-cross-site-cookies" value="trackers-plus-isolate"/>
<menuitem data-l10n-id="sitedata-option-block-unvisited" value="unvisited"/>
<menuitem data-l10n-id="sitedata-option-block-all-cross-site-cookies" value="all-third-parties"/>
<menuitem data-l10n-id="sitedata-option-block-all" value="always"/>
</menupopup>
</menulist>
</vbox>
</hbox>
<hbox id="contentBlockingTrackingProtectionExtensionContentLabel"
align="center" hidden="true" class="extension-controlled">
<description control="contentBlockingDisableTrackingProtectionExtension" flex="1"/>
<button id="contentBlockingDisableTrackingProtectionExtension"
is="highlightable-button"
class="extension-controlled-button accessory-button"
data-l10n-id="disable-extension" hidden="true"/>
</hbox>
<hbox class="custom-option">
<checkbox id="contentBlockingTrackingProtectionCheckbox"
class="content-blocking-checkbox" flex="1"
data-l10n-id="content-blocking-tracking-content-label"
aria-describedby="contentBlockingCustomDesc"/>
<vbox>
<menulist id="trackingProtectionMenu">
<menupopup>
<menuitem data-l10n-id="content-blocking-option-private" value="private"/>
<menuitem data-l10n-id="content-blocking-tracking-protection-option-all-windows" value="always"/>
</menupopup>
</menulist>
</vbox>
</hbox>
<hbox class="custom-option" id="contentBlockingCryptominersOption">
<checkbox id="contentBlockingCryptominersCheckbox"
class="content-blocking-checkbox" flex="1"
preference="privacy.trackingprotection.cryptomining.enabled"
data-l10n-id="content-blocking-cryptominers-label"
aria-describedby="contentBlockingCustomDesc"/>
</hbox>
<hbox class="custom-option" id="contentBlockingFingerprintersOption">
<checkbox id="contentBlockingFingerprintersCheckbox"
class="content-blocking-checkbox" flex="1"
preference="privacy.trackingprotection.fingerprinting.enabled"
data-l10n-id="content-blocking-known-fingerprinters-label"
aria-describedby="contentBlockingCustomDesc"/>
</hbox>
<hbox class="custom-option">
<checkbox id="contentBlockingFingerprintingProtectionCheckbox"
class="content-blocking-checkbox" flex="1"
data-l10n-id="content-blocking-suspected-fingerprinters-label"
aria-describedby="contentBlockingCustomDesc"/>
<vbox>
<menulist id="fingerprintingProtectionMenu">
<menupopup>
<menuitem data-l10n-id="content-blocking-option-private" value="private"/>
<menuitem data-l10n-id="content-blocking-tracking-protection-option-all-windows" value="always"/>
</menupopup>
</menulist>
</vbox>
</hbox>
<html:div class="content-blocking-warning info-box-container reload-tabs" hidden="true">
<html:div class="content-blocking-reload-desc-container">
<html:div class="info-icon-container">
<html:img class="info-icon"/>
</html:div>
<html:span data-l10n-id="content-blocking-reload-description"
class="content-blocking-reload-description" />
</html:div>
<button class="accessory-button reload-tabs-button primary"
is="highlightable-button"
data-l10n-id="content-blocking-reload-tabs-button"/>
</html:div>
<vbox class="content-blocking-warning info-box-container">
<hbox>
<image class="content-blocking-warning-image"/>
<label class="content-blocking-warning-title" data-l10n-id="content-blocking-warning-title"/>
</hbox>
<description class="indent">
<html:span class="content-blocking-warning-description" data-l10n-id="content-blocking-and-isolating-etp-warning-description-2"></html:span>
<html:a is="moz-support-link"
class="learnMore"
data-l10n-id="content-blocking-warning-learn-how"
support-page="turn-off-etp-desktop"
/>
</description>
</vbox>
</vbox>
</vbox>
</vbox>
</radiogroup>
</vbox>
</vbox>
</groupbox>
<groupbox id="nonTechnicalPrivacyGroup" data-category="panePrivacy" hidden="true">
<label id="nonTechnicalPrivacyHeader"><html:h2 data-l10n-id="non-technical-privacy-header"/></label>
<vbox id="nonTechnicalPrivacyBox">
<hbox id="globalPrivacyControlBox" flex="1" align="center">
<checkbox id="globalPrivacyControlCheckbox"
class="tail-with-learn-more"
preference="privacy.globalprivacycontrol.enabled"
data-l10n-id="global-privacy-control-description"
search-l10n-ids="global-privacy-control-search" />
<html:a is="moz-support-link"
id="globalPrivacyControlLearnMoreLink"
support-page="global-privacy-control" />
</hbox>
<hbox id="doNotTrackBox" flex="1" align="center" hidden="true">
<html:a is="moz-support-link"
id="doNotTrackRemoval"
support-page="how-do-i-turn-do-not-track-feature"
data-l10n-id="do-not-track-removal" />
</hbox>
</vbox>
</groupbox>
<!-- Site Data -->
<groupbox id="siteDataGroup" data-category="panePrivacy" hidden="true" aria-describedby="totalSiteDataSize">
<label><html:h2 data-l10n-id="sitedata-header"/></label>
<hbox data-subcategory="sitedata" align="baseline">
<vbox flex="1">
<description class="description-with-side-element description-deemphasized" flex="1">
<html:span id="totalSiteDataSize"></html:span>
<html:a is="moz-support-link"
id="siteDataLearnMoreLink"
data-l10n-id="sitedata-learn-more"
support-page="storage-permissions"
/>
</description>
<hbox flex="1" id="deleteOnCloseNote" class="info-box-container smaller-font-size">
<hbox class="info-icon-container">
<html:img class="info-icon"></html:img>
</hbox>
<description flex="1" data-l10n-id="sitedata-delete-on-close-private-browsing2" />
</hbox>
<hbox id="keepRow"
align="center">
<checkbox id="deleteOnClose"
data-l10n-id="sitedata-delete-on-close"
flex="1" />
</hbox>
</vbox>
<vbox align="end">
<button id="clearSiteDataButton"
is="highlightable-button"
class="accessory-button"
search-l10n-ids="clear-site-data-cookies-empty.label, clear-site-data-cache-empty.label"
data-l10n-id="sitedata-clear"/>
<button id="siteDataSettings"
is="highlightable-button"
class="accessory-button"
data-l10n-id="sitedata-settings"
search-l10n-ids="
site-data-settings-window.title,
site-data-column-host.label,
site-data-column-cookies.label,
site-data-column-storage.label,
site-data-settings-description,
site-data-remove-all.label,
"/>
<button id="cookieExceptions"
is="highlightable-button"
class="accessory-button"
data-l10n-id="sitedata-cookies-exceptions"
preference="pref.privacy.disable_button.cookie_exceptions"
search-l10n-ids="
permissions-address,
permissions-block.label,
permissions-allow.label,
permissions-remove.label,
permissions-remove-all.label,
permissions-exceptions-cookie-desc,
" />
</vbox>
</hbox>
</groupbox>
<!-- Cookie Banner Handling -->
<groupbox id="cookieBannerHandlingGroup" data-category="panePrivacy" data-subcategory="cookiebanner" hidden="true">
<label><html:h2 data-l10n-id="cookie-banner-blocker-header" /></label>
<vbox flex="1">
<hbox>
<description class="description-deemphasized">
<html:span id="cookieBannerReductionExplanation" data-l10n-id="cookie-banner-blocker-description" ></html:span>
<html:a is="moz-support-link" id="cookieBannerHandlingLearnMore" class="learnMore" data-l10n-id="cookie-banner-learn-more" support-page="cookie-banner-reduction"/>
</description>
</hbox>
<hbox>
<checkbox id="handleCookieBanners"
preference="cookiebanners.service.mode.privateBrowsing"
data-l10n-id="cookie-banner-blocker-checkbox-label"
flex="1" />
</hbox>
</vbox>
</groupbox>
<!-- Passwords -->
<groupbox id="passwordsGroup" orient="vertical" data-category="panePrivacy" data-subcategory="logins" hidden="true">
<label><html:h2 data-l10n-id="pane-privacy-passwords-header" data-l10n-attrs="searchkeywords"/></label>
<vbox id="passwordSettings">
<hbox id="passwordManagerExtensionContent"
class="extension-controlled"
align="center"
hidden="true">
<description control="disablePasswordManagerExtension"
flex="1"/>
<button id="disablePasswordManagerExtension"
class="extension-controlled-button accessory-button"
data-l10n-id="disable-extension"
hidden="true" />
</hbox>
<hbox>
<vbox flex="1">
<hbox>
<checkbox id="savePasswords"
data-l10n-id="forms-ask-to-save-passwords"
preference="signon.rememberSignons"
flex="1" />
</hbox>
<hbox class="indent" flex="1">
<checkbox id="passwordAutofillCheckbox"
data-l10n-id="forms-fill-usernames-and-passwords"
preference="signon.autofillForms"
flex="1" />
</hbox>
<hbox class="indent" id="generatePasswordsBox" flex="1">
<checkbox id="generatePasswords"
data-l10n-id="forms-suggest-passwords"
preference="signon.generation.enabled"
flex="1" />
</hbox>
</vbox>
<vbox align="end">
<button id="passwordExceptions"
is="highlightable-button"
class="accessory-button"
data-l10n-id="forms-exceptions"
preference="pref.privacy.disable_button.view_passwords_exceptions"
search-l10n-ids="
permissions-address,
permissions-exceptions-saved-passwords-window.title,
permissions-exceptions-saved-passwords-desc,
"/>
<button id="showPasswords"
is="highlightable-button"
class="accessory-button"
data-l10n-id="forms-saved-passwords"
preference="pref.privacy.disable_button.view_passwords"/>
</vbox>
</hbox>
<hbox class="indent" id="relayIntegrationBox" flex="1" align="center">
<checkbox id="relayIntegration"
class="tail-with-learn-more"
data-l10n-id="preferences-relay-integration-checkbox2"/>
<html:a is="moz-support-link"
id="relayIntegrationLearnMoreLink"
class="learnMore"
data-l10n-id="relay-integration-learn-more-link"/>
</hbox>
<hbox class="indent" id="breachAlertsBox" flex="1" align="center">
<checkbox id="breachAlerts"
class="tail-with-learn-more"
data-l10n-id="forms-breach-alerts"
preference="signon.management.page.breach-alerts.enabled"/>
<html:a is="moz-support-link"
id="breachAlertsLearnMoreLink"
data-l10n-id="forms-breach-alerts-learn-more-link"
support-page="lockwise-alerts"
/>
</hbox>
</vbox>
<vbox>
<hbox id="osReauthRow" align="center">
<checkbox id="osReauthCheckbox"
data-l10n-id="forms-os-reauth"/>
</hbox>
</vbox>
<vbox>
<hbox id="masterPasswordRow" align="center">
<checkbox id="useMasterPassword"
data-l10n-id="forms-primary-pw-use"
class="tail-with-learn-more"/>
<html:a is="moz-support-link"
id="primaryPasswordLearnMoreLink"
data-l10n-id="forms-primary-pw-learn-more-link"
support-page="primary-password-stored-logins"
/>
<spacer flex="1"/>
<button id="changeMasterPassword"
is="highlightable-button"
class="accessory-button"
search-l10n-ids="forms-master-pw-change.label"
data-l10n-id="forms-primary-pw-change"/>
</hbox>
<description class="indent tip-caption"
data-l10n-id="forms-primary-pw-former-name"
data-l10n-attrs="hidden"
flex="1"/>
#ifdef XP_WIN
<hbox id="windows-sso" align="center">
<checkbox data-l10n-id="forms-windows-sso"
preference="network.http.windows-sso.enabled"
class="tail-with-learn-more"/>
<html:a is="moz-support-link"
id="windowsSSOLearnMoreLink"
data-l10n-id="forms-windows-sso-learn-more-link"
support-page="windows-sso"
/>
</hbox>
<description id="windows-sso-caption" class="indent tip-caption"
data-l10n-id="forms-windows-sso-desc"/>
#endif
</vbox>
<label id="openWindowsPasskeySettings">
<html:a class="text-link" data-l10n-id="windows-passkey-settings-label" href="ms-settings:savedpasskeys" />
</label>
<!--
Those two strings are meant to be invisible and will be used exclusively to provide
localization for an alert window.
-->
<label id="fips-title" hidden="true" data-l10n-id="forms-primary-pw-fips-title"></label>
<label id="fips-desc" hidden="true" data-l10n-id="forms-master-pw-fips-desc"></label>
</groupbox>
<!-- The form autofill section is inserted in to this box
after the form autofill extension has initialized. -->
<groupbox id="formAutofillGroupBox"
data-category="panePrivacy"
data-subcategory="form-autofill" hidden="true"></groupbox>
<!-- History -->
<groupbox id="historyGroup" data-category="panePrivacy" hidden="true">
<label><html:h2 data-l10n-id="history-header"/></label>
<hbox align="center">
<label id="historyModeLabel"
control="historyMode"
data-l10n-id="history-remember-label"/>
<menulist id="historyMode">
<menupopup>
<menuitem data-l10n-id="history-remember-option-all"
value="remember"
search-l10n-ids="history-remember-description"/>
<menuitem data-l10n-id="history-remember-option-never"
value="dontremember"
search-l10n-ids="history-dontremember-description"/>
<menuitem data-l10n-id="history-remember-option-custom"
value="custom"
search-l10n-ids="
history-private-browsing-permanent.label,
history-remember-browser-option.label,
history-remember-search-option.label,
history-clear-on-close-option.label,
history-clear-on-close-settings.label"/>
</menupopup>
</menulist>
</hbox>
<hbox>
<deck id="historyPane" flex="1">
<vbox id="historyRememberPane">
<hbox align="center" flex="1">
<vbox flex="1">
<description
class="description-with-side-element"
data-l10n-id="history-remember-description"/>
</vbox>
</hbox>
</vbox>
<vbox id="historyDontRememberPane">
<hbox align="center" flex="1">
<vbox flex="1">
<description
class="description-with-side-element"
data-l10n-id="history-dontremember-description"/>
</vbox>
</hbox>
</vbox>
<vbox id="historyCustomPane">
<vbox>
<checkbox id="privateBrowsingAutoStart"
data-l10n-id="history-private-browsing-permanent"
preference="browser.privatebrowsing.autostart"/>
<vbox class="indent">
<checkbox id="rememberHistory"
data-l10n-id="history-remember-browser-option"
preference="places.history.enabled"/>
<checkbox id="rememberForms"
data-l10n-id="history-remember-search-option"
preference="browser.formfill.enable"/>
<hbox id="clearDataBox"
align="center">
<checkbox id="alwaysClear"
preference="privacy.sanitize.sanitizeOnShutdown"
data-l10n-id="history-clear-on-close-option"
flex="1" />
</hbox>
</vbox>
</vbox>
</vbox>
</deck>
<vbox id="historyButtons" align="end">
<button id="clearHistoryButton"
is="highlightable-button"
class="accessory-button"
data-l10n-id="history-clear-button"/>
<button id="clearDataSettings"
is="highlightable-button"
class="accessory-button"
data-l10n-id="history-clear-on-close-settings"
search-l10n-ids="
clear-data-settings-label,
history-section-label,
item-history-and-downloads.label,
item-cookies.label,
item-active-logins.label,
item-cache.label,
item-form-search-history.label,
data-section-label,
item-site-settings.label,
item-offline-apps.label
"/>
</vbox>
</hbox>
</groupbox>
<hbox id="permissionsCategory"
class="subcategory"
hidden="true"
data-category="panePrivacy">
<html:h1 data-l10n-id="permissions-header"/>
</hbox>
<!-- Permissions -->
<groupbox id="permissionsGroup" data-category="panePrivacy" hidden="true" data-subcategory="permissions">
<label class="search-header" hidden="true"><html:h2 data-l10n-id="permissions-header"/></label>
<!-- The hbox around the buttons is to compute the search tooltip position properly -->
<vbox>
<hbox id="locationSettingsRow" align="center" role="group" aria-labelledby="locationPermissionsLabel">
<hbox flex="1">
<image class="geo-icon permission-icon" />
<label id="locationPermissionsLabel" data-l10n-id="permissions-location"/>
</hbox>
<hbox pack="end">
<button id="locationSettingsButton"
is="highlightable-button"
class="accessory-button"
data-l10n-id="permissions-location-settings"
search-l10n-ids="
permissions-remove.label,
permissions-remove-all.label,
permissions-site-location-window2.title,
permissions-site-location-desc,
permissions-site-location-disable-label,
permissions-site-location-disable-desc,
" />
</hbox>
</hbox>
<hbox id="cameraSettingsRow" align="center" role="group" aria-labelledby="cameraPermissionsLabel">
<hbox flex="1">
<image class="camera-icon permission-icon" />
<label id="cameraPermissionsLabel" data-l10n-id="permissions-camera"/>
</hbox>
<hbox pack="end">
<button id="cameraSettingsButton"
is="highlightable-button"
class="accessory-button"
data-l10n-id="permissions-camera-settings"
search-l10n-ids="
permissions-remove.label,
permissions-remove-all.label,
permissions-site-camera-window2.title,
permissions-site-camera-desc,
permissions-site-camera-disable-label,
permissions-site-camera-disable-desc,
" />
</hbox>
</hbox>
<hbox id="microphoneSettingsRow" align="center" role="group" aria-labelledby="microphonePermissionsLabel">
<hbox flex="1">
<image class="microphone-icon permission-icon" />
<label id="microphonePermissionsLabel" data-l10n-id="permissions-microphone"/>
</hbox>
<hbox pack="end">
<button id="microphoneSettingsButton"
is="highlightable-button"
class="accessory-button"
data-l10n-id="permissions-microphone-settings"
search-l10n-ids="
permissions-remove.label,
permissions-remove-all.label,
permissions-site-microphone-window2.title,
permissions-site-microphone-desc,
permissions-site-microphone-disable-label,
permissions-site-microphone-disable-desc,
" />
</hbox>
</hbox>
<hbox id="speakerSettingsRow" align="center" role="group" aria-labelledby="speakerPermissionsLabel">
<hbox flex="1">
<image class="speaker-icon permission-icon" />
<label id="speakerPermissionsLabel" data-l10n-id="permissions-speaker"/>
</hbox>
<hbox pack="end">
<button id="speakerSettingsButton"
is="highlightable-button"
class="accessory-button"
data-l10n-id="permissions-speaker-settings"
search-l10n-ids="
permissions-remove.label,
permissions-remove-all.label,
permissions-site-speaker-window.title,
permissions-site-speaker-desc,
" />
</hbox>
</hbox>
<hbox id="notificationSettingsRow" align="center" role="group" aria-labelledby="notificationPermissionsLabel">
<hbox flex="1">
<image class="desktop-notification-icon permission-icon" />
<label id="notificationPermissionsLabel"
class="tail-with-learn-more"
data-l10n-id="permissions-notification"/>
<html:a is="moz-support-link"
id="notificationPermissionsLearnMore"
class="learnMore"
data-l10n-id="permissions-notification-link"
support-page="push"
/>
</hbox>
<hbox pack="end">
<button id="notificationSettingsButton"
is="highlightable-button"
class="accessory-button"
data-l10n-id="permissions-notification-settings"
search-l10n-ids="
permissions-remove.label,
permissions-remove-all.label,
permissions-site-notification-window2.title,
permissions-site-notification-desc,
permissions-site-notification-disable-label,
permissions-site-notification-disable-desc,
" />
</hbox>
</hbox>
<vbox id="notificationsDoNotDisturbBox" hidden="true">
<checkbox id="notificationsDoNotDisturb" class="indent"/>
</vbox>
<hbox id="autoplaySettingsRow" align="center" role="group" aria-labelledby="autoplayPermissionsLabel">
<hbox flex="1">
<image class="autoplay-icon permission-icon" />
<label id="autoplayPermissionsLabel"
data-l10n-id="permissions-autoplay"/>
</hbox>
<hbox pack="end">
<button id="autoplaySettingsButton"
is="highlightable-button"
class="accessory-button"
data-l10n-id="permissions-autoplay-settings"
search-l10n-ids="
permissions-remove.label,
permissions-remove-all.label,
permissions-site-autoplay-window2.title,
permissions-site-autoplay-desc,
" />
</hbox>
</hbox>
<hbox id="xrSettingsRow" align="center" role="group" aria-labelledby="xrPermissionsLabel">
<hbox flex="1">
<image class="xr-icon permission-icon" />
<label id="xrPermissionsLabel" data-l10n-id="permissions-xr"/>
</hbox>
<hbox pack="end">
<button id="xrSettingsButton"
is="highlightable-button"
class="accessory-button"
data-l10n-id="permissions-xr-settings"
search-l10n-ids="
permissions-remove.label,
permissions-remove-all.label,
permissions-site-xr-window2.title,
permissions-site-xr-desc,
permissions-site-xr-disable-label,
permissions-site-xr-disable-desc,
" />
</hbox>
</hbox>
</vbox>
<separator />
<hbox data-subcategory="permissions-block-popups">
<checkbox id="popupPolicy" preference="dom.disable_open_during_load"
data-l10n-id="permissions-block-popups"
flex="1" />
<button id="popupPolicyButton"
is="highlightable-button"
class="accessory-button"
data-l10n-id="permissions-block-popups-exceptions-button"
data-l10n-attrs="searchkeywords"
search-l10n-ids="
permissions-address,
permissions-exceptions-popup-window2.title,
permissions-exceptions-popup-desc,
" />
</hbox>
<hbox id="addonInstallBox">
<checkbox id="warnAddonInstall"
data-l10n-id="permissions-addon-install-warning"
preference="xpinstall.whitelist.required"
flex="1" />
<button id="addonExceptions"
is="highlightable-button"
class="accessory-button"
data-l10n-id="permissions-addon-exceptions"
search-l10n-ids="
permissions-address,
permissions-allow.label,
permissions-remove.label,
permissions-remove-all.label,
permissions-exceptions-addons-window2.title,
permissions-exceptions-addons-desc,
" />
</hbox>
</groupbox>
<!-- Firefox Data Collection and Use -->
<hbox id="dataCollectionCategory"
class="subcategory"
hidden="true"
data-category="panePrivacy">
<html:h1 data-l10n-id="collection-header2" data-l10n-attrs="searchkeywords"/>
</hbox>
<groupbox id="dataCollectionGroup" data-category="panePrivacy" hidden="true">
<label class="search-header" hidden="true"><html:h2 data-l10n-id="collection-header2" data-l10n-attrs="searchkeywords"/></label>
<description class="description-deemphasized">
<html:span data-l10n-id="preferences-collection-description"/>
<html:a id="dataCollectionPrivacyNotice"
class="learnMore"
target="_blank"
data-l10n-id="preferences-collection-privacy-notice"/>
</description>
<description class="description-deemphasized"
id="preferences-privacy-profiles"
hidden="true">
<html:span data-l10n-id="preferences-across-profiles"/>
<html:a id="dataCollectionViewProfiles"
target="_blank"
data-l10n-id="preferences-view-profiles"/>
</description>
#ifdef MOZ_DATA_REPORTING
<hbox id="telemetry-container" class="info-box-container smaller-font-size" hidden="true">
<hbox class="info-icon-container">
<html:img class="info-icon"></html:img>
</hbox>
<description>
<html:span id="telemetryDisabledDescription"
data-l10n-id="collection-health-report-telemetry-disabled"/>
<html:a is="moz-support-link"
support-page="telemetry-clientid"
class="learnMore"
data-l10n-id="collection-health-report-telemetry-disabled-link"/>
</description>
</hbox>
<vbox data-subcategory="reports">
<checkbox id="submitHealthReportBox"
data-l10n-id="collection-health-report2"/>
<description class="indent tip-caption">
#ifdef MOZ_TELEMETRY_REPORTING
<html:span data-l10n-id="collection-health-report-description"/>
#else # !MOZ_TELEMETRY_REPORTING
<html:span data-l10n-id="collection-health-report-disabled2"/>
#endif # MOZ_TELEMETRY_REPORTING
<html:a id="FHRLearnMore"
is="moz-support-link"
support-page="technical-and-interaction-data"
class="learnMore"
data-l10n-id="collection-health-report-link"/>
</description>
<vbox class="indent">
<checkbox id="addonRecommendationEnabled"
data-l10n-id="addon-recommendations2"/>
<description class="indent tip-caption">
<html:span data-l10n-id="addon-recommendations-description"/>
<html:a is="moz-support-link"
id="addonRecommendationLearnMore"
class="learnMore"
support-page="personalized-addons"/>
</description>
#ifdef MOZ_NORMANDY
<checkbox id="optOutStudiesEnabled"
data-l10n-id="collection-studies2"/>
<description class="indent tip-caption">
<html:span data-l10n-id="collection-studies-description"/>
<html:a id="viewShieldStudies"
href="about:studies"
class="learnMore"
target="_blank"
data-l10n-id="collection-studies-link"/>
</description>
#endif # MOZ_NORMANDY
</vbox>
<checkbox id="submitUsagePingBox"
data-l10n-id="collection-usage-ping"
preference="datareporting.usage.uploadEnabled"/>
<description class="indent tip-caption">
<html:span data-l10n-id="collection-usage-ping-description"/>
<html:a id="submitUsagePingLearnMore"
is="moz-support-link"
class="learnMore"
support-page="usage-ping-settings"/>
</description>
#ifdef MOZ_CRASHREPORTER
<checkbox id="automaticallySubmitCrashesBox"
data-l10n-id="collection-backlogged-crash-reports2"
preference="browser.crashReports.unsubmittedCheck.autoSubmit2"/>
<description class="indent tip-caption">
<html:span data-l10n-id="collection-backlogged-crash-reports-description"/>
<html:a is="moz-support-link"
class="learnMore"
support-page="crash-reports"
id="crashReporterLearnMore"/>
</description>
#endif # MOZ_CRASHREPORTER
</vbox>
#endif MOZ_DATA_REPORTING
<html:moz-toggle hidden="true"
id="firefoxSuggestDataCollectionPrivacyToggle"
preference="browser.urlbar.quicksuggest.dataCollection.enabled"
data-l10n-id="addressbar-firefox-suggest-data-collection"
data-l10n-attrs="label, description"
support-page="firefox-suggest#w_what-setting-is-opt-in"
/>
<vbox id="privacySegmentationSection" data-subcategory="privacy-segmentation" hidden="true">
<label>
<html:h2 data-l10n-id="privacy-segmentation-section-header"/>
</label>
<label data-l10n-id="privacy-segmentation-section-description"/>
<radiogroup id="privacyDataFeatureRecommendationRadioGroup" preference="browser.dataFeatureRecommendations.enabled">
<radio id="privacyDataFeatureRecommendationEnabled"
data-l10n-id="privacy-segmentation-radio-off"
value="true"/>
<radio id="privacyDataFeatureRecommendationDisabled"
data-l10n-id="privacy-segmentation-radio-on"
value="false"/>
</radiogroup>
</vbox>
</groupbox>
#ifdef MOZ_DATA_REPORTING
<!-- Website Advertising Preferences -->
<hbox id="websiteAdvertisingCategory"
class="subcategory"
hidden="true"
data-category="panePrivacy">
<html:h1 data-l10n-id="website-advertising-header"/>
</hbox>
<groupbox id="websiteAdvertisingGroup" data-category="panePrivacy" hidden="true">
<label class="search-header" searchkeywords="ppa" hidden="true"><html:h2 data-l10n-id="website-advertising-header"/></label>
<checkbox id="privateAttribution"
preference="dom.private-attribution.submission.enabled"
data-l10n-id="website-advertising-private-attribution"/>
<description class="indent tip-caption">
<html:span data-l10n-id="website-advertising-private-attribution-description"/>
<html:a is="moz-support-link"
class="learnMore"
support-page="privacy-preserving-attribution"/>
</description>
</groupbox>
#endif
<hbox id="securityCategory"
class="subcategory"
hidden="true"
data-category="panePrivacy">
<html:h1 data-l10n-id="security-header"/>
</hbox>
<!-- addons, forgery (phishing) UI Security -->
<groupbox id="browsingProtectionGroup" data-category="panePrivacy" hidden="true">
<label><html:h2 data-l10n-id="security-browsing-protection"/></label>
<hbox align = "center">
<checkbox id="enableSafeBrowsing"
data-l10n-id="security-enable-safe-browsing"
class="tail-with-learn-more"/>
<html:a is="moz-support-link"
id="enableSafeBrowsingLearnMore"
class="learnMore"
data-l10n-id="security-enable-safe-browsing-link"
support-page="phishing-malware"
/>
</hbox>
<vbox class="indent">
<checkbox id="blockDownloads"
data-l10n-id="security-block-downloads"/>
<checkbox id="blockUncommonUnwanted"
data-l10n-id="security-block-uncommon-software"/>
</vbox>
</groupbox>
<!-- Certificates -->
<groupbox id="certSelection" data-category="panePrivacy" hidden="true">
<label><html:h2 data-l10n-id="certs-header"/></label>
<hbox align="start">
<checkbox id="enableOCSP"
data-l10n-id="certs-enable-ocsp"
preference="security.OCSP.enabled"
flex="1" />
<vbox align="end">
<button id="viewCertificatesButton"
is="highlightable-button"
class="accessory-button"
data-l10n-id="certs-view"
preference="security.disable_button.openCertManager"
search-l10n-ids="
certmgr-tab-mine.label,
certmgr-tab-people.label,
certmgr-tab-servers.label,
certmgr-tab-ca.label,
certmgr-mine,
certmgr-people,
certmgr-server,
certmgr-ca,
certmgr-cert-name.label,
certmgr-token-name.label,
certmgr-view.label,
certmgr-export.label,
certmgr-delete.label
"/>
<button id="viewSecurityDevicesButton"
is="highlightable-button"
class="accessory-button"
data-l10n-id="certs-devices"
preference="security.disable_button.openDeviceManager"
search-l10n-ids="
devmgr-window.title,
devmgr-devlist.label,
devmgr-header-details.label,
devmgr-header-value.label,
devmgr-button-login.label,
devmgr-button-logout.label,
devmgr-button-changepw.label,
devmgr-button-load.label,
devmgr-button-unload.label
"/>
</vbox>
</hbox>
<hbox id="certEnableThirdPartyToggleBox" align="center">
<checkbox id="certEnableThirdPartyToggle"
data-l10n-id="certs-thirdparty-toggle"
preference="security.enterprise_roots.enabled"
class="tail-with-learn-more"
/>
<html:a is="moz-support-link"
class="learnMore"
support-page="automatically-trust-third-party-certificates"
/>
</hbox>
</groupbox>
<!-- HTTPS-ONLY Mode -->
<groupbox id="httpsOnlyBox" data-category="panePrivacy" hidden="true">
<label><html:h2 data-l10n-id="httpsonly-header"/></label>
<vbox data-subcategory="httpsonly" flex="1">
<description id="httpsOnlyDescription" class="description-deemphasized" data-l10n-id="httpsonly-description3"/>
<html:a is="moz-support-link"
id="httpsOnlyLearnMore"
class="learnMore"
data-l10n-id="httpsonly-learn-more2"
support-page="https-only-prefs"
/>
</vbox>
<hbox>
<html:moz-radio-group id="httpsOnlyRadioGroup" data-category="panePrivacy" style="flex: 1;">
<html:moz-radio id="httpsOnlyRadioEnabled"
data-l10n-id="httpsonly-radio-enabled"
value="enabled"></html:moz-radio>
<html:moz-radio id="httpsOnlyRadioEnabledPBM"
data-l10n-id="httpsonly-radio-enabled-pbm"
value="privateOnly"></html:moz-radio>
<html:moz-radio id="httpsOnlyRadioDisabled"
data-l10n-id="httpsonly-radio-disabled3"
value="disabled"
support-page="connection-upgrades"></html:moz-radio>
</html:moz-radio-group>
<vbox>
<button id="httpsOnlyExceptionButton" is="highlightable-button" class="accessory-button" disabled="true"
data-l10n-id="sitedata-cookies-exceptions" search-l10n-ids="
permissions-address,
permissions-allow.label,
permissions-remove.label,
permissions-remove-all.label,
permissions-exceptions-https-only-desc2,
" />
</vbox>
</hbox>
</groupbox>
<!-- DoH -->
<hbox id="DoHCategory"
class="subcategory"
hidden="true"
data-category="panePrivacy">
<html:h1 data-l10n-id="preferences-doh-header"/>
</hbox>
<groupbox id="dohBox" data-category="panePrivacy" data-subcategory="doh" hidden="true" class="highlighting-group">
<label class="search-header" searchkeywords="doh trr" hidden="true"><html:h2 data-l10n-id="preferences-doh-header"/></label>
<vbox flex="1">
<description id="dohDescription" class="tail-with-learn-more description-deemphasized" data-l10n-id="preferences-doh-description2"></description>
<html:a is="moz-support-link"
id="dohLearnMore"
class="learnMore"
support-page="dns-over-https"
/>
</vbox>
<vbox id="dohStatusSection" class="privacy-detailedoption info-box-container">
<hbox>
<label id="dohStatus" class="doh-status-label tail-with-learn-more"/>
<html:a is="moz-support-link"
id="dohStatusLearnMore"
class="learnMore"
support-page="doh-status"
hidden="true"/>
</hbox>
<label class="doh-status-label" id="dohResolver"/>
<label class="doh-status-label" id="dohSteeringStatus" data-l10n-id="preferences-doh-steering-status" hidden="true"/>
</vbox>
<button id="dohExceptionsButton"
is="highlightable-button"
class="accessory-button"
data-l10n-id="preferences-doh-manage-exceptions"
search-l10n-ids="
permissions-doh-entry-field,
permissions-doh-add-exception.label,
permissions-doh-remove.label,
permissions-doh-remove-all.label,
permissions-exceptions-doh-window.title,
permissions-exceptions-manage-doh-desc,
"/>
<vbox>
<label><html:h2 id="dohGroupMessage" data-l10n-id="preferences-doh-group-message2"/></label>
<vbox id="dohCategories">
<radiogroup id="dohCategoryRadioGroup"
preference="network.trr.mode" aria-labelledby="dohGroupMessage">
<vbox id="dohOptionDefault" class="privacy-detailedoption info-box-container">
<hbox>
<radio id="dohDefaultRadio"
value="0"
data-l10n-id="preferences-doh-setting-default"
flex="1"/>
<button id="dohDefaultArrow"
is="highlightable-button"
class="arrowhead doh-expand-section"
data-l10n-id="preferences-doh-expand-section"
aria-expanded="false"/>
</hbox>
<vbox class="indent">
<label data-l10n-id="preferences-doh-default-desc"></label>
<vbox class="privacy-extra-information">
<vbox class="indent">
<hbox class="extra-information-label">
<label class="doh-label" data-l10n-id="preferences-doh-default-detailed-desc-1"/>
</hbox>
<hbox class="extra-information-label">
<label class="doh-label" data-l10n-id="preferences-doh-default-detailed-desc-2"/>
</hbox>
<hbox class="extra-information-label">
<label class="doh-label tail-with-learn-more" data-l10n-id="preferences-doh-default-detailed-desc-3"/>
<html:a is="moz-support-link"
id="default-desc-3-learn-more"
class="learnMore"
support-page="doh-local-provider"
/>
</hbox>
<hbox class="extra-information-label">
<label class="doh-label" data-l10n-id="preferences-doh-default-detailed-desc-4"/>
</hbox>
<hbox class="extra-information-label">
<label class="doh-label tail-with-learn-more" data-l10n-id="preferences-doh-default-detailed-desc-5"/>
<html:a is="moz-support-link"
id="default-desc-5-learn-more"
class="learnMore"
support-page="firefox-turn-off-secure-dns"
/>
</hbox>
</vbox>
</vbox>
</vbox>
</vbox>
<vbox id="dohOptionEnabled" class="privacy-detailedoption info-box-container">
<hbox>
<radio id="dohEnabledRadio"
value="2"
data-l10n-id="preferences-doh-setting-enabled"
flex="1"/>
<button id="dohEnabledArrow"
is="highlightable-button"
class="arrowhead doh-expand-section"
data-l10n-id="preferences-doh-expand-section"
aria-expanded="false"/>
</hbox>
<vbox class="indent">
<label data-l10n-id="preferences-doh-enabled-desc"></label>
<vbox class="privacy-extra-information">
<vbox class="indent">
<hbox class="extra-information-label">
<label class="doh-label" data-l10n-id="preferences-doh-enabled-detailed-desc-1"/>
</hbox>
<hbox class="extra-information-label">
<label class="doh-label" data-l10n-id="preferences-doh-enabled-detailed-desc-2"/>
</hbox>
</vbox>
<vbox class="extra-information-label">
<label data-l10n-id="preferences-doh-select-resolver"/>
<menulist id="dohEnabledResolverChoices"
sizetopopup="none">
</menulist>
<html:input id="dohEnabledInputField" type="text" style="flex: 1;"
preference="network.trr.custom_uri" hidden="true"/>
</vbox>
</vbox>
</vbox>
</vbox>
<vbox id="dohOptionStrict" class="privacy-detailedoption info-box-container">
<hbox>
<radio id="dohStrictRadio"
value="3"
data-l10n-id="preferences-doh-setting-strict"
flex="1"/>
<button id="dohStrictArrow"
is="highlightable-button"
class="arrowhead doh-expand-section"
data-l10n-id="preferences-doh-expand-section"
aria-expanded="false"/>
</hbox>
<vbox class="indent">
<label data-l10n-id="preferences-doh-strict-desc"></label>
<vbox class="privacy-extra-information">
<vbox class="indent">
<hbox class="extra-information-label">
<label class="doh-label" data-l10n-id="preferences-doh-strict-detailed-desc-1"/>
</hbox>
<hbox class="extra-information-label">
<label class="doh-label" data-l10n-id="preferences-doh-strict-detailed-desc-2"/>
</hbox>
<hbox class="extra-information-label">
<label class="doh-label" data-l10n-id="preferences-doh-strict-detailed-desc-3"/>
</hbox>
</vbox>
<vbox class="extra-information-label">
<label data-l10n-id="preferences-doh-select-resolver"/>
<menulist id="dohStrictResolverChoices"
sizetopopup="none">
</menulist>
<html:input id="dohStrictInputField" type="text" style="flex: 1;"
preference="network.trr.custom_uri" hidden="true"/>
</vbox>
</vbox>
</vbox>
</vbox>
<vbox id="dohOptionOff" class="privacy-detailedoption info-box-container">
<hbox>
<radio id="dohOffRadio"
value="5"
data-l10n-id="preferences-doh-setting-off"
flex="1"/>
</hbox>
<vbox class="indent">
<label data-l10n-id="preferences-doh-off-desc"></label>
</vbox>
</vbox>
</radiogroup>
</vbox>
</vbox>
</groupbox>
</html:template>
|