tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

browser.toml (1300B)


      1 [DEFAULT]
      2 support-files = [
      3  "head.js",
      4  "tab_webauthn_result.html",
      5  "../pkijs/*",
      6  "../cbor.js",
      7  "../u2futil.js",
      8 ]
      9 prefs = [
     10 "security.webauth.webauthn=true",
     11 "security.webauth.webauthn_enable_softtoken=true",
     12 "security.webauth.webauthn_enable_usbtoken=false",
     13 "security.webauthn.ctap2=true",
     14 "security.webauthn.enable_conditional_mediation=true",
     15 "security.webauthn.enable_macos_passkeys=false",
     16 ]
     17 
     18 ["browser_abort_visibility.js"]
     19 run-if = [
     20  "os != 'win'", # Test not relevant on 1903+
     21 ]
     22 
     23 ["browser_fido_appid_extension.js"]
     24 run-if = [
     25  "os != 'win'", # Test not relevant on 1903+
     26 ]
     27 
     28 ["browser_webauthn_cert_override.js"]
     29 
     30 
     31 ["browser_webauthn_conditional_mediation.js"]
     32 skip-if = [
     33  "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11' && opt", # Bug 1892213
     34  "os == 'win' && os_version == '11.26100' && arch == 'x86_64' && opt", # Bug 1892213
     35 ]
     36 
     37 ["browser_webauthn_ipaddress.js"]
     38 
     39 ["browser_webauthn_prompts.js"]
     40 run-if = [
     41  "os != 'win'", # Test not relevant on 1903+
     42 ]
     43 skip-if = [
     44  "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", # Bug 1855383
     45  "os == 'mac' && os_version == '14.70' && arch == 'x86_64' && opt", # Bug 1929455
     46  "os == 'mac' && os_version == '15.30' && arch == 'aarch64' && opt", # Bug 1929455
     47 ]