tor-browser

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

xpcshell.toml (1137B)


      1 [DEFAULT]
      2 support-files = [
      3  "data/worker.js",
      4  "data/worker_fileReader.js",
      5  "data/chrome.manifest",
      6  "data/base_uri_worker.js",
      7  "data/base_uri_module.mjs",
      8  "data/base_uri_module2.mjs",
      9 ]
     10 run-if = [
     11  "os != 'android'",
     12 ]
     13 
     14 ["test_ext_redirects_sw_scripts.js"]
     15 # The following firefox-appdir make sure that ExtensionTestUtils.loadExtension
     16 # will be able to successfully start the background page (it does fail without
     17 # it because there wouldn't be a global.tabTracker implementation as we would
     18 # expect in a real Firefox, Fenix or Thunderbird instance).
     19 firefox-appdir = "browser"
     20 
     21 ["test_ext_worker_offline_fetch.js"]
     22 firefox-appdir = "browser"
     23 
     24 ["test_fileReader.js"]
     25 
     26 ["test_import_base_uri.js"]
     27 
     28 ["test_remoteworker_launch_new_process.js"]
     29 # The following firefox-appdir make sure that this xpcshell test will run
     30 # with e10s enabled (which is needed to make sure that the test case is
     31 # going to launch the expected new processes)
     32 firefox-appdir = "browser"
     33 # Disable plugin loading to make it rr able to record and replay this test.
     34 prefs = ["plugin.disable=true"]
     35 
     36 
     37 ["test_workers.js"]
     38 
     39 ["test_workers_clone_error.js"]