tor-browser

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

mochitest.toml (1602B)


      1 [DEFAULT]
      2 # Mochitests are executed in iframes. Several ServiceWorker tests use iframes
      3 # too. The result is that we have nested iframes. CookieBehavior 4
      4 # (BEHAVIOR_REJECT_TRACKER) doesn't grant storage access permission to nested
      5 # iframes because trackers could use them to follow users across sites. Let's
      6 # use cookieBehavior 0 (BEHAVIOR_ACCEPT) here.
      7 prefs = ["network.cookie.cookieBehavior=0"]
      8 dupe-manifest = true
      9 tags = "condprof"
     10 # GeckoView overwrites cookieBehavior 0 preferences in ContentBlocking.java.
     11 # Therefore we need to skip these tests on android.
     12 skip-if = [
     13  "os == 'android'",
     14 ]
     15 
     16 ["include:mochitest-common.toml"]
     17 
     18 # This test can't work in PBM because of SpecialPowers.createChromeCache not
     19 # supporting PBM we don't need to validate this in PBM.  So this test is not in
     20 # mochitest-common.toml.
     21 
     22 ["test_bad_script_cache.html"]
     23 
     24 # Following tests are not working currently when dFPI is enabled. So, we put
     25 # these tests here instead of mochitest-common.toml so that these tests won't run
     26 # when dFPI is enabled.
     27 
     28 ["test_cookie_fetch.html"]
     29 
     30 ["test_csp_upgrade-insecure_intercept.html"]
     31 
     32 ["test_eventsource_intercept.html"]
     33 skip-if = [
     34  "http2",
     35  "http3",
     36 ]
     37 
     38 ["test_https_fetch.html"]
     39 skip-if = [
     40  "condprof", # : timed out
     41 ]
     42 
     43 ["test_https_fetch_cloned_response.html"]
     44 
     45 ["test_https_origin_after_redirect.html"]
     46 
     47 ["test_https_origin_after_redirect_cached.html"]
     48 skip-if = [
     49  "condprof", # : timed out
     50 ]
     51 
     52 ["test_https_synth_fetch_from_cached_sw.html"]
     53 
     54 ["test_importscript_mixedcontent.html"]
     55 tags = "mcb"
     56 
     57 ["test_sanitize_domain.html"]
     58 skip-if = [
     59  "http2",
     60  "http3",
     61 ]