tor-browser

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

mochitest.toml (2362B)


      1 [DEFAULT]
      2 # TODO: Refactor skip-if via Bug 1857079
      3 tags = "geolocation condprof"
      4 scheme = "https"
      5 support-files = [
      6  "geolocation.html",
      7  "geolocation_common.js",
      8  "network_geolocation.sjs",
      9  "windowTest.html",
     10  "popup.html",
     11 ]
     12 prefs = [
     13  "dom.security.featurePolicy.header.enabled=true",
     14  "dom.security.featurePolicy.webidl.enabled=true",
     15 ]
     16 
     17 ["test_allowCurrent.html"]
     18 
     19 ["test_allowWatch.html"]
     20 
     21 ["test_cachedPosition.html"]
     22 
     23 ["test_cancelCurrent.html"]
     24 
     25 ["test_cancelWatch.html"]
     26 
     27 ["test_clearWatch.html"]
     28 
     29 ["test_clearWatchBeforeAllowing.html"]
     30 
     31 ["test_clearWatch_invalid.html"]
     32 
     33 ["test_crossorigin_iframe.html"]
     34 support-files = ["crossorigin_iframe.html"]
     35 
     36 ["test_enableHighAccuracy.html"]
     37 
     38 ["test_errorcheck.html"]
     39 
     40 ["test_featurePolicy.html"]
     41 support-files = ["file_featurePolicy.html"]
     42 
     43 ["test_geoGetCurrentPositionBlockedInInsecureContext.html"]
     44 scheme = "http" # This test REQUIRES to run on HTTP (_NOT_ HTTPS).
     45 skip-if = [
     46  "http2",
     47  "http3",
     48 ]
     49 
     50 ["test_geoWatchPositionBlockedInInsecureContext.html"]
     51 scheme = "http" # This test REQUIRES to run on HTTP (_NOT_ HTTPS).
     52 skip-if = [
     53  "http2",
     54  "http3",
     55 ]
     56 
     57 ["test_geolocation_is_undefined_when_pref_is_off.html"]
     58 support-files = ["test_geolocation_is_undefined_when_pref_is_off_iframe.html"]
     59 
     60 ["test_hidden.html"]
     61 support-files = ["popup.html"]
     62 skip-if = [
     63  "condprof",
     64  "os == 'android'", # test uses popup windows
     65  "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", # Bug 1823283
     66 ]
     67 
     68 ["test_manyCurrentConcurrent.html"]
     69 skip-if = [
     70  "condprof", # : timed out
     71  "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", # Bug 1823283
     72 ]
     73 
     74 ["test_manyCurrentSerial.html"]
     75 skip-if = [
     76  "condprof", # : timed out
     77  "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", # Bug 1823283
     78 ]
     79 
     80 ["test_manyWatchConcurrent.html"]
     81 skip-if = [
     82  "condprof", # : timed out
     83  "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'", # Bug 1823283
     84 ]
     85 
     86 ["test_manyWatchSerial.html"]
     87 
     88 ["test_manyWindows.html"]
     89 
     90 ["test_native_provider.html"]
     91 skip-if = [
     92  "os != 'android'",
     93 ]
     94 
     95 ["test_not_fully_active.html"]
     96 support-files = ["popup.html"]
     97 
     98 ["test_optional_api_params.html"]
     99 
    100 ["test_shutdown.html"]
    101 
    102 ["test_timeoutCurrent.html"]
    103 
    104 ["test_windowClose.html"]
    105 
    106 ["test_worseAccuracyDoesNotBlockCallback.html"]