diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
commit | 26a029d407be480d791972afb5975cf62c9360a6 (patch) | |
tree | f435a8308119effd964b339f76abb83a57c29483 /dom/security/test/https-only/mochitest.toml | |
parent | Initial commit. (diff) | |
download | firefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz firefox-26a029d407be480d791972afb5975cf62c9360a6.zip |
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'dom/security/test/https-only/mochitest.toml')
-rw-r--r-- | dom/security/test/https-only/mochitest.toml | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/dom/security/test/https-only/mochitest.toml b/dom/security/test/https-only/mochitest.toml new file mode 100644 index 0000000000..e7ecd439c4 --- /dev/null +++ b/dom/security/test/https-only/mochitest.toml @@ -0,0 +1,65 @@ +[DEFAULT] +support-files = [ + "file_redirect.sjs", + "file_upgrade_insecure.html", + "file_upgrade_insecure_server.sjs", + "file_upgrade_insecure_wsh.py", +] +prefs = [ + "dom.security.https_first=false", + "security.mixed_content.upgrade_display_content=false", +] + +["test_break_endless_upgrade_downgrade_loop.html"] +skip-if = [ + "os == 'android'", # no support for error pages, Bug 1697866 + "http3", + "http2", +] +support-files = [ + "file_break_endless_upgrade_downgrade_loop.sjs", + "file_user_gesture.html", +] + +["test_fragment.html"] +support-files = ["file_fragment.html"] + +["test_http_background_auth_request.html"] +support-files = ["file_http_background_auth_request.sjs"] +skip-if = [ + "http3", + "http2", +] + +["test_http_background_request.html"] +support-files = ["file_http_background_request.sjs"] +skip-if = [ + "http3", + "http2", +] + +["test_insecure_reload.html"] +support-files = ["file_insecure_reload.sjs"] +skip-if = ["os == 'android'"] # no https-only errorpage support in android + +["test_redirect_upgrade.html"] +scheme = "https" +fail-if = ["xorigin"] +skip-if = [ + "http3", + "http2", +] + +["test_resource_upgrade.html"] +scheme = "https" +skip-if = [ + "http3", + "http2", +] + +["test_user_suggestion_box.html"] +skip-if = [ + "os == 'android'", # no https-only errorpage support in android + "http3", + "http2", +] |