tor-browser

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

browser.toml (2058B)


      1 [DEFAULT]
      2 tags = "devtools"
      3 subsuite = "devtools"
      4 support-files = [
      5  "../examples/*",
      6  "integration-tests/*",
      7  "head.js",
      8  "../head.js",
      9  "../shared-head.js",
     10  "!/devtools/client/framework/browser-toolbox/test/helpers-browser-toolbox.js",
     11  "!/devtools/client/inspector/test/head.js",
     12  "!/devtools/client/inspector/test/shared-head.js",
     13  "!/devtools/client/shared/test/shared-head.js",
     14  "!/devtools/client/shared/test/telemetry-test-helpers.js",
     15  "!/devtools/client/shared/test/highlighter-test-actor.js",
     16  "!/devtools/client/webconsole/test/browser/shared-head.js",
     17 ]
     18 prefs = [
     19 "dom.ipc.processPrelaunch.enabled=false", # Disable randomly spawning processes during tests. After enabling windowless service workers, a process spawning will trigger an update of the service workers list which can fail the test if it occurs during shutdown (unhandled promise rejection).
     20 "javascript.options.asmjs=true", # Re-enable asm.js for 'browser_dbg-features-asm.js'
     21 ]
     22 
     23 ["browser_dbg-features-asm.js"]
     24 
     25 ["browser_dbg-features-breakable-lines.js"]
     26 
     27 ["browser_dbg-features-breakable-positions.js"]
     28 fail-if = [
     29  "a11y_checks", # Bug 1849028 clicked element may not be focusable and/or labeled
     30 ]
     31 
     32 ["browser_dbg-features-breakpoints.js"]
     33 
     34 ["browser_dbg-features-browser-toolbox-source-tree.js"]
     35 skip-if = [
     36  "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11' && asan", # Bug 1591064
     37  "os == 'mac' && os_version == '14.70' && arch == 'x86_64'", # Bug 1781499
     38  "os == 'win' && os_version == '11.26100' && arch == 'x86_64' && asan", # Bug 1591064
     39 ]
     40 
     41 ["browser_dbg-features-source-text-content.js"]
     42 fail-if = [
     43  "a11y_checks", # Bug 1849028 clicked element may not be focusable and/or labeled
     44 ]
     45 
     46 ["browser_dbg-features-source-tree.js"]
     47 fail-if = [
     48  "a11y_checks", # Bug 1849028 clicked element may not be focusable and/or labeled
     49 ]
     50 
     51 ["browser_dbg-features-tabs.js"]
     52 
     53 ["browser_dbg-features-wasm.js"]
     54 
     55 ["browser_dbg-integration-reloading-compressed-sourcemaps.js"]
     56 
     57 ["browser_dbg-integration-reloading-uncompressed-sourcemaps.js"]